diff --git a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs index 8d876a5104f8..3156e6ae70eb 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs @@ -1,7 +1,11 @@ using Content.Server.GameTicking; using Content.Server.Spawners.Components; using Content.Server.Station.Systems; +using Content.Shared.Humanoid.Prototypes; +using Content.Shared.Roles; +using Prometheus; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Spawners.EntitySystems; @@ -27,7 +31,7 @@ private void OnPlayerSpawning(PlayerSpawningEvent args) var points = EntityQueryEnumerator(); var possiblePositions = new List(); - while ( points.MoveNext(out var uid, out var spawnPoint, out var xform)) + while (points.MoveNext(out var uid, out var spawnPoint, out var xform)) { if (args.Station != null && _stationSystem.GetOwningStation(uid, xform) != args.Station) continue; diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index 8b17fe0d6965..79798abedc6c 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -2,6 +2,7 @@ using Content.Server._Starlight.Medical.Limbs; using Content.Server.Access.Systems; using Content.Server.Body.Systems; +using Content.Server.GameTicking; using Content.Server.Humanoid; using Content.Server.IdentityManagement; using Content.Server.Mind.Commands; @@ -23,6 +24,7 @@ using Content.Shared.Starlight.TextToSpeech; using Content.Shared.Station; using JetBrains.Annotations; +using Prometheus; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Player; @@ -52,6 +54,17 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem private List _allCybernetics = default!; // Starlight + #region Starlight + [Dependency] private readonly GameTicker _gameTicker = default!; + private static readonly ProtoId FallbackSpecies = "Human"; + private static readonly ProtoId FallbackJob = "Assistant"; + private static readonly Gauge _speciesJobsSpawns = Metrics.CreateGauge( + "sl_species_jobs_spawns", + "Contains info on species and jobs spawned at and during the round.", + ["species", "job", "spawn_time"] + ); + #endregion + // Starlight public override void Initialize() { @@ -181,6 +194,31 @@ public EntityUid SpawnPlayerMob( DoJobSpecials(job, entity.Value); _identity.QueueIdentityUpdate(entity.Value); + + #region StarlightStats + if (entity.HasValue) + { + if (!_prototypeManager.TryIndex(profile?.Species, out SpeciesPrototype? speciesProto)) + { + speciesProto = _prototypeManager.Index(FallbackSpecies); + Log.Warning($"Unable to find species {profile?.Species}, falling back to {FallbackSpecies}"); + } + + if (!_prototypeManager.TryIndex(job, out JobPrototype? jobProto)) + { + jobProto = _prototypeManager.Index(FallbackJob); + Log.Warning($"Unable to find job {job}, falling back to {FallbackJob}"); + } + + _speciesJobsSpawns + .WithLabels( + Loc.GetString(speciesProto.Name), + jobProto.LocalizedName, + _gameTicker.RunLevel.ToString()) + .Inc(); + } + #endregion + return entity.Value; } diff --git a/Resources/Changelog/ChangelogStarlight.yml b/Resources/Changelog/ChangelogStarlight.yml index 03f447efa0d8..f908c3dae45b 100644 --- a/Resources/Changelog/ChangelogStarlight.yml +++ b/Resources/Changelog/ChangelogStarlight.yml @@ -11479,5 +11479,123 @@ Entries: id: 133900 time: '2025-08-14T20:07:43.000000+00:00' url: https://github.com/ss14Starlight/space-station-14/pull/1339 +- author: CrazyPhantom + changes: + - message: Zookeeper name displaying wrong + type: Fix + id: 134200 + time: '2025-08-14T19:37:56.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1342 +- author: Citrea + changes: + - message: Quartermasters can now destroy asteroids with the power of pure rage + (and their knuckle dusters) + type: Tweak + id: 131100 + time: '2025-08-14T19:59:54.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1311 +- author: Happyrobot33 + changes: + - message: Removed demeaning comments about your playtime. + type: Tweak + id: 130100 + time: '2025-08-14T20:02:19.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1301 +- author: Aedler + changes: + - message: Decreased the number of available tracking implants in security and BSO + locker. + type: Tweak + id: 101900 + time: '2025-08-14T20:23:54.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1019 +- author: Aedler + changes: + - message: Tracking implant crate increased from 1000 to 2950 spesos. + type: Tweak + id: 101901 + time: '2025-08-14T20:23:54.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1019 +- author: Aedler + changes: + - message: Tracking implant crates now contain 6 tracking implants instead of 5. + type: Tweak + id: 101902 + time: '2025-08-14T20:23:54.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1019 +- author: Fractalflower + changes: + - message: Leather satchels on roundstart + type: Add + id: 117500 + time: '2025-08-14T20:26:52.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1175 +- author: stickycheZ101 + changes: + - message: added a few more trinkets + type: Add + id: 116800 + time: '2025-08-14T20:33:42.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1168 +- author: stickycheZ101 + changes: + - message: removed the pondering orb from loadouts + type: Remove + id: 116801 + time: '2025-08-14T20:33:42.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1168 +- author: stickycheZ101 + changes: + - message: dried tobacco, cannabis, and rainbow cannabis leaves are now 1x1 (QoL + and to fix them not generating in one of the new trinkets) + type: Tweak + id: 116802 + time: '2025-08-14T20:33:42.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1168 +- author: stickycheZ101 + changes: + - message: zippo lighters now fit in rollie packets + type: Fix + id: 116803 + time: '2025-08-14T20:33:42.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1168 +- author: stickycheZ101 + changes: + - message: Supersynth now requires 100h overall playtime instead of 20h musician + type: Tweak + id: 116804 + time: '2025-08-14T20:33:42.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1168 +- author: TheSnipingDwarf + changes: + - message: Added Fixes Plushie. + type: Add + id: 128100 + time: '2025-08-14T20:44:55.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1281 +- author: Conflee & Abby + changes: + - message: Added the NTNC Chest Rig and NTNC Backpack, for Navy Admemes. Included + in the Loadouts for rapid-equipping. + type: Add + id: 124000 + time: '2025-08-14T21:00:07.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1240 +- author: Conflee + changes: + - message: Added Shit Station gamemode, a mostly normal gamemode except there is + more dirt, trash, spills, and broken lights round start (has vent events, mid + round antags, etc too) + type: Add + id: 133700 + time: '2025-08-14T21:11:47.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1337 +- author: Happyrobot33 + changes: + - message: Added species/job statistics + type: Add + id: 134700 + time: '2025-08-15T01:10:08.000000+00:00' + url: https://github.com/ss14Starlight/space-station-14/pull/1347 Order: -1 diff --git a/Resources/Locale/en-US/_Starlight/gamerules.ftl b/Resources/Locale/en-US/_Starlight/gamerules.ftl index 99338c59fc5c..a5cda29c5d3b 100644 --- a/Resources/Locale/en-US/_Starlight/gamerules.ftl +++ b/Resources/Locale/en-US/_Starlight/gamerules.ftl @@ -2,4 +2,7 @@ traitorling-title = Traitorlings traitorling-description = Traitors taste delicious eventlight-title = Event Light -eventlight-description = Not quite Greenshift, stuff still happens! \ No newline at end of file +eventlight-description = Not quite Greenshift, stuff still happens! + +shitstation-title = Shit Station +shitstation-description = The last shift was full of slobs \ No newline at end of file diff --git a/Resources/Locale/en-US/job/job-names.ftl b/Resources/Locale/en-US/job/job-names.ftl index 97c4d927c1f0..8833013007d9 100644 --- a/Resources/Locale/en-US/job/job-names.ftl +++ b/Resources/Locale/en-US/job/job-names.ftl @@ -50,6 +50,7 @@ job-name-station-ai = Station AI job-name-technical-assistant = Technical Assistant job-name-visitor = Visitor job-name-cluwne = Cluwne +job-name-zookeeper = Zookeeper # unused jobs # these are required for the agent ID job icon tooltips diff --git a/Resources/Locale/en-US/lobby/lobby-state.ftl b/Resources/Locale/en-US/lobby/lobby-state.ftl index 0c92923b1c99..f0e6464cafaa 100644 --- a/Resources/Locale/en-US/lobby/lobby-state.ftl +++ b/Resources/Locale/en-US/lobby/lobby-state.ftl @@ -21,11 +21,25 @@ lobby-state-song-text = Playing: [color=white]{$songTitle}[/color] by [color=whi lobby-state-song-no-song-text = No lobby song playing. lobby-state-song-unknown-title = [color=dimgray]Unknown title[/color] lobby-state-song-unknown-artist = [color=dimgray]Unknown artist[/color] + +#starlight edit remove demeaning comments lobby-state-playtime-comment-normal = You've spent {$hours} {$hours -> [1]hour *[other]hours - } ingame today. Remember to take breaks! -lobby-state-playtime-comment-concerning = You've played for {$hours} hours today. Please take a break. -lobby-state-playtime-comment-grasstouchless = {$hours} hours. Consider logging off to attend to your needs. -lobby-state-playtime-comment-selfdestructive = {$hours} hours. Really? + } ingame today. +lobby-state-playtime-comment-concerning = + You've spent {$hours} {$hours -> + [1]hour + *[other]hours + } ingame today. +lobby-state-playtime-comment-grasstouchless = + You've spent {$hours} {$hours -> + [1]hour + *[other]hours + } ingame today. +lobby-state-playtime-comment-selfdestructive = + You've spent {$hours} {$hours -> + [1]hour + *[other]hours + } ingame today. diff --git a/Resources/Maps/_Starlight/Shuttles/emergency_prism.yml b/Resources/Maps/_Starlight/Shuttles/emergency_prism.yml index d3d4e5323e43..14f78045f4c1 100644 --- a/Resources/Maps/_Starlight/Shuttles/emergency_prism.yml +++ b/Resources/Maps/_Starlight/Shuttles/emergency_prism.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 261.2.0 + engineVersion: 264.0.0 forkId: Starlight forkVersion: 1732131340 - time: 07/13/2025 06:42:43 - entityCount: 614 + time: 08/11/2025 00:50:13 + entityCount: 613 maps: [] grids: - 1 @@ -32,7 +32,7 @@ entities: - type: MetaData name: Evac Shuttle - type: Transform - pos: 148.6979,150.73523 + pos: 168.6979,170.73523 parent: invalid - type: MapGrid chunks: @@ -657,7 +657,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance -- proto: AirlockCommand +- proto: AirlockCommandGlassLocked entities: - uid: 2 components: @@ -873,822 +873,816 @@ entities: rot: 3.141592653589793 rad pos: -10.5,7.5 parent: 1 - - uid: 36 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 1 - proto: BoozeDispenser entities: - - uid: 37 + - uid: 36 components: - type: Transform pos: -10.5,3.5 parent: 1 - proto: BorgCharger entities: - - uid: 38 + - uid: 37 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 39 + - uid: 38 components: - type: Transform pos: 4.5,-1.5 parent: 1 - proto: BoxBodyBag entities: - - uid: 40 + - uid: 39 components: - type: Transform pos: -11.547253,5.6547318 parent: 1 - proto: CableApcExtension entities: - - uid: 41 + - uid: 40 components: - type: Transform pos: -12.5,-1.5 parent: 1 - - uid: 42 + - uid: 41 components: - type: Transform pos: -11.5,-1.5 parent: 1 - - uid: 43 + - uid: 42 components: - type: Transform pos: -10.5,4.5 parent: 1 - - uid: 44 + - uid: 43 components: - type: Transform pos: -10.5,3.5 parent: 1 - - uid: 45 + - uid: 44 components: - type: Transform pos: -10.5,2.5 parent: 1 - - uid: 46 + - uid: 45 components: - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 47 + - uid: 46 components: - type: Transform pos: -13.5,6.5 parent: 1 - - uid: 48 + - uid: 47 components: - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 49 + - uid: 48 components: - type: Transform pos: -11.5,6.5 parent: 1 - - uid: 50 + - uid: 49 components: - type: Transform pos: -10.5,6.5 parent: 1 - - uid: 51 + - uid: 50 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 52 + - uid: 51 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 53 + - uid: 52 components: - type: Transform pos: -9.5,-3.5 parent: 1 - - uid: 54 + - uid: 53 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 55 + - uid: 54 components: - type: Transform pos: -9.5,-1.5 parent: 1 - - uid: 56 + - uid: 55 components: - type: Transform pos: -8.5,-1.5 parent: 1 - - uid: 57 + - uid: 56 components: - type: Transform pos: -10.5,-1.5 parent: 1 - - uid: 58 + - uid: 57 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 59 + - uid: 58 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 60 + - uid: 59 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 61 + - uid: 60 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 62 + - uid: 61 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 63 + - uid: 62 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 64 + - uid: 63 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 65 + - uid: 64 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 66 + - uid: 65 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 67 + - uid: 66 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 68 + - uid: 67 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 69 + - uid: 68 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 70 + - uid: 69 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 71 + - uid: 70 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 72 + - uid: 71 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 73 + - uid: 72 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 74 + - uid: 73 components: - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 75 + - uid: 74 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 76 + - uid: 75 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 77 + - uid: 76 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 78 + - uid: 77 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 79 + - uid: 78 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 80 + - uid: 79 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 81 + - uid: 80 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 82 + - uid: 81 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 83 + - uid: 82 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 84 + - uid: 83 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 85 + - uid: 84 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 86 + - uid: 85 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 87 + - uid: 86 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 88 + - uid: 87 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 89 + - uid: 88 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 90 + - uid: 89 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 91 + - uid: 90 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 92 + - uid: 91 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 93 + - uid: 92 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 94 + - uid: 93 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 95 + - uid: 94 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 96 + - uid: 95 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 97 + - uid: 96 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 98 + - uid: 97 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 99 + - uid: 98 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 100 + - uid: 99 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 101 + - uid: 100 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 102 + - uid: 101 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 103 + - uid: 102 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 104 + - uid: 103 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 105 + - uid: 104 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 106 + - uid: 105 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 107 + - uid: 106 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 108 + - uid: 107 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 109 + - uid: 108 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 110 + - uid: 109 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 111 + - uid: 110 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 112 + - uid: 111 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 113 + - uid: 112 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 114 + - uid: 113 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 115 + - uid: 114 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 116 + - uid: 115 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 117 + - uid: 116 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 118 + - uid: 117 components: - type: Transform pos: 5.5,1.5 parent: 1 - proto: CableHV entities: - - uid: 119 + - uid: 118 components: - type: Transform pos: -10.5,-0.5 parent: 1 - - uid: 120 + - uid: 119 components: - type: Transform pos: -11.5,0.5 parent: 1 - - uid: 121 + - uid: 120 components: - type: Transform pos: -9.5,-0.5 parent: 1 - - uid: 122 + - uid: 121 components: - type: Transform pos: -11.5,-0.5 parent: 1 - proto: CableMV entities: - - uid: 123 + - uid: 122 components: - type: Transform pos: -11.5,0.5 parent: 1 - - uid: 124 + - uid: 123 components: - type: Transform pos: -11.5,-0.5 parent: 1 - - uid: 125 + - uid: 124 components: - type: Transform pos: -10.5,-1.5 parent: 1 - - uid: 126 + - uid: 125 components: - type: Transform pos: -10.5,-1.5 parent: 1 - - uid: 127 + - uid: 126 components: - type: Transform pos: -9.5,-1.5 parent: 1 - - uid: 128 + - uid: 127 components: - type: Transform pos: -8.5,-1.5 parent: 1 - - uid: 129 + - uid: 128 components: - type: Transform pos: -7.5,-1.5 parent: 1 - - uid: 130 + - uid: 129 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 131 + - uid: 130 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 132 + - uid: 131 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 133 + - uid: 132 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 134 + - uid: 133 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 135 + - uid: 134 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 136 + - uid: 135 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 137 + - uid: 136 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 138 + - uid: 137 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 139 + - uid: 138 components: - type: Transform pos: -13.5,6.5 parent: 1 - - uid: 140 + - uid: 139 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 141 + - uid: 140 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 142 + - uid: 141 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 143 + - uid: 142 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 144 + - uid: 143 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 145 + - uid: 144 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 146 + - uid: 145 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 147 + - uid: 146 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 148 + - uid: 147 components: - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 149 + - uid: 148 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 150 + - uid: 149 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 151 + - uid: 150 components: - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 152 + - uid: 151 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 153 + - uid: 152 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 154 + - uid: 153 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 155 + - uid: 154 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 156 + - uid: 155 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 157 + - uid: 156 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 158 + - uid: 157 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 159 + - uid: 158 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 160 + - uid: 159 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 161 + - uid: 160 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 162 + - uid: 161 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 163 + - uid: 162 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 164 + - uid: 163 components: - type: Transform pos: -10.5,4.5 parent: 1 - - uid: 165 + - uid: 164 components: - type: Transform pos: -10.5,3.5 parent: 1 - - uid: 166 + - uid: 165 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 167 + - uid: 166 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 168 + - uid: 167 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 169 + - uid: 168 components: - type: Transform pos: -11.5,6.5 parent: 1 - - uid: 170 + - uid: 169 components: - type: Transform pos: -10.5,6.5 parent: 1 - - uid: 171 + - uid: 170 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 172 + - uid: 171 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 173 + - uid: 172 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 174 + - uid: 173 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 175 + - uid: 174 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 176 + - uid: 175 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 177 + - uid: 176 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 178 + - uid: 177 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 179 + - uid: 178 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 180 + - uid: 179 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 181 + - uid: 180 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 182 + - uid: 181 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 183 + - uid: 182 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 184 + - uid: 183 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 185 + - uid: 184 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 186 + - uid: 185 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 187 + - uid: 186 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 188 + - uid: 187 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 189 + - uid: 188 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 190 + - uid: 189 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 191 + - uid: 190 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 192 + - uid: 191 components: - type: Transform pos: -11.5,-1.5 parent: 1 - - uid: 193 + - uid: 192 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 194 + - uid: 193 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 195 + - uid: 194 components: - type: Transform pos: -9.5,-3.5 parent: 1 - proto: CableTerminal entities: - - uid: 196 + - uid: 195 components: - type: Transform rot: -1.5707963267948966 rad @@ -1696,31 +1690,31 @@ entities: parent: 1 - proto: Catwalk entities: - - uid: 197 + - uid: 196 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-1.5 parent: 1 - - uid: 198 + - uid: 197 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-1.5 parent: 1 - - uid: 199 + - uid: 198 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 1 - - uid: 200 + - uid: 199 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-0.5 parent: 1 - - uid: 201 + - uid: 200 components: - type: Transform rot: -1.5707963267948966 rad @@ -1728,216 +1722,216 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 202 + - uid: 201 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,0.5 parent: 1 - - uid: 203 + - uid: 202 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 1 - - uid: 204 + - uid: 203 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 205 + - uid: 204 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 206 + - uid: 205 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,3.5 parent: 1 - - uid: 207 + - uid: 206 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - - uid: 208 + - uid: 207 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 209 + - uid: 208 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 210 + - uid: 209 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 211 + - uid: 210 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 212 + - uid: 211 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 213 + - uid: 212 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 214 + - uid: 213 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 1 - - uid: 215 + - uid: 214 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 - - uid: 216 + - uid: 215 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 1 - - uid: 217 + - uid: 216 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,1.5 parent: 1 - - uid: 218 + - uid: 217 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 219 + - uid: 218 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 220 + - uid: 219 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 221 + - uid: 220 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 222 + - uid: 221 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 223 + - uid: 222 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 224 + - uid: 223 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 1 - - uid: 225 + - uid: 224 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 1 - - uid: 226 + - uid: 225 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 1 - - uid: 227 + - uid: 226 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,5.5 parent: 1 - - uid: 228 + - uid: 227 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 229 + - uid: 228 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 230 + - uid: 229 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,5.5 parent: 1 - - uid: 231 + - uid: 230 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,4.5 parent: 1 - - uid: 232 + - uid: 231 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 1 - - uid: 233 + - uid: 232 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 1 - - uid: 234 + - uid: 233 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - - uid: 235 + - uid: 234 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,5.5 parent: 1 - - uid: 236 + - uid: 235 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 237 + - uid: 236 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,5.5 parent: 1 - - uid: 238 + - uid: 237 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 1 - - uid: 239 + - uid: 238 components: - type: Transform rot: -1.5707963267948966 rad @@ -1945,31 +1939,31 @@ entities: parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 240 + - uid: 239 components: - type: Transform pos: 7.5,-1.5 parent: 1 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 241 + - uid: 240 components: - type: Transform pos: 6.5,-1.5 parent: 1 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 242 + - uid: 241 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 243 + - uid: 242 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 244 + - uid: 243 components: - type: Transform rot: 1.5707963267948966 rad @@ -1977,17 +1971,17 @@ entities: parent: 1 - proto: ClosetWallEmergencyN2FilledRandom entities: - - uid: 245 + - uid: 244 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 246 + - uid: 245 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 247 + - uid: 246 components: - type: Transform rot: 1.5707963267948966 rad @@ -1995,13 +1989,13 @@ entities: parent: 1 - proto: ClosetWallFireFilledRandom entities: - - uid: 248 + - uid: 247 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 1 - - uid: 249 + - uid: 248 components: - type: Transform rot: 1.5707963267948966 rad @@ -2009,7 +2003,7 @@ entities: parent: 1 - proto: ComputerAlert entities: - - uid: 250 + - uid: 249 components: - type: Transform rot: -1.5707963267948966 rad @@ -2017,7 +2011,7 @@ entities: parent: 1 - proto: ComputerComms entities: - - uid: 251 + - uid: 250 components: - type: Transform rot: -1.5707963267948966 rad @@ -2025,7 +2019,7 @@ entities: parent: 1 - proto: ComputerCrewMonitoring entities: - - uid: 252 + - uid: 251 components: - type: Transform rot: -1.5707963267948966 rad @@ -2033,7 +2027,7 @@ entities: parent: 1 - proto: ComputerEmergencyShuttle entities: - - uid: 253 + - uid: 252 components: - type: Transform rot: -1.5707963267948966 rad @@ -2041,7 +2035,7 @@ entities: parent: 1 - proto: ComputerRadar entities: - - uid: 254 + - uid: 253 components: - type: Transform rot: -1.5707963267948966 rad @@ -2049,54 +2043,54 @@ entities: parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 255 + - uid: 254 components: - type: Transform pos: -9.5,8.5 parent: 1 - - uid: 256 + - uid: 255 components: - type: Transform pos: -12.5,8.5 parent: 1 - proto: DogBed entities: - - uid: 257 + - uid: 256 components: - type: Transform pos: 6.5,3.5 parent: 1 - proto: DrinkGlass entities: - - uid: 258 + - uid: 257 components: - type: Transform pos: -11.693122,1.8635446 parent: 1 - proto: DrinkShaker entities: - - uid: 259 + - uid: 258 components: - type: Transform pos: -11.380622,2.749576 parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 260 + - uid: 259 components: - type: Transform pos: 6.5,4.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 261 + - uid: 260 components: - type: Transform pos: 5.5,4.5 parent: 1 - proto: GasOutletInjector entities: - - uid: 262 + - uid: 261 components: - type: Transform rot: 1.5707963267948966 rad @@ -2108,7 +2102,7 @@ entities: pipeLayer: Secondary - proto: GasPassiveVent entities: - - uid: 263 + - uid: 262 components: - type: Transform rot: 1.5707963267948966 rad @@ -2116,7 +2110,7 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 264 + - uid: 263 components: - type: Transform rot: 1.5707963267948966 rad @@ -2126,7 +2120,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 265 + - uid: 264 components: - type: Transform pos: -6.5,6.5 @@ -2135,7 +2129,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 266 + - uid: 265 components: - type: Transform rot: 3.141592653589793 rad @@ -2145,7 +2139,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 267 + - uid: 266 components: - type: Transform rot: -1.5707963267948966 rad @@ -2157,7 +2151,7 @@ entities: color: '#0335FCFF' - proto: GasPipeBendAlt1 entities: - - uid: 268 + - uid: 267 components: - type: Transform rot: -1.5707963267948966 rad @@ -2167,7 +2161,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 269 + - uid: 268 components: - type: Transform pos: 5.5,2.5 @@ -2176,7 +2170,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 270 + - uid: 269 components: - type: Transform rot: 3.141592653589793 rad @@ -2188,7 +2182,7 @@ entities: color: '#FF1212FF' - proto: GasPipeFourway entities: - - uid: 271 + - uid: 270 components: - type: Transform pos: 1.5,2.5 @@ -2199,7 +2193,7 @@ entities: color: '#0335FCFF' - proto: GasPipeFourwayAlt1 entities: - - uid: 272 + - uid: 271 components: - type: Transform pos: -7.5,2.5 @@ -2208,7 +2202,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 273 + - uid: 272 components: - type: Transform pos: 1.5,2.5 @@ -2219,7 +2213,7 @@ entities: color: '#FF1212FF' - proto: GasPipeStraight entities: - - uid: 274 + - uid: 273 components: - type: Transform rot: -1.5707963267948966 rad @@ -2229,7 +2223,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 275 + - uid: 274 components: - type: Transform rot: -1.5707963267948966 rad @@ -2239,7 +2233,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 276 + - uid: 275 components: - type: Transform rot: -1.5707963267948966 rad @@ -2249,7 +2243,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 277 + - uid: 276 components: - type: Transform rot: -1.5707963267948966 rad @@ -2259,7 +2253,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 278 + - uid: 277 components: - type: Transform rot: -1.5707963267948966 rad @@ -2269,7 +2263,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 279 + - uid: 278 components: - type: Transform rot: -1.5707963267948966 rad @@ -2279,7 +2273,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 280 + - uid: 279 components: - type: Transform rot: -1.5707963267948966 rad @@ -2289,7 +2283,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 281 + - uid: 280 components: - type: Transform rot: -1.5707963267948966 rad @@ -2299,7 +2293,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 282 + - uid: 281 components: - type: Transform rot: -1.5707963267948966 rad @@ -2309,7 +2303,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 283 + - uid: 282 components: - type: Transform rot: -1.5707963267948966 rad @@ -2319,7 +2313,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 284 + - uid: 283 components: - type: Transform rot: -1.5707963267948966 rad @@ -2329,7 +2323,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 285 + - uid: 284 components: - type: Transform rot: 3.141592653589793 rad @@ -2339,7 +2333,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 286 + - uid: 285 components: - type: Transform rot: 3.141592653589793 rad @@ -2349,7 +2343,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 287 + - uid: 286 components: - type: Transform pos: 1.5,3.5 @@ -2358,7 +2352,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 288 + - uid: 287 components: - type: Transform pos: 1.5,4.5 @@ -2367,7 +2361,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 289 + - uid: 288 components: - type: Transform rot: -1.5707963267948966 rad @@ -2377,7 +2371,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 290 + - uid: 289 components: - type: Transform rot: -1.5707963267948966 rad @@ -2387,7 +2381,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 291 + - uid: 290 components: - type: Transform rot: -1.5707963267948966 rad @@ -2397,7 +2391,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 292 + - uid: 291 components: - type: Transform rot: -1.5707963267948966 rad @@ -2407,7 +2401,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 293 + - uid: 292 components: - type: Transform rot: -1.5707963267948966 rad @@ -2417,7 +2411,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 294 + - uid: 293 components: - type: Transform rot: -1.5707963267948966 rad @@ -2427,7 +2421,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 295 + - uid: 294 components: - type: Transform rot: -1.5707963267948966 rad @@ -2437,7 +2431,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 296 + - uid: 295 components: - type: Transform rot: -1.5707963267948966 rad @@ -2447,7 +2441,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 297 + - uid: 296 components: - type: Transform rot: 3.141592653589793 rad @@ -2457,7 +2451,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 298 + - uid: 297 components: - type: Transform rot: 3.141592653589793 rad @@ -2467,7 +2461,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 299 + - uid: 298 components: - type: Transform rot: 3.141592653589793 rad @@ -2477,7 +2471,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 300 + - uid: 299 components: - type: Transform rot: 3.141592653589793 rad @@ -2487,7 +2481,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 301 + - uid: 300 components: - type: Transform rot: 1.5707963267948966 rad @@ -2497,7 +2491,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 302 + - uid: 301 components: - type: Transform rot: 1.5707963267948966 rad @@ -2507,7 +2501,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 303 + - uid: 302 components: - type: Transform rot: 1.5707963267948966 rad @@ -2517,7 +2511,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 304 + - uid: 303 components: - type: Transform rot: 1.5707963267948966 rad @@ -2527,7 +2521,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 305 + - uid: 304 components: - type: Transform pos: 1.5,-1.5 @@ -2536,7 +2530,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 306 + - uid: 305 components: - type: Transform rot: -1.5707963267948966 rad @@ -2546,7 +2540,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 307 + - uid: 306 components: - type: Transform rot: -1.5707963267948966 rad @@ -2556,7 +2550,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 308 + - uid: 307 components: - type: Transform rot: -1.5707963267948966 rad @@ -2568,7 +2562,7 @@ entities: color: '#0335FCFF' - proto: GasPipeStraightAlt1 entities: - - uid: 309 + - uid: 308 components: - type: Transform rot: -1.5707963267948966 rad @@ -2578,7 +2572,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 310 + - uid: 309 components: - type: Transform rot: 1.5707963267948966 rad @@ -2588,7 +2582,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 311 + - uid: 310 components: - type: Transform rot: 1.5707963267948966 rad @@ -2598,7 +2592,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 312 + - uid: 311 components: - type: Transform rot: 1.5707963267948966 rad @@ -2608,7 +2602,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 313 + - uid: 312 components: - type: Transform rot: 1.5707963267948966 rad @@ -2618,7 +2612,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 314 + - uid: 313 components: - type: Transform pos: -7.5,5.5 @@ -2627,7 +2621,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 315 + - uid: 314 components: - type: Transform pos: -7.5,4.5 @@ -2636,7 +2630,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 316 + - uid: 315 components: - type: Transform pos: -7.5,3.5 @@ -2645,7 +2639,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 317 + - uid: 316 components: - type: Transform pos: -7.5,1.5 @@ -2654,7 +2648,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 318 + - uid: 317 components: - type: Transform pos: -7.5,0.5 @@ -2663,7 +2657,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 319 + - uid: 318 components: - type: Transform pos: -7.5,-0.5 @@ -2672,7 +2666,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 320 + - uid: 319 components: - type: Transform rot: -1.5707963267948966 rad @@ -2682,7 +2676,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 321 + - uid: 320 components: - type: Transform rot: -1.5707963267948966 rad @@ -2692,7 +2686,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 322 + - uid: 321 components: - type: Transform rot: -1.5707963267948966 rad @@ -2702,7 +2696,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 323 + - uid: 322 components: - type: Transform rot: -1.5707963267948966 rad @@ -2712,7 +2706,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 324 + - uid: 323 components: - type: Transform rot: 1.5707963267948966 rad @@ -2722,7 +2716,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 325 + - uid: 324 components: - type: Transform rot: 1.5707963267948966 rad @@ -2732,7 +2726,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 326 + - uid: 325 components: - type: Transform rot: 1.5707963267948966 rad @@ -2742,7 +2736,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 327 + - uid: 326 components: - type: Transform rot: 1.5707963267948966 rad @@ -2752,7 +2746,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 328 + - uid: 327 components: - type: Transform rot: 1.5707963267948966 rad @@ -2762,7 +2756,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 329 + - uid: 328 components: - type: Transform rot: 1.5707963267948966 rad @@ -2772,7 +2766,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 330 + - uid: 329 components: - type: Transform rot: 1.5707963267948966 rad @@ -2782,7 +2776,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 331 + - uid: 330 components: - type: Transform rot: 1.5707963267948966 rad @@ -2792,7 +2786,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 332 + - uid: 331 components: - type: Transform rot: 1.5707963267948966 rad @@ -2802,7 +2796,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 333 + - uid: 332 components: - type: Transform rot: 3.141592653589793 rad @@ -2812,7 +2806,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 334 + - uid: 333 components: - type: Transform rot: 3.141592653589793 rad @@ -2822,7 +2816,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 335 + - uid: 334 components: - type: Transform rot: 3.141592653589793 rad @@ -2832,7 +2826,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 336 + - uid: 335 components: - type: Transform rot: 1.5707963267948966 rad @@ -2842,7 +2836,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 337 + - uid: 336 components: - type: Transform rot: 1.5707963267948966 rad @@ -2852,7 +2846,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 338 + - uid: 337 components: - type: Transform rot: 1.5707963267948966 rad @@ -2862,7 +2856,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 339 + - uid: 338 components: - type: Transform pos: 1.5,1.5 @@ -2871,7 +2865,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 340 + - uid: 339 components: - type: Transform pos: 1.5,0.5 @@ -2880,7 +2874,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 341 + - uid: 340 components: - type: Transform pos: 1.5,-0.5 @@ -2889,7 +2883,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 342 + - uid: 341 components: - type: Transform rot: -1.5707963267948966 rad @@ -2899,7 +2893,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 343 + - uid: 342 components: - type: Transform rot: -1.5707963267948966 rad @@ -2909,7 +2903,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 344 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad @@ -2921,7 +2915,7 @@ entities: color: '#FF1212FF' - proto: GasPipeTJunction entities: - - uid: 345 + - uid: 344 components: - type: Transform rot: 1.5707963267948966 rad @@ -2931,7 +2925,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 346 + - uid: 345 components: - type: Transform rot: 1.5707963267948966 rad @@ -2941,7 +2935,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 347 + - uid: 346 components: - type: Transform rot: -1.5707963267948966 rad @@ -2951,7 +2945,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 348 + - uid: 347 components: - type: Transform rot: -1.5707963267948966 rad @@ -2961,7 +2955,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 349 + - uid: 348 components: - type: Transform rot: 1.5707963267948966 rad @@ -2971,7 +2965,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 350 + - uid: 349 components: - type: Transform rot: 3.141592653589793 rad @@ -2983,7 +2977,7 @@ entities: color: '#0335FCFF' - proto: GasPipeTJunctionAlt1 entities: - - uid: 351 + - uid: 350 components: - type: Transform rot: 1.5707963267948966 rad @@ -2993,7 +2987,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 352 + - uid: 351 components: - type: Transform rot: 3.141592653589793 rad @@ -3003,7 +2997,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 353 + - uid: 352 components: - type: Transform pos: -7.5,6.5 @@ -3012,7 +3006,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 354 + - uid: 353 components: - type: Transform rot: -1.5707963267948966 rad @@ -3022,7 +3016,7 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 355 + - uid: 354 components: - type: Transform pos: 1.5,6.5 @@ -3033,7 +3027,7 @@ entities: color: '#FF1212FF' - proto: GasPressurePump entities: - - uid: 356 + - uid: 355 components: - type: Transform rot: 1.5707963267948966 rad @@ -3045,7 +3039,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 357 + - uid: 356 components: - type: Transform rot: -1.5707963267948966 rad @@ -3061,7 +3055,7 @@ entities: color: '#FF1212FF' - proto: GasVentPump entities: - - uid: 358 + - uid: 357 components: - type: Transform rot: 1.5707963267948966 rad @@ -3071,7 +3065,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 359 + - uid: 358 components: - type: Transform rot: -1.5707963267948966 rad @@ -3081,7 +3075,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 360 + - uid: 359 components: - type: Transform rot: -1.5707963267948966 rad @@ -3091,7 +3085,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 361 + - uid: 360 components: - type: Transform rot: 1.5707963267948966 rad @@ -3101,7 +3095,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 362 + - uid: 361 components: - type: Transform rot: 1.5707963267948966 rad @@ -3111,7 +3105,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 363 + - uid: 362 components: - type: Transform rot: -1.5707963267948966 rad @@ -3121,7 +3115,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 364 + - uid: 363 components: - type: Transform rot: -1.5707963267948966 rad @@ -3131,7 +3125,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 365 + - uid: 364 components: - type: Transform rot: -1.5707963267948966 rad @@ -3141,7 +3135,7 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 366 + - uid: 365 components: - type: Transform pos: -10.5,-0.5 @@ -3152,7 +3146,7 @@ entities: color: '#0335FCFF' - proto: GasVentScrubber entities: - - uid: 367 + - uid: 366 components: - type: Transform rot: -1.5707963267948966 rad @@ -3164,7 +3158,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 368 + - uid: 367 components: - type: Transform rot: 1.5707963267948966 rad @@ -3176,7 +3170,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 369 + - uid: 368 components: - type: Transform rot: -1.5707963267948966 rad @@ -3191,7 +3185,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 370 + - uid: 369 components: - type: Transform rot: 3.141592653589793 rad @@ -3203,7 +3197,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 371 + - uid: 370 components: - type: Transform rot: -1.5707963267948966 rad @@ -3218,7 +3212,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 372 + - uid: 371 components: - type: Transform rot: 1.5707963267948966 rad @@ -3230,7 +3224,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 373 + - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad @@ -3242,7 +3236,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 374 + - uid: 373 components: - type: Transform rot: 1.5707963267948966 rad @@ -3257,7 +3251,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 375 + - uid: 374 components: - type: Transform rot: 1.5707963267948966 rad @@ -3269,7 +3263,7 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 376 + - uid: 375 components: - type: Transform pos: -9.5,-0.5 @@ -3282,248 +3276,248 @@ entities: color: '#FF1212FF' - proto: GeneratorBasic15kW entities: - - uid: 377 + - uid: 376 components: - type: Transform pos: -10.5,-0.5 parent: 1 - - uid: 378 + - uid: 377 components: - type: Transform pos: -9.5,-0.5 parent: 1 - proto: GravityGeneratorMini entities: - - uid: 379 + - uid: 378 components: - type: Transform pos: 8.5,0.5 parent: 1 - proto: Grille entities: - - uid: 380 + - uid: 379 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 1 - - uid: 381 + - uid: 380 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 1 - - uid: 382 + - uid: 381 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 383 + - uid: 382 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 384 + - uid: 383 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 385 + - uid: 384 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 386 + - uid: 385 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 1 - - uid: 387 + - uid: 386 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 1 - - uid: 388 + - uid: 387 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 1 - - uid: 389 + - uid: 388 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 1 - - uid: 390 + - uid: 389 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,8.5 parent: 1 - - uid: 391 + - uid: 390 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-3.5 parent: 1 - - uid: 392 + - uid: 391 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 1 - - uid: 393 + - uid: 392 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,4.5 parent: 1 - - uid: 394 + - uid: 393 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 395 + - uid: 394 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - - uid: 396 + - uid: 395 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - - uid: 397 + - uid: 396 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 398 + - uid: 397 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,5.5 parent: 1 - - uid: 399 + - uid: 398 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 1 - - uid: 400 + - uid: 399 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 401 + - uid: 400 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 402 + - uid: 401 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,1.5 parent: 1 - - uid: 403 + - uid: 402 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,1.5 parent: 1 - - uid: 404 + - uid: 403 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,2.5 parent: 1 - - uid: 405 + - uid: 404 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,8.5 parent: 1 - - uid: 406 + - uid: 405 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,8.5 parent: 1 - - uid: 407 + - uid: 406 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 408 + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - - uid: 409 + - uid: 408 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-3.5 parent: 1 - - uid: 410 + - uid: 409 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 1 - - uid: 411 + - uid: 410 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,4.5 parent: 1 - - uid: 412 + - uid: 411 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 1 - - uid: 413 + - uid: 412 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 414 + - uid: 413 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 - - uid: 415 + - uid: 414 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 1 - - uid: 416 + - uid: 415 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,4.5 parent: 1 - - uid: 417 + - uid: 416 components: - type: Transform rot: 3.141592653589793 rad @@ -3531,13 +3525,13 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 418 + - uid: 417 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,1.5 parent: 1 - - uid: 419 + - uid: 418 components: - type: Transform rot: -1.5707963267948966 rad @@ -3545,47 +3539,47 @@ entities: parent: 1 - proto: Handcuffs entities: - - uid: 420 + - uid: 419 components: - type: Transform pos: 4.54217,7.617451 parent: 1 - proto: HandheldHealthAnalyzer entities: - - uid: 421 + - uid: 420 components: - type: Transform pos: -11.016003,5.4879494 parent: 1 - proto: LockerEvidence entities: - - uid: 422 + - uid: 421 components: - type: Transform pos: 6.5,7.5 parent: 1 - proto: LockerMedicineFilled entities: - - uid: 423 + - uid: 422 components: - type: Transform pos: -12.5,6.5 parent: 1 - proto: LockerWallEvacRepairFilled entities: - - uid: 424 + - uid: 423 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,4.5 parent: 1 - - uid: 425 + - uid: 424 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 - - uid: 426 + - uid: 425 components: - type: Transform rot: -1.5707963267948966 rad @@ -3593,41 +3587,41 @@ entities: parent: 1 - proto: MedicalBed entities: - - uid: 427 + - uid: 426 components: - type: Transform pos: -12.5,7.5 parent: 1 - - uid: 428 + - uid: 427 components: - type: Transform pos: -11.5,7.5 parent: 1 - - uid: 429 + - uid: 428 components: - type: Transform pos: -10.5,7.5 parent: 1 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 430 + - uid: 429 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-2.5 parent: 1 - - uid: 431 + - uid: 430 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-1.5 parent: 1 - - uid: 432 + - uid: 431 components: - type: Transform pos: -11.5,-1.5 parent: 1 - - uid: 433 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad @@ -3635,139 +3629,139 @@ entities: parent: 1 - proto: PowerCellRecharger entities: - - uid: 434 + - uid: 433 components: - type: Transform pos: -10.5,5.5 parent: 1 - proto: Poweredlight entities: - - uid: 435 + - uid: 434 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,1.5 parent: 1 - - uid: 436 + - uid: 435 components: - type: Transform pos: -12.5,7.5 parent: 1 - - uid: 437 + - uid: 436 components: - type: Transform pos: -9.5,7.5 parent: 1 - - uid: 438 + - uid: 437 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,5.5 parent: 1 - - uid: 439 + - uid: 438 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,5.5 parent: 1 - - uid: 440 + - uid: 439 components: - type: Transform pos: -10.5,3.5 parent: 1 - - uid: 441 + - uid: 440 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-2.5 parent: 1 - - uid: 442 + - uid: 441 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,4.5 parent: 1 - - uid: 443 + - uid: 442 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 444 + - uid: 443 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,4.5 parent: 1 - - uid: 445 + - uid: 444 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 1 - - uid: 446 + - uid: 445 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 1 - - uid: 447 + - uid: 446 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,5.5 parent: 1 - - uid: 448 + - uid: 447 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 449 + - uid: 448 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 450 + - uid: 449 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 451 + - uid: 450 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,0.5 parent: 1 - - uid: 452 + - uid: 451 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 1 - - uid: 453 + - uid: 452 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 454 + - uid: 453 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 455 + - uid: 454 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 456 + - uid: 455 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - - uid: 457 + - uid: 456 components: - type: Transform rot: -1.5707963267948966 rad @@ -3775,309 +3769,309 @@ entities: parent: 1 - proto: RandomFoodMeal entities: - - uid: 458 + - uid: 457 components: - type: Transform pos: 7.5,0.5 parent: 1 - proto: Screen entities: - - uid: 607 + - uid: 458 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 608 + - uid: 459 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 609 + - uid: 460 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 610 + - uid: 461 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 611 + - uid: 462 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 612 + - uid: 463 components: - type: Transform pos: -10.5,0.5 parent: 1 - - uid: 613 + - uid: 464 components: - type: Transform pos: -11.5,4.5 parent: 1 - - uid: 614 + - uid: 465 components: - type: Transform pos: 4.5,4.5 parent: 1 - proto: ShotGunCabinetFilled entities: - - uid: 459 + - uid: 466 components: - type: Transform pos: 7.5,4.5 parent: 1 - proto: ShuttleWindow entities: - - uid: 460 + - uid: 467 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 461 + - uid: 468 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-3.5 parent: 1 - - uid: 462 + - uid: 469 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 463 + - uid: 470 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 464 + - uid: 471 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 465 + - uid: 472 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 1 - - uid: 466 + - uid: 473 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 467 + - uid: 474 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 1 - - uid: 468 + - uid: 475 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-3.5 parent: 1 - - uid: 469 + - uid: 476 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,2.5 parent: 1 - - uid: 470 + - uid: 477 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,1.5 parent: 1 - - uid: 471 + - uid: 478 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 1 - - uid: 472 + - uid: 479 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,8.5 parent: 1 - - uid: 473 + - uid: 480 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,8.5 parent: 1 - - uid: 474 + - uid: 481 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 475 + - uid: 482 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - - uid: 476 + - uid: 483 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 477 + - uid: 484 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,8.5 parent: 1 - - uid: 478 + - uid: 485 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 1 - - uid: 479 + - uid: 486 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 1 - - uid: 480 + - uid: 487 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 481 + - uid: 488 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,4.5 parent: 1 - - uid: 482 + - uid: 489 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 1 - - uid: 483 + - uid: 490 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - - uid: 484 + - uid: 491 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 1 - - uid: 485 + - uid: 492 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 1 - - uid: 486 + - uid: 493 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 1 - - uid: 487 + - uid: 494 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 488 + - uid: 495 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - - uid: 489 + - uid: 496 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 1 - - uid: 490 + - uid: 497 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 1 - - uid: 491 + - uid: 498 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 492 + - uid: 499 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 493 + - uid: 500 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 - - uid: 494 + - uid: 501 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 495 + - uid: 502 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,4.5 parent: 1 - - uid: 496 + - uid: 503 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 1 - - uid: 497 + - uid: 504 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,4.5 parent: 1 - - uid: 498 + - uid: 505 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,4.5 parent: 1 - - uid: 499 + - uid: 506 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,7.5 parent: 1 - - uid: 500 + - uid: 507 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,5.5 parent: 1 - - uid: 501 + - uid: 508 components: - type: Transform rot: 3.141592653589793 rad @@ -4085,77 +4079,77 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 502 + - uid: 509 components: - type: Transform pos: -11.5,-0.5 parent: 1 - proto: SodaDispenser entities: - - uid: 503 + - uid: 510 components: - type: Transform pos: -9.5,3.5 parent: 1 - proto: StasisBed entities: - - uid: 504 + - uid: 511 components: - type: Transform pos: -9.5,7.5 parent: 1 - proto: SubstationWallBasic entities: - - uid: 505 + - uid: 512 components: - type: Transform pos: -11.5,0.5 parent: 1 - proto: Table entities: - - uid: 506 + - uid: 513 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 507 + - uid: 514 components: - type: Transform pos: 5.5,7.5 parent: 1 - proto: TableCounterMetal entities: - - uid: 508 + - uid: 515 components: - type: Transform pos: -11.5,5.5 parent: 1 - - uid: 509 + - uid: 516 components: - type: Transform pos: -10.5,5.5 parent: 1 - proto: TableCounterWood entities: - - uid: 510 + - uid: 517 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,2.5 parent: 1 - - uid: 511 + - uid: 518 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 1 - - uid: 512 + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 1 - - uid: 513 + - uid: 520 components: - type: Transform rot: -1.5707963267948966 rad @@ -4163,13 +4157,13 @@ entities: parent: 1 - proto: TableFancyBlue entities: - - uid: 514 + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,0.5 parent: 1 - - uid: 515 + - uid: 522 components: - type: Transform rot: 3.141592653589793 rad @@ -4177,82 +4171,82 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 516 + - uid: 523 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 517 + - uid: 524 components: - type: Transform pos: -8.5,2.5 parent: 1 - proto: Thruster entities: - - uid: 518 + - uid: 525 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,3.5 parent: 1 - - uid: 519 + - uid: 526 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 1 - - uid: 520 + - uid: 527 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 521 + - uid: 528 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 522 + - uid: 529 components: - type: Transform pos: -1.5,8.5 parent: 1 - - uid: 523 + - uid: 530 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 1 - - uid: 524 + - uid: 531 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,6.5 parent: 1 - - uid: 525 + - uid: 532 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-1.5 parent: 1 - - uid: 526 + - uid: 533 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 - - uid: 527 + - uid: 534 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 1 - - uid: 528 + - uid: 535 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 1 - - uid: 529 + - uid: 536 components: - type: Transform rot: 3.141592653589793 rad @@ -4260,363 +4254,363 @@ entities: parent: 1 - proto: VendingMachineBooze entities: - - uid: 530 + - uid: 537 components: - type: Transform pos: -11.5,3.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 531 + - uid: 538 components: - type: Transform pos: -12.5,5.5 parent: 1 - proto: VendingMachineSec entities: - - uid: 532 + - uid: 539 components: - type: Transform pos: 7.5,7.5 parent: 1 - proto: WallShuttle entities: - - uid: 533 + - uid: 540 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-3.5 parent: 1 - - uid: 534 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 - - uid: 535 + - uid: 542 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 536 + - uid: 543 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 537 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-3.5 parent: 1 - - uid: 538 + - uid: 545 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 539 + - uid: 546 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 540 + - uid: 547 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - - uid: 541 + - uid: 548 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 1 - - uid: 542 + - uid: 549 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,6.5 parent: 1 - - uid: 543 + - uid: 550 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 1 - - uid: 544 + - uid: 551 components: - type: Transform pos: -12.5,4.5 parent: 1 - - uid: 545 + - uid: 552 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,7.5 parent: 1 - - uid: 546 + - uid: 553 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,6.5 parent: 1 - - uid: 547 + - uid: 554 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,5.5 parent: 1 - - uid: 548 + - uid: 555 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,4.5 parent: 1 - - uid: 549 + - uid: 556 components: - type: Transform pos: -12.5,0.5 parent: 1 - - uid: 550 + - uid: 557 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-0.5 parent: 1 - - uid: 551 + - uid: 558 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-1.5 parent: 1 - - uid: 552 + - uid: 559 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-2.5 parent: 1 - - uid: 553 + - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-3.5 parent: 1 - - uid: 554 + - uid: 561 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 1 - - uid: 555 + - uid: 562 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 1 - - uid: 556 + - uid: 563 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,8.5 parent: 1 - - uid: 557 + - uid: 564 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 558 + - uid: 565 components: - type: Transform pos: -11.5,4.5 parent: 1 - - uid: 559 + - uid: 566 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,4.5 parent: 1 - - uid: 560 + - uid: 567 components: - type: Transform pos: -10.5,4.5 parent: 1 - - uid: 561 + - uid: 568 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 1 - - uid: 562 + - uid: 569 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 1 - - uid: 563 + - uid: 570 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 564 + - uid: 571 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,0.5 parent: 1 - - uid: 565 + - uid: 572 components: - type: Transform pos: -12.5,-0.5 parent: 1 - - uid: 566 + - uid: 573 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,0.5 parent: 1 - - uid: 567 + - uid: 574 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,8.5 parent: 1 - - uid: 568 + - uid: 575 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 569 + - uid: 576 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 570 + - uid: 577 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 571 + - uid: 578 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 572 + - uid: 579 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 573 + - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 1 - - uid: 574 + - uid: 581 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 1 - - uid: 575 + - uid: 582 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,8.5 parent: 1 - - uid: 576 + - uid: 583 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,8.5 parent: 1 - - uid: 577 + - uid: 584 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 1 - - uid: 578 + - uid: 585 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,8.5 parent: 1 - - uid: 579 + - uid: 586 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,8.5 parent: 1 - - uid: 580 + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,8.5 parent: 1 - - uid: 581 + - uid: 588 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,4.5 parent: 1 - - uid: 582 + - uid: 589 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 1 - - uid: 583 + - uid: 590 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,4.5 parent: 1 - - uid: 584 + - uid: 591 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 585 + - uid: 592 components: - type: Transform pos: -8.5,0.5 parent: 1 - - uid: 586 + - uid: 593 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 587 + - uid: 594 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 588 + - uid: 595 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 589 + - uid: 596 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 590 + - uid: 597 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 591 + - uid: 598 components: - type: Transform rot: 3.141592653589793 rad @@ -4624,65 +4618,65 @@ entities: parent: 1 - proto: WallShuttleDiagonal entities: - - uid: 592 + - uid: 599 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 1 - - uid: 593 + - uid: 600 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-0.5 parent: 1 - - uid: 594 + - uid: 601 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 595 + - uid: 602 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 1 - - uid: 596 + - uid: 603 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,7.5 parent: 1 - - uid: 597 + - uid: 604 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 598 + - uid: 605 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 1 - - uid: 599 + - uid: 606 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,5.5 parent: 1 - - uid: 600 + - uid: 607 components: - type: Transform pos: -13.5,8.5 parent: 1 - - uid: 601 + - uid: 608 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 1 - - uid: 602 + - uid: 609 components: - type: Transform rot: 1.5707963267948966 rad @@ -4690,7 +4684,7 @@ entities: parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 603 + - uid: 610 components: - type: Transform rot: 3.141592653589793 rad @@ -4698,20 +4692,20 @@ entities: parent: 1 - proto: WeaponDisabler entities: - - uid: 604 + - uid: 611 components: - type: Transform pos: 5.2713366,7.627875 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 605 + - uid: 612 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,3.5 parent: 1 - - uid: 606 + - uid: 613 components: - type: Transform pos: -8.5,2.5 diff --git a/Resources/Maps/_Starlight/Shuttles/security_prism.yml b/Resources/Maps/_Starlight/Shuttles/security_prism.yml index 732252c47522..d8814c347eb8 100644 --- a/Resources/Maps/_Starlight/Shuttles/security_prism.yml +++ b/Resources/Maps/_Starlight/Shuttles/security_prism.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 261.2.0 + engineVersion: 264.0.0 forkId: Starlight forkVersion: 1732131340 - time: 07/05/2025 07:38:30 - entityCount: 166 + time: 08/12/2025 03:44:40 + entityCount: 168 maps: [] grids: - 1 @@ -27,7 +27,7 @@ entities: - type: MetaData name: NT SR-01 - type: Transform - pos: -0.9166667,0.47463483 + pos: 199.08334,200.47464 parent: invalid - type: MapGrid chunks: @@ -209,8 +209,8 @@ entities: parent: 1 - type: DeviceList devices: - - 81 - - 82 + - 86 + - 87 - proto: AirCanister entities: - uid: 3 @@ -285,24 +285,24 @@ entities: parent: 1 - proto: BlastDoor entities: - - uid: 161 + - uid: 13 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 162 + - uid: 14 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 164 + - uid: 15 components: - type: Transform pos: 2.5,19.5 parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 13 + - uid: 16 components: - type: Transform rot: -1.5707963267948966 rad @@ -310,261 +310,267 @@ entities: parent: 1 - proto: ButtonFrameExit entities: - - uid: 165 + - uid: 17 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,15.5 parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 - proto: CableApcExtension entities: - - uid: 14 + - uid: 19 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 15 + - uid: 20 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 16 + - uid: 21 components: - type: Transform pos: 2.5,19.5 parent: 1 - - uid: 17 + - uid: 22 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 18 + - uid: 23 components: - type: Transform pos: 0.5,19.5 parent: 1 - - uid: 19 + - uid: 24 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 20 + - uid: 25 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 21 + - uid: 26 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 22 + - uid: 27 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 23 + - uid: 28 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 24 + - uid: 29 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 25 + - uid: 30 components: - type: Transform pos: -1.5,15.5 parent: 1 - - uid: 26 + - uid: 31 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 27 + - uid: 32 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 28 + - uid: 33 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 29 + - uid: 34 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 30 + - uid: 35 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 31 + - uid: 36 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 32 + - uid: 37 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 33 + - uid: 38 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 34 + - uid: 39 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 35 + - uid: 40 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 36 + - uid: 41 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 37 + - uid: 42 components: - type: Transform pos: 0.5,13.5 parent: 1 - proto: CableHV entities: - - uid: 38 + - uid: 43 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 39 + - uid: 44 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 40 + - uid: 45 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 41 + - uid: 46 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 42 + - uid: 47 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 43 + - uid: 48 components: - type: Transform pos: 0.5,12.5 parent: 1 - proto: CableMV entities: - - uid: 44 + - uid: 49 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 45 + - uid: 50 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 46 + - uid: 51 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 47 + - uid: 52 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 48 + - uid: 53 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 49 + - uid: 54 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 50 + - uid: 55 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 51 + - uid: 56 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 52 + - uid: 57 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 53 + - uid: 58 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 54 + - uid: 59 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 55 + - uid: 60 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 56 + - uid: 61 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 57 + - uid: 62 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 58 + - uid: 63 components: - type: Transform pos: -0.5,17.5 parent: 1 - - uid: 59 + - uid: 64 components: - type: Transform pos: -0.5,18.5 parent: 1 - - uid: 60 + - uid: 65 components: - type: Transform pos: 0.5,18.5 parent: 1 - - uid: 61 + - uid: 66 components: - type: Transform pos: 1.5,18.5 parent: 1 - proto: CableTerminal entities: - - uid: 62 + - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad @@ -572,55 +578,55 @@ entities: parent: 1 - proto: Catwalk entities: - - uid: 63 + - uid: 68 components: - type: Transform pos: 4.5,19.5 parent: 1 - - uid: 64 + - uid: 69 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 65 + - uid: 70 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 66 + - uid: 71 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 67 + - uid: 72 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 68 + - uid: 73 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 69 + - uid: 74 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 70 + - uid: 75 components: - type: Transform pos: -1.5,18.5 parent: 1 - proto: Chair entities: - - uid: 71 + - uid: 76 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,16.5 parent: 1 - - uid: 72 + - uid: 77 components: - type: Transform rot: -1.5707963267948966 rad @@ -628,13 +634,13 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 73 + - uid: 78 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,19.5 parent: 1 - - uid: 74 + - uid: 79 components: - type: Transform rot: 3.141592653589793 rad @@ -642,21 +648,21 @@ entities: parent: 1 - proto: ComputerIFF entities: - - uid: 75 + - uid: 80 components: - type: Transform pos: 0.5,20.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 76 + - uid: 81 components: - type: Transform pos: 1.5,20.5 parent: 1 - proto: GasPassiveVent entities: - - uid: 77 + - uid: 82 components: - type: Transform rot: -1.5707963267948966 rad @@ -664,7 +670,7 @@ entities: parent: 1 - proto: GasPipeStraight entities: - - uid: 78 + - uid: 83 components: - type: Transform rot: 1.5707963267948966 rad @@ -672,7 +678,7 @@ entities: parent: 1 - type: VentCrawTube connected: True - - uid: 79 + - uid: 84 components: - type: Transform rot: 1.5707963267948966 rad @@ -682,7 +688,7 @@ entities: connected: True - proto: GasPort entities: - - uid: 80 + - uid: 85 components: - type: Transform rot: 3.141592653589793 rad @@ -692,7 +698,7 @@ entities: connected: True - proto: GasVentPump entities: - - uid: 81 + - uid: 86 components: - type: Transform pos: 0.5,14.5 @@ -706,7 +712,7 @@ entities: - 2 - proto: GasVentScrubber entities: - - uid: 82 + - uid: 87 components: - type: Transform rot: 1.5707963267948966 rad @@ -721,69 +727,69 @@ entities: - 2 - proto: GeneratorBasic15kW entities: - - uid: 83 + - uid: 88 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 84 + - uid: 89 components: - type: Transform pos: 1.5,12.5 parent: 1 - proto: GravityGeneratorMini entities: - - uid: 85 + - uid: 90 components: - type: Transform pos: 2.5,13.5 parent: 1 - proto: Grille entities: - - uid: 86 + - uid: 91 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 87 + - uid: 92 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 88 + - uid: 93 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 89 + - uid: 94 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 90 + - uid: 95 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 91 + - uid: 96 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,21.5 parent: 1 - - uid: 92 + - uid: 97 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 1 - - uid: 93 + - uid: 98 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 1 - - uid: 94 + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad @@ -791,7 +797,7 @@ entities: parent: 1 - proto: GrilleDiagonal entities: - - uid: 95 + - uid: 100 components: - type: Transform rot: 3.141592653589793 rad @@ -799,72 +805,72 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 96 + - uid: 101 components: - type: Transform pos: -0.5,13.5 parent: 1 - proto: LightBulbCrystalBlue entities: - - uid: 98 + - uid: 103 components: - type: Transform - parent: 97 + parent: 102 - type: Physics canCollide: False - - uid: 100 + - uid: 105 components: - type: Transform - parent: 99 + parent: 104 - type: Physics canCollide: False - proto: PlastitaniumWindow entities: - - uid: 101 + - uid: 106 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 102 + - uid: 107 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 103 + - uid: 108 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 104 + - uid: 109 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 105 + - uid: 110 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,20.5 parent: 1 - - uid: 106 + - uid: 111 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,21.5 parent: 1 - - uid: 107 + - uid: 112 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 1 - - uid: 108 + - uid: 113 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 1 - - uid: 109 + - uid: 114 components: - type: Transform rot: 1.5707963267948966 rad @@ -872,7 +878,7 @@ entities: parent: 1 - proto: PlastitaniumWindowDiagonal entities: - - uid: 110 + - uid: 115 components: - type: Transform rot: 3.141592653589793 rad @@ -880,25 +886,25 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 111 + - uid: 116 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,13.5 parent: 1 - - uid: 112 + - uid: 117 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,13.5 parent: 1 - - uid: 113 + - uid: 118 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 114 + - uid: 119 components: - type: Transform rot: 1.5707963267948966 rad @@ -906,13 +912,13 @@ entities: parent: 1 - proto: PoweredlightExterior entities: - - uid: 115 + - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 116 + - uid: 121 components: - type: Transform rot: 1.5707963267948966 rad @@ -920,13 +926,13 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 117 + - uid: 122 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,20.5 parent: 1 - - uid: 118 + - uid: 123 components: - type: Transform rot: -1.5707963267948966 rad @@ -934,7 +940,7 @@ entities: parent: 1 - proto: PoweredStrobeLightPolice entities: - - uid: 97 + - uid: 102 components: - type: Transform rot: -1.5707963267948966 rad @@ -945,12 +951,12 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 98 + ent: 103 - type: ApcPowerReceiver powerLoad: 0 - type: DamageOnInteract isDamageActive: False - - uid: 99 + - uid: 104 components: - type: Transform rot: 1.5707963267948966 rad @@ -961,21 +967,21 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 100 + ent: 105 - type: ApcPowerReceiver powerLoad: 0 - type: DamageOnInteract isDamageActive: False - proto: Rack entities: - - uid: 119 + - uid: 124 components: - type: Transform pos: 2.5,14.5 parent: 1 - proto: Railing entities: - - uid: 120 + - uid: 125 components: - type: Transform rot: 1.5707963267948966 rad @@ -983,15 +989,30 @@ entities: parent: 1 - proto: RailingCorner entities: - - uid: 121 + - uid: 126 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,15.5 parent: 1 +- proto: SignalButton + entities: + - uid: 127 + components: + - type: MetaData + name: press here to exit + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 168: + - - Pressed + - Toggle - proto: SignalButtonDirectional entities: - - uid: 122 + - uid: 128 components: - type: MetaData desc: It's a button for activating the sirens. @@ -1002,13 +1023,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 99: + 104: - - Pressed - Toggle - 97: + 102: - - Pressed - Toggle - - uid: 166 + - uid: 129 components: - type: Transform rot: -1.5707963267948966 rad @@ -1016,25 +1037,25 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 162: + 14: - - Pressed - Toggle - 164: + 15: - - Pressed - Toggle - 161: + 13: - - Pressed - Toggle - proto: SMESBasic entities: - - uid: 123 + - uid: 130 components: - type: Transform pos: 0.5,12.5 parent: 1 - proto: SubstationWallBasic entities: - - uid: 124 + - uid: 131 components: - type: Transform rot: 1.5707963267948966 rad @@ -1042,77 +1063,77 @@ entities: parent: 1 - proto: SuitStorageSec entities: - - uid: 125 + - uid: 132 components: - type: Transform pos: -0.5,14.5 parent: 1 - proto: Thruster entities: - - uid: 126 + - uid: 133 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,10.5 parent: 1 - - uid: 127 + - uid: 134 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,11.5 parent: 1 - - uid: 128 + - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 129 + - uid: 136 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 1 - - uid: 130 + - uid: 137 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 1 - - uid: 131 + - uid: 138 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,10.5 parent: 1 - - uid: 132 + - uid: 139 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,11.5 parent: 1 - - uid: 133 + - uid: 140 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 134 + - uid: 141 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 135 + - uid: 142 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 136 + - uid: 143 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 137 + - uid: 144 components: - type: Transform rot: 1.5707963267948966 rad @@ -1120,134 +1141,134 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 138 + - uid: 145 components: - type: Transform pos: 2.5363166,14.531964 parent: 1 - proto: ToolboxMechanicalFilledAllTools entities: - - uid: 139 + - uid: 146 components: - type: Transform pos: 2.5259,14.767419 parent: 1 - proto: WallPlastitanium entities: - - uid: 140 + - uid: 147 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 141 + - uid: 148 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 142 + - uid: 149 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 143 + - uid: 150 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 144 + - uid: 151 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 145 + - uid: 152 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 146 + - uid: 153 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 147 + - uid: 154 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 148 + - uid: 155 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 149 + - uid: 156 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 150 + - uid: 157 components: - type: Transform pos: 3.5,17.5 parent: 1 - - uid: 151 + - uid: 158 components: - type: Transform pos: -1.5,17.5 parent: 1 - - uid: 152 + - uid: 159 components: - type: Transform pos: -0.5,18.5 parent: 1 - - uid: 153 + - uid: 160 components: - type: Transform pos: 2.5,18.5 parent: 1 - proto: WallPlastitaniumDiagonal entities: - - uid: 154 + - uid: 161 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 155 + - uid: 162 components: - type: Transform pos: -1.5,18.5 parent: 1 - - uid: 156 + - uid: 163 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 157 + - uid: 164 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 1 - - uid: 158 + - uid: 165 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,18.5 parent: 1 - - uid: 159 + - uid: 166 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,17.5 parent: 1 - - uid: 160 + - uid: 167 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,17.5 parent: 1 -- proto: WindoorSecureSecurityLocked +- proto: WindoorSecureArmoryLocked entities: - - uid: 163 + - uid: 168 components: - type: Transform rot: -1.5707963267948966 rad diff --git a/Resources/Maps/_Starlight/Stations/Prism.yml b/Resources/Maps/_Starlight/Stations/Prism.yml index 275e09359bb7..a0d0bb41c2c1 100644 --- a/Resources/Maps/_Starlight/Stations/Prism.yml +++ b/Resources/Maps/_Starlight/Stations/Prism.yml @@ -4,8 +4,8 @@ meta: engineVersion: 264.0.0 forkId: Starlight forkVersion: 1732131340 - time: 08/02/2025 23:06:03 - entityCount: 24840 + time: 08/14/2025 05:34:17 + entityCount: 24876 maps: - 1 grids: @@ -52,6 +52,7 @@ tilemap: 36: FloorSteelPavement 2: FloorTechMaint 9: FloorTechMaint2 + 52: FloorTechMaintDark 16: FloorWhite 27: FloorWhiteDiagonal 22: FloorWhiteMini @@ -143,7 +144,7 @@ entities: version: 7 0,3: ind: 0,3 - tiles: CwAAAAACAAsAAAAAAwALAAAAAAMAAQAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAIAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAoAAAAAAgAKAAAAAAAACgAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAADAAEAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAQAGAAAAAAEABgAAAAABAAoAAAAAAAAmAAAAAAAAJgAAAAACACYAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAAAQAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAYAAAAAAAAKAAAAAAEAJgAAAAADACYAAAAAAwAmAAAAAAAABQAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAEAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAGAAAAAAAACgAAAAAAAAoAAAAAAwAKAAAAAAIACgAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAABAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAEAAAAAAAAnAAAAAAAAJwAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAKAAAAAAAACgAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAwAGAAAAAAMABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAwAGAAAAAAIABgAAAAADAAYAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAwAGAAAAAAMABgAAAAADAAYAAAAAAwAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAwAGAAAAAAMABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAAABgAAAAAAAA== + tiles: CwAAAAACAAsAAAAAAwALAAAAAAMAAQAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAIAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAoAAAAAAgAKAAAAAAAACgAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAADAAEAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAQAGAAAAAAEABgAAAAABAAoAAAAAAAAmAAAAAAAAJgAAAAACACYAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAAAQAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAYAAAAAAAAKAAAAAAEAJgAAAAADACYAAAAAAwAmAAAAAAAABQAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAEAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAGAAAAAAAACgAAAAAAAAoAAAAAAwAKAAAAAAIACgAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAABAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAEAAAAAAAAnAAAAAAAAJwAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAKAAAAAAAACgAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAwAGAAAAAAMABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAwAGAAAAAAIABgAAAAADAAYAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAwAGAAAAAAMABgAAAAADAAYAAAAAAwAGAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAwAGAAAAAAMABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAAABgAAAAAAAA== version: 7 -2,3: ind: -2,3 @@ -195,7 +196,7 @@ entities: version: 7 2,2: ind: 2,2 - tiles: AQAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAABAAsAAAAAAAALAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAACAAsAAAAAAAALAAAAAAEACwAAAAAAAAsAAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAwABAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAABAAAAAAAACwAAAAACAAsAAAAAAwALAAAAAAAACwAAAAABAAsAAAAAAQALAAAAAAIAHQAAAAADAA8AAAAAAAAdAAAAAAIAAgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAALAAAAAAEACwAAAAABAB0AAAAAAwAPAAAAAAAAHQAAAAABAAIAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAEAAAAAAAALAAAAAAMACwAAAAAAAAsAAAAAAAALAAAAAAMACwAAAAACAAsAAAAAAAAdAAAAAAEAEgAAAAABAB0AAAAAAAABAAAAAAAACwAAAAACAAsAAAAAAAALAAAAAAMAAgAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAAAAB8AAAAAAwAfAAAAAAEAHQAAAAABAAsAAAAAAwABAAAAAAAAHQAAAAACAA8AAAAAAAAdAAAAAAEAAQAAAAAAACAAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAsAAAAAAAAdAAAAAAEACwAAAAAAAB8AAAAAAgALAAAAAAMAAgAAAAAAAB0AAAAAAgAPAAAAAAAAHQAAAAADAAEAAAAAAAAgAAAAAAIAAQAAAAAAACAAAAAAAAAgAAAAAAEAAQAAAAAAAAEAAAAAAAALAAAAAAAAHQAAAAADAB8AAAAAAgAfAAAAAAAACwAAAAADAAEAAAAAAAAdAAAAAAMAEgAAAAACAB0AAAAAAgACAAAAAAAAAQAAAAAAAAEAAAAAAAAgAAAAAAIAIAAAAAAAAAEAAAAAAAABAAAAAAAACwAAAAACAAsAAAAAAwALAAAAAAMACwAAAAAAAAsAAAAAAAABAAAAAAAAHQAAAAABAA8AAAAAAAAdAAAAAAMAAQAAAAAAACAAAAAAAQABAAAAAAAAIAAAAAABACAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB0AAAAAAQAPAAAAAAAAHQAAAAAAAAIAAAAAAAAgAAAAAAEAAQAAAAAAACAAAAAAAQAgAAAAAAMAAQAAAAAAAAEAAAAAAAAHAAAAAAIABwAAAAABAA0AAAAAAgALAAAAAAEACwAAAAABAAEAAAAAAAAdAAAAAAEAEgAAAAAAAB0AAAAAAgABAAAAAAAAIAAAAAACAAEAAAAAAAAgAAAAAAEAIAAAAAACAAEAAAAAAAABAAAAAAAABwAAAAACAAcAAAAAAAANAAAAAAMADQAAAAABAA0AAAAAAAACAAAAAAAAHQAAAAABAA8AAAAAAAAdAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAABACAAAAAAAwABAAAAAAAAAQAAAAAAAAcAAAAAAgAHAAAAAAAADQAAAAAAAAsAAAAAAQALAAAAAAMAAQAAAAAAAB0AAAAAAgAPAAAAAAAAHQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAADAAEAAAAAAAAHAAAAAAMABwAAAAAAAA0AAAAAAAALAAAAAAAACwAAAAACAAEAAAAAAAAdAAAAAAMAHwAAAAADAB0AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAACACAAAAAAAAABAAAAAAAACwAAAAAAAA0AAAAAAQANAAAAAAEACwAAAAACAAsAAAAAAwABAAAAAAAABgAAAAACAAYAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAsAAAAAAQANAAAAAAAAAgAAAAAAAAsAAAAAAgALAAAAAAMAAQAAAAAAAAYAAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAEABgAAAAACAA== + tiles: AQAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAABAAsAAAAAAAALAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAACAAsAAAAAAAALAAAAAAEACwAAAAAAAAsAAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAwABAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAABAAAAAAAACwAAAAACAAsAAAAAAwALAAAAAAAACwAAAAABAAsAAAAAAQALAAAAAAIAHQAAAAADAA8AAAAAAAAdAAAAAAIAAgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAALAAAAAAEACwAAAAABAB0AAAAAAwAPAAAAAAAAHQAAAAABAAIAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAEAAAAAAAALAAAAAAMACwAAAAAAAAsAAAAAAAALAAAAAAMACwAAAAACAAsAAAAAAAAdAAAAAAEAEgAAAAABAB0AAAAAAAABAAAAAAAACwAAAAACAAsAAAAAAAALAAAAAAMAAgAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAAAAB8AAAAAAwAfAAAAAAEAHQAAAAABAAsAAAAAAwABAAAAAAAAHQAAAAACAA8AAAAAAAAdAAAAAAEAAQAAAAAAACAAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAsAAAAAAAAdAAAAAAEACwAAAAAAAB8AAAAAAgALAAAAAAMAAgAAAAAAAB0AAAAAAgAPAAAAAAAAHQAAAAADAAEAAAAAAAAgAAAAAAIAAQAAAAAAACAAAAAAAAAgAAAAAAEAAQAAAAAAAAEAAAAAAAALAAAAAAAAHQAAAAADAB8AAAAAAgAfAAAAAAAACwAAAAADAAEAAAAAAAAdAAAAAAMAEgAAAAACAB0AAAAAAgACAAAAAAAAAQAAAAAAAAEAAAAAAAAgAAAAAAIAIAAAAAAAAAEAAAAAAAABAAAAAAAACwAAAAACAAsAAAAAAwALAAAAAAMACwAAAAAAAAsAAAAAAAABAAAAAAAAHQAAAAABAA8AAAAAAAAdAAAAAAMAAQAAAAAAACAAAAAAAQABAAAAAAAAIAAAAAABACAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB0AAAAAAQAPAAAAAAAAHQAAAAAAAAIAAAAAAAAgAAAAAAEAAQAAAAAAACAAAAAAAQAgAAAAAAMAAQAAAAAAAAEAAAAAAAAHAAAAAAIABwAAAAABAA0AAAAAAgALAAAAAAEACwAAAAABAAEAAAAAAAAdAAAAAAEAEgAAAAAAAB0AAAAAAgABAAAAAAAAIAAAAAACAAEAAAAAAAAgAAAAAAEAIAAAAAACAAEAAAAAAAABAAAAAAAABwAAAAACAAcAAAAAAAANAAAAAAMADQAAAAABAA0AAAAAAAACAAAAAAAAHQAAAAABAA8AAAAAAAAdAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAABACAAAAAAAwABAAAAAAAAAQAAAAAAAAcAAAAAAgAHAAAAAAAADQAAAAAAAAsAAAAAAQALAAAAAAMAAQAAAAAAAB0AAAAAAgAPAAAAAAAAHQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAADAAEAAAAAAAAHAAAAAAMABwAAAAAAAA0AAAAAAAALAAAAAAAACwAAAAACAAEAAAAAAAAdAAAAAAMAHwAAAAADAB0AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAACAAIAAAAAAAABAAAAAAAACwAAAAAAAA0AAAAAAQANAAAAAAEACwAAAAACAAsAAAAAAwABAAAAAAAABgAAAAACAAYAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAsAAAAAAQANAAAAAAAAAgAAAAAAAAsAAAAAAgALAAAAAAMAAQAAAAAAAAYAAAAAAgAeAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAEABgAAAAACAA== version: 7 1,3: ind: 1,3 @@ -203,7 +204,7 @@ entities: version: 7 2,3: ind: 2,3 - tiles: AQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAEABgAAAAABAAIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAGAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACEAAAAAAQAhAAAAAAMAIQAAAAAAACEAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAMACwAAAAABAAsAAAAAAgALAAAAAAIACwAAAAADAAsAAAAAAQAKAAAAAAEACgAAAAACAAEAAAAAAAAhAAAAAAIAIQAAAAADACEAAAAAAgAhAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAACwAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAADAAsAAAAAAwACAAAAAAAACgAAAAADAAoAAAAAAwABAAAAAAAAIQAAAAADACEAAAAAAgAhAAAAAAEAIQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAsAAAAAAwAiAAAAAAEAIgAAAAACACIAAAAAAAALAAAAAAIACwAAAAADAAoAAAAAAQAKAAAAAAAAAQAAAAAAACEAAAAAAwAhAAAAAAIAIQAAAAACACMAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAEACwAAAAABAAsAAAAAAQALAAAAAAAACwAAAAACAAsAAAAAAQAKAAAAAAIACgAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: AQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAEABgAAAAABAAIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAGAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACEAAAAAAQAhAAAAAAMAIQAAAAAAACEAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAMACwAAAAABAAsAAAAAAgALAAAAAAIACwAAAAADAAsAAAAAAQAKAAAAAAEACgAAAAACAAEAAAAAAAAhAAAAAAIAIQAAAAADACEAAAAAAgAhAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAACwAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAADAAsAAAAAAwACAAAAAAAACgAAAAADAAoAAAAAAwABAAAAAAAAIQAAAAADACEAAAAAAgAhAAAAAAEAIQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAsAAAAAAwAiAAAAAAEAIgAAAAACACIAAAAAAAALAAAAAAIACwAAAAADAAoAAAAAAQAKAAAAAAAAAQAAAAAAACEAAAAAAwAhAAAAAAIAIQAAAAACACMAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAEACwAAAAABAAsAAAAAAQALAAAAAAAACwAAAAACAAsAAAAAAQAKAAAAAAIACgAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAA== version: 7 1,0: ind: 1,0 @@ -223,11 +224,11 @@ entities: version: 7 3,3: ind: 3,3 - tiles: HwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAAAAgAAAAAAAAYAAAAAAwAGAAAAAAEAAQAAAAAAABAAAAAAAwACAAAAAAAAEAAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAAIAAAAAAAAGAAAAAAMABgAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACAAAAAAAQALAAAAAAAACwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAYAAAAAAgAGAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAgAAAAAAMACwAAAAAAAAsAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAAAAAsAAAAAAgALAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACAAAAAAAwALAAAAAAAACwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAEAAwAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAABAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAMABgAAAAAAAAYAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAADAAYAAAAAAwABAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAACAAYAAAAAAAAGAAAAAAIAAQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAIAAgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAwAGAAAAAAEABgAAAAABAAEAAAAAAAACAAAAAAAABgAAAAACAAYAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAMABgAAAAABAAIAAAAAAAAGAAAAAAAAHgAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAQABAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAEABgAAAAADAAYAAAAAAQACAAAAAAAABgAAAAABAB4AAAAAAQAGAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAQAGAAAAAAEAAgAAAAAAAAYAAAAAAgAeAAAAAAIABgAAAAADAAIAAAAAAAAGAAAAAAEABgAAAAADAA== + tiles: HwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAAAAgAAAAAAAAYAAAAAAwAGAAAAAAEAAQAAAAAAABAAAAAAAwACAAAAAAAAEAAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAAIAAAAAAAAGAAAAAAMABgAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACAAAAAAAQALAAAAAAAACwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAYAAAAAAgAGAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAgAAAAAAMACwAAAAAAAAsAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAAAAAsAAAAAAgALAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACAAAAAAAwALAAAAAAAACwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAAADAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAMAAwAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAEAAwAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAABAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAMABgAAAAAAAAYAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAADAAYAAAAAAwABAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAACAAYAAAAAAAAGAAAAAAIAAQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAIAAgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAwAGAAAAAAEABgAAAAABAAEAAAAAAAACAAAAAAAABgAAAAACAAYAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAMABgAAAAABAAIAAAAAAAAGAAAAAAAAHgAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAQABAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAEABgAAAAADAAYAAAAAAQACAAAAAAAABgAAAAABAB4AAAAAAQAGAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAQAGAAAAAAEAAgAAAAAAAAYAAAAAAgAeAAAAAAIABgAAAAADAAIAAAAAAAAGAAAAAAEABgAAAAADAA== version: 7 3,2: ind: 3,2 - tiles: AQAAAAAAACQAAAAAAAAkAAAAAAIAJAAAAAAAACQAAAAAAQAkAAAAAAMAAQAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAMAAQAAAAAAAAsAAAAAAAALAAAAAAMACwAAAAAAAAEAAAAAAAAJAAAAAAAAJAAAAAACACQAAAAAAQAlAAAAAAAAJQAAAAAAAAEAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAADAAEAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAgABAAAAAAAACQAAAAAAACQAAAAAAwAkAAAAAAMAJQAAAAAAACUAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAADAAYAAAAAAAACAAAAAAAADgAAAAAAABAAAAAAAQAQAAAAAAIAAgAAAAAAAAYAAAAAAwAGAAAAAAMABgAAAAAAAAYAAAAAAQAGAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAwAGAAAAAAAAAgAAAAAAAA4AAAAAAgAQAAAAAAAAEAAAAAADAAEAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAwAGAAAAAAAABgAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAADAAIAAAAAAAAOAAAAAAIAEAAAAAACAAkAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAABAAYAAAAAAQAYAAAAAAAAGAAAAAAAABgAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAQABAAAAAAAADgAAAAADABAAAAAAAgAQAAAAAAAAIAAAAAACAAEAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAIAGAAAAAAAABgAAAAAAAAYAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAA4AAAAAAgAQAAAAAAIAEAAAAAADACAAAAAAAwABAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAACABIAAAAAAgASAAAAAAAAEgAAAAADAAEAAAAAAAAGAAAAAAEABgAAAAABAAEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAwAgAAAAAAMAAQAAAAAAAAgAAAAAAgAIAAAAAAMACAAAAAADAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAQABAAAAAAAACwAAAAABAAsAAAAAAwALAAAAAAAAIAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAAAAQAAAAAAAAYAAAAAAwAGAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACAAAAAAAgABAAAAAAAAFwAAAAABABcAAAAAAAAXAAAAAAIAAQAAAAAAACAAAAAAAAAgAAAAAAMAIAAAAAADAAIAAAAAAAAGAAAAAAIABgAAAAABAAEAAAAAAAAQAAAAAAMAEAAAAAADABAAAAAAAwABAAAAAAAAAQAAAAAAABcAAAAAAQAXAAAAAAIAFwAAAAADAAEAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAAABAAAAAAAABgAAAAABAAYAAAAAAgABAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAIAAQAAAAAAABYAAAAAAAAXAAAAAAMAHgAAAAADABcAAAAAAQABAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAIAAQAAAAAAABAAAAAAAgAQAAAAAAMAEAAAAAADAAEAAAAAAAAWAAAAAAMAFwAAAAAAAB4AAAAAAwAXAAAAAAAAAQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAAAAAEAAAAAAAAQAAAAAAIAEAAAAAADABAAAAAAAAABAAAAAAAAFgAAAAABABcAAAAAAwAXAAAAAAMAFwAAAAABAAEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAAABAAAAAAAABgAAAAABAAYAAAAAAAABAAAAAAAAEAAAAAABABAAAAAAAgAQAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAQAGAAAAAAIAAQAAAAAAABAAAAAAAwAQAAAAAAEAEAAAAAADAA== + tiles: AQAAAAAAACQAAAAAAAAkAAAAAAIAJAAAAAAAACQAAAAAAQAkAAAAAAMAAQAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAMAAQAAAAAAAAsAAAAAAAALAAAAAAMACwAAAAAAAAEAAAAAAAAJAAAAAAAAJAAAAAACACQAAAAAAQAlAAAAAAAAJQAAAAAAAAEAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAADAAEAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAgABAAAAAAAACQAAAAAAACQAAAAAAwAkAAAAAAMAJQAAAAAAACUAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAADAAYAAAAAAAACAAAAAAAADgAAAAAAABAAAAAAAQAQAAAAAAIAAgAAAAAAAAYAAAAAAwAGAAAAAAMABgAAAAAAAAYAAAAAAQAGAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAwAGAAAAAAAAAgAAAAAAAA4AAAAAAgAQAAAAAAAAEAAAAAADAAEAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAwAGAAAAAAAABgAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAADAAIAAAAAAAAOAAAAAAIAEAAAAAACAAkAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAABAAYAAAAAAQAYAAAAAAAAGAAAAAAAABgAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAQABAAAAAAAADgAAAAADABAAAAAAAgAQAAAAAAAAIAAAAAACAAEAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAIAGAAAAAAAABgAAAAAAAAYAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAA4AAAAAAgAQAAAAAAIAEAAAAAADACAAAAAAAwABAAAAAAAACAAAAAACAAgAAAAAAwAIAAAAAAAACAAAAAACABIAAAAAAgASAAAAAAAAEgAAAAADAAEAAAAAAAAGAAAAAAEABgAAAAABAAEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAwAgAAAAAAMAAQAAAAAAAAgAAAAAAgAIAAAAAAMACAAAAAADAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAQABAAAAAAAACwAAAAABAAsAAAAAAwALAAAAAAAAIAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAAAAQAAAAAAAAYAAAAAAwAGAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACAAAAAAAgABAAAAAAAAFwAAAAABABcAAAAAAAAXAAAAAAIAAQAAAAAAACAAAAAAAAAgAAAAAAMAIAAAAAADAAIAAAAAAAAGAAAAAAIABgAAAAABAAEAAAAAAAAQAAAAAAMAEAAAAAADABAAAAAAAwABAAAAAAAAAQAAAAAAABcAAAAAAQAXAAAAAAIAFwAAAAADAAEAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAAABAAAAAAAABgAAAAABAAYAAAAAAgABAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAIAAQAAAAAAABYAAAAAAAAXAAAAAAMAHgAAAAADABcAAAAAAQABAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAIAAQAAAAAAABAAAAAAAgAQAAAAAAMAEAAAAAADAAEAAAAAAAAWAAAAAAMAFwAAAAAAAB4AAAAAAwAXAAAAAAAAAQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAAAAAEAAAAAAAAQAAAAAAIAEAAAAAADABAAAAAAAAABAAAAAAAAFgAAAAABABcAAAAAAwAXAAAAAAMAFwAAAAABAAEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAAABAAAAAAAABgAAAAABAAYAAAAAAAABAAAAAAAAEAAAAAABABAAAAAAAgAQAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAQAGAAAAAAIAAQAAAAAAABAAAAAAAwAQAAAAAAEAEAAAAAADAA== version: 7 3,1: ind: 3,1 @@ -259,7 +260,7 @@ entities: version: 7 4,0: ind: 4,0 - tiles: HgAAAAAAAB4AAAAAAAARAAAAAAAAAQAAAAAAAAoAAAAAAgAKAAAAAAIACgAAAAADAAoAAAAAAAACAAAAAAAALQAAAAABAC0AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB4AAAAAAAAeAAAAAAAAEQAAAAAAAAEAAAAAAAAKAAAAAAMACgAAAAADAAoAAAAAAQAKAAAAAAMAAQAAAAAAAC0AAAAAAAAtAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQABAAAAAAAAEQAAAAACABEAAAAAAgAKAAAAAAEAEQAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAuAAAAAAAALgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAALwAAAAAAABEAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAABAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAABEAAAAAAwARAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAAQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAARAAAAAAIAEQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAALwAAAAAAABEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAC8AAAAAAAARAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEAEQAAAAADABEAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAuAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAgAGAAAAAAIAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAYAAAAAAwAGAAAAAAIAAQAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAARAAAAAAMAEQAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAwAGAAAAAAEABgAAAAADAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAAABgAAAAABAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABAAEAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAEABgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAADAAAAAAAAA== + tiles: HgAAAAAAAB4AAAAAAAARAAAAAAAAAQAAAAAAAAoAAAAAAgAKAAAAAAIACgAAAAADAAoAAAAAAAACAAAAAAAALQAAAAABAC0AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB4AAAAAAAAeAAAAAAAAEQAAAAAAAAEAAAAAAAAKAAAAAAMACgAAAAADAAoAAAAAAQAKAAAAAAMAAQAAAAAAAC0AAAAAAAAtAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQABAAAAAAAAEQAAAAACABEAAAAAAgAKAAAAAAEAEQAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAuAAAAAAAALgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAALwAAAAAAABEAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAABAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAABEAAAAAAwARAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAAQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAARAAAAAAIAEQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAAEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAALwAAAAAAABEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAC8AAAAAAAARAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEAEQAAAAADABEAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAuAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAABAAMAAAAAAgAGAAAAAAIAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAYAAAAAAwAGAAAAAAIAAQAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAARAAAAAAMAEQAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAADAAMAAAAAAwAGAAAAAAEABgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAAABgAAAAABAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABAAEAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAEABgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAADAAAAAAAAA== version: 7 4,1: ind: 4,1 @@ -291,23 +292,23 @@ entities: version: 7 4,4: ind: 4,4 - tiles: BgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIAAQAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAYAAAAAAwAGAAAAAAMABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAMABgAAAAADAAEAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAGAAAAAAAACQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABgAAAAACAAYAAAAAAgABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABgAAAAAAAAkAAAAAAAAJAAAAAAAAAQAAAAAAAAEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAYAAAAAAAAGAAAAAAIAAQAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAYAAAAAAAAJAAAAAAAACQAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAQAGAAAAAAAABgAAAAABAAEAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAGAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAIABgAAAAACAAEAAAAAAAAeAAAAAAMABgAAAAAAAB4AAAAAAgABAAAAAAAABgAAAAACAAYAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAHgAAAAAAAAIAAAAAAAAeAAAAAAMAAQAAAAAAAAYAAAAAAwAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAIAAAAAAAAeAAAAAAMAAQAAAAAAAB4AAAAAAwACAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== + tiles: BgAAAAAAAAEAAAAAAAABAAAAAAAANAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAADQAAAAAAAA0AAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIAAQAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAYAAAAAAwAGAAAAAAMABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAMABgAAAAADAAEAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAGAAAAAAAACQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABgAAAAACAAYAAAAAAgABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABgAAAAAAAAkAAAAAAAAJAAAAAAAAAQAAAAAAAAEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAYAAAAAAAAGAAAAAAIAAQAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAYAAAAAAAAJAAAAAAAACQAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAQAGAAAAAAAABgAAAAABAAEAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAGAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAIABgAAAAACAAEAAAAAAAAeAAAAAAMABgAAAAAAAB4AAAAAAgABAAAAAAAABgAAAAACAAYAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAHgAAAAAAAAIAAAAAAAAeAAAAAAMAAQAAAAAAAAYAAAAAAwAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAIAAAAAAAAeAAAAAAMAAQAAAAAAAB4AAAAAAwACAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== version: 7 2,4: ind: 2,4 - tiles: BQAAAAAAAAUAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== version: 7 1,4: ind: 1,4 - tiles: BgAAAAABAAEAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAMABgAAAAADAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAABgAAAAACAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAMAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== + tiles: BgAAAAABAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAMABgAAAAADAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAMAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAACAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAA== version: 7 0,4: ind: 0,4 - tiles: BgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAgAGAAAAAAIABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAwABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAQABAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAIAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAABAAEAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAIABgAAAAADAAYAAAAAAwABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAACAAYAAAAAAQAGAAAAAAAAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAgABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAMAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAADAAEAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAgABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAACAAYAAAAAAgAGAAAAAAAAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAABAAEAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAgABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAAAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== + tiles: BgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAwABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAABgAAAAABAAYAAAAAAgAGAAAAAAIAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAABAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAIABgAAAAADAAYAAAAAAwABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAACAAYAAAAAAQAGAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAgABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAMAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAADAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAgABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAACAAYAAAAAAgAGAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAABAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAgABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAABAAYAAAAAAwAGAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAABAAYAAAAAAgABAAAAAAAAFwAAAAADABcAAAAAAwAXAAAAAAIAFwAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAIAAgAAAAAAABYAAAAAAQAWAAAAAAIAFgAAAAACABYAAAAAAgAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAABAAEAAAAAAAAXAAAAAAIAFwAAAAACABcAAAAAAQAXAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAADAAYAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAYAAAAAAwAGAAAAAAMAAQAAAAAAAAoAAAAAAQAKAAAAAAAACgAAAAAAAAoAAAAAAQAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAABAAEAAAAAAAAKAAAAAAEACgAAAAABAAoAAAAAAgAKAAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAADAAYAAAAAAgABAAAAAAAACwAAAAABAAsAAAAAAAAKAAAAAAAACgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAYAAAAAAQAGAAAAAAMAAQAAAAAAAAsAAAAAAgALAAAAAAEACwAAAAABAAsAAAAAAgAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAACAAEAAAAAAAALAAAAAAMACwAAAAAAAAsAAAAAAQALAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAwABAAAAAAAACwAAAAACAAsAAAAAAgALAAAAAAIACwAAAAADAA== + tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAABAAYAAAAAAwAGAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAABAAYAAAAAAgABAAAAAAAAFwAAAAADABcAAAAAAwAXAAAAAAIAFwAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAIAAgAAAAAAABYAAAAAAQAWAAAAAAIAFgAAAAACABYAAAAAAgAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAABAAEAAAAAAAAXAAAAAAIAFwAAAAACABcAAAAAAQAXAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAADAAYAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAYAAAAAAwAGAAAAAAMAAQAAAAAAAAoAAAAAAQAKAAAAAAAACgAAAAAAAAoAAAAAAQAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAABAAEAAAAAAAAKAAAAAAEACgAAAAABAAoAAAAAAgAKAAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAADAAYAAAAAAgABAAAAAAAACwAAAAABAAsAAAAAAAAKAAAAAAAACgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAYAAAAAAQAGAAAAAAMAAQAAAAAAAAsAAAAAAgALAAAAAAEACwAAAAABAAsAAAAAAgAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAACAAEAAAAAAAALAAAAAAMACwAAAAAAAAsAAAAAAQALAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABgAAAAACAAYAAAAAAwABAAAAAAAACwAAAAACAAsAAAAAAgALAAAAAAIACwAAAAADAA== version: 7 1,-3: ind: 1,-3 @@ -315,7 +316,7 @@ entities: version: 7 2,-2: ind: 2,-2 - tiles: BQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAoAAAAAAQAKAAAAAAAACgAAAAADAAoAAAAAAwAKAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAIAAAAAAAAKAAAAAAMACgAAAAAAAAoAAAAAAwAKAAAAAAIACgAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACgAAAAAAAAoAAAAAAgAKAAAAAAEACgAAAAADAAoAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAAKAAAAAAEAAQAAAAAAAAoAAAAAAgAKAAAAAAAACgAAAAADAAIAAAAAAAAKAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACgAAAAADAAoAAAAAAgAKAAAAAAIACgAAAAACAAoAAAAAAwAKAAAAAAIACgAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAABAAoAAAAAAAAKAAAAAAMACgAAAAACAAoAAAAAAgAKAAAAAAMACgAAAAADAAoAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAAAKAAAAAAEACgAAAAABAAoAAAAAAwAKAAAAAAEACgAAAAADAAsAAAAAAgALAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAABAAsAAAAAAQALAAAAAAMACwAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAABAAoAAAAAAQALAAAAAAMACwAAAAACAAsAAAAAAAALAAAAAAIACwAAAAADAAsAAAAAAwAKAAAAAAEACgAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAKAAAAAAAACgAAAAACAAoAAAAAAwAKAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAMACwAAAAABAAsAAAAAAgALAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACgAAAAADAAoAAAAAAQAKAAAAAAIACgAAAAACAA== + tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAoAAAAAAQAKAAAAAAAACgAAAAADAAoAAAAAAwAKAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAIAAAAAAAAKAAAAAAMACgAAAAAAAAoAAAAAAwAKAAAAAAIACgAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACgAAAAAAAAoAAAAAAgAKAAAAAAEACgAAAAADAAoAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAAKAAAAAAEAAQAAAAAAAAoAAAAAAgAKAAAAAAAACgAAAAADAAIAAAAAAAAKAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACgAAAAADAAoAAAAAAgAKAAAAAAIACgAAAAACAAoAAAAAAwAKAAAAAAIACgAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAABAAoAAAAAAAAKAAAAAAMACgAAAAACAAoAAAAAAgAKAAAAAAMACgAAAAADAAoAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAAAKAAAAAAEACgAAAAABAAoAAAAAAwAKAAAAAAEACgAAAAADAAsAAAAAAgALAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAABAAsAAAAAAQALAAAAAAMACwAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAABAAoAAAAAAQALAAAAAAMACwAAAAACAAsAAAAAAAALAAAAAAIACwAAAAADAAsAAAAAAwAKAAAAAAEACgAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAKAAAAAAAACgAAAAACAAoAAAAAAwAKAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAMACwAAAAABAAsAAAAAAgALAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACgAAAAADAAoAAAAAAQAKAAAAAAIACgAAAAACAA== version: 7 3,-2: ind: 3,-2 @@ -351,11 +352,11 @@ entities: version: 7 0,5: ind: 0,5 - tiles: BgAAAAADAAYAAAAAAwAGAAAAAAAAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAwAGAAAAAAIABgAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAADAAYAAAAAAQABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAgAGAAAAAAMABgAAAAADAAYAAAAAAQAGAAAAAAEABgAAAAACAAYAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAQAGAAAAAAIABgAAAAADAAYAAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAwAGAAAAAAMABgAAAAACAAYAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAgAGAAAAAAAABgAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAABAAEAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAQABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAEAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== + tiles: BgAAAAADAAYAAAAAAwAGAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAwAGAAAAAAIABgAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAGAAAAAAAABgAAAAADAAYAAAAAAQABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAgAGAAAAAAMABgAAAAADAAYAAAAAAQAGAAAAAAEABgAAAAACAAYAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAQAGAAAAAAIABgAAAAADAAYAAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAwAGAAAAAAMABgAAAAACAAYAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAgAGAAAAAAAABgAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAABAAEAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAQABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAEAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== version: 7 1,5: ind: 1,5 - tiles: BQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAQAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAIABgAAAAABAAYAAAAAAQAGAAAAAAIABgAAAAADAAYAAAAAAQAGAAAAAAIAAQAAAAAAAAUAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAEABgAAAAACAAEAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAwABAAAAAAAABQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== + tiles: BQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAwAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAMAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAMAAAAAAAABQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAQAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAIABgAAAAABAAYAAAAAAQAGAAAAAAIABgAAAAADAAYAAAAAAQAGAAAAAAIAAQAAAAAAAAUAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAEABgAAAAACAAEAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAwABAAAAAAAABQAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADAAAAAAAAAUAAAAAAAAMAAAAAAAABQAAAAAAAAUAAAAAAAAMAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAADAAAAAAAAAUAAAAAAAAFAAAAAAAADAAAAAAAAAEAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== version: 7 -1,5: ind: -1,5 @@ -460,9 +461,9 @@ entities: 5052: 69,68 5800: 46,17 6829: 12,84 - 6830: 14,84 6831: 20,84 - 6832: 22,84 + 8024: 10,84 + 8025: 18,84 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -486,15 +487,15 @@ entities: 4455: 56,39 4464: 55.96936,40.65763 6825: 12,64 - 6826: 14,64 6827: 20,64 - 6828: 22,64 6833: 12,86 - 6834: 14,86 6835: 20,86 - 6836: 22,86 6838: 2,92 6839: 0,92 + 8018: 10,64 + 8019: 18,64 + 8026: 10,86 + 8027: 18,86 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3944,11 +3945,9 @@ entities: 4794: 61,75 4795: 62,75 4839: 68,65 - 4840: 69,65 4841: 70,65 4842: 71,65 4843: 72,65 - 4844: 73,65 4872: 74,63 4923: 67,65 4924: 62,64 @@ -4037,6 +4036,8 @@ entities: 7930: -17,1 7931: -5,3 7932: -6,3 + 8015: 69,65 + 8016: 73,65 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' @@ -5435,8 +5436,6 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 5024: 69,65 - 5025: 73,65 5799: 46,13 - node: angle: 3.141592653589793 rad @@ -5908,9 +5907,6 @@ entities: 7649: 31,51 7650: 28,62 7651: 28,61 - 7653: 17,63 - 7654: 17,62 - 7655: 17,61 7656: 3,64 7657: 3,63 7658: 3,62 @@ -5940,6 +5936,10 @@ entities: 7684: 30,-5 7685: 30,-6 7686: 30,-7 + 8017: 56,57 + 8021: 15,63 + 8022: 15,62 + 8023: 15,61 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale @@ -7922,7 +7922,8 @@ entities: -1,0: 0: 57591 0,1: - 0: 57309 + 0: 57181 + 1: 128 -1,1: 0: 61422 0,2: @@ -8041,21 +8042,21 @@ entities: 0: 65535 -3,6: 0: 13107 - 1: 2184 + 2: 2184 -3,7: 0: 65535 -3,5: - 2: 3630 + 3: 3630 -2,4: 0: 2032 -2,5: - 2: 3983 + 3: 3983 -2,6: - 1: 4095 + 2: 4095 -2,7: 0: 65535 -1,5: - 2: 803 + 3: 803 0: 43016 -1,7: 0: 30591 @@ -8153,22 +8154,22 @@ entities: 0: 65535 -5,-4: 0: 60544 - 2: 19 + 3: 19 -4,-3: 0: 8191 -5,-3: 0: 3276 - 2: 257 + 3: 257 -4,-2: 0: 61695 -5,-2: 0: 57580 - 1: 273 + 2: 273 -5,-1: 0: 61678 -4,-5: 0: 58368 - 2: 159 + 3: 159 -3,-4: 0: 30583 -3,-3: @@ -8177,89 +8178,89 @@ entities: 0: 28919 -3,-5: 0: 28672 - 2: 79 + 3: 79 -2,-4: - 2: 13107 + 3: 13107 0: 32904 -2,-3: - 2: 3 + 3: 3 0: 48008 -2,-2: 0: 12090 -2,-5: - 2: 13073 + 3: 13073 0: 34824 -1,-5: 0: 48011 -8,-4: - 2: 4096 + 3: 4096 -8,-3: - 2: 36879 + 3: 36879 -9,-4: - 2: 63249 + 3: 63249 -8,-2: - 2: 4383 + 3: 4383 -9,-3: - 2: 50737 + 3: 50737 -9,-2: - 2: 15 + 3: 15 -8,-1: - 2: 3951 + 3: 3951 0: 61440 -9,-1: - 2: 3887 + 3: 3887 0: 61440 -8,0: 0: 65295 - 2: 240 + 3: 240 -7,-3: - 2: 48751 + 3: 48751 -7,-1: - 2: 3983 + 3: 3983 0: 12288 -7,0: 0: 15355 -7,-4: - 2: 8704 + 3: 8704 -6,-3: - 2: 15951 + 3: 15951 0: 49152 -6,-1: - 2: 495 + 3: 495 0: 49152 -6,-4: - 2: 23955 + 3: 23955 -6,-2: - 2: 4375 + 3: 4375 0: 9824 - 1: 2184 + 2: 2184 -6,0: 0: 3581 -6,-5: - 2: 27776 + 3: 27776 -5,-5: - 2: 27795 + 3: 27795 -9,0: 0: 65295 - 2: 240 + 3: 240 -8,1: - 2: 21983 + 3: 21983 -9,1: - 2: 3871 + 3: 3871 -8,2: - 2: 22357 + 3: 22357 -8,3: - 2: 15 + 3: 15 -7,1: - 2: 119 + 3: 119 0: 28672 -7,2: 0: 127 - 2: 16384 + 3: 16384 -7,3: - 2: 21847 + 3: 21847 -7,4: - 2: 5975 + 3: 5975 0: 8192 -6,1: 0: 65535 @@ -8270,110 +8271,110 @@ entities: -6,4: 0: 4095 -8,4: - 2: 12032 + 3: 12032 -9,4: - 2: 12032 + 3: 12032 -8,5: 0: 22319 - 2: 8192 + 3: 8192 -9,5: 0: 22319 - 2: 8192 + 3: 8192 -8,6: 0: 1365 - 2: 21034 + 3: 21034 -9,6: - 2: 21034 + 3: 21034 0: 1365 -8,7: - 2: 36751 + 3: 36751 -9,7: - 2: 3983 + 3: 3983 -7,5: 0: 175 - 2: 4880 + 3: 4880 -7,6: - 2: 4369 - 1: 2184 + 3: 4369 + 2: 2184 0: 32768 -7,7: - 2: 8963 + 3: 8963 0: 34952 -8,8: - 2: 34952 + 3: 34952 -7,8: - 2: 47782 + 3: 47782 -6,5: 0: 3823 -6,6: - 2: 4095 + 3: 4095 -6,7: 0: 65518 -6,8: 0: 52463 - 2: 784 + 3: 784 -5,8: 0: 4369 - 2: 224 - 1: 16384 + 3: 224 + 2: 16384 -8,9: - 2: 8 + 3: 8 -7,9: - 2: 43754 + 3: 43754 -7,10: - 2: 44714 + 3: 44714 -7,11: - 2: 43690 + 3: 43690 -7,12: - 2: 61162 + 3: 61162 -6,9: - 2: 4096 + 3: 4096 0: 52428 -6,11: - 2: 8946 + 3: 8946 0: 4 - 1: 32768 + 2: 32768 -6,10: 0: 17476 - 2: 512 + 3: 512 -6,12: - 2: 62258 - 1: 136 + 3: 62258 + 2: 136 -5,9: 0: 4369 - 2: 57344 - 1: 68 + 3: 57344 + 2: 68 -5,10: 0: 65521 -5,11: - 2: 35056 - 1: 12288 + 3: 35056 + 2: 12288 -5,12: - 1: 51 - 2: 30856 + 2: 51 + 3: 30856 -4,8: - 2: 240 - 3: 4096 - 1: 16384 + 3: 240 + 4: 4096 + 2: 16384 -4,9: - 3: 17 - 2: 61440 - 1: 68 + 4: 17 + 3: 61440 + 2: 68 -4,10: 0: 65520 -4,11: 0: 61166 -4,12: 0: 206 - 2: 17200 + 3: 17200 -3,8: - 2: 240 - 1: 4096 - 4: 16384 + 3: 240 + 2: 4096 + 5: 16384 -3,9: - 1: 17 - 2: 61440 - 4: 68 + 2: 17 + 3: 61440 + 5: 68 -3,10: 0: 65520 -3,11: @@ -8381,20 +8382,20 @@ entities: -3,12: 0: 255 -2,8: - 2: 112 - 5: 4096 - 1: 16384 + 3: 112 + 6: 4096 + 2: 16384 -2,9: - 5: 17 - 2: 28672 - 1: 68 + 6: 17 + 3: 28672 + 2: 68 -2,10: 0: 65520 -2,11: 0: 65535 -2,12: 0: 255 - 2: 4096 + 3: 4096 -1,9: 0: 30583 -1,10: @@ -8403,17 +8404,17 @@ entities: 0: 65535 -1,12: 0: 255 - 2: 24576 + 3: 24576 0,9: 0: 114 - 2: 28672 + 3: 28672 0,10: - 2: 33889 + 3: 33889 0,11: 0: 30583 0,12: 0: 119 - 2: 43008 + 3: 43008 1,9: 0: 48059 1,10: @@ -8447,43 +8448,43 @@ entities: 4,11: 0: 49151 -4,13: - 2: 4031 + 3: 4031 -5,13: - 2: 3855 + 3: 3855 -3,13: - 2: 3999 + 3: 3999 -2,13: - 2: 36815 + 3: 36815 -1,13: - 2: 12175 + 3: 12175 -2,14: - 2: 34952 + 3: 34952 -2,15: - 2: 136 + 3: 136 -1,14: - 2: 12846 + 3: 12846 -1,15: - 2: 34 + 3: 34 0,13: - 2: 811 + 3: 811 0,14: - 2: 159 + 3: 159 0: 61440 0,15: 0: 65521 0,16: 0: 30591 1,14: - 2: 51 + 3: 51 0: 61452 1,15: 0: 65520 1,13: - 2: 13072 + 3: 13072 0: 206 1,16: 0: 15 - 2: 7936 + 3: 7936 2,13: 0: 9847 2,14: @@ -8492,7 +8493,7 @@ entities: 0: 65520 2,16: 0: 15 - 2: 18176 + 3: 18176 3,13: 0: 30704 3,14: @@ -8510,205 +8511,205 @@ entities: 4,15: 0: 65528 -7,13: - 2: 140 + 3: 140 -6,13: - 2: 4031 + 3: 4031 -12,0: 0: 65295 - 2: 240 + 3: 240 -12,-1: 0: 61440 - 2: 3855 + 3: 3855 -13,0: 0: 65134 - 2: 144 + 3: 144 -12,1: - 2: 3983 + 3: 3983 -13,1: - 2: 15919 + 3: 15919 -11,0: 0: 65295 - 2: 240 + 3: 240 -11,1: - 2: 3855 + 3: 3855 -11,-1: 0: 61440 - 2: 3919 + 3: 3919 -10,0: 0: 65295 - 2: 240 + 3: 240 -10,1: - 2: 3919 + 3: 3919 -10,-1: 0: 61440 - 2: 3855 + 3: 3855 -12,-3: - 2: 29311 + 3: 29311 -13,-3: - 2: 45064 + 3: 45064 -13,-1: - 2: 4014 + 3: 4014 0: 61440 -12,-4: - 2: 8704 + 3: 8704 -12,-2: - 2: 17484 + 3: 17484 -11,-3: - 2: 51427 + 3: 51427 -11,-2: - 2: 34959 + 3: 34959 -10,-3: - 2: 876 + 3: 876 -10,-2: - 2: 15 + 3: 15 -10,-4: - 2: 3072 + 3: 3072 -16,0: 0: 52685 - 2: 4112 + 3: 4112 -16,-1: 0: 55518 - 2: 257 + 3: 257 -17,0: - 2: 11838 + 3: 11838 -16,1: - 2: 4353 + 3: 4353 0: 3800 -17,1: - 2: 8914 + 3: 8914 0: 32 -16,2: - 2: 4283 + 3: 4283 -17,2: - 2: 8445 + 3: 8445 0: 2 -16,3: - 2: 3857 + 3: 3857 -17,3: - 2: 3874 + 3: 3874 -15,0: 0: 65535 -15,2: - 2: 7952 + 3: 7952 -15,3: - 2: 4894 + 3: 4894 -15,-1: 0: 61678 -15,1: 0: 61152 -15,4: - 2: 24337 + 3: 24337 -14,0: 0: 29683 -14,1: 0: 4368 - 2: 51200 + 3: 51200 -14,2: - 2: 8088 + 3: 8088 -14,3: - 2: 15 + 3: 15 -14,-1: 0: 28689 - 2: 8 + 3: 8 -13,3: - 2: 3 + 3: 3 -13,2: - 2: 8738 + 3: 8738 -16,-3: - 2: 4383 + 3: 4383 -17,-3: - 2: 8751 + 3: 8751 -16,-2: - 2: 6960 + 3: 6960 -17,-2: - 2: 11760 + 3: 11760 0: 512 -17,-1: - 2: 8914 + 3: 8914 0: 32 -15,-3: - 2: 61459 + 3: 61459 -15,-2: - 2: 497 + 3: 497 -14,-3: - 2: 61440 + 3: 61440 -14,-2: - 2: 51697 + 3: 51697 -13,-2: - 2: 13951 + 3: 13951 -20,-3: - 2: 17487 + 3: 17487 -21,-3: - 2: 32767 + 3: 32767 -20,-2: - 2: 28384 + 3: 28384 -21,-2: - 2: 7953 + 3: 7953 -20,-1: - 2: 26278 + 3: 26278 0: 64 -21,-1: - 2: 4593 + 3: 4593 -20,0: - 2: 27242 + 3: 27242 0: 1028 -19,-3: - 2: 8751 + 3: 8751 -19,-2: - 2: 11760 + 3: 11760 0: 512 -19,-1: - 2: 8914 + 3: 8914 0: 32 -19,0: - 2: 9187 + 3: 9187 -18,-3: - 2: 21855 + 3: 21855 -18,-2: - 2: 23280 + 3: 23280 0: 1280 -18,-1: - 2: 8949 + 3: 8949 -18,0: - 2: 8914 + 3: 8914 0: 1317 -21,0: - 2: 7967 + 3: 7967 -20,1: - 2: 26278 + 3: 26278 0: 64 -21,1: - 2: 4593 + 3: 4593 -20,2: - 2: 16622 + 3: 16622 -21,2: - 2: 28959 + 3: 28959 -21,3: - 2: 4095 + 3: 4095 -20,3: - 2: 3908 + 3: 3908 -19,1: - 2: 8914 + 3: 8914 0: 32 -19,2: - 2: 8445 + 3: 8445 0: 2 -19,3: - 2: 3874 + 3: 3874 -18,1: - 2: 22002 + 3: 22002 -18,2: 0: 5 - 2: 20730 + 3: 20730 -18,3: - 2: 3925 + 3: 3925 5,8: 0: 65535 5,9: 0: 54271 5,10: 0: 13087 - 6: 34816 + 7: 34816 5,11: 0: 65523 5,12: @@ -8721,7 +8722,7 @@ entities: 0: 47291 6,10: 0: 31 - 6: 30464 + 7: 30464 6,11: 0: 32626 6,7: @@ -8845,7 +8846,8 @@ entities: 10,12: 0: 62207 11,9: - 0: 65520 + 0: 65008 + 8: 512 11,10: 0: 65535 11,11: @@ -8860,7 +8862,7 @@ entities: 0: 52637 4,16: 0: 13 - 2: 22272 + 3: 22272 5,15: 0: 65524 5,13: @@ -8877,7 +8879,7 @@ entities: 0: 16377 6,16: 0: 3 - 2: 6024 + 3: 6024 7,14: 0: 26223 7,15: @@ -8885,16 +8887,17 @@ entities: 7,13: 0: 28398 7,16: - 2: 15 + 3: 15 8,14: - 0: 255 - 2: 28672 + 0: 191 + 1: 64 + 3: 28672 8,15: - 2: 1911 + 3: 1911 8,13: 0: 3822 8,16: - 2: 132 + 3: 132 9,13: 0: 21845 9,14: @@ -8903,25 +8906,25 @@ entities: 0: 65535 9,16: 0: 1092 - 2: 272 + 3: 272 10,13: 0: 4095 10,14: 0: 57583 10,15: 0: 238 - 2: 60928 + 3: 60928 10,16: - 2: 274 + 3: 274 11,13: 0: 3551 11,14: 0: 47871 11,15: 0: 35003 - 2: 13056 + 3: 13056 11,16: - 2: 2 + 3: 2 0: 3080 12,12: 0: 58623 @@ -8955,7 +8958,7 @@ entities: 0: 45552 8,0: 0: 61747 - 2: 136 + 3: 136 8,1: 0: 16383 8,2: @@ -8990,16 +8993,16 @@ entities: 0: 65527 8,-1: 0: 12528 - 2: 32768 + 3: 32768 9,0: - 2: 17 + 3: 17 0: 63692 9,1: 0: 4095 9,2: 0: 65535 9,-1: - 2: 4096 + 3: 4096 0: 49392 10,0: 0: 56541 @@ -9041,7 +9044,7 @@ entities: 0: 65520 10,-3: 0: 6 - 2: 26112 + 3: 26112 10,-5: 0: 26215 11,-4: @@ -9211,46 +9214,46 @@ entities: 13,-2: 0: 48048 13,-4: - 2: 41506 + 3: 41506 13,-3: - 2: 8750 + 3: 8750 0: 32768 13,-5: - 2: 57890 + 3: 57890 14,-4: - 2: 62542 + 3: 62542 14,-2: 0: 65534 14,-3: 0: 49440 - 2: 12 + 3: 12 14,-5: - 2: 65088 + 3: 65088 15,-4: - 2: 61638 + 3: 61638 15,-3: - 2: 15 + 3: 15 0: 61440 15,-2: 0: 65535 15,-5: - 2: 13164 + 3: 13164 16,-4: - 2: 62202 + 3: 62202 16,-3: - 2: 3 + 3: 3 0: 14400 16,-2: 0: 65527 16,-1: 0: 30719 0,-8: - 2: 61440 + 3: 61440 0,-7: - 2: 1 + 3: 1 0: 47872 -1,-8: - 2: 61440 + 3: 61440 -1,-7: 0: 64256 0,-6: @@ -9258,85 +9261,85 @@ entities: -1,-6: 0: 64395 1,-8: - 2: 61440 + 3: 61440 1,-7: 0: 65280 - 2: 1 + 3: 1 1,-6: 0: 8191 2,-8: - 2: 12561 + 3: 12561 0: 34952 2,-7: 0: 30600 - 2: 3 + 3: 3 2,-6: 0: 6007 2,-9: - 2: 4400 + 3: 4400 0: 34952 3,-8: 0: 13107 - 2: 136 + 3: 136 3,-7: 0: 14131 3,-6: 0: 13107 3,-9: 0: 12834 - 2: 34944 + 3: 34944 4,-8: - 2: 255 + 3: 255 -4,-6: - 2: 3840 + 3: 3840 -5,-6: - 2: 27648 + 3: 27648 -3,-6: - 2: 3840 + 3: 3840 -2,-6: - 2: 12561 + 3: 12561 0: 34824 -2,-8: - 2: 61440 + 3: 61440 -2,-7: - 2: 12569 + 3: 12569 0: 34880 4,-9: - 2: 65520 + 3: 65520 16,-5: - 2: 8746 + 3: 8746 17,-4: - 2: 4233 + 3: 4233 17,-3: 0: 4096 - 2: 36067 + 3: 36067 17,-1: 0: 61694 17,-5: - 2: 65209 + 3: 65209 17,-2: 0: 2 - 2: 3272 + 3: 3272 17,0: 0: 20479 18,-4: - 2: 12560 + 3: 12560 18,-3: - 2: 8946 + 3: 8946 18,-1: 0: 24703 18,0: 0: 57447 18,-2: - 2: 546 + 3: 546 19,-3: - 2: 2288 + 3: 2288 19,-1: 0: 64975 19,0: 0: 53756 20,-3: - 2: 59362 + 3: 59362 17,1: 0: 65535 17,2: @@ -9359,19 +9362,19 @@ entities: 0: 4444 19,3: 0: 30465 - 2: 34952 + 3: 34952 19,4: 0: 56581 - 2: 8 + 3: 8 20,0: 0: 61440 - 2: 14 + 3: 14 20,1: 0: 3855 20,2: 0: 223 20,3: - 2: 241 + 3: 241 17,5: 0: 63351 17,6: @@ -9398,16 +9401,16 @@ entities: 0: 56797 20,4: 0: 12544 - 2: 192 + 3: 192 20,5: 0: 12561 - 2: 192 + 3: 192 20,6: 0: 49425 - 2: 192 + 3: 192 20,7: 0: 4319 - 2: 49152 + 3: 49152 17,9: 0: 8191 17,10: @@ -9434,13 +9437,13 @@ entities: 0: 7673 20,8: 0: 4369 - 2: 17476 + 3: 17476 20,9: 0: 17 - 2: 62532 + 3: 62532 20,10: 0: 30576 - 2: 140 + 3: 140 20,11: 0: 30583 16,16: @@ -9463,100 +9466,100 @@ entities: 0: 65535 19,13: 0: 30467 - 2: 8 + 3: 8 19,14: 0: 62983 19,15: 0: 111 - 2: 57344 + 3: 57344 19,16: - 2: 44714 + 3: 44714 20,12: 0: 816 - 2: 51200 + 3: 51200 20,13: - 2: 8091 + 3: 8091 20,14: - 2: 1809 + 3: 1809 0: 63488 20,15: 0: 143 - 2: 368 + 3: 368 21,12: - 2: 29783 + 3: 29783 21,13: - 2: 19 + 3: 19 21,14: 0: 63232 - 2: 2048 + 3: 2048 21,15: 0: 127 - 2: 128 + 3: 128 21,11: - 2: 21845 + 3: 21845 22,14: - 2: 768 + 3: 768 0: 64512 22,15: 0: 207 - 2: 48 + 3: 48 23,14: 0: 62208 - 2: 3072 + 3: 3072 23,15: 0: 63 - 2: 192 + 3: 192 24,14: - 2: 50944 + 3: 50944 0: 12288 24,15: 0: 3 - 2: 124 + 3: 124 21,9: - 2: 29457 + 3: 29457 21,10: - 2: 22357 + 3: 22357 21,8: - 2: 4593 + 3: 4593 21,7: - 2: 61440 + 3: 61440 0: 243 22,8: - 2: 241 + 3: 241 22,7: - 2: 63496 + 3: 63496 0: 1268 23,8: - 2: 35060 + 3: 35060 23,7: - 2: 20239 + 3: 20239 0: 240 24,8: - 2: 29934 + 3: 29934 0: 34816 21,4: - 2: 17648 + 3: 17648 21,5: - 2: 17588 + 3: 17588 21,6: - 2: 33012 + 3: 33012 0: 12288 22,4: - 2: 4369 + 3: 4369 22,5: - 2: 4369 + 3: 4369 22,6: - 2: 61937 + 3: 61937 22,3: - 2: 24401 + 3: 24401 23,6: - 2: 17656 + 3: 17656 23,5: - 2: 32768 + 3: 32768 24,5: - 2: 62440 + 3: 62440 24,7: - 2: 61711 + 3: 61711 0: 3824 12,17: 0: 45279 @@ -9569,7 +9572,7 @@ entities: 11,19: 0: 3268 12,20: - 2: 243 + 3: 243 13,17: 0: 28927 13,18: @@ -9577,7 +9580,7 @@ entities: 13,19: 0: 3975 13,20: - 2: 252 + 3: 252 14,17: 0: 30695 14,18: @@ -9591,15 +9594,15 @@ entities: 15,19: 0: 10231 14,20: - 2: 248 + 3: 248 16,17: 0: 4095 16,18: - 2: 4383 + 3: 4383 16,19: - 2: 4353 + 3: 4353 16,20: - 2: 1 + 3: 1 17,17: 0: 20479 17,18: @@ -9608,15 +9611,15 @@ entities: 0: 8191 18,18: 0: 19 - 2: 8 + 3: 8 19,18: - 2: 15 + 3: 15 19,17: - 2: 44714 + 3: 44714 11,18: 0: 17476 11,20: - 2: 226 + 3: 226 0,17: 0: 30583 -1,17: @@ -9628,17 +9631,17 @@ entities: 0,20: 0: 30583 1,17: - 2: 4369 + 3: 4369 1,18: - 2: 4369 + 3: 4369 1,19: - 2: 4369 + 3: 4369 1,20: - 2: 3857 + 3: 3857 5,-8: - 2: 255 + 3: 255 5,-9: - 2: 65520 + 3: 65520 6,-8: 0: 61166 6,-7: @@ -9649,213 +9652,213 @@ entities: 0: 60074 7,-8: 0: 61440 - 2: 230 + 3: 230 7,-7: 0: 65294 7,-6: 0: 65295 7,-9: - 2: 26208 + 3: 26208 8,-8: - 2: 240 + 3: 240 0: 61440 8,-7: 0: 65039 8,-6: 0: 65294 9,-8: - 2: 16 + 3: 16 0: 61440 9,-7: 0: 48015 9,-6: 0: 48027 10,-7: - 2: 61152 + 3: 61152 10,-6: - 2: 1646 + 3: 1646 11,-7: - 2: 12784 + 3: 12784 11,-6: - 2: 3 + 3: 3 0: 65416 12,-7: - 2: 240 + 3: 240 0: 32768 12,-6: 0: 30583 13,-7: - 2: 8752 + 3: 8752 13,-6: - 2: 8738 + 3: 8738 15,-6: - 2: 34816 + 3: 34816 16,-6: - 2: 65378 + 3: 65378 24,6: - 2: 29324 + 3: 29324 0: 35936 25,5: - 2: 13967 + 3: 13967 0: 51200 25,6: - 2: 43955 + 3: 43955 0: 21580 25,7: 0: 20479 - 2: 45056 + 3: 45056 25,8: - 2: 30409 + 3: 30409 0: 35126 26,5: - 2: 29583 + 3: 29583 0: 32768 26,6: - 2: 60563 + 3: 60563 0: 4972 26,7: 0: 55071 - 2: 10464 + 3: 10464 26,8: 0: 4377 - 2: 61158 + 3: 61158 27,5: - 2: 63024 + 3: 63024 27,6: - 2: 29625 + 3: 29625 27,7: 0: 115 - 2: 30596 + 3: 30596 27,8: 0: 49 - 2: 63874 + 3: 63874 28,6: - 2: 4368 + 3: 4368 28,7: - 2: 4369 + 3: 4369 24,9: - 2: 2275 + 3: 2275 25,9: - 2: 3974 + 3: 3974 0: 8 26,9: - 2: 3971 + 3: 3971 27,9: - 2: 54 + 3: 54 28,8: - 2: 17 + 3: 17 25,14: - 2: 4096 + 3: 4096 25,15: - 2: 1 + 3: 1 -12,4: - 2: 12032 + 3: 12032 -13,4: - 2: 12032 + 3: 12032 -12,5: 0: 22319 - 2: 8192 + 3: 8192 -13,5: 0: 22319 - 2: 8192 + 3: 8192 -12,6: 0: 1365 - 2: 21034 + 3: 21034 -13,6: - 2: 21034 + 3: 21034 0: 1365 -12,7: - 2: 3983 + 3: 3983 -13,7: - 2: 3983 + 3: 3983 -11,4: - 2: 12032 + 3: 12032 -11,5: 0: 22319 - 2: 8192 + 3: 8192 -11,6: 0: 1365 - 2: 21034 + 3: 21034 -11,7: - 2: 3983 + 3: 3983 -10,4: - 2: 12032 + 3: 12032 -10,5: 0: 22319 - 2: 8192 + 3: 8192 -10,6: 0: 1365 - 2: 21034 + 3: 21034 -10,7: - 2: 3983 + 3: 3983 -15,5: - 2: 8029 + 3: 8029 -15,6: - 2: 15 + 3: 15 -14,4: - 2: 16128 + 3: 16128 -14,5: 0: 15 - 2: 22320 + 3: 22320 -14,6: - 2: 30045 + 3: 30045 -14,7: - 2: 3997 + 3: 3997 20,-1: - 2: 25134 + 3: 25134 21,0: - 2: 143 + 3: 143 0: 12288 21,1: 0: 35723 21,2: 0: 59 - 2: 32768 + 3: 32768 21,3: - 2: 240 + 3: 240 21,-1: - 2: 9295 + 3: 9295 22,0: - 2: 241 + 3: 241 22,1: 0: 64511 22,2: 0: 15 - 2: 61440 + 3: 61440 22,-1: - 2: 9959 + 3: 9959 23,0: - 2: 18041 + 3: 18041 23,2: - 2: 30284 + 3: 30284 23,3: - 2: 3977 + 3: 3977 23,-1: - 2: 47862 + 3: 47862 23,1: - 2: 17484 + 3: 17484 24,0: - 2: 19615 + 3: 19615 24,1: - 2: 12079 + 3: 12079 24,2: - 2: 23794 + 3: 23794 24,3: - 2: 18175 + 3: 18175 -1,16: - 2: 17472 + 3: 17472 -1,18: - 2: 17472 + 3: 17472 -1,19: - 2: 17476 + 3: 17476 -1,20: - 2: 68 + 3: 68 0: 57344 0,21: 0: 32767 -1,21: 0: 224 - 2: 16384 + 3: 16384 0,22: 0: 30583 0,23: @@ -9864,15 +9867,15 @@ entities: 0: 8191 1,22: 0: 1 - 2: 4940 + 3: 4940 1,23: - 2: 4369 + 3: 4369 2,20: - 2: 1856 + 3: 1856 2,21: 0: 4095 2,22: - 2: 71 + 3: 71 3,20: 0: 21840 3,21: @@ -9880,11 +9883,11 @@ entities: 3,22: 0: 85 4,20: - 2: 1904 + 3: 1904 4,21: 0: 4095 4,22: - 2: 119 + 3: 119 5,20: 0: 21840 5,21: @@ -9892,66 +9895,66 @@ entities: 5,22: 0: 85 6,20: - 2: 36848 + 3: 36848 6,21: 0: 1911 - 2: 32768 + 3: 32768 6,22: - 2: 255 + 3: 255 7,20: - 2: 9008 + 3: 9008 7,22: - 2: 50 + 3: 50 7,21: - 2: 8738 + 3: 8738 -1,22: - 2: 17476 + 3: 17476 -1,23: - 2: 17476 + 3: 17476 20,-2: - 2: 283 + 3: 283 20,-4: - 2: 8746 + 3: 8746 20,-5: - 2: 59378 + 3: 59378 21,-4: - 2: 50737 + 3: 50737 21,-3: - 2: 37023 + 3: 37023 21,-2: - 2: 17659 + 3: 17659 22,-4: - 2: 12544 + 3: 12544 22,-3: - 2: 22327 + 3: 22327 22,-2: - 2: 16381 + 3: 16381 23,-2: - 2: 65330 + 3: 65330 24,-2: - 2: 12288 + 3: 12288 24,-1: - 2: 61431 + 3: 61431 15,20: - 2: 248 + 3: 248 25,0: - 2: 32757 + 3: 32757 25,1: - 2: 61407 + 3: 61407 25,2: - 2: 61371 + 3: 61371 25,3: - 2: 23 + 3: 23 25,-1: - 2: 12544 + 3: 12544 26,1: - 2: 768 + 3: 768 18,-5: - 2: 7936 + 3: 7936 19,-5: - 2: 496 + 3: 496 20,-6: - 2: 8192 + 3: 8192 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9968,6 +9971,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -10058,6 +10076,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -10475,8 +10508,6 @@ entities: parent: 2 - type: DeviceList devices: - - 11218 - - 11217 - 11485 - 11483 - 11484 @@ -10742,17 +10773,18 @@ entities: parent: 2 - type: DeviceList devices: - - 11303 - - 11304 - - 11305 + - 469 + - 468 + - 11095 - 11300 - 11302 - 11525 - 11526 - - 11087 + - 16195 - 15244 - 15412 - 650 + - 11087 - uid: 75 components: - type: Transform @@ -10765,12 +10797,12 @@ entities: - 11307 - 11308 - 11255 - - 11305 - - 11304 - - 11303 - - 15245 - - 15411 - 651 + - 8546 + - 8833 + - 469 + - 468 + - 16195 - uid: 76 components: - type: Transform @@ -10790,22 +10822,6 @@ entities: - 15410 - 652 - 15246 - - uid: 77 - components: - - type: Transform - pos: 10.5,87.5 - parent: 2 - - type: DeviceList - devices: - - 11510 - - 11511 - - 11515 - - 15247 - - 655 - - 15405 - - 15409 - - 656 - - 15342 - uid: 78 components: - type: Transform @@ -11437,8 +11453,6 @@ entities: - 11080 - 11486 - 11485 - - 11217 - - 11218 - 15202 - 713 - 15539 @@ -12575,6 +12589,11 @@ entities: - 15493 - 766 - 765 + - uid: 8537 + components: + - type: Transform + pos: 8.5,87.5 + parent: 2 - proto: AirAlarmFreezer entities: - uid: 191 @@ -12626,6 +12645,8 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 199 components: - type: Transform @@ -12696,13 +12717,6 @@ entities: - type: AccessReader access: - - Armory -- proto: AirlockArmoryLocked - entities: - - uid: 211 - components: - - type: Transform - pos: 38.5,58.5 - parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 212 @@ -12775,7 +12789,7 @@ entities: pos: 19.5,52.5 parent: 2 - type: Door - secondsUntilStateChange: -81043.82 + secondsUntilStateChange: -85216.42 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -12849,7 +12863,7 @@ entities: pos: 72.5,0.5 parent: 2 - type: Door - secondsUntilStateChange: -165119.3 + secondsUntilStateChange: -169291.89 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -13089,7 +13103,7 @@ entities: pos: 9.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -124155.69 + secondsUntilStateChange: -128328.29 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -13099,7 +13113,7 @@ entities: pos: -2.5,11.5 parent: 2 - type: Door - secondsUntilStateChange: -280646.6 + secondsUntilStateChange: -284819.16 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -13145,7 +13159,7 @@ entities: pos: 3.5,11.5 parent: 2 - type: Door - secondsUntilStateChange: -301635.3 + secondsUntilStateChange: -305807.88 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -13247,7 +13261,7 @@ entities: pos: -8.5,11.5 parent: 2 - type: Door - secondsUntilStateChange: -274808.78 + secondsUntilStateChange: -278981.34 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -13370,36 +13384,18 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,65.5 parent: 2 - - uid: 321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,65.5 - parent: 2 - uid: 322 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,71.5 parent: 2 - - uid: 323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,83.5 - parent: 2 - uid: 324 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,65.5 parent: 2 - - uid: 325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,65.5 - parent: 2 - uid: 326 components: - type: Transform @@ -13448,28 +13444,43 @@ entities: rot: 3.141592653589793 rad pos: 12.5,87.5 parent: 2 - - uid: 334 + - uid: 335 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,87.5 + pos: 20.5,87.5 parent: 2 - - uid: 335 + - uid: 8548 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,87.5 + pos: 10.5,65.5 parent: 2 - - uid: 336 + - uid: 18252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,83.5 + parent: 2 + - uid: 19294 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,87.5 + pos: 18.5,65.5 parent: 2 - - uid: 337 + - uid: 19583 components: - type: Transform - pos: 22.5,83.5 + pos: 18.5,83.5 + parent: 2 + - uid: 19588 + components: + - type: Transform + pos: 18.5,87.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + pos: 10.5,87.5 parent: 2 - uid: 22291 components: @@ -13663,7 +13674,7 @@ entities: pos: -60.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -254271.62 + secondsUntilStateChange: -258444.22 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -13785,7 +13796,7 @@ entities: pos: 86.5,29.5 parent: 2 - type: Door - secondsUntilStateChange: -205849.19 + secondsUntilStateChange: -210021.78 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -13894,11 +13905,11 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 371 + - uid: 18476 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,67.5 + pos: 18.5,67.5 parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: @@ -13924,10 +13935,11 @@ entities: path: /Maps/_Starlight/Shuttles/security_prism.yml - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 452 + - uid: 422 components: - type: Transform - pos: 14.5,81.5 + rot: 3.141592653589793 rad + pos: 12.5,89.5 parent: 2 - uid: 453 components: @@ -13940,12 +13952,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,95.5 parent: 2 - - uid: 457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,89.5 - parent: 2 - uid: 458 components: - type: Transform @@ -13970,12 +13976,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,69.5 parent: 2 - - uid: 462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,67.5 - parent: 2 - uid: 463 components: - type: Transform @@ -13990,7 +13990,8 @@ entities: - uid: 466 components: - type: Transform - pos: 22.5,81.5 + rot: 3.141592653589793 rad + pos: 20.5,67.5 parent: 2 - uid: 467 components: @@ -13998,18 +13999,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,89.5 parent: 2 - - uid: 468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,89.5 - parent: 2 - - uid: 469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,89.5 - parent: 2 - uid: 470 components: - type: Transform @@ -14036,11 +14025,33 @@ entities: - type: Transform pos: 13.5,-35.5 parent: 2 - - uid: 22290 + - uid: 19307 + components: + - type: Transform + pos: 10.5,81.5 + parent: 2 + - uid: 19810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,67.5 + parent: 2 + - uid: 20858 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,67.5 + pos: 18.5,89.5 + parent: 2 + - uid: 23084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,89.5 + parent: 2 + - uid: 23105 + components: + - type: Transform + pos: 18.5,81.5 parent: 2 - proto: AirlockFreezerHydroponicsLocked entities: @@ -14238,7 +14249,7 @@ entities: pos: 53.5,9.5 parent: 2 - type: Door - secondsUntilStateChange: -6606.918 + secondsUntilStateChange: -10779.509 state: Opening - type: DeviceLinkSource lastSignals: @@ -14249,7 +14260,7 @@ entities: pos: 53.5,10.5 parent: 2 - type: Door - secondsUntilStateChange: -6607.1177 + secondsUntilStateChange: -10779.708 state: Opening - type: DeviceLinkSource lastSignals: @@ -14299,20 +14310,10 @@ entities: - type: Transform pos: 28.5,62.5 parent: 2 - - uid: 421 - components: - - type: Transform - pos: 17.5,62.5 - parent: 2 - - uid: 422 - components: - - type: Transform - pos: 17.5,61.5 - parent: 2 - uid: 423 components: - type: Transform - pos: 17.5,63.5 + pos: 15.5,63.5 parent: 2 - uid: 424 components: @@ -14454,6 +14455,16 @@ entities: - type: Transform pos: 2.5,88.5 parent: 2 + - uid: 16224 + components: + - type: Transform + pos: 15.5,61.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: 15.5,62.5 + parent: 2 - proto: AirlockGlassShuttle entities: - uid: 454 @@ -14613,7 +14624,7 @@ entities: pos: 2.5,18.5 parent: 2 - type: Door - secondsUntilStateChange: -290990.75 + secondsUntilStateChange: -295163.3 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -14791,7 +14802,7 @@ entities: pos: 10.5,-2.5 parent: 2 - type: Door - secondsUntilStateChange: -110110.56 + secondsUntilStateChange: -114283.164 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -15166,7 +15177,7 @@ entities: pos: 32.5,16.5 parent: 2 - type: Door - secondsUntilStateChange: -233977.08 + secondsUntilStateChange: -238149.67 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -15254,6 +15265,11 @@ entities: rot: 3.141592653589793 rad pos: 53.5,50.5 parent: 2 + - uid: 211 + components: + - type: Transform + pos: 38.5,58.5 + parent: 2 - uid: 607 components: - type: Transform @@ -15308,7 +15324,7 @@ entities: pos: 10.5,48.5 parent: 2 - type: Door - secondsUntilStateChange: -45066.902 + secondsUntilStateChange: -49239.49 - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -15682,18 +15698,12 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,85.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - uid: 656 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,85.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - uid: 657 components: - type: Transform @@ -17353,11 +17363,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,83.5 parent: 2 - - uid: 884 - components: - - type: Transform - pos: 9.5,65.5 - parent: 2 - uid: 885 components: - type: Transform @@ -17422,6 +17427,11 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,60.5 parent: 2 + - uid: 19347 + components: + - type: Transform + pos: 8.5,65.5 + parent: 2 - proto: APECircuitboard entities: - uid: 896 @@ -17673,6 +17683,12 @@ entities: parent: 2 - proto: AtmosDeviceFanDirectional entities: + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,67.5 + parent: 2 - uid: 937 components: - type: Transform @@ -17696,24 +17712,12 @@ entities: rot: 3.141592653589793 rad pos: 38.5,66.5 parent: 2 - - uid: 941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,67.5 - parent: 2 - uid: 942 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,67.5 parent: 2 - - uid: 943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,67.5 - parent: 2 - uid: 944 components: - type: Transform @@ -17749,39 +17753,17 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,83.5 parent: 2 - - uid: 950 - components: - - type: Transform - pos: 14.5,81.5 - parent: 2 - uid: 951 components: - type: Transform pos: 20.5,81.5 parent: 2 - - uid: 952 - components: - - type: Transform - pos: 22.5,81.5 - parent: 2 - - uid: 953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,89.5 - parent: 2 - uid: 954 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,89.5 parent: 2 - - uid: 955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,89.5 - parent: 2 - uid: 956 components: - type: Transform @@ -17870,6 +17852,12 @@ entities: rot: 1.5707963267948966 rad pos: 81.5,23.5 parent: 2 + - uid: 18263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,67.5 + parent: 2 - uid: 24724 components: - type: Transform @@ -18511,6 +18499,8 @@ entities: entities: - uid: 1080 components: + - type: MetaData + name: snake eater - type: Transform pos: 76.607346,5.533638 parent: 2 @@ -20083,6 +20073,8 @@ entities: parent: 2 - uid: 1360 components: + - type: MetaData + name: vent burn chamber button - type: Transform rot: 3.141592653589793 rad pos: -8.5,27.5 @@ -30847,73 +30839,18 @@ entities: - uid: 3508 components: - type: Transform - pos: 14.5,82.5 - parent: 2 - - uid: 3509 - components: - - type: Transform - pos: 14.5,83.5 - parent: 2 - - uid: 3510 - components: - - type: Transform - pos: 14.5,84.5 + pos: 10.5,83.5 parent: 2 - uid: 3511 components: - type: Transform pos: 14.5,85.5 parent: 2 - - uid: 3512 - components: - - type: Transform - pos: 14.5,86.5 - parent: 2 - - uid: 3513 - components: - - type: Transform - pos: 14.5,87.5 - parent: 2 - - uid: 3514 - components: - - type: Transform - pos: 14.5,88.5 - parent: 2 - - uid: 3515 - components: - - type: Transform - pos: 22.5,87.5 - parent: 2 - - uid: 3516 - components: - - type: Transform - pos: 22.5,86.5 - parent: 2 - uid: 3517 components: - type: Transform pos: 22.5,85.5 parent: 2 - - uid: 3518 - components: - - type: Transform - pos: 22.5,83.5 - parent: 2 - - uid: 3519 - components: - - type: Transform - pos: 22.5,82.5 - parent: 2 - - uid: 3520 - components: - - type: Transform - pos: 22.5,84.5 - parent: 2 - - uid: 3521 - components: - - type: Transform - pos: 22.5,88.5 - parent: 2 - uid: 3522 components: - type: Transform @@ -31184,16 +31121,6 @@ entities: - type: Transform pos: 0.5,61.5 parent: 2 - - uid: 3576 - components: - - type: Transform - pos: 9.5,65.5 - parent: 2 - - uid: 3577 - components: - - type: Transform - pos: 9.5,64.5 - parent: 2 - uid: 3578 components: - type: Transform @@ -31267,17 +31194,17 @@ entities: - uid: 3592 components: - type: Transform - pos: 14.5,66.5 + pos: 8.5,65.5 parent: 2 - uid: 3593 components: - type: Transform - pos: 14.5,65.5 + pos: 10.5,66.5 parent: 2 - uid: 3594 components: - type: Transform - pos: 14.5,64.5 + pos: 10.5,65.5 parent: 2 - uid: 3595 components: @@ -36904,6 +36831,16 @@ entities: - type: Transform pos: 18.5,-2.5 parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 10.5,64.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 - uid: 10959 components: - type: Transform @@ -36914,6 +36851,16 @@ entities: - type: Transform pos: 15.5,4.5 parent: 2 + - uid: 15949 + components: + - type: Transform + pos: 10.5,88.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + pos: 10.5,86.5 + parent: 2 - uid: 16171 components: - type: Transform @@ -36924,6 +36871,11 @@ entities: - type: Transform pos: 27.5,-31.5 parent: 2 + - uid: 16175 + components: + - type: Transform + pos: 10.5,84.5 + parent: 2 - uid: 16408 components: - type: Transform @@ -36939,6 +36891,11 @@ entities: - type: Transform pos: 13.5,-32.5 parent: 2 + - uid: 17852 + components: + - type: Transform + pos: 10.5,82.5 + parent: 2 - uid: 18809 components: - type: Transform @@ -36949,6 +36906,11 @@ entities: - type: Transform pos: 13.5,-33.5 parent: 2 + - uid: 19515 + components: + - type: Transform + pos: 10.5,87.5 + parent: 2 - uid: 20870 components: - type: Transform @@ -41804,6 +41766,11 @@ entities: parent: 2 - proto: CableMV entities: + - uid: 3577 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 - uid: 5683 components: - type: Transform @@ -45099,16 +45066,6 @@ entities: - type: Transform pos: 48.5,31.5 parent: 2 - - uid: 6342 - components: - - type: Transform - pos: 47.5,31.5 - parent: 2 - - uid: 6343 - components: - - type: Transform - pos: 47.5,32.5 - parent: 2 - uid: 6344 components: - type: Transform @@ -49104,15 +49061,10 @@ entities: - type: Transform pos: 66.5,44.5 parent: 2 - - uid: 7146 - components: - - type: Transform - pos: 9.5,65.5 - parent: 2 - uid: 7147 components: - type: Transform - pos: 9.5,64.5 + pos: 8.5,65.5 parent: 2 - uid: 7148 components: @@ -49619,6 +49571,16 @@ entities: - type: Transform pos: 33.5,7.5 parent: 2 + - uid: 9278 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 9279 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 - uid: 21524 components: - type: Transform @@ -53765,11 +53727,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,66.5 parent: 2 - - uid: 7996 - components: - - type: Transform - pos: 67.5,64.5 - parent: 2 - uid: 7997 components: - type: Transform @@ -53809,24 +53766,14 @@ entities: - uid: 8004 components: - type: Transform - pos: 69.5,64.5 - parent: 2 - - uid: 8005 - components: - - type: Transform - pos: 70.5,64.5 + pos: 74.5,64.5 parent: 2 - uid: 8006 components: - type: Transform - pos: 71.5,64.5 + pos: 69.5,64.5 parent: 2 - uid: 8007 - components: - - type: Transform - pos: 72.5,64.5 - parent: 2 - - uid: 8008 components: - type: Transform pos: 73.5,64.5 @@ -53834,7 +53781,7 @@ entities: - uid: 8009 components: - type: Transform - pos: 74.5,64.5 + pos: 70.5,64.5 parent: 2 - uid: 8010 components: @@ -56326,6 +56273,11 @@ entities: parent: 2 - proto: Chair entities: + - uid: 884 + components: + - type: Transform + pos: 13.5,64.5 + parent: 2 - uid: 8481 components: - type: Transform @@ -56371,16 +56323,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-0.5 parent: 2 - - uid: 8489 - components: - - type: Transform - pos: 16.5,64.5 - parent: 2 - - uid: 8490 - components: - - type: Transform - pos: 18.5,64.5 - parent: 2 - uid: 8491 components: - type: Transform @@ -56595,45 +56537,11 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-21.5 parent: 2 - - uid: 8532 - components: - - type: Transform - pos: 9.5,64.5 - parent: 2 - - uid: 8533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,61.5 - parent: 2 - - uid: 8534 - components: - - type: Transform - pos: 10.5,64.5 - parent: 2 - - uid: 8535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,61.5 - parent: 2 - uid: 8536 components: - type: Transform pos: 8.5,64.5 parent: 2 - - uid: 8537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,61.5 - parent: 2 - - uid: 8538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,61.5 - parent: 2 - uid: 8539 components: - type: Transform @@ -56650,7 +56558,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,61.5 + pos: 16.5,61.5 parent: 2 - uid: 8542 components: @@ -56676,78 +56584,78 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,87.5 parent: 2 - - uid: 8546 + - uid: 8551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,84.5 + pos: 24.5,86.5 parent: 2 - - uid: 8547 + - uid: 8552 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,84.5 + pos: 24.5,84.5 parent: 2 - - uid: 8548 + - uid: 8555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,84.5 + rot: 1.5707963267948966 rad + pos: 0.5,73.5 parent: 2 - - uid: 8549 + - uid: 8556 components: - type: Transform - pos: 16.5,86.5 + rot: 1.5707963267948966 rad + pos: 0.5,67.5 parent: 2 - - uid: 8550 + - uid: 8557 components: - type: Transform - pos: 18.5,86.5 + rot: 1.5707963267948966 rad + pos: 0.5,66.5 parent: 2 - - uid: 8551 + - uid: 11303 components: - type: Transform - pos: 24.5,86.5 + rot: 3.141592653589793 rad + pos: 14.5,61.5 parent: 2 - - uid: 8552 + - uid: 11304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,84.5 + pos: 17.5,64.5 parent: 2 - - uid: 8553 + - uid: 14934 components: - type: Transform - pos: 9.5,86.5 + rot: 3.141592653589793 rad + pos: 17.5,61.5 parent: 2 - - uid: 8554 + - uid: 15929 components: - type: Transform - pos: 10.5,86.5 + rot: 3.141592653589793 rad + pos: 10.5,61.5 parent: 2 - - uid: 8555 + - uid: 16215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,73.5 + pos: 9.5,64.5 parent: 2 - - uid: 8556 + - uid: 19491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,67.5 + pos: 22.5,64.5 parent: 2 - - uid: 8557 + - uid: 19493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,66.5 + pos: 23.5,64.5 parent: 2 - - uid: 8558 + - uid: 19498 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,84.5 + pos: 18.5,61.5 parent: 2 - proto: ChairFolding entities: @@ -57561,6 +57469,24 @@ entities: - type: Transform pos: 34.273277,57.4952 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 8726 components: - type: Transform @@ -57990,6 +57916,11 @@ entities: parent: 2 - proto: ClosetFireFilled entities: + - uid: 8553 + components: + - type: Transform + pos: 11.736048,61.50819 + parent: 2 - uid: 8808 components: - type: Transform @@ -58075,6 +58006,24 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 8826 components: - type: Transform @@ -58105,16 +58054,6 @@ entities: - type: Transform pos: 71.48887,-2.4895809 parent: 2 - - uid: 8833 - components: - - type: Transform - pos: 14.228893,61.50385 - parent: 2 - - uid: 8834 - components: - - type: Transform - pos: 14.7381525,61.50385 - parent: 2 - uid: 8835 components: - type: Transform @@ -58130,6 +58069,11 @@ entities: - type: Transform pos: 1.5,61.5 parent: 2 + - uid: 19585 + components: + - type: Transform + pos: 11.236048,61.49777 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 8838 @@ -58778,6 +58722,13 @@ entities: - type: Transform pos: 69.47606,57.74652 parent: 2 +- proto: ClothingEyesBlindfold + entities: + - uid: 24860 + components: + - type: Transform + pos: 1.5608244,-21.502644 + parent: 2 - proto: ClothingEyesGlasses entities: - uid: 8944 @@ -58813,7 +58764,7 @@ entities: - uid: 8947 components: - type: Transform - pos: -58.46983,-3.3884842 + pos: -58.546112,-3.3906162 parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: @@ -59682,6 +59633,20 @@ entities: - type: Transform pos: 35.5,47.5 parent: 2 +- proto: ComputerCargoOrdersService + entities: + - uid: 17862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 2 + - uid: 24876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,31.5 + parent: 2 - proto: ComputerComms entities: - uid: 9052 @@ -60655,24 +60620,6 @@ entities: - type: Transform pos: 73.5,69.5 parent: 2 - - uid: 9195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,64.5 - parent: 2 - - uid: 9196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,64.5 - parent: 2 - - uid: 9197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,64.5 - parent: 2 - uid: 9198 components: - type: Transform @@ -60693,12 +60640,6 @@ entities: - type: Transform pos: 69.5,69.5 parent: 2 - - uid: 9202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,64.5 - parent: 2 - uid: 9203 components: - type: Transform @@ -60719,36 +60660,6 @@ entities: - type: Transform pos: 73.5,70.5 parent: 2 - - uid: 9207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,64.5 - parent: 2 - - uid: 9208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,64.5 - parent: 2 - - uid: 9209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,64.5 - parent: 2 - - uid: 9210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,64.5 - parent: 2 - - uid: 9211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,64.5 - parent: 2 - uid: 9212 components: - type: Transform @@ -61170,15 +61081,15 @@ entities: parent: 2 - proto: CrateFilledSpawner entities: - - uid: 9278 + - uid: 24868 components: - type: Transform - pos: 75.5,68.5 + pos: 73.5,67.5 parent: 2 - - uid: 9279 + - uid: 24869 components: - type: Transform - pos: 75.5,67.5 + pos: 73.5,66.5 parent: 2 - proto: CrateFreezer entities: @@ -61910,6 +61821,7 @@ entities: text: Storage - type: WarpPoint location: Storage + - type: BombingTarget - uid: 9377 components: - type: Transform @@ -62084,6 +61996,9 @@ entities: - type: Transform pos: -21.5,14.5 parent: 2 + - type: WarpPoint + location: AME + - type: BombingTarget - proto: DefaultStationBeaconAnchor entities: - uid: 9395 @@ -62098,6 +62013,9 @@ entities: - type: Transform pos: 23.5,23.5 parent: 2 + - type: WarpPoint + location: Anomaly + - type: BombingTarget - proto: DefaultStationBeaconArmory entities: - uid: 9397 @@ -62105,6 +62023,7 @@ entities: - type: Transform pos: 45.5,40.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconArrivals entities: - uid: 9398 @@ -62119,6 +62038,7 @@ entities: - type: Transform pos: 35.5,3.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconAtmospherics entities: - uid: 9400 @@ -62145,6 +62065,7 @@ entities: - type: Transform pos: 22.5,35.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconBridge entities: - uid: 9404 @@ -62152,6 +62073,7 @@ entities: - type: Transform pos: 61.5,-5.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconBrig entities: - uid: 9405 @@ -62159,6 +62081,7 @@ entities: - type: Transform pos: 52.5,37.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconBrigMed entities: - uid: 9406 @@ -62180,6 +62103,7 @@ entities: - type: Transform pos: 70.5,67.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconCargoReception entities: - uid: 9409 @@ -62201,6 +62125,7 @@ entities: - type: Transform pos: 33.5,-16.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconChemistry entities: - uid: 9412 @@ -62208,6 +62133,7 @@ entities: - type: Transform pos: 63.5,36.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconCMORoom entities: - uid: 9413 @@ -62250,6 +62176,7 @@ entities: - type: Transform pos: 79.5,34.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconDockingArm entities: - uid: 9419 @@ -62257,6 +62184,7 @@ entities: - type: Transform pos: 5.5,85.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconDorms entities: - uid: 9420 @@ -62264,6 +62192,7 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconEngineering entities: - uid: 9421 @@ -62278,6 +62207,7 @@ entities: - type: Transform pos: 80.5,21.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconEvac entities: - uid: 9423 @@ -62285,6 +62215,7 @@ entities: - type: Transform pos: 17.5,63.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconEVAStorage entities: - uid: 9424 @@ -62292,6 +62223,7 @@ entities: - type: Transform pos: 66.5,14.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconGravGen entities: - uid: 9425 @@ -62320,6 +62252,7 @@ entities: - type: Transform pos: 15.5,25.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconKitchen entities: - uid: 9429 @@ -62327,6 +62260,7 @@ entities: - type: Transform pos: 22.5,47.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconLawOffice entities: - uid: 9430 @@ -62334,6 +62268,7 @@ entities: - type: Transform pos: 48.5,-21.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconLibrary entities: - uid: 9431 @@ -62341,6 +62276,7 @@ entities: - type: Transform pos: 23.5,55.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconMedbay entities: - uid: 9432 @@ -62348,6 +62284,7 @@ entities: - type: Transform pos: 70.5,29.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconMedical entities: - uid: 9433 @@ -62376,6 +62313,7 @@ entities: - type: Transform pos: 47.5,1.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconQMRoom entities: - uid: 9437 @@ -62397,6 +62335,7 @@ entities: - type: Transform pos: 42.5,22.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconRND entities: - uid: 9440 @@ -62404,6 +62343,7 @@ entities: - type: Transform pos: 29.5,10.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconRobotics entities: - uid: 9441 @@ -62411,6 +62351,7 @@ entities: - type: Transform pos: 38.5,11.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconSalvage entities: - uid: 9442 @@ -62418,6 +62359,7 @@ entities: - type: Transform pos: 72.5,59.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconScience entities: - uid: 9443 @@ -62437,6 +62379,7 @@ entities: - type: Transform pos: 43.5,47.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconServerRoom entities: - uid: 9446 @@ -62470,6 +62413,7 @@ entities: - type: Transform pos: 72.5,43.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconTechVault entities: - uid: 9451 @@ -62498,6 +62442,7 @@ entities: - type: Transform pos: 11.5,41.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconToolRoom entities: - uid: 9455 @@ -62505,6 +62450,7 @@ entities: - type: Transform pos: 8.5,1.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconVault entities: - uid: 9456 @@ -62512,6 +62458,7 @@ entities: - type: Transform pos: 59.5,13.5 parent: 2 + - type: BombingTarget - proto: DefaultStationBeaconWardensOffice entities: - uid: 9457 @@ -62519,6 +62466,7 @@ entities: - type: Transform pos: 45.5,32.5 parent: 2 + - type: BombingTarget - proto: DefibrillatorCabinetFilled entities: - uid: 9458 @@ -69081,6 +69029,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 + - uid: 8554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,61.5 + parent: 2 - uid: 8682 components: - type: Transform @@ -69370,23 +69324,12 @@ entities: rot: 3.141592653589793 rad pos: 28.5,61.5 parent: 2 - - uid: 10650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,61.5 - parent: 2 - uid: 10651 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,24.5 parent: 2 - - uid: 10652 - components: - - type: Transform - pos: 10.5,64.5 - parent: 2 - uid: 10653 components: - type: Transform @@ -69410,17 +69353,6 @@ entities: - type: Transform pos: 24.5,86.5 parent: 2 - - uid: 10658 - components: - - type: Transform - pos: 17.5,86.5 - parent: 2 - - uid: 10659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,84.5 - parent: 2 - uid: 10660 components: - type: Transform @@ -70070,6 +70002,11 @@ entities: - type: Transform pos: 23.5,-4.5 parent: 2 + - uid: 16218 + components: + - type: Transform + pos: 19.5,64.5 + parent: 2 - uid: 16419 components: - type: Transform @@ -70087,6 +70024,11 @@ entities: - type: Transform pos: -23.5,2.5 parent: 2 + - uid: 19591 + components: + - type: Transform + pos: 11.5,64.5 + parent: 2 - uid: 23620 components: - type: Transform @@ -70665,16 +70607,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,61.5 parent: 2 - - uid: 24831 - components: - - type: Transform - pos: 13.5,64.5 - parent: 2 - - uid: 24832 - components: - - type: Transform - pos: 21.5,64.5 - parent: 2 - uid: 24833 components: - type: Transform @@ -71485,7 +71417,7 @@ entities: pos: 16.5,4.5 parent: 2 - type: Door - secondsUntilStateChange: -2238.8901 + secondsUntilStateChange: -6411.4805 state: Opening - proto: FenceMetalStraight entities: @@ -71785,8 +71717,6 @@ entities: parent: 2 - type: DeviceList devices: - - 11218 - - 11217 - 11485 - 11483 - 11484 @@ -72019,13 +71949,14 @@ entities: parent: 2 - type: DeviceList devices: - - 11303 - - 11304 - - 11305 + - 11525 - 11300 - 11302 - - 11525 - 11526 + - 11095 + - 468 + - 469 + - 16195 - 11087 - uid: 10948 components: @@ -72039,9 +71970,9 @@ entities: - 11307 - 11308 - 11255 - - 11305 - - 11304 - - 11303 + - 468 + - 469 + - 16195 - uid: 10949 components: - type: Transform @@ -72086,17 +72017,6 @@ entities: - 11252 - 11251 - 11310 - - uid: 10952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,83.5 - parent: 2 - - type: DeviceList - devices: - - 11510 - - 11511 - - 11515 - uid: 10953 components: - type: Transform @@ -73380,8 +73300,6 @@ entities: - 11080 - 11486 - 11485 - - 11217 - - 11218 - uid: 11050 components: - type: Transform @@ -73456,6 +73374,12 @@ entities: devices: - 11348 - 11347 + - uid: 16223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,83.5 + parent: 2 - uid: 21353 components: - type: Transform @@ -73542,7 +73466,7 @@ entities: pos: 76.5,2.5 parent: 2 - type: Door - secondsUntilStateChange: -109124.99 + secondsUntilStateChange: -113297.59 state: Closing - uid: 11066 components: @@ -73810,6 +73734,10 @@ entities: - type: Transform pos: 19.5,60.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10947 + - 74 - uid: 11096 components: - type: Transform @@ -75046,30 +74974,6 @@ entities: - 10946 - 59 - 155 - - uid: 11217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10932 - - 11049 - - 59 - - 118 - - uid: 11218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10932 - - 11049 - - 59 - - 118 - uid: 11219 components: - type: Transform @@ -75203,7 +75107,7 @@ entities: pos: 68.5,32.5 parent: 2 - type: Door - secondsUntilStateChange: -41517.477 + secondsUntilStateChange: -45690.062 state: Closing - type: DeviceNetwork deviceLists: @@ -75396,6 +75300,28 @@ entities: - 158 - proto: FirelockGlass entities: + - uid: 468 + components: + - type: Transform + pos: 15.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10947 + - 74 + - 10948 + - 75 + - uid: 469 + components: + - type: Transform + pos: 15.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10947 + - 74 + - 10948 + - 75 - uid: 11249 components: - type: Transform @@ -75995,39 +75921,6 @@ entities: - 10947 - 73 - 74 - - uid: 11303 - components: - - type: Transform - pos: 17.5,61.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10947 - - 10948 - - 74 - - 75 - - uid: 11304 - components: - - type: Transform - pos: 17.5,62.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10947 - - 10948 - - 74 - - 75 - - uid: 11305 - components: - - type: Transform - pos: 17.5,63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10947 - - 10948 - - 74 - - 75 - uid: 11306 components: - type: Transform @@ -78174,9 +78067,7 @@ entities: - type: DeviceNetwork deviceLists: - 10950 - - 10952 - 61 - - 77 - uid: 11511 components: - type: Transform @@ -78185,9 +78076,7 @@ entities: - type: DeviceNetwork deviceLists: - 10950 - - 10952 - 61 - - 77 - uid: 11512 components: - type: Transform @@ -78223,9 +78112,7 @@ entities: - type: DeviceNetwork deviceLists: - 10950 - - 10952 - 61 - - 77 - uid: 11516 components: - type: Transform @@ -78492,6 +78379,17 @@ entities: deviceLists: - 11003 - 150 + - uid: 16195 + components: + - type: Transform + pos: 15.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10947 + - 74 + - 10948 + - 75 - proto: Fireplace entities: - uid: 11541 @@ -78872,6 +78770,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 24867 + components: + - type: Transform + pos: 71.5,35.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: FloorWaterEntity entities: - uid: 11589 @@ -85296,6 +85201,26 @@ entities: color: '#FF4D00FF' - proto: GasPipeStraight entities: + - uid: 10658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,62.5 + parent: 2 + - type: VentCrawTube + connected: True + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,62.5 + parent: 2 + - type: VentCrawTube + connected: True + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 12114 components: - type: Transform @@ -96614,26 +96539,6 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,62.5 - parent: 2 - - type: VentCrawTube - connected: True - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,62.5 - parent: 2 - - type: VentCrawTube - connected: True - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 13489 components: - type: Transform @@ -97638,6 +97543,26 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,62.5 + parent: 2 + - type: VentCrawTube + connected: True + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,62.5 + parent: 2 + - type: VentCrawTube + connected: True + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12108 components: - type: Transform @@ -107651,26 +107576,6 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,62.5 - parent: 2 - - type: VentCrawTube - connected: True - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,62.5 - parent: 2 - - type: VentCrawTube - connected: True - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14629 components: - type: Transform @@ -108512,6 +108417,16 @@ entities: color: '#79FFFFFF' - proto: GasPipeTJunction entities: + - uid: 8834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,62.5 + parent: 2 + - type: VentCrawTube + connected: True + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 11862 components: - type: Transform @@ -110640,16 +110555,6 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,62.5 - parent: 2 - - type: VentCrawTube - connected: True - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 14935 components: - type: Transform @@ -110780,6 +110685,16 @@ entities: color: '#0335FCFF' - proto: GasPipeTJunctionAlt1 entities: + - uid: 10650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,62.5 + parent: 2 + - type: VentCrawTube + connected: True + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12109 components: - type: Transform @@ -112531,16 +112446,6 @@ entities: connected: True - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,62.5 - parent: 2 - - type: VentCrawTube - connected: True - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15129 components: - type: Transform @@ -113092,6 +112997,8 @@ entities: connected: True - uid: 15192 components: + - type: MetaData + name: hot line release - type: Transform rot: 3.141592653589793 rad pos: -4.5,21.5 @@ -113125,6 +113032,18 @@ entities: connected: True - proto: GasVentPump entities: + - uid: 8546 + components: + - type: Transform + pos: 11.5,63.5 + parent: 2 + - type: VentCrawTube + connected: True + - type: DeviceNetwork + deviceLists: + - 75 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8629 components: - type: Transform @@ -113773,18 +113692,6 @@ entities: connected: True - type: AtmosPipeColor color: '#0335FCFF' - - uid: 15245 - components: - - type: Transform - pos: 14.5,63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - type: VentCrawTube - connected: True - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 15246 components: - type: Transform @@ -113803,9 +113710,6 @@ entities: - type: Transform pos: 12.5,85.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - type: VentCrawTube connected: True - type: AtmosPipeColor @@ -114964,9 +114868,6 @@ entities: - type: Transform pos: 22.5,85.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - type: VentCrawTube connected: True - type: AtmosPipeColor @@ -115572,6 +115473,20 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8833 + components: + - type: Transform + pos: 10.5,63.5 + parent: 2 + - type: VentCrawTube + connected: True + - type: DeviceNetwork + deviceLists: + - 75 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15389 components: - type: Transform @@ -115801,9 +115716,6 @@ entities: - type: Transform pos: 14.5,85.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - type: VentCrawTube connected: True - type: AtmosPipeLayers @@ -115857,9 +115769,6 @@ entities: - type: Transform pos: 20.5,85.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - type: VentCrawTube connected: True - type: AtmosPipeLayers @@ -115881,20 +115790,6 @@ entities: pipeLayer: Secondary - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15411 - components: - - type: Transform - pos: 13.5,63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - type: VentCrawTube - connected: True - - type: AtmosPipeLayers - pipeLayer: Secondary - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15412 components: - type: Transform @@ -118588,6 +118483,106 @@ entities: parent: 2 - proto: Grille entities: + - uid: 334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,70.5 + parent: 2 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,68.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,73.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,74.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,75.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,79.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,76.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,78.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,82.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,81.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,83.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,87.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,88.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,89.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,64.5 + parent: 2 - uid: 8820 components: - type: Transform @@ -118611,6 +118606,11 @@ entities: - type: Transform pos: 7.5,-28.5 parent: 2 + - uid: 13487 + components: + - type: Transform + pos: 9.5,66.5 + parent: 2 - uid: 15053 components: - type: Transform @@ -120211,11 +120211,6 @@ entities: - type: Transform pos: -0.5,64.5 parent: 2 - - uid: 15929 - components: - - type: Transform - pos: 23.5,65.5 - parent: 2 - uid: 15930 components: - type: Transform @@ -120226,21 +120221,11 @@ entities: - type: Transform pos: 3.5,90.5 parent: 2 - - uid: 15932 - components: - - type: Transform - pos: 15.5,66.5 - parent: 2 - uid: 15933 components: - type: Transform pos: 21.5,67.5 parent: 2 - - uid: 15934 - components: - - type: Transform - pos: 15.5,65.5 - parent: 2 - uid: 15935 components: - type: Transform @@ -120264,7 +120249,7 @@ entities: - uid: 15939 components: - type: Transform - pos: 15.5,81.5 + pos: 9.5,65.5 parent: 2 - uid: 15940 components: @@ -120286,21 +120271,6 @@ entities: - type: Transform pos: 3.5,73.5 parent: 2 - - uid: 15944 - components: - - type: Transform - pos: 8.5,65.5 - parent: 2 - - uid: 15945 - components: - - type: Transform - pos: 6.5,87.5 - parent: 2 - - uid: 15946 - components: - - type: Transform - pos: 15.5,82.5 - parent: 2 - uid: 15947 components: - type: Transform @@ -120311,11 +120281,6 @@ entities: - type: Transform pos: 13.5,82.5 parent: 2 - - uid: 15949 - components: - - type: Transform - pos: 23.5,81.5 - parent: 2 - uid: 15950 components: - type: Transform @@ -120681,11 +120646,6 @@ entities: - type: Transform pos: 13.5,81.5 parent: 2 - - uid: 16025 - components: - - type: Transform - pos: 6.5,83.5 - parent: 2 - uid: 16026 components: - type: Transform @@ -120701,16 +120661,6 @@ entities: - type: Transform pos: -2.5,82.5 parent: 2 - - uid: 16029 - components: - - type: Transform - pos: 7.5,87.5 - parent: 2 - - uid: 16030 - components: - - type: Transform - pos: 23.5,67.5 - parent: 2 - uid: 16031 components: - type: Transform @@ -121412,11 +121362,6 @@ entities: - type: Transform pos: 37.5,64.5 parent: 2 - - uid: 16175 - components: - - type: Transform - pos: 23.5,66.5 - parent: 2 - uid: 16176 components: - type: Transform @@ -121437,16 +121382,6 @@ entities: - type: Transform pos: -0.5,63.5 parent: 2 - - uid: 16180 - components: - - type: Transform - pos: 15.5,67.5 - parent: 2 - - uid: 16181 - components: - - type: Transform - pos: 8.5,87.5 - parent: 2 - uid: 16182 components: - type: Transform @@ -121462,16 +121397,6 @@ entities: - type: Transform pos: 37.5,65.5 parent: 2 - - uid: 16185 - components: - - type: Transform - pos: 23.5,89.5 - parent: 2 - - uid: 16186 - components: - - type: Transform - pos: 23.5,82.5 - parent: 2 - uid: 16187 components: - type: Transform @@ -121512,11 +121437,6 @@ entities: - type: Transform pos: 13.5,65.5 parent: 2 - - uid: 16195 - components: - - type: Transform - pos: 15.5,87.5 - parent: 2 - uid: 16196 components: - type: Transform @@ -121580,7 +121500,8 @@ entities: - uid: 16208 components: - type: Transform - pos: 15.5,88.5 + rot: 3.141592653589793 rad + pos: 29.5,81.5 parent: 2 - uid: 16209 components: @@ -121612,11 +121533,6 @@ entities: - type: Transform pos: 21.5,89.5 parent: 2 - - uid: 16215 - components: - - type: Transform - pos: 23.5,87.5 - parent: 2 - uid: 16216 components: - type: Transform @@ -121627,11 +121543,6 @@ entities: - type: Transform pos: -0.5,77.5 parent: 2 - - uid: 16218 - components: - - type: Transform - pos: 23.5,88.5 - parent: 2 - uid: 16219 components: - type: Transform @@ -121652,26 +121563,11 @@ entities: - type: Transform pos: -2.5,72.5 parent: 2 - - uid: 16223 - components: - - type: Transform - pos: 15.5,89.5 - parent: 2 - - uid: 16224 - components: - - type: Transform - pos: 7.5,83.5 - parent: 2 - uid: 16225 components: - type: Transform pos: 19.5,87.5 parent: 2 - - uid: 16226 - components: - - type: Transform - pos: 23.5,83.5 - parent: 2 - uid: 16227 components: - type: Transform @@ -121790,12 +121686,8 @@ entities: - uid: 16250 components: - type: Transform - pos: 8.5,83.5 - parent: 2 - - uid: 16251 - components: - - type: Transform - pos: 15.5,83.5 + rot: 3.141592653589793 rad + pos: 30.5,66.5 parent: 2 - uid: 16252 components: @@ -123286,7 +123178,8 @@ entities: - uid: 16556 components: - type: Transform - pos: 17.5,64.5 + rot: 3.141592653589793 rad + pos: 30.5,77.5 parent: 2 - uid: 16557 components: @@ -123344,22 +123237,171 @@ entities: - type: Transform pos: 29.5,-34.5 parent: 2 + - uid: 18377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,72.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + pos: 15.5,64.5 + parent: 2 + - uid: 18448 + components: + - type: Transform + pos: 17.5,67.5 + parent: 2 + - uid: 18474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,87.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: 9.5,67.5 + parent: 2 - uid: 18960 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-34.5 parent: 2 + - uid: 19309 + components: + - type: Transform + pos: 9.5,83.5 + parent: 2 + - uid: 19312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,69.5 + parent: 2 - uid: 19487 components: - type: Transform pos: 30.5,-33.5 parent: 2 + - uid: 19511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,71.5 + parent: 2 + - uid: 19581 + components: + - type: Transform + pos: 9.5,82.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,65.5 + parent: 2 - uid: 19619 components: - type: Transform pos: 30.5,-32.5 parent: 2 + - uid: 19748 + components: + - type: Transform + pos: 9.5,82.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + pos: 17.5,65.5 + parent: 2 + - uid: 22266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,89.5 + parent: 2 + - uid: 22270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,67.5 + parent: 2 + - uid: 23066 + components: + - type: Transform + pos: 17.5,66.5 + parent: 2 + - uid: 23081 + components: + - type: Transform + pos: 9.5,81.5 + parent: 2 + - uid: 23092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,88.5 + parent: 2 + - uid: 23247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,80.5 + parent: 2 + - uid: 23248 + components: + - type: Transform + pos: 29.5,80.5 + parent: 2 + - uid: 23249 + components: + - type: Transform + pos: 29.5,79.5 + parent: 2 + - uid: 23250 + components: + - type: Transform + pos: 29.5,78.5 + parent: 2 + - uid: 23254 + components: + - type: Transform + pos: 29.5,77.5 + parent: 2 + - uid: 23256 + components: + - type: Transform + pos: 29.5,76.5 + parent: 2 + - uid: 23257 + components: + - type: Transform + pos: 29.5,75.5 + parent: 2 + - uid: 23258 + components: + - type: Transform + pos: 29.5,74.5 + parent: 2 + - uid: 23259 + components: + - type: Transform + pos: 29.5,73.5 + parent: 2 + - uid: 23260 + components: + - type: Transform + pos: 29.5,72.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + pos: 29.5,71.5 + parent: 2 - uid: 23812 components: - type: Transform @@ -123392,6 +123434,56 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-35.5 parent: 2 + - uid: 24831 + components: + - type: Transform + pos: 29.5,69.5 + parent: 2 + - uid: 24832 + components: + - type: Transform + pos: 29.5,68.5 + parent: 2 + - uid: 24855 + components: + - type: Transform + pos: 29.5,67.5 + parent: 2 + - uid: 24856 + components: + - type: Transform + pos: 29.5,66.5 + parent: 2 + - uid: 24857 + components: + - type: Transform + pos: 29.5,65.5 + parent: 2 + - uid: 24858 + components: + - type: Transform + pos: 29.5,64.5 + parent: 2 + - uid: 24859 + components: + - type: Transform + pos: 29.5,70.5 + parent: 2 + - uid: 24866 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 + - uid: 24872 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 2 + - uid: 24873 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 - proto: GrilleBroken entities: - uid: 6588 @@ -123739,6 +123831,12 @@ entities: parent: 2 - proto: GrilleDiagonal entities: + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,81.5 + parent: 2 - uid: 10841 components: - type: Transform @@ -125057,18 +125155,18 @@ entities: rot: 3.141592653589793 rad pos: -26.5,33.5 parent: 2 - - uid: 16840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,81.5 - parent: 2 - uid: 16841 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,89.5 parent: 2 + - uid: 24874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-31.5 + parent: 2 - proto: GrilleSpawner entities: - uid: 15897 @@ -125713,6 +125811,24 @@ entities: - type: Transform pos: -4.5,-28.5 parent: 2 + - uid: 24870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-31.5 + parent: 2 + - uid: 24871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-31.5 + parent: 2 + - uid: 24875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-31.5 + parent: 2 - proto: GunSafeBaseSecure entities: - uid: 16967 @@ -125728,8 +125844,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -125746,15 +125862,15 @@ entities: showEnts: False occludes: True ents: + - 16970 - 16969 - - 16981 - 16971 - 16968 - 16980 - 16979 - 16982 - 16972 - - 16970 + - 16981 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -125995,6 +126111,11 @@ entities: parent: 2 - proto: Holopad entities: + - uid: 9207 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 - uid: 17020 components: - type: Transform @@ -126860,17 +126981,17 @@ entities: parent: 2 - proto: IntercomCommon entities: - - uid: 17153 + - uid: 15944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-14.5 + rot: 3.141592653589793 rad + pos: 6.5,83.5 parent: 2 - - uid: 17154 + - uid: 17153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,83.5 + rot: 1.5707963267948966 rad + pos: 24.5,-14.5 parent: 2 - uid: 17155 components: @@ -127070,6 +127191,18 @@ entities: - type: Transform pos: 62.30373,40.88583 parent: 2 +- proto: Jukebox + entities: + - uid: 9208 + components: + - type: Transform + pos: 11.5,47.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 - proto: JumpJet entities: - uid: 11 @@ -127130,9 +127263,6 @@ entities: pitch: 1 volume: 0 path: /Audio/Items/Culinary/chop.ogg - speedModifier: 1 - qualities: - - Slicing - proto: KitchenMicrowave entities: - uid: 17180 @@ -127450,6 +127580,8 @@ entities: entities: - uid: 17216 components: + - type: MetaData + name: vent burn chamber button - type: Transform rot: 3.141592653589793 rad pos: -8.5,27.5 @@ -127467,6 +127599,8 @@ entities: - Toggle - uid: 17217 components: + - type: MetaData + name: vent burn chamber button - type: Transform pos: -19.5,44.5 parent: 2 @@ -127483,6 +127617,8 @@ entities: - Toggle - uid: 17218 components: + - type: MetaData + name: vent burn chamber button - type: Transform rot: 3.141592653589793 rad pos: -17.5,50.5 @@ -127500,6 +127636,8 @@ entities: - Toggle - uid: 17219 components: + - type: MetaData + name: vent burn chamber button - type: Transform pos: -8.5,23.5 parent: 2 @@ -127518,6 +127656,8 @@ entities: entities: - uid: 17220 components: + - type: MetaData + name: radiation shutter toggle - type: Transform pos: -61.5,4.5 parent: 2 @@ -127542,6 +127682,8 @@ entities: entities: - uid: 17221 components: + - type: MetaData + name: shutter control - type: Transform rot: -1.5707963267948966 rad pos: 50.5,24.5 @@ -127556,10 +127698,14 @@ entities: - Toggle - uid: 17222 components: + - type: MetaData + name: shutter control - type: Transform rot: 1.5707963267948966 rad pos: 50.5,24.5 parent: 2 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 19878: @@ -127572,6 +127718,8 @@ entities: entities: - uid: 17223 components: + - type: MetaData + name: vent test chamber button - type: Transform rot: 3.141592653589793 rad pos: 34.5,2.5 @@ -127583,6 +127731,8 @@ entities: - Toggle - uid: 17224 components: + - type: MetaData + name: vent test chamber button - type: Transform rot: 3.141592653589793 rad pos: 37.5,2.5 @@ -127594,6 +127744,8 @@ entities: - Toggle - uid: 17225 components: + - type: MetaData + name: shutter control - type: Transform rot: -1.5707963267948966 rad pos: 42.5,11.5 @@ -127611,6 +127763,8 @@ entities: - Toggle - uid: 17226 components: + - type: MetaData + name: shutter control - type: Transform rot: 1.5707963267948966 rad pos: 42.5,15.5 @@ -130919,6 +131073,16 @@ entities: parent: 2 - proto: PartRodMetal entities: + - uid: 7996 + components: + - type: Transform + pos: -56.967136,7.533188 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -57.008804,7.8146334 + parent: 2 - uid: 17643 components: - type: Transform @@ -132272,17 +132436,17 @@ entities: - type: Transform pos: 63.700954,-2.993027 parent: 2 - - uid: 17851 + - uid: 19584 components: - type: Transform - pos: 19.5,64.5 + pos: 16.5,64.5 parent: 2 - proto: PottedPlant2 entities: - - uid: 17852 + - uid: 8538 components: - type: Transform - pos: 9.5,84.5 + pos: 3.5,84.5 parent: 2 - uid: 24265 components: @@ -132351,15 +132515,10 @@ entities: parent: 2 - proto: PottedPlant3 entities: - - uid: 17862 - components: - - type: Transform - pos: 10.5,34.5 - parent: 2 - - uid: 17863 + - uid: 8558 components: - type: Transform - pos: 15.5,64.5 + pos: 14.5,64.5 parent: 2 - proto: PottedPlant30 entities: @@ -132813,6 +132972,23 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 + - uid: 3513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,84.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: 15.5,86.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,84.5 + parent: 2 - uid: 11852 components: - type: Transform @@ -132848,11 +133024,6 @@ entities: pos: -18.5,27.5 parent: 2 - type: Timer - - uid: 17941 - components: - - type: Transform - pos: 18.5,64.5 - parent: 2 - uid: 17942 components: - type: Transform @@ -134613,11 +134784,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,61.5 parent: 2 - - uid: 18252 - components: - - type: Transform - pos: 9.5,86.5 - parent: 2 - uid: 18253 components: - type: Transform @@ -134642,11 +134808,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,61.5 parent: 2 - - uid: 18257 - components: - - type: Transform - pos: 10.5,64.5 - parent: 2 - uid: 18258 components: - type: Transform @@ -134675,12 +134836,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,77.5 parent: 2 - - uid: 18263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,84.5 - parent: 2 - uid: 18264 components: - type: Transform @@ -134846,6 +135001,11 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-30.5 parent: 2 + - uid: 23087 + components: + - type: Transform + pos: 14.5,64.5 + parent: 2 - proto: PoweredlightBlue entities: - uid: 18294 @@ -135304,12 +135464,60 @@ entities: parent: 2 - proto: PoweredlightSodium entities: + - uid: 321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,66.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,82.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,88.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,88.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,82.5 + parent: 2 - uid: 8687 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,3.5 parent: 2 + - uid: 15128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,82.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,66.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,88.5 + parent: 2 - uid: 18370 components: - type: Transform @@ -135346,16 +135554,10 @@ entities: pos: 2.5,94.5 parent: 2 - uid: 18376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,66.5 - parent: 2 - - uid: 18377 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,66.5 + pos: 20.5,66.5 parent: 2 - uid: 18378 components: @@ -135734,27 +135936,9 @@ entities: - uid: 18446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,82.5 - parent: 2 - - uid: 18447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,88.5 - parent: 2 - - uid: 18448 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 20.5,88.5 parent: 2 - - uid: 18449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,82.5 - parent: 2 - uid: 18450 components: - type: Transform @@ -135793,18 +135977,6 @@ entities: rot: 1.5707963267948966 rad pos: 90.5,28.5 parent: 2 - - uid: 18457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,82.5 - parent: 2 - - uid: 18458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,88.5 - parent: 2 - uid: 18459 components: - type: Transform @@ -135852,12 +136024,6 @@ entities: - type: Transform pos: 73.5,-5.5 parent: 2 - - uid: 18468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,66.5 - parent: 2 - uid: 18469 components: - type: Transform @@ -135886,23 +136052,17 @@ entities: - type: Transform pos: 86.5,-1.5 parent: 2 - - uid: 18474 + - uid: 19297 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,66.5 - parent: 2 - - uid: 18475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,88.5 + pos: 10.5,82.5 parent: 2 - - uid: 18476 + - uid: 20242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,82.5 + rot: -1.5707963267948966 rad + pos: 10.5,66.5 parent: 2 - uid: 24643 components: @@ -138713,11 +138873,6 @@ entities: - type: Transform pos: 13.5,57.5 parent: 2 - - uid: 18941 - components: - - type: Transform - pos: 18.5,83.5 - parent: 2 - uid: 18942 components: - type: Transform @@ -138994,11 +139149,6 @@ entities: - type: Transform pos: 54.5,61.5 parent: 2 - - uid: 18997 - components: - - type: Transform - pos: 70.5,64.5 - parent: 2 - uid: 18998 components: - type: Transform @@ -139427,6 +139577,11 @@ entities: parent: 2 - proto: RandomVendingSnacks entities: + - uid: 9197 + components: + - type: Transform + pos: 73.5,58.5 + parent: 2 - uid: 19083 components: - type: Transform @@ -139437,11 +139592,6 @@ entities: - type: Transform pos: 4.5,22.5 parent: 2 - - uid: 19085 - components: - - type: Transform - pos: 74.5,58.5 - parent: 2 - proto: RCD entities: - uid: 19086 @@ -139743,6 +139893,65 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,87.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 13.5,82.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 9.5,81.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,64.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + pos: 9.5,82.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + pos: 9.5,83.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: 17.5,65.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,88.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + pos: 9.5,67.5 + parent: 2 + - uid: 18458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,89.5 + parent: 2 - uid: 19146 components: - type: Transform @@ -139828,7 +140037,7 @@ entities: - uid: 19162 components: - type: Transform - pos: 17.5,64.5 + pos: 9.5,66.5 parent: 2 - uid: 19163 components: @@ -140480,26 +140689,11 @@ entities: - type: Transform pos: 14.5,-26.5 parent: 2 - - uid: 19294 - components: - - type: Transform - pos: 23.5,66.5 - parent: 2 - - uid: 19295 - components: - - type: Transform - pos: 15.5,66.5 - parent: 2 - uid: 19296 components: - type: Transform pos: 34.5,13.5 parent: 2 - - uid: 19297 - components: - - type: Transform - pos: 23.5,82.5 - parent: 2 - uid: 19298 components: - type: Transform @@ -140545,36 +140739,16 @@ entities: - type: Transform pos: 1.5,95.5 parent: 2 - - uid: 19307 - components: - - type: Transform - pos: 21.5,87.5 - parent: 2 - uid: 19308 components: - type: Transform pos: 13.5,67.5 parent: 2 - - uid: 19309 - components: - - type: Transform - pos: 23.5,89.5 - parent: 2 - - uid: 19310 - components: - - type: Transform - pos: 11.5,87.5 - parent: 2 - uid: 19311 components: - type: Transform pos: 39.5,66.5 parent: 2 - - uid: 19312 - components: - - type: Transform - pos: 23.5,83.5 - parent: 2 - uid: 19313 components: - type: Transform @@ -140740,11 +140914,6 @@ entities: - type: Transform pos: 19.5,65.5 parent: 2 - - uid: 19347 - components: - - type: Transform - pos: 23.5,67.5 - parent: 2 - uid: 19348 components: - type: Transform @@ -141446,21 +141615,11 @@ entities: - type: Transform pos: 39.5,64.5 parent: 2 - - uid: 19491 - components: - - type: Transform - pos: 15.5,67.5 - parent: 2 - uid: 19492 components: - type: Transform pos: 13.5,66.5 parent: 2 - - uid: 19493 - components: - - type: Transform - pos: 15.5,65.5 - parent: 2 - uid: 19494 components: - type: Transform @@ -141481,11 +141640,6 @@ entities: - type: Transform pos: 19.5,66.5 parent: 2 - - uid: 19498 - components: - - type: Transform - pos: 23.5,65.5 - parent: 2 - uid: 19499 components: - type: Transform @@ -141516,11 +141670,6 @@ entities: - type: Transform pos: 26.5,83.5 parent: 2 - - uid: 19505 - components: - - type: Transform - pos: 23.5,81.5 - parent: 2 - uid: 19506 components: - type: Transform @@ -141546,11 +141695,6 @@ entities: - type: Transform pos: 11.5,82.5 parent: 2 - - uid: 19511 - components: - - type: Transform - pos: 15.5,82.5 - parent: 2 - uid: 19512 components: - type: Transform @@ -141566,16 +141710,6 @@ entities: - type: Transform pos: 13.5,81.5 parent: 2 - - uid: 19515 - components: - - type: Transform - pos: 15.5,81.5 - parent: 2 - - uid: 19516 - components: - - type: Transform - pos: 13.5,82.5 - parent: 2 - uid: 19517 components: - type: Transform @@ -141596,11 +141730,6 @@ entities: - type: Transform pos: 11.5,81.5 parent: 2 - - uid: 19521 - components: - - type: Transform - pos: 7.5,83.5 - parent: 2 - uid: 19522 components: - type: Transform @@ -141626,11 +141755,6 @@ entities: - type: Transform pos: 19.5,88.5 parent: 2 - - uid: 19527 - components: - - type: Transform - pos: 15.5,89.5 - parent: 2 - uid: 19528 components: - type: Transform @@ -141729,7 +141853,8 @@ entities: - uid: 19547 components: - type: Transform - pos: 8.5,65.5 + rot: -1.5707963267948966 rad + pos: 9.5,87.5 parent: 2 - uid: 19548 components: @@ -141894,48 +142019,18 @@ entities: - uid: 19580 components: - type: Transform - pos: 6.5,87.5 - parent: 2 - - uid: 19581 - components: - - type: Transform - pos: 7.5,87.5 + pos: 17.5,66.5 parent: 2 - uid: 19582 components: - type: Transform - pos: 8.5,87.5 - parent: 2 - - uid: 19583 - components: - - type: Transform - pos: 6.5,83.5 - parent: 2 - - uid: 19584 - components: - - type: Transform - pos: 15.5,88.5 - parent: 2 - - uid: 19585 - components: - - type: Transform - pos: 15.5,87.5 + pos: 21.5,87.5 parent: 2 - uid: 19586 components: - type: Transform pos: 19.5,87.5 parent: 2 - - uid: 19587 - components: - - type: Transform - pos: 23.5,88.5 - parent: 2 - - uid: 19588 - components: - - type: Transform - pos: 23.5,87.5 - parent: 2 - uid: 19589 components: - type: Transform @@ -141946,16 +142041,6 @@ entities: - type: Transform pos: 13.5,83.5 parent: 2 - - uid: 19591 - components: - - type: Transform - pos: 8.5,83.5 - parent: 2 - - uid: 19592 - components: - - type: Transform - pos: 15.5,83.5 - parent: 2 - uid: 19593 components: - type: Transform @@ -142087,6 +142172,47 @@ entities: - type: Transform pos: 37.5,64.5 parent: 2 + - uid: 19743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,89.5 + parent: 2 + - uid: 19746 + components: + - type: Transform + pos: 17.5,67.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,87.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,82.5 + parent: 2 + - uid: 22290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,81.5 + parent: 2 + - uid: 23086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,83.5 + parent: 2 + - uid: 23104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,88.5 + parent: 2 - uid: 24718 components: - type: Transform @@ -142755,12 +142881,46 @@ entities: parent: 2 - proto: Screen entities: + - uid: 452 + components: + - type: Transform + pos: 22.5,83.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,83.5 + parent: 2 - uid: 10693 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-26.5 parent: 2 + - uid: 15945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,87.5 + parent: 2 + - uid: 16840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,65.5 + parent: 2 + - uid: 18257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,83.5 + parent: 2 + - uid: 19295 + components: + - type: Transform + pos: 22.5,87.5 + parent: 2 - uid: 19725 components: - type: Transform @@ -142862,11 +143022,6 @@ entities: - type: Transform pos: 16.5,65.5 parent: 2 - - uid: 19743 - components: - - type: Transform - pos: 18.5,65.5 - parent: 2 - uid: 19744 components: - type: Transform @@ -142877,21 +143032,11 @@ entities: - type: Transform pos: -0.5,81.5 parent: 2 - - uid: 19746 - components: - - type: Transform - pos: 16.5,83.5 - parent: 2 - uid: 19747 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 19748 - components: - - type: Transform - pos: 18.5,87.5 - parent: 2 - uid: 19749 components: - type: Transform @@ -143224,12 +143369,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,87.5 parent: 2 - - uid: 19810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,83.5 - parent: 2 - uid: 19811 components: - type: Transform @@ -143397,7 +143536,7 @@ entities: - uid: 19835 components: - type: Transform - pos: -57.1246,7.5615873 + pos: -57.529636,7.6270027 parent: 2 - uid: 19836 components: @@ -143501,7 +143640,7 @@ entities: - uid: 19852 components: - type: Transform - pos: -57.332935,7.655402 + pos: -57.602554,7.772938 parent: 2 - uid: 19853 components: @@ -143682,12 +143821,16 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,23.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 19879 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,22.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 19880 components: - type: Transform @@ -144031,12 +144174,16 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,32.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 19939 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,33.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: SignAi entities: - uid: 19940 @@ -144065,6 +144212,8 @@ entities: entities: - uid: 19944 components: + - type: MetaData + name: shutter control - type: Transform rot: 1.5707963267948966 rad pos: 18.5,48.5 @@ -144082,6 +144231,8 @@ entities: - Toggle - uid: 19945 components: + - type: MetaData + name: shutter toggle - type: Transform rot: 3.141592653589793 rad pos: -59.5,-1.5 @@ -144102,6 +144253,8 @@ entities: - Toggle - uid: 19946 components: + - type: MetaData + name: shutter toggle - type: Transform pos: -59.5,4.5 parent: 2 @@ -144147,6 +144300,8 @@ entities: - Toggle - uid: 19949 components: + - type: MetaData + name: open cell door to courtroom - type: Transform pos: 47.5,-19.5 parent: 2 @@ -144157,6 +144312,8 @@ entities: - Open - uid: 19950 components: + - type: MetaData + name: shutter control - type: Transform rot: -1.5707963267948966 rad pos: 26.5,32.5 @@ -144192,6 +144349,8 @@ entities: - Toggle - uid: 19951 components: + - type: MetaData + name: shutter control - type: Transform pos: 67.5,-1.5 parent: 2 @@ -144238,6 +144397,8 @@ entities: - Toggle - uid: 19952 components: + - type: MetaData + name: shutter control - type: Transform rot: -1.5707963267948966 rad pos: 18.5,49.5 @@ -144266,6 +144427,8 @@ entities: entities: - uid: 19953 components: + - type: MetaData + name: bathroom lock - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-5.5 @@ -144277,6 +144440,8 @@ entities: - DoorBolt - uid: 19954 components: + - type: MetaData + name: bathroom lock - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-5.5 @@ -144288,6 +144453,8 @@ entities: - DoorBolt - uid: 19955 components: + - type: MetaData + name: shutter control - type: Transform rot: 1.5707963267948966 rad pos: 14.5,27.5 @@ -144305,6 +144472,8 @@ entities: - Toggle - uid: 19956 components: + - type: MetaData + name: shutter control - type: Transform rot: -1.5707963267948966 rad pos: 75.5,43.5 @@ -144328,6 +144497,8 @@ entities: - Toggle - uid: 19957 components: + - type: MetaData + name: exterior shutter control - type: Transform rot: 3.141592653589793 rad pos: 43.5,29.5 @@ -144351,10 +144522,14 @@ entities: - Toggle - uid: 19958 components: + - type: MetaData + name: brig shutter control - type: Transform rot: -1.5707963267948966 rad pos: 48.5,34.5 parent: 2 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 19938: @@ -144365,10 +144540,14 @@ entities: - Toggle - uid: 19959 components: + - type: MetaData + name: bathroom lock - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-5.5 parent: 2 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 198: @@ -144376,6 +144555,8 @@ entities: - DoorBolt - uid: 19960 components: + - type: MetaData + name: bathroom lock - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-9.5 @@ -144387,6 +144568,8 @@ entities: - DoorBolt - uid: 19961 components: + - type: MetaData + name: open blast door button - type: Transform pos: 79.5,38.5 parent: 2 @@ -144397,6 +144580,8 @@ entities: - Toggle - uid: 19962 components: + - type: MetaData + name: push here to open door - type: Transform rot: 1.5707963267948966 rad pos: 65.5,27.5 @@ -146196,17 +146381,17 @@ entities: parent: 2 - proto: SignShipDock entities: - - uid: 20241 + - uid: 15934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,65.5 + rot: -1.5707963267948966 rad + pos: 15.5,65.5 parent: 2 - - uid: 20242 + - uid: 20264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,65.5 + rot: -1.5707963267948966 rad + pos: 22.5,65.5 parent: 2 - proto: SignSmoking entities: @@ -146265,6 +146450,18 @@ entities: parent: 2 - proto: SignSpace entities: + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,83.5 + parent: 2 + - uid: 19521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,87.5 + parent: 2 - uid: 20253 components: - type: Transform @@ -146316,16 +146513,6 @@ entities: - type: Transform pos: 3.5,93.5 parent: 2 - - uid: 20263 - components: - - type: Transform - pos: 17.5,87.5 - parent: 2 - - uid: 20264 - components: - - type: Transform - pos: 17.5,83.5 - parent: 2 - uid: 20265 components: - type: Transform @@ -146336,11 +146523,6 @@ entities: - type: Transform pos: -0.5,70.5 parent: 2 - - uid: 20267 - components: - - type: Transform - pos: 17.5,65.5 - parent: 2 - uid: 20268 components: - type: Transform @@ -147764,6 +147946,33 @@ entities: - type: Transform pos: 23.5,35.5 parent: 2 + - uid: 24861 + components: + - type: Transform + pos: 22.5,36.5 + parent: 2 + - uid: 24862 + components: + - type: Transform + pos: 24.5,39.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 24863 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 24864 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 24865 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 - proto: SpawnMobCatBingus entities: - uid: 20502 @@ -147871,10 +148080,10 @@ entities: parent: 2 - proto: SpawnMobSupplyBot entities: - - uid: 20517 + - uid: 8008 components: - type: Transform - pos: 68.5,66.5 + pos: 61.5,60.5 parent: 2 - proto: SpawnMobWalter entities: @@ -149485,6 +149694,28 @@ entities: parent: 2 - proto: SurveillanceCameraCommand entities: + - uid: 8005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: captain bedroom + - uid: 9195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: RD bedroom - uid: 20793 components: - type: Transform @@ -149723,6 +149954,28 @@ entities: - SurveillanceCameraCommand nameSet: True id: tech vault + - uid: 24846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: bridge pit east + - uid: 24854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI exterior - proto: SurveillanceCameraEngineering entities: - uid: 20816 @@ -150163,18 +150416,51 @@ entities: - SurveillanceCameraEngineering nameSet: True id: atmos north + - uid: 24849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG vent + - uid: 24850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: hall south + - uid: 24851 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: hall north - proto: SurveillanceCameraGeneral entities: - - uid: 20858 + - uid: 19085 components: - type: Transform - pos: 10.5,84.5 + rot: 3.141592653589793 rad + pos: 15.5,-4.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: docking arm airlock 4 + id: arrivals west - uid: 20859 components: - type: Transform @@ -150617,6 +150903,72 @@ entities: - SurveillanceCameraGeneral nameSet: True id: docking arm observation + - uid: 24841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arrivals east + - uid: 24842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arrivals dock west + - uid: 24843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arrivals dock east + - uid: 24844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Courtroom + - uid: 24847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: evac approach + - uid: 24853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: escape pods - proto: SurveillanceCameraMedical entities: - uid: 20904 @@ -150812,6 +151164,70 @@ entities: parent: 2 - proto: SurveillanceCameraScience entities: + - uid: 9210 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: R&D + - uid: 9211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Hall center + - uid: 11217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Hall West + - uid: 11218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: break + - uid: 18997 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: servers + - uid: 20517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: artifact west - uid: 20925 components: - type: Transform @@ -151039,6 +151455,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: security dock north + - uid: 24845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Legal Office - proto: SurveillanceCameraService entities: - uid: 20946 @@ -151180,6 +151607,17 @@ entities: - SurveillanceCameraService nameSet: True id: janitor closet + - uid: 24848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: stage - proto: SurveillanceCameraSupply entities: - uid: 20959 @@ -151290,6 +151728,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: cargo south hallway + - uid: 24852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: salvage lockers - proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 20969 @@ -151340,9 +151789,6 @@ entities: pitch: 1 volume: 0 path: /Audio/Items/Culinary/chop.ogg - speedModifier: 1 - qualities: - - Slicing - proto: SyndicateBusinessCard entities: - uid: 20974 @@ -154045,6 +154491,8 @@ entities: entities: - uid: 21436 components: + - type: MetaData + name: canister transport conveyor control - type: Transform rot: 3.141592653589793 rad pos: 9.5,28.5 @@ -154265,6 +154713,8 @@ entities: - Close - uid: 21437 components: + - type: MetaData + name: express conveyor control - type: Transform pos: 61.5,58.5 parent: 2 @@ -154320,69 +154770,6 @@ entities: - - Middle - Off 9212: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9211: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9210: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9209: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9208: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9207: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9202: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9196: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9197: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 9195: - - Left - Reverse - - Right @@ -154461,6 +154848,8 @@ entities: - Off - uid: 21438 components: + - type: MetaData + name: mail carousel control - type: Transform pos: 51.5,67.5 parent: 2 @@ -154538,6 +154927,8 @@ entities: - Off - uid: 21439 components: + - type: MetaData + name: recycler control - type: Transform pos: 70.5,60.5 parent: 2 @@ -154566,6 +154957,8 @@ entities: - Off - uid: 21440 components: + - type: MetaData + name: recycler control - type: Transform rot: 1.5707963267948966 rad pos: 79.5,34.5 @@ -154609,6 +155002,8 @@ entities: - Off - uid: 21441 components: + - type: MetaData + name: Conveyor Control - type: Transform pos: -27.5,2.5 parent: 2 @@ -154938,6 +155333,8 @@ entities: - Off - uid: 21442 components: + - type: MetaData + name: dump conveyor control - type: Transform rot: -1.5707963267948966 rad pos: 79.5,36.5 @@ -155129,8 +155526,6 @@ entities: - type: Transform pos: -10.5,-9.5 parent: 2 -- proto: VendingMachineBoozeSyndicate - entities: - uid: 21452 components: - type: Transform @@ -155757,6 +156152,24 @@ entities: parent: 2 - proto: WallReinforced entities: + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,65.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,65.5 + parent: 2 + - uid: 955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,83.5 + parent: 2 - uid: 10696 components: - type: Transform @@ -155767,11 +156180,62 @@ entities: - type: Transform pos: 28.5,-31.5 parent: 2 + - uid: 11305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,65.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: 8.5,65.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,83.5 + parent: 2 + - uid: 15946 + components: + - type: Transform + pos: 23.5,87.5 + parent: 2 - uid: 15981 components: - type: Transform pos: 24.5,-33.5 parent: 2 + - uid: 16029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,87.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,87.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,83.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + pos: 22.5,87.5 + parent: 2 + - uid: 16185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,83.5 + parent: 2 - uid: 16407 components: - type: Transform @@ -155792,16 +156256,51 @@ entities: - type: Transform pos: 10.5,-33.5 parent: 2 + - uid: 18468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,83.5 + parent: 2 - uid: 19291 components: - type: Transform pos: 28.5,-33.5 parent: 2 + - uid: 19310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,87.5 + parent: 2 - uid: 19486 components: - type: Transform pos: 28.5,-32.5 parent: 2 + - uid: 19505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,87.5 + parent: 2 + - uid: 19516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,83.5 + parent: 2 + - uid: 19527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,87.5 + parent: 2 + - uid: 19587 + components: + - type: Transform + pos: 23.5,83.5 + parent: 2 - uid: 20683 components: - type: Transform @@ -159357,11 +159856,6 @@ entities: - type: Transform pos: 2.5,58.5 parent: 2 - - uid: 22266 - components: - - type: Transform - pos: 9.5,87.5 - parent: 2 - uid: 22267 components: - type: Transform @@ -159377,16 +159871,6 @@ entities: - type: Transform pos: 3.5,87.5 parent: 2 - - uid: 22270 - components: - - type: Transform - pos: 18.5,65.5 - parent: 2 - - uid: 22271 - components: - - type: Transform - pos: 16.5,83.5 - parent: 2 - uid: 22272 components: - type: Transform @@ -161395,7 +161879,7 @@ entities: - uid: 22685 components: - type: Transform - pos: 9.5,65.5 + pos: 22.5,83.5 parent: 2 - uid: 22686 components: @@ -163292,11 +163776,6 @@ entities: - type: Transform pos: 35.5,64.5 parent: 2 - - uid: 23066 - components: - - type: Transform - pos: 17.5,65.5 - parent: 2 - uid: 23067 components: - type: Transform @@ -163310,7 +163789,8 @@ entities: - uid: 23069 components: - type: Transform - pos: 10.5,65.5 + rot: -1.5707963267948966 rad + pos: 24.5,65.5 parent: 2 - uid: 23070 components: @@ -163330,7 +163810,8 @@ entities: - uid: 23073 components: - type: Transform - pos: 18.5,87.5 + rot: -1.5707963267948966 rad + pos: 15.5,65.5 parent: 2 - uid: 23074 components: @@ -163367,11 +163848,6 @@ entities: - type: Transform pos: 4.5,83.5 parent: 2 - - uid: 23081 - components: - - type: Transform - pos: 24.5,65.5 - parent: 2 - uid: 23082 components: - type: Transform @@ -163382,26 +163858,11 @@ entities: - type: Transform pos: 7.5,58.5 parent: 2 - - uid: 23084 - components: - - type: Transform - pos: 10.5,83.5 - parent: 2 - uid: 23085 components: - type: Transform pos: 3.5,92.5 parent: 2 - - uid: 23086 - components: - - type: Transform - pos: 17.5,87.5 - parent: 2 - - uid: 23087 - components: - - type: Transform - pos: 10.5,87.5 - parent: 2 - uid: 23088 components: - type: Transform @@ -163422,11 +163883,6 @@ entities: - type: Transform pos: 24.5,87.5 parent: 2 - - uid: 23092 - components: - - type: Transform - pos: 9.5,83.5 - parent: 2 - uid: 23093 components: - type: Transform @@ -163482,16 +163938,6 @@ entities: - type: Transform pos: 30.5,63.5 parent: 2 - - uid: 23104 - components: - - type: Transform - pos: 18.5,83.5 - parent: 2 - - uid: 23105 - components: - - type: Transform - pos: 17.5,83.5 - parent: 2 - uid: 23106 components: - type: Transform @@ -164061,6 +164507,52 @@ entities: parent: 2 - proto: WallReinforcedDiagonal entities: + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,66.5 + parent: 2 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,82.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,66.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,88.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + pos: 16.5,66.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,82.5 + parent: 2 + - uid: 18457 + components: + - type: Transform + pos: 16.5,88.5 + parent: 2 + - uid: 18475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,82.5 + parent: 2 - uid: 23214 components: - type: Transform @@ -164243,33 +164735,10 @@ entities: pos: 22.5,53.5 parent: 2 - uid: 23246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,82.5 - parent: 2 - - uid: 23247 - components: - - type: Transform - pos: 18.5,66.5 - parent: 2 - - uid: 23248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,66.5 - parent: 2 - - uid: 23249 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,66.5 - parent: 2 - - uid: 23250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,82.5 + pos: 14.5,88.5 parent: 2 - uid: 23251 components: @@ -164289,51 +164758,12 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,87.5 parent: 2 - - uid: 23254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,82.5 - parent: 2 - uid: 23255 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,83.5 parent: 2 - - uid: 23256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,82.5 - parent: 2 - - uid: 23257 - components: - - type: Transform - pos: 10.5,66.5 - parent: 2 - - uid: 23258 - components: - - type: Transform - pos: 10.5,88.5 - parent: 2 - - uid: 23259 - components: - - type: Transform - pos: 18.5,88.5 - parent: 2 - - uid: 23260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,88.5 - parent: 2 - - uid: 23261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,88.5 - parent: 2 - uid: 23262 components: - type: Transform @@ -170415,6 +170845,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - type: Contraband + allowedDepartments: + - Security + severity: Restricted - proto: WeaponSubMachineGunWt550 entities: - uid: 24380 @@ -170512,6 +170946,11 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: + - uid: 9196 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 - uid: 18813 components: - type: Transform @@ -171743,7 +172182,7 @@ entities: pos: 38.5,-15.5 parent: 2 - type: Door - secondsUntilStateChange: -170489.48 + secondsUntilStateChange: -174662.08 - uid: 24597 components: - type: Transform diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_armory.yml b/Resources/Prototypes/Catalog/Cargo/cargo_armory.yml index bb4130e5717d..bae1317a266e 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_armory.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_armory.yml @@ -34,7 +34,7 @@ sprite: Objects/Specific/Medical/implanter.rsi state: implanter0 product: CrateTrackingImplants - cost: 1000 + cost: 2950 category: cargoproduct-category-name-armory group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml index 3b5249041cf6..267e8a8f0f81 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml @@ -33,7 +33,7 @@ - type: StorageFill contents: - id: TrackingImplanter - amount: 5 + amount: 6 - type: entity parent: [ CrateWeaponSecure, BaseSecurityContraband ] diff --git a/Resources/Prototypes/Catalog/Fills/Crates/security.yml b/Resources/Prototypes/Catalog/Fills/Crates/security.yml index 63166a930498..c987ace8f1d3 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/security.yml @@ -93,7 +93,7 @@ - id: MindShieldImplanter amount: 4 - id: TrackingImplanter - amount: 4 + amount: 3 - type: entity parent: CrateSecgear diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index cd64de9cc3b8..4f44835a6792 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -116,7 +116,7 @@ - id: ClothingEyesGlassesSecurity #Starlight - id: WeaponDisabler - id: TrackingImplanter - amount: 2 + amount: 1 - id: ClothingOuterHardsuitBrigmedic - id: BoxSterileMask - id: ClothingHeadHatBeretBrigmedic diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index b3ddd5832c09..4a4dc28804d5 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -282,9 +282,30 @@ blocksSpecialVision: false - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons, BaseSecurityContraband] id: ClothingEyesGlassesNoir - name: noir-tech glasses + name: detective's noir-tech glasses + description: A pair of glasses that simulate what the world looked like before the invention of color. + components: + - type: Sprite + sprite: Clothing/Eyes/Glasses/noir.rsi + - type: Clothing + sprite: Clothing/Eyes/Glasses/sunglasses.rsi + - type: IdentityBlocker + coverage: EYES + - type: FlashImmunity + - type: EyeProtection + protectionTime: 5 + - type: NoirOverlay + - type: Tag + tags: + - HamsterWearable + - WhitelistChameleon + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesNoirAssistant + name: cheap noir-tech glasses description: A pair of glasses that simulate what the world looked like before the invention of color. components: - type: Sprite @@ -301,3 +322,4 @@ tags: - HamsterWearable - WhitelistChameleon + diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index b6be8a95a9c3..2ecabd5e1a81 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -522,6 +522,7 @@ damage: types: Blunt: 14 + Structural: 10 #Starlight soundHit: collection: Knuckles #Starlight params: diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index cf31422a4efb..487a3e878564 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -29,7 +29,7 @@ - type: entity parent: [ClothingOuterCoatDetectiveLoadout] id: ClothingOuterCoatDetectiveLoadoutGrey - name: noir trenchcoat + name: detective's noir trenchcoat description: Ah, your trusty coat. There's a few tears here and there, giving it a more timely look. Or at least, that's what you told yourself when you found out gettin' it repaired would set you back 200 spesos. components: - type: Sprite @@ -37,7 +37,6 @@ - type: Clothing sprite: Clothing/OuterClothing/Coats/detective_grey.rsi - - type: entity parent: ClothingOuterCoatDetective id: ClothingOuterCoatDetectiveLoadout diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml index d0d54c016323..076b4808ce83 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml @@ -283,4 +283,19 @@ amount: 10 - id: CigaretteSyndicate amount: 2 -### end SL \ No newline at end of file + +- type: entity + id: CigPackMedRollie + parent: PackPaperRolling + name: medicinal blunt packet + description: An old rolling paper packet full of things to make blunts with. Its purely medicinal man.. + components: + - type: StorageFill + contents: + - id: LeavesTobaccoDried + amount: 10 + - id: GroundCannabis + amount: 10 + - id: Blunt + amount: 2 +### end SL diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml index 7b9ad848c9a9..9b5088845d54 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml @@ -6,7 +6,7 @@ components: - type: Storage grid: - - 0,0,3,1 + - 0,0,4,1 whitelist: tags: - RollingPaper @@ -16,8 +16,8 @@ - Lighters #SL - type: StorageFill contents: - - id: PaperRolling - amount: 4 + - id: PaperRolling + amount: 4 - type: Sprite sprite: Objects/Consumable/Smokeables/Cigarettes/paper.rsi state: cigpapers diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/leaves.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/leaves.yml index 3ef9e99cd2e1..1804af8c4d35 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/leaves.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/leaves.yml @@ -17,6 +17,9 @@ reagents: - ReagentId: THC Quantity: 15 + - type: Tag + tags: + - Smokable - type: entity @@ -37,6 +40,11 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/tobacco.rsi state: dried + - type: Tag + tags: + - Smokable + - type: Item + size: Tiny - type: entity name: ground cannabis @@ -62,7 +70,7 @@ node: ground - type: Tag tags: - - Smokable + - Smokable - type: Item size: Tiny @@ -97,10 +105,13 @@ Quantity: 2 - ReagentId: Happiness Quantity: 2 -# - ReagentId: ColorfulReagent -# Quantity: 1 + # - ReagentId: ColorfulReagent + # Quantity: 1 - ReagentId: Psicodine Quantity: 0.6 + - type: Tag + tags: + - Smokable - type: entity name: dried rainbow cannabis leaves @@ -124,13 +135,18 @@ Quantity: 1.6 - ReagentId: Happiness Quantity: 1.6 -# - ReagentId: ColorfulReagent -# Quantity: 0.8 + # - ReagentId: ColorfulReagent + # Quantity: 0.8 - ReagentId: Psicodine Quantity: 0.48 - type: Sprite sprite: Objects/Specific/Hydroponics/rainbow_cannabis.rsi state: dried + - type: Tag + tags: + - Smokable + - type: Item + size: Tiny - type: entity name: ground rainbow cannabis @@ -153,8 +169,8 @@ Quantity: 2.66 - ReagentId: Happiness Quantity: 2.66 -# - ReagentId: ColorfulReagent -# Quantity: 1.33 + # - ReagentId: ColorfulReagent + # Quantity: 1.33 - ReagentId: Psicodine Quantity: 0.8 - type: Sprite @@ -164,6 +180,9 @@ - type: Construction graph: smokeableGroundCannabisRainbow node: groundRainbow + - type: Tag + tags: + - Smokable - type: entity name: tea leaves @@ -208,6 +227,9 @@ sprite: Objects/Specific/Hydroponics/tobacco.rsi - type: Produce seedId: tobacco + - type: Tag + tags: + - Smokable - type: entity name: dried tobacco leaves @@ -227,6 +249,11 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/tobacco.rsi state: dried + - type: Tag + tags: + - Smokable + - type: Item + size: Tiny - type: entity name: ground tobacco @@ -252,6 +279,6 @@ node: ground - type: Tag tags: - - Smokable + - Smokable - type: Item size: Tiny diff --git a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml index 4d443dc20e2e..149b1c33a42f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml @@ -98,7 +98,7 @@ - type: PhysicalComposition - type: Tag tags: - - Lighters + - Lighters #SL - type: entity name: cheap lighter @@ -221,6 +221,9 @@ - type: UseDelay - type: IgnitionSource ignited: false + - type: Tag + tags: + - Lighters #SL - type: entity name: flippo engraved lighter @@ -320,6 +323,9 @@ - type: UseDelay - type: IgnitionSource ignited: false + - type: Tag #SL + tags: #SL + - Lighters #SL - type: entity parent: [BaseBrandedLighter, BaseSyndicateContraband] @@ -619,6 +625,7 @@ tags: - DonkPocket - Meat + - Lighters #SL - type: SolutionContainerManager solutions: Welder: diff --git a/Resources/Prototypes/Entities/Objects/Tools/matches.yml b/Resources/Prototypes/Entities/Objects/Tools/matches.yml index c701a400d5e0..90ad8b16f53d 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/matches.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/matches.yml @@ -107,6 +107,7 @@ - type: Tag tags: - Trash + - Lighters #SL - type: SpaceGarbage - type: entity diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/assistant.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/assistant.yml index f6f2504c6484..4858173ad66d 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/assistant.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/assistant.yml @@ -92,6 +92,13 @@ equipment: back: ClothingBackpackDuffel +# starlight start +- type: loadout + id: LeatherSatchel + equipment: + back: ClothingBackpackSatchelLeather +# starlight end + # Gloves - type: loadout id: AssistantGloves @@ -116,4 +123,4 @@ - type: loadout id: WinterBoots equipment: - shoes: ClothingShoesBootsWinter \ No newline at end of file + shoes: ClothingShoesBootsWinter diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml b/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml index 15fdd073b560..a4bd4275974b 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml @@ -1,3 +1,13 @@ +# For glasses +- type: loadoutEffectGroup + id: MasterDet + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobDetective + time: 36000 #10 hrs + # Head - type: loadout id: DetectiveFedora @@ -51,3 +61,12 @@ id: DetectiveCoatGrey equipment: outerClothing: ClothingOuterCoatDetectiveLoadoutGrey + +#SL +- type: loadout + id: DetectiveNoirGlasses + equipment: + Eyes: ClothingEyesGlassesNoir + effects: + - !type:GroupLoadoutEffect + proto: MasterDet \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index ceec35bffe89..a69c6dd07e70 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -3,7 +3,7 @@ id: Trinkets name: loadout-group-trinkets minLimit: 0 - maxLimit: 4 + maxLimit: 5 loadouts: - FlowerWreath - Hairflower @@ -65,7 +65,6 @@ - HonkImplant #SL - TromboneImplant #SL - NewtonsCradle #SL - - POrb #SL - BBall #SL - RubberQuack #SL - GatchaBox #SL @@ -83,6 +82,12 @@ - PaperFolder6 #SL - PaperFolder7 #SL - PaperClipboard #SL + - HonoredClownMask #SL + - MedRollies #SL + - RollerSkates #SL + - DaBling #SL + - CrapPlushie #SL ##not a typo + - LighterGatcha #SL - type: loadoutGroup id: Glasses @@ -171,6 +176,7 @@ - CaptainBackpack - CaptainSatchel - CaptainDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: CaptainOuterClothing @@ -216,6 +222,7 @@ - CommonSatchel - CommonDuffel - HoPBackpackIan + - LeatherSatchel # starlight - type: loadoutGroup id: HoPOuterClothing @@ -300,6 +307,7 @@ - CommonBackpack - CommonSatchel - CommonDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: AssistantNeck @@ -530,6 +538,7 @@ - BotanistBackpack - BotanistSatchel - BotanistDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: BotanistOuterClothing @@ -563,6 +572,7 @@ - ClownBackpack - ClownSatchel - ClownDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: ClownOuterClothing @@ -621,6 +631,7 @@ - MimeBackpack - MimeSatchel - MimeDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: MimeOuterClothing @@ -763,6 +774,7 @@ - CargoTechnicianBackpack - CargoTechnicianSatchel - CargoTechnicianDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: CargoTechnicianOuterClothing @@ -789,6 +801,7 @@ - SalvageSpecialistBackpack - SalvageSpecialistSatchel - SalvageSpecialistDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: SalvageSpecialistOuterClothing @@ -882,6 +895,7 @@ - StationEngineerBackpack - StationEngineerSatchel - StationEngineerDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: StationEngineerOuterClothing @@ -928,6 +942,7 @@ - AtmosphericTechnicianBackpack - AtmosphericTechnicianSatchel - AtmosphericTechnicianDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: AtmosphericTechnicianShoes @@ -1026,6 +1041,7 @@ - ScientistBackpack - ScientistSatchel - ScientistDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: ScientistOuterClothing @@ -1136,6 +1152,7 @@ loadouts: - SecurityGlasses - SecurityHud + - DetectiveNoirGlasses - type: loadoutGroup id: BrigmedicHead @@ -1162,6 +1179,7 @@ - BrigmedicBackpack - BrigmedicSatchel - BrigmedicDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: BrigmedicOuterClothing @@ -1227,6 +1245,7 @@ - SecurityBackpack - SecuritySatchel - SecurityDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: SecurityBelt @@ -1404,6 +1423,7 @@ - MedicalDoctorBackpack - MedicalDoctorSatchel - MedicalDoctorDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: MedicalShoes @@ -1467,6 +1487,7 @@ - ChemistBackpack - ChemistSatchel - ChemistDuffel + - LeatherSatchel # starlight - type: loadoutGroup id: ParamedicHead diff --git a/Resources/Prototypes/_StarLight/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/_StarLight/Catalog/Fills/Items/belt.yml index d1042998eb4a..8116f1261f85 100644 --- a/Resources/Prototypes/_StarLight/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/_StarLight/Catalog/Fills/Items/belt.yml @@ -65,6 +65,24 @@ - id: TearGasGrenade - id: MedkitCombatFilled +- type: entity + id: ClothingBeltNTNCRigFilled + parent: ClothingBeltNTNCRig + suffix: Filled + components: + - type: StorageFill + contents: + - id: Handcuffs + - id: Handcuffs + - id: Stunbaton + - id: GrenadeFlashBang + - id: TearGasGrenade + - id: MedkitCombatFilled + +- type: entity + id: ClothingBeltNTNCRigFilledMed + parent: ClothingBeltNTNCRig + # GMN webbings - type: entity id: ClothingOuterVestWebEliteFilledMAA @@ -150,6 +168,13 @@ components: - type: StorageFill contents: + - id: Handcuffs + - id: Handcuffs + - id: Stunbaton + - id: MedkitCombatFilled + - id: Brutepack + - id: Ointment + - id: Gauze - id: MedkitCombatFilled - id: CombatMedipen - id: CrowbarRed diff --git a/Resources/Prototypes/_StarLight/Catalog/Fills/Lockers/representatives.yml b/Resources/Prototypes/_StarLight/Catalog/Fills/Lockers/representatives.yml index ccd0943e924f..4eedcc3311ed 100644 --- a/Resources/Prototypes/_StarLight/Catalog/Fills/Lockers/representatives.yml +++ b/Resources/Prototypes/_StarLight/Catalog/Fills/Lockers/representatives.yml @@ -42,7 +42,7 @@ - id: ClothingHandsGlovesCombat - id: ClothingShoesBootsCombat - id: TrackingImplanter - amount: 3 + amount: 1 - id: MedkitAdvancedFilled - id: ClothingEyesGlassesBlueShield - id: ClothingEyesHudBlueShield diff --git a/Resources/Prototypes/_StarLight/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/_StarLight/Catalog/Fills/Lockers/security.yml index 808fff411197..6302f2d913b2 100644 --- a/Resources/Prototypes/_StarLight/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/_StarLight/Catalog/Fills/Lockers/security.yml @@ -60,7 +60,7 @@ - id: WeaponDisabler amount: 2 - id: TrackingImplanter - amount: 4 + amount: 2 - id: ClothingOuterHardsuitBrigmedic amount: 2 - id: BoxSterileMask diff --git a/Resources/Prototypes/_StarLight/Catalog/VendingMachines/Inventories/plushies.yml b/Resources/Prototypes/_StarLight/Catalog/VendingMachines/Inventories/plushies.yml index 1edb0ff11d78..7545a61f8078 100644 --- a/Resources/Prototypes/_StarLight/Catalog/VendingMachines/Inventories/plushies.yml +++ b/Resources/Prototypes/_StarLight/Catalog/VendingMachines/Inventories/plushies.yml @@ -575,6 +575,17 @@ - !type:ListingLimitedStockCondition stock: 1 +- type: listing + id: VendorPlushieFixes + productEntity: PlushieFixes + cost: + NTCredit: 20 + categories: + - SLCrew + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + - type: listing id: VendorPlushieVirus productEntity: PlushieVirus diff --git a/Resources/Prototypes/_StarLight/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/_StarLight/Entities/Clothing/Back/backpacks.yml index eaa74555747e..ea5eeaed9921 100644 --- a/Resources/Prototypes/_StarLight/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/_StarLight/Entities/Clothing/Back/backpacks.yml @@ -10,8 +10,19 @@ - type: entity parent: [ClothingBackpack, BaseCommandContraband] id: ClothingBackpackBlueShield - name: blueshield's backpack - description: A lightweight but reliable backpack. Can't go wrong with the classics! + name: blueshields backpack + description: A lightweight but reliable backpack. Cant go wrong with the classics! components: - type: Sprite - sprite: _Starlight/Clothing/Back/Backpacks/blueshield.rsi \ No newline at end of file + sprite: _Starlight/Clothing/Back/Backpacks/blueshield.rsi + +- type: entity + parent: [ ClothingBackpackERTLeader, BaseCentcommContraband ] + id: ClothingBackpackNTNC + name: NTNC backpack + description: A spacious backpack with lots of pockets, worn by NTNC Officers + components: + - type: ExplosionResistance + damageCoefficient: 0.1 + - type: Sprite + sprite: _Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_StarLight/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/_StarLight/Entities/Clothing/Belt/belts.yml index 49be3eece7db..d63f8e605798 100644 --- a/Resources/Prototypes/_StarLight/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/_StarLight/Entities/Clothing/Belt/belts.yml @@ -316,3 +316,25 @@ - id: MagazineLightRifleFMJ - id: MagazineLightRifleFMJ - id: MagazineLightRifleFMJ + +- type: entity + parent: [ClothingBeltStorageBase, ContentsExplosionResistanceBase, BaseCentcommContraband] + id: ClothingBeltNTNCRig + name: ntnc rig + description: A military rig worn by NTNC Officers + components: + - type: Storage #Starlight + grid: + - 0,0,1,0 #left + - 0,1,0,1 #left - cube + - 3,0,10,1 + - 12,0,13,0 #right + - 12,1,12,1 #right - cube + - type: Sprite + sprite: _Starlight/Clothing/Belt/ntnc_rig.rsi + - type: Clothing + sprite: _Starlight/Clothing/Belt/ntnc_rig.rsi + - type: ExplosionResistance + damageCoefficient: 0.1 + - type: StaticPrice + price: 900 \ No newline at end of file diff --git a/Resources/Prototypes/_StarLight/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/_StarLight/Entities/Clothing/OuterClothing/coats.yml index 0fd1f8ee499f..998390d71547 100644 --- a/Resources/Prototypes/_StarLight/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/_StarLight/Entities/Clothing/OuterClothing/coats.yml @@ -109,3 +109,19 @@ Piercing: 0.8 Heat: 0.65 Radiation: 0.9 + +- type: entity + parent: [ClothingOuterStorageBase, AllowSuitStorageClothing] + id: ClothingOuterCoatGreytiderTrenchcoat + name: greytider trenchcoat + description: Ah, your trusty coat. There's a few tears here and there, giving it a more timely look. Or at least, that's what you told yourself when you found out gettin' it repaired would set you back 200 spesos. + components: + - type: Sprite + sprite: _Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi + - type: Clothing + sprite: _Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi + - type: StorageFill + contents: + - id: Cigarette + amount: 3 + - id: CheapLighter diff --git a/Resources/Prototypes/_StarLight/Entities/Objects/Fun/plushies.yml b/Resources/Prototypes/_StarLight/Entities/Objects/Fun/plushies.yml index 474a026363bb..322204eb0666 100644 --- a/Resources/Prototypes/_StarLight/Entities/Objects/Fun/plushies.yml +++ b/Resources/Prototypes/_StarLight/Entities/Objects/Fun/plushies.yml @@ -10,7 +10,7 @@ sprite: _Starlight/Objects/Fun/Plushies/matthew_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/matthew_plushie.rsi - layers: + layers: - state: icon - state: icon-unshaded shader: unshaded @@ -36,7 +36,7 @@ sprite: _Starlight/Objects/Fun/Plushies/emmie_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/emmie_plushie.rsi - layers: + layers: - state: icon - state: icon-unshaded shader: unshaded @@ -62,7 +62,7 @@ sprite: _Starlight/Objects/Fun/Plushies/trystan_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/trystan_plushie.rsi - layers: + layers: - state: icon - type: ItemToggle onUse: false @@ -86,7 +86,7 @@ sprite: _Starlight/Objects/Fun/Plushies/morgana_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/morgana_plushie.rsi - layers: + layers: - state: icon - type: ItemToggle onUse: false @@ -110,7 +110,7 @@ sprite: _Starlight/Objects/Fun/Plushies/morgana_round_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/morgana_round_plushie.rsi - layers: + layers: - state: icon - type: ItemToggle onUse: false @@ -134,7 +134,7 @@ sprite: _Starlight/Objects/Fun/Plushies/kiosha_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/kiosha_plushie.rsi - layers: + layers: - state: icon - type: ItemToggle onUse: false @@ -158,7 +158,7 @@ sprite: _Starlight/Objects/Fun/Plushies/lance_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/lance_plushie.rsi - layers: + layers: - state: icon - state: icon-unshaded shader: unshaded @@ -184,7 +184,7 @@ sprite: _Starlight/Objects/Fun/Plushies/killer_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/killer_plushie.rsi - layers: + layers: - state: icon - state: icon-unshaded shader: unshaded @@ -210,7 +210,7 @@ sprite: _Starlight/Objects/Fun/Plushies/amali_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/amali_plushie.rsi - layers: + layers: - state: icon # reason I didn't make a female human base plushie is because they wanted specific sounds. Will make one eventually. Probably.a - type: EmitSoundOnUse @@ -257,7 +257,7 @@ sprite: _Starlight/Objects/Fun/Plushies/oog_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/oog_plushie.rsi - layers: + layers: - state: icon - type: ItemToggle onUse: false @@ -281,7 +281,7 @@ sprite: _Starlight/Objects/Fun/Plushies/vanilla_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/vanilla_plushie.rsi - layers: + layers: - state: icon - type: ItemToggle onUse: false @@ -306,7 +306,7 @@ sprite: _Starlight/Objects/Fun/Plushies/op_plushie.rsi - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/op_plushie.rsi - layers: + layers: - state: icon - type: ItemToggle onUse: false @@ -400,7 +400,7 @@ - type: entity parent: BaseLizardPlushie - id: PlushieMimeLizard + id: PlushieMimeLizard name: lizard mime plushie description: Wait, where is the sou-- oh. components: @@ -455,7 +455,7 @@ - type: Sprite sprite: _Starlight/Objects/Fun/Plushies/vika_plushie.rsi state: icon - + - type: entity parent: BasePlushie id: AbductorPlushie @@ -488,7 +488,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Weapons/Guns/Hits/taser_hit.ogg - + - type: entity parent: BasePlushie id: AxolotlPlushie @@ -521,7 +521,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Items/Toys/toysqueak3.ogg - + - type: entity parent: BasePlushie id: BorbPlushie @@ -587,7 +587,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/_Starlight/Items/Toys/yippie.ogg - + - type: entity parent: BasePlushie id: GnomePlushie @@ -620,7 +620,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/_Starlight/Items/Toys/gnome_murderer.ogg - + - type: entity parent: BasePlushie id: GoatPlushie @@ -653,7 +653,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Items/Toys/toysqueak3.ogg - + - type: entity parent: BasePlushie id: IanPlushie @@ -686,7 +686,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Animals/dog_bark2.ogg - + - type: entity parent: BasePlushie id: LisaPlushie @@ -719,7 +719,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Animals/dog_bark2.ogg - + - type: entity parent: BasePlushie id: KittenPlushie @@ -752,7 +752,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Animals/cat_hiss.ogg - + - type: entity parent: BasePlushie id: PigPlushie @@ -785,7 +785,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Animals/pig_oink.ogg - + - type: entity parent: BasePlushie id: RenaultPlushie @@ -818,7 +818,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Animals/fox11.ogg - + - type: entity parent: BasePlushie id: SnailPlushie @@ -851,7 +851,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Items/Toys/toysqueak2.ogg - + - type: entity parent: BasePlushie id: SquishimsCow @@ -884,7 +884,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Items/Toys/toysqueak2.ogg - + - type: entity parent: BasePlushie id: SquishimsFrog @@ -917,7 +917,7 @@ wideAnimationRotation: 180 soundHit: path: /Audio/Items/Toys/toysqueak2.ogg - + - type: entity parent: BasePlushie id: SusPlushie @@ -1618,3 +1618,53 @@ dataset: PlushiesBrighteyes - type: TextToSpeech voice: clara + - type: EmitSoundOnUse + sound: + path: /Audio/Animals/cat_meow.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Animals/cat_meow2.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Animals/cat_meow.ogg + - type: EmitSoundOnTrigger + sound: + path: /Audio/Animals/cat_meow2.ogg + + - type: Food + requiresSpecialDigestion: true + useSound: + path: /Audio/Items/Toys/toysqueak3.ogg + - type: MeleeWeapon + wideAnimationRotation: 180 + soundHit: + path: /Audio/Animals/cat_hiss.ogg + +- type: entity + parent: BasePlushie + id: PlushieFixes + name: Fixes Plushie + description: Your beloved Chief Engineer. Definitely performing their job and not just making a shittle again. + components: + - type: Item + size: Small + sprite: _Starlight/Objects/Fun/Plushies/fixes_plushie.rsi + - type: Sprite + sprite: _Starlight/Objects/Fun/Plushies/fixes_plushie.rsi + state: icon + - type: EmitSoundOnUse + sound: + path: /Audio/Items/Toys/toysqueak1.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Items/Toys/toysqueak2.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Items/Toys/toysqueak1.ogg + - type: EmitSoundOnTrigger + sound: + path: /Audio/Items/Toys/toysqueak2.ogg + - type: MeleeWeapon + wideAnimationRotation: 180 + soundHit: + path: /Audio/Effects/Lightning/lightningshock.ogg \ No newline at end of file diff --git a/Resources/Prototypes/_StarLight/Loadouts/Jobs/Civilian/assistant.yml b/Resources/Prototypes/_StarLight/Loadouts/Jobs/Civilian/assistant.yml index b71618aef0cb..50ccb0aa2086 100644 --- a/Resources/Prototypes/_StarLight/Loadouts/Jobs/Civilian/assistant.yml +++ b/Resources/Prototypes/_StarLight/Loadouts/Jobs/Civilian/assistant.yml @@ -96,6 +96,14 @@ equipment: eyes: ClothingEyesGlassesCheapSunglasses +- type: loadout + id: AssistantNoirGlasses + equipment: + Eyes: ClothingEyesGlassesNoirAssistant + effects: + - !type:GroupLoadoutEffect + proto: HonoredAssistant + # Mask - type: loadout id: NeckGaiter @@ -466,7 +474,7 @@ - !type:GroupLoadoutEffect proto: HonoredAssistant equipment: - outerClothing: ClothingOuterCoatDetectiveLoadoutGrey + outerClothing: ClothingOuterCoatGreytiderTrenchcoat - type: loadout id: SpaceAssholeCoat diff --git a/Resources/Prototypes/_StarLight/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/_StarLight/Loadouts/Miscellaneous/trinkets.yml index dcf508f8a048..a842a07503b0 100644 --- a/Resources/Prototypes/_StarLight/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/_StarLight/Loadouts/Miscellaneous/trinkets.yml @@ -4,9 +4,8 @@ effects: - !type:JobRequirementLoadoutEffect requirement: - !type:RoleTimeRequirement - role: JobMusician - time: 72000 # 20 hours of being the biggest musician on the station + !type:OverallPlaytimeRequirement + time: 360000 #100 hours of activity in the Starlight sectors ##changed from musician because musician isn't mechanically fun to play, and the slot was always hogged for playtime for this item storage: back: - SuperSynthesizerInstrument @@ -22,6 +21,31 @@ storage: back: - ClothingUnderSocksCoder + groupBy: "cat maid" + +- type: loadout + id: ClothingShoesHighheelBoots + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 144000 # 40hr + storage: + back: + - ClothingShoesHighheelBoots + groupBy: "cat maid" + +- type: loadout + id: ClothingShoesHighheelShoes + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 144000 # 40hr + storage: + back: + - ClothingShoesHighheelShoes + groupBy: "cat maid" - type: loadout id: ClothWrap @@ -39,6 +63,7 @@ storage: back: - ClothingUniformJumpskirtElegantMaid + groupBy: "cat maid" - type: loadout id: ClothingHeadHatCatEars @@ -50,12 +75,14 @@ storage: back: - ClothingHeadHatCatEars + groupBy: "cat maid" - type: loadout id: RolliePack storage: back: - CigPackRollie + groupBy: "smokeables" - type: loadout id: GoldRing @@ -84,6 +111,7 @@ storage: back: - Matchbox + groupBy: "smokeables" - type: loadout id: FancyPen @@ -108,6 +136,7 @@ storage: back: - BikeHornImplanter + groupBy: "clowning shit" - type: loadout id: TromboneImplant @@ -120,6 +149,7 @@ storage: back: - SadTromboneImplanter + groupBy: "clowning shit" - type: loadout id: NewtonsCradle @@ -132,17 +162,6 @@ equipment: back: NewtonCradle -- type: loadout - id: POrb - effects: - - !type:JobRequirementLoadoutEffect - requirement: - !type:OverallPlaytimeRequirement - time: 36000 # 10hr - storage: - back: - - PonderingOrb - - type: loadout id: BBall storage: @@ -182,6 +201,7 @@ storage: back: - FlippoLighter + groupBy: "smokeables" - type: loadout id: MedChecker @@ -235,6 +255,7 @@ storage: back: - BoxFolderRed + groupBy: "folders" - type: loadout id: PaperFolder2 @@ -246,6 +267,7 @@ storage: back: - BoxFolderBlue + groupBy: "folders" - type: loadout id: PaperFolder3 @@ -257,6 +279,7 @@ storage: back: - BoxFolderYellow + groupBy: "folders" - type: loadout id: PaperFolder4 @@ -268,6 +291,7 @@ storage: back: - BoxFolderWhite + groupBy: "folders" - type: loadout id: PaperFolder5 @@ -279,6 +303,7 @@ storage: back: - BoxFolderGrey + groupBy: "folders" - type: loadout id: PaperFolder6 @@ -290,6 +315,7 @@ storage: back: - BoxFolderBlack + groupBy: "folders" - type: loadout id: PaperFolder7 @@ -301,6 +327,7 @@ storage: back: - BoxFolderGreen + groupBy: "folders" - type: loadout id: PaperClipboard @@ -312,3 +339,77 @@ storage: back: - BoxFolderClipboard + groupBy: "folders" + +- type: loadout + id: HonoredClownMask + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobClown + time: 72000 # 20 hours of honk + storage: + back: + - ClothingMaskClown + groupBy: "clowning shit" + +- type: loadout + id: MedRollies + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 36000 # 10hr + storage: + back: + - CigPackMedRollie + groupBy: "smokeables" + +- type: loadout + id: RollerSkates + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobMailTech + time: 36000 # 10 hours of being ignored while carrying a parcelbomb + storage: + back: + - ClothingShoesSkates + +- type: loadout + id: DaBling + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobCargoTechnician + time: 36000 # 10 hours of resisting the urge to declare cargonia + storage: + back: + - ClothingNeckBling + +- type: loadout + id: CrapPlushie + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobSalvageSpecialist + time: 36000 # 10 hours of not turning in contra to sec + storage: + back: + - PlushieCarp + +- type: loadout + id: LighterGatcha + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 36000 # 10hr + storage: + back: + - MysteryLighterBox + groupBy: "smokeables" \ No newline at end of file diff --git a/Resources/Prototypes/_StarLight/Loadouts/loadout_groups.yml b/Resources/Prototypes/_StarLight/Loadouts/loadout_groups.yml index 9c59dd8e31a2..7163b17b2caa 100644 --- a/Resources/Prototypes/_StarLight/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/_StarLight/Loadouts/loadout_groups.yml @@ -7,6 +7,7 @@ - GlassesJamjar - GlassesJensen - CheapSunnies + - AssistantNoirGlasses - type: loadoutGroup id: AssistantHead @@ -32,6 +33,7 @@ - CommonBackpack - CommonSatchel - CommonDuffel + - LeatherSatchel - type: loadoutGroup id: RoboticistJumpsuit @@ -81,7 +83,8 @@ - RoboticistBackpack - RoboticistSatchel - RoboticistDuffel - + - LeatherSatchel + - type: loadoutGroup id: NanoTrasenRepresentativeJumpsuit name: loadout-group-nanotrasenrepresentative-jumpsuit @@ -104,6 +107,7 @@ - BlueShieldBackpack - BlueShieldSatchel - BlueShieldDuffel + - LeatherSatchel - type: loadoutGroup id: BlueShieldJumpsuit @@ -243,4 +247,3 @@ loadouts: - CombatBoots - HighHeelBootsFilled - diff --git a/Resources/Prototypes/_StarLight/Roles/Jobs/CentComm/ntnc.yml b/Resources/Prototypes/_StarLight/Roles/Jobs/CentComm/ntnc.yml index d54201b8d8df..055d2987d3d8 100644 --- a/Resources/Prototypes/_StarLight/Roles/Jobs/CentComm/ntnc.yml +++ b/Resources/Prototypes/_StarLight/Roles/Jobs/CentComm/ntnc.yml @@ -2,14 +2,14 @@ id: NTNCHardsuitGear equipment: jumpsuit: ClothingUniformNTNCFatigues - back: ClothingBackpackBlueShield + back: ClothingBackpackNTNC shoes: ClothingShoesBootsJackFilled outerClothing: ClothingOuterHardsuitNTNCConsortium id: NTNCCSPDA eyes: ClothingEyesGlassesBlueShield ears: ClothingHeadsetAltCentComNTNC mask: ClothingMaskGasSecurity - belt: ClothingBeltBlueShieldWebbingFilled + belt: ClothingBeltNTNCRigFilled gloves: ClothingHandsGlovesCombat suitstorage: WeaponSubMachineGunWt550 pocket1: MindShieldImplanter @@ -21,7 +21,7 @@ id: NTNCTrainerGear equipment: jumpsuit: ClothingUniformNTNCFatigues - back: ClothingBackpackBlueShield + back: ClothingBackpackNTNC shoes: ClothingShoesBootsJackFilled head: ClothingHeadHatBeretCommand outerClothing: ClothingOuterHardsuitNTNCConsortium @@ -29,7 +29,7 @@ eyes: ClothingEyesGlassesBlueShield ears: ClothingHeadsetAltCentComNTNC mask: ClothingMaskGasSecurity - belt: ClothingBeltBlueShieldWebbingFilled + belt: ClothingBeltNTNCRigFilled gloves: ClothingHandsGlovesCombat suitstorage: WeaponSubMachineGunWt550 pocket1: MindShieldImplanter @@ -41,7 +41,7 @@ id: NTNCBasicGear equipment: jumpsuit: ClothingUniformNTNCFatigues - back: ClothingBackpackBlueShield + back: ClothingBackpackNTNC shoes: ClothingShoesBootsJackFilled head: ClothingHeadHelmetHardsuitNTNCConsortium outerClothing: ClothingOuterVestNTNC @@ -49,7 +49,7 @@ eyes: ClothingEyesGlassesBlueShield ears: ClothingHeadsetAltCentComNTNC mask: ClothingMaskGasSecurity - belt: ClothingBeltBlueShieldWebbingFilled + belt: ClothingBeltNTNCRigFilled gloves: ClothingHandsGlovesCombat suitstorage: WeaponSubMachineGunWt550 pocket1: MindShieldImplanter @@ -61,14 +61,14 @@ id: NTNCMedicGear equipment: jumpsuit: ClothingUniformNTNCFatigues - back: ClothingBackpackDuffelBlueShield + back: ClothingBackpackNTNC shoes: ClothingShoesBootsJackFilled outerClothing: ClothingOuterHardsuitNTNCConsortiumMedic id: NTNCCSPDA eyes: ClothingEyesGlassesBlueShield ears: ClothingHeadsetAltCentComNTNC mask: ClothingMaskGasSecurity - belt: ClothingBeltBlueShieldWebbingFilled + belt: ClothingBeltNTNCRigFilledMed gloves: ClothingHandsGlovesCombat suitstorage: WeaponSubMachineGunWt550 pocket1: MindShieldImplanter diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index 0bab9bbdf5d7..8a7ad708b591 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -331,4 +331,25 @@ rules: - SpaceTrafficControlEventScheduler - ThiefGamerule + - BasicRoundstartVariation + +- type: gamePreset + id: ShitStation + alias: + - shitstation + - trashstation + name: shitstation-title + description: shitstation-description + showInVote: true + minPlayers: 60 + rules: + - DerelictCyborgSpawn + - BasicStationEventScheduler + - MeteorSwarmMildScheduler + - SubGamemodesRule + - IonStorm + - CockroachMigration + - MouseMigration + - BasicRoundstartVariation + - BasicRoundstartVariation - BasicRoundstartVariation \ No newline at end of file diff --git a/Resources/Prototypes/secret_weights.yml b/Resources/Prototypes/secret_weights.yml index cb9eadc80f3c..7840f7e901a3 100644 --- a/Resources/Prototypes/secret_weights.yml +++ b/Resources/Prototypes/secret_weights.yml @@ -4,14 +4,15 @@ Nukeops: 0.03 Traitor: 0.40 Zombie: 0.05 - Changeling: 0.10 + Changeling: 0.10 #SL Zombieteors: 0.01 Survival: 0.05 KesslerSyndrome: 0.01 Revolutionary: 0.10 - Vampire: 0.15 + Vampire: 0.15 #SL Wizard: 0.10 - Traitorling: 0.10 + Traitorling: 0.10 #SL + ShitStation: 0.10 #SL - type: weightedRandom id: SecretLP @@ -19,11 +20,11 @@ Nukeops: 0.028818444 Traitor: 0.461095101 Zombie: 0.005763689 - Changeling: 0.057636888 + Changeling: 0.057636888 #SL Zombieteors: 0.005763689 Survival: 0.057636888 KesslerSyndrome: 0.028818444 Revolutionary: 0.057636888 - Vampire: 0.115273775 + Vampire: 0.115273775 #SL Extended: 0.152737752 Wizard: 0.028818444 \ No newline at end of file diff --git a/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/equipped-BACKPACK.png b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/equipped-BACKPACK.png new file mode 100644 index 000000000000..b0b1909c055e Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/icon.png b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/icon.png new file mode 100644 index 000000000000..47bf84ac3172 Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/icon.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/inhand-left.png b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/inhand-left.png new file mode 100644 index 000000000000..7e41e862dac5 Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/inhand-right.png b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/inhand-right.png new file mode 100644 index 000000000000..55cae6145700 Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/meta.json b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/meta.json new file mode 100644 index 000000000000..b3c5c860f6f9 --- /dev/null +++ b/Resources/Textures/_Starlight/Clothing/Back/Backpacks/ntnc_bag.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Edit of Security Bag by Abby", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/equipped-BELT.png b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/equipped-BELT.png new file mode 100644 index 000000000000..6d4041fce631 Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/icon.png b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/icon.png new file mode 100644 index 000000000000..7e81970745a4 Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/icon.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/inhand-left.png b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/inhand-left.png new file mode 100644 index 000000000000..ec836000676e Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/inhand-right.png b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/inhand-right.png new file mode 100644 index 000000000000..2e73f564125e Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/meta.json b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/meta.json new file mode 100644 index 000000000000..f2074db5c95a --- /dev/null +++ b/Resources/Textures/_Starlight/Clothing/Belt/ntnc_rig.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Edited chestrig by Abby", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/equipped-HELMET-resomi.png b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/equipped-HELMET-resomi.png deleted file mode 100644 index c2092c078aa5..000000000000 Binary files a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/equipped-HELMET-resomi.png and /dev/null differ diff --git a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/equipped-HELMET.png b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/equipped-HELMET.png index a2fcd8cbbec2..d0ba97f1e06b 100644 Binary files a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/equipped-HELMET.png and b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/icon.png b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/icon.png index 3cf533876472..f8ef55223d17 100644 Binary files a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/icon.png and b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/icon.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/inhand-left.png b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/inhand-left.png index dd0fbd5d7a2e..b82cc8d82cfa 100644 Binary files a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/inhand-left.png and b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/inhand-right.png b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/inhand-right.png index 83eda4265585..43b9eeb4abb9 100644 Binary files a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/inhand-right.png and b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/meta.json b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/meta.json index c83ebfdcf9a0..6657ddf842d9 100644 --- a/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/meta.json +++ b/Resources/Textures/_Starlight/Clothing/Head/Helmets/ntnc_helmet.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-HELMET", "directions": 4 }, - { - "name": "equipped-HELMET-resomi", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 000000000000..a0997481b97a Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 000000000000..f493991a2a92 Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/icon.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/icon.png new file mode 100644 index 000000000000..35f1a6efb479 Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/icon.png differ diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/inhand-left.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/inhand-left.png new file mode 100644 index 000000000000..987e97f3e7fc Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/inhand-right.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/inhand-right.png new file mode 100644 index 000000000000..6234f1dc7578 Binary files /dev/null and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/meta.json b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/meta.json new file mode 100644 index 000000000000..a34b4d492936 --- /dev/null +++ b/Resources/Textures/_Starlight/Clothing/OuterClothing/Coats/greytider_trenchcoat.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Modified from detective coat found in https://github.com/tgstation/tgstation/commit/d90c7e5de6f6d94596c164da78dbc8d3cd35bb99 by Flareguy. vox state modified from detective state found in vgstation13 at https://github.com/vgstation-coders/vgstation13/blob//icons/mob/species/vox/suit.dmi. icon state by Flareguy. Buttons added by Conflee", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/equipped-OUTERCLOTHING.png index a8f41f965a0d..3d8a787a517a 100644 Binary files a/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/icon.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/icon.png index abdb228e9b82..3481799b5606 100644 Binary files a/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/icon.png and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/icon.png differ diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/inhand-left.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/inhand-left.png index 7413d48d735b..0ec913f7156b 100644 Binary files a/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/inhand-left.png and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/inhand-right.png b/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/inhand-right.png index 8903a1eef0bc..0ae5eb259863 100644 Binary files a/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/inhand-right.png and b/Resources/Textures/_Starlight/Clothing/OuterClothing/Vests/ntnc_vest.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Starlight/Objects/Fun/Plushies/fixes_plushie.rsi/icon.png b/Resources/Textures/_Starlight/Objects/Fun/Plushies/fixes_plushie.rsi/icon.png new file mode 100644 index 000000000000..a8923082949e Binary files /dev/null and b/Resources/Textures/_Starlight/Objects/Fun/Plushies/fixes_plushie.rsi/icon.png differ diff --git a/Resources/Textures/_Starlight/Objects/Fun/Plushies/fixes_plushie.rsi/meta.json b/Resources/Textures/_Starlight/Objects/Fun/Plushies/fixes_plushie.rsi/meta.json new file mode 100644 index 000000000000..a0492e8699bb --- /dev/null +++ b/Resources/Textures/_Starlight/Objects/Fun/Plushies/fixes_plushie.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 2, + "license": "CC-BY-SA-3.0", + "copyright": "By TheSnipingDwarf", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +}