diff --git a/Content.Server/Bible/BibleSystem.cs b/Content.Server/Bible/BibleSystem.cs index 5047b9caf17..1f78b8c8a7d 100644 --- a/Content.Server/Bible/BibleSystem.cs +++ b/Content.Server/Bible/BibleSystem.cs @@ -277,7 +277,7 @@ private void AttemptSummon(Entity ent, EntityUid user, Tran _transform.SetParent(familiar, uid); } component.AlreadySummoned = true; - _actionsSystem.RemoveAction(user, component.SummonActionEntity); + _actionsSystem.RemoveAction(component.SummonActionEntity); } } } diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 2094e5acecb..b97dcca9e6d 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -275,10 +275,10 @@ public void TrySendInGameICMessage( SendEntityEmote(source, message, range, nameOverride, hideLog: hideLog, ignoreActionBlocker: ignoreActionBlocker); break; case InGameICChatType.Subtle: - SendEntitySubtle(source, message, range, nameOverride, hideLog: hideLog, ignoreActionBlocker: ignoreActionBlocker, color: color); + SendEntitySubtle(source, message, range, nameOverride, hideLog: hideLog, ignoreActionBlocker: true, color: color); break; case InGameICChatType.SubtleOOC: - SendEntitySubtle(source, $"OOC: {message}", range, nameOverride, hideLog: hideLog, ignoreActionBlocker: ignoreActionBlocker, color: color); // HardLight: Capitalized OOC for consistency with other OOC chats. + SendEntitySubtle(source, $"OOC: {message}", range, nameOverride, hideLog: hideLog, ignoreActionBlocker: true, color: color); // HardLight: Capitalized OOC for consistency with other OOC chats. break; //Nyano - Summary: case adds the telepathic chat sending ability. case InGameICChatType.Telepathic: diff --git a/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.Commands.cs b/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.Commands.cs index 43b2b20bdc4..ef146a4450a 100644 --- a/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.Commands.cs +++ b/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.Commands.cs @@ -20,6 +20,14 @@ public void InitializeCommands() [AdminCommand(AdminFlags.Debug)] public void ShieldEntityCmd(IConsoleShell shell, string argstr, string[] args) { + // HardLight start + if (args.Length < 1) + { + shell.WriteError("Usage: shieldentity "); + return; + } + // HardLight end + if (!EntityUid.TryParse(args[0], out var uid)) { shell.WriteError("Couldn't parse entity."); @@ -34,6 +42,14 @@ public void ShieldEntityCmd(IConsoleShell shell, string argstr, string[] args) [AdminCommand(AdminFlags.Debug)] public void UnshieldEntityCmd(IConsoleShell shell, string argstr, string[] args) { + // HardLight start + if (args.Length < 1) + { + shell.WriteError("Usage: unshieldentity "); + return; + } + // HardLight end + if (!EntityUid.TryParse(args[0], out var uid)) { shell.WriteError("Couldn't parse entity."); diff --git a/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.Emitter.cs b/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.Emitter.cs index 1f1f3a4e2d9..648407697cf 100644 --- a/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.Emitter.cs +++ b/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.Emitter.cs @@ -39,8 +39,12 @@ private void OnRemoved(Entity owner,ref ComponentRem { var parent = Transform(owner.Owner).GridUid; if (parent is null) + { + RemoveEmitterShield(owner.Owner, owner.Comp); // HardLight return; - UnshieldEntity(parent.Value, null); + } + + RemoveEmitterShield(owner.Owner, owner.Comp, parent.Value); // HardLight } private void OnShieldDeflected(EntityUid uid, ShipShieldEmitterComponent component, ShieldDeflectedEvent args) diff --git a/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.cs b/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.cs index 6ff9d7b23c1..7b86511540a 100644 --- a/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.cs +++ b/Content.Server/_Crescent/ShipShields/ShipShieldsSystem.cs @@ -79,15 +79,19 @@ public override void Update(float frameTime) var parent = Transform(uid).GridUid; if (parent == null) - return; + continue; // HardLight: return emitter.DamageLimit) emitter.OverloadAccumulator = emitter.DamageOverloadTimePunishment; + // HardLight: Keep emitter shield reference in sync if shield was deleted externally. + if (emitter.Shield != null && !Exists(emitter.Shield.Value)) + emitter.Shield = null; + // Check if we need to create a shield (not recharging, no valid shield, not overloaded) - if (!emitter.Recharging && !Exists(emitter.Shield) && emitter.OverloadAccumulator < 1) + if (!emitter.Recharging && !HasEmitterShield(uid, parent.Value, emitter) && emitter.OverloadAccumulator < 1) // HardLight: Exists(emitter.Shield) 0) && Exists(emitter.Shield)) + // HardLight start + else if (emitter.Recharging || emitter.OverloadAccumulator > 0) { - UnshieldEntity(parent.Value); - emitter.Shield = null; - emitter.Shielded = null; - _audio.PlayGlobal(emitter.PowerDownSound, filter, true, emitter.PowerUpSound.Params); + if (RemoveEmitterShield(uid, emitter, parent.Value)) + _audio.PlayGlobal(emitter.PowerDownSound, filter, true, emitter.PowerDownSound.Params); } + // HardLight end } } @@ -127,7 +131,7 @@ private void OnShieldedMapInit(EntityUid uid, ShipShieldedComponent component, M { QueueDel(component.Shield); } - + // Remove the component so the emitter can recreate it fresh RemCompDeferred(uid); } @@ -191,14 +195,16 @@ private void OnCollide(EntityUid uid, ShipShieldComponent component, StartCollid private void OnEmitterShutdown(EntityUid uid, ShipShieldEmitterComponent emitter, ComponentShutdown args) // Mono { - // Only try to unshield if the shielded entity still exists and isn't being deleted - // (prevents double-deletion when the grid is being recursively deleted) - if (emitter.Shielded != null && Exists(emitter.Shielded.Value) && !Terminating(emitter.Shielded.Value)) + // HardLight start + var parent = Transform(uid).GridUid; + if (parent == null || !Exists(parent.Value) || Terminating(parent.Value)) { - UnshieldEntity(emitter.Shielded.Value); - emitter.Shield = null; - emitter.Shielded = null; + RemoveEmitterShield(uid, emitter); + return; } + + RemoveEmitterShield(uid, emitter, parent.Value); + // HardLight end } /// @@ -280,6 +286,79 @@ private bool UnshieldEntity(EntityUid uid, ShipShieldedComponent? component = nu return true; } + // HardLight start + private bool HasEmitterShield(EntityUid emitterUid, EntityUid gridUid, ShipShieldEmitterComponent emitter) + { + if (emitter.Shield != null && Exists(emitter.Shield.Value)) + return true; + + if (TryComp(gridUid, out var shielded) + && shielded.Source == emitterUid + && Exists(shielded.Shield)) + { + emitter.Shield = shielded.Shield; + emitter.Shielded = gridUid; + return true; + } + + return false; + } + + private bool RemoveEmitterShield(EntityUid emitterUid, ShipShieldEmitterComponent emitter, EntityUid? gridUid = null) + { + var removed = false; + + if (emitter.Shield != null && Exists(emitter.Shield.Value)) + { + QueueDel(emitter.Shield.Value); + removed = true; + } + + if (gridUid != null && TryComp(gridUid.Value, out var shielded) && shielded.Source == emitterUid) + { + if (Exists(shielded.Shield)) + { + QueueDel(shielded.Shield); + removed = true; + } + + RemComp(gridUid.Value); + } + else + { + // Fallback: cleanup any stale shielded markers that still point to this emitter. + var shieldedQuery = EntityQueryEnumerator(); + while (shieldedQuery.MoveNext(out var shieldedUid, out var shieldedComp)) + { + if (shieldedComp.Source != emitterUid) + continue; + + if (Exists(shieldedComp.Shield)) + { + QueueDel(shieldedComp.Shield); + removed = true; + } + + RemComp(shieldedUid); + } + } + + var shieldQuery = EntityQueryEnumerator(); + while (shieldQuery.MoveNext(out var shieldUid, out var shieldComp)) + { + if (shieldComp.Source != emitterUid) + continue; + + QueueDel(shieldUid); + removed = true; + } + + emitter.Shield = null; + emitter.Shielded = null; + return removed; + } + // HardLight end + private ChainShape GenerateOvalFixture(EntityUid uid, string name, PhysicsComponent physics, MapGridComponent mapGrid, float padding = Padding) { float radius; diff --git a/Content.Server/_NF/Shipyard/Systems/ShipyardGridSaveSystem.cs b/Content.Server/_NF/Shipyard/Systems/ShipyardGridSaveSystem.cs index b8e152de87f..ce56e396f3b 100644 --- a/Content.Server/_NF/Shipyard/Systems/ShipyardGridSaveSystem.cs +++ b/Content.Server/_NF/Shipyard/Systems/ShipyardGridSaveSystem.cs @@ -843,6 +843,9 @@ private void SanitizeShipSaveNode(MappingDataNode root) "VendingMachineTankDispenserEVAPOI", "VendingMachineVendomatPOI", "VendingMachineYouToolPOI", + // Everything else + "ReactorGasPipe", // Nuclear reactors duplicate invisible inlet/outlet pipes on save. + "ShipShield", // Ship shield emitters duplicate ship shield visuals on save. "BaseMercenaryUplinkRadio", "BaseUplinkRadio", "BaseUplinkRadio20TC", diff --git a/Content.Server/_NF/Shipyard/Systems/ShipyardSystem.cs b/Content.Server/_NF/Shipyard/Systems/ShipyardSystem.cs index bc6611d6756..47075b24817 100644 --- a/Content.Server/_NF/Shipyard/Systems/ShipyardSystem.cs +++ b/Content.Server/_NF/Shipyard/Systems/ShipyardSystem.cs @@ -191,6 +191,7 @@ public bool TryPurchaseShuttle(EntityUid consoleUid, ResPath shuttlePath, [NotNu } _shuttle.TryFTLDock(grid, shuttleComponent, targetGrid); + QueueShipyardMapCleanupIfEmpty(); // HardLight shuttleEntityUid = grid; return true; } @@ -261,6 +262,7 @@ public bool TryPurchaseShuttleFromFile(EntityUid consoleUid, ResPath shuttlePath } _shuttle.TryFTLDock(grid, shuttleComponent, targetGrid); + QueueShipyardMapCleanupIfEmpty(); // HardLight shuttleEntityUid = grid; return true; } @@ -319,7 +321,7 @@ private bool TryPurchaseShuttleFromYamlData(EntityUid consoleUid, string yamlDat } catch (Exception ex) { - //_sawmill.Error($"Failed to purchase shuttle from YAML data: {ex.Message}"); + _sawmill.Warning($"Failed to purchase shuttle from YAML data: {ex.Message}"); // HardLight: Error(shuttleUid) || !_transformQuery.TryComp(shuttleUid, out var xform) || !_transformQuery.TryComp(consoleUid, out var consoleXform) - || consoleXform.GridUid == null - || ShipyardMap == null) + || consoleXform.GridUid == null) // HardLight { result.Error = ShipyardSaleError.InvalidShip; return result; @@ -559,10 +560,13 @@ private void CleanupShipyard() if (ShipyardMap == null || !_map.MapExists(ShipyardMap.Value)) { ShipyardMap = null; + _shuttleIndex = 0f; // HardLight return; } _map.DeleteMap(ShipyardMap.Value); + ShipyardMap = null; // HardLight + _shuttleIndex = 0f; // HardLight } public void SetupShipyardIfNeeded() @@ -570,12 +574,43 @@ public void SetupShipyardIfNeeded() if (ShipyardMap != null && _map.MapExists(ShipyardMap.Value)) return; - _map.CreateMap(out var shipyardMap); + var shipyardMapUid = _map.CreateMap(out var shipyardMap); // HardLight ShipyardMap = shipyardMap; + _metaData.SetEntityName(shipyardMapUid, "Shipyard"); // HardLight _map.SetPaused(ShipyardMap.Value, false); } + /// + /// HardLight: Cleans up the shipyard staging map once no grids remain on it. + /// This avoids orphaned blank MapEntity entries after loading ships. + /// + private void QueueShipyardMapCleanupIfEmpty(int attempt = 0) + { + if (ShipyardMap == null || !_map.MapExists(ShipyardMap.Value)) + { + ShipyardMap = null; + _shuttleIndex = 0f; + return; + } + + var shipyardMap = ShipyardMap.Value; + var gridQuery = EntityManager.AllEntityQueryEnumerator(); + while (gridQuery.MoveNext(out _, out _, out var xform)) + { + if (xform.MapID == shipyardMap) + { + if (attempt >= 24) + return; + + Timer.Spawn(TimeSpan.FromSeconds(5), () => QueueShipyardMapCleanupIfEmpty(attempt + 1)); + return; + } + } + + CleanupShipyard(); + } + // // Tries to rename a shuttle deed and update the respective components. // Returns true if successful. diff --git a/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs b/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs index 51ae9e7808a..962b2a9c86d 100644 --- a/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs +++ b/Content.Shared/Salvage/Fulton/SharedFultonSystem.cs @@ -45,11 +45,36 @@ public override void Initialize() SubscribeLocalEvent(OnFultonedExamine); SubscribeLocalEvent(OnFultonContainerInserted); + SubscribeLocalEvent(OnFultonMapInit); SubscribeLocalEvent(OnFultonInteract); + SubscribeLocalEvent(OnBeaconShutdown); SubscribeLocalEvent(OnFultonSplit); } + private void OnFultonMapInit(Entity ent, ref MapInitEvent args) + { + if (ent.Comp.Beacon == null || Exists(ent.Comp.Beacon.Value)) + return; + + ent.Comp.Beacon = null; + Dirty(ent); + } + + private void OnBeaconShutdown(EntityUid uid, FultonBeaconComponent component, ComponentShutdown args) + { + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var fultonUid, out var fulton)) + { + if (fulton.Beacon != uid) + continue; + + fulton.Beacon = null; + Dirty(fultonUid, fulton); + } + } + private void OnFultonContainerInserted(EntityUid uid, FultonedComponent component, EntGotInsertedIntoContainerMessage args) { RemCompDeferred(uid); @@ -116,12 +141,14 @@ private void OnFultonInteract(EntityUid uid, FultonComponent component, AfterInt if (!_foldable.IsFolded(args.Target.Value)) { component.Beacon = args.Target.Value; + Dirty(uid, component); Audio.PlayPredicted(beacon.LinkSound, uid, args.User); _popup.PopupClient(Loc.GetString("fulton-linked"), uid, args.User); } else { - component.Beacon = EntityUid.Invalid; + component.Beacon = null; + Dirty(uid, component); _popup.PopupClient(Loc.GetString("fulton-folded"), uid, args.User); } @@ -130,6 +157,8 @@ private void OnFultonInteract(EntityUid uid, FultonComponent component, AfterInt if (Deleted(component.Beacon)) { + component.Beacon = null; + Dirty(uid, component); _popup.PopupClient(Loc.GetString("fulton-not-found"), uid, args.User); return; } diff --git a/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs b/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs index 46a4e5aeac6..6a3ea6def09 100644 --- a/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs +++ b/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs @@ -234,7 +234,9 @@ public enum SubFloorVisuals : byte [Serializable, NetSerializable] public enum SubfloorLayers : byte { - FirstLayer + FirstLayer, + // HL - Add another layer, because... reasons (Pucklight commit) + SecondLayer } } // Re-enable warnings if they were disabled elsewhere diff --git a/Resources/ConfigPresets/__Triad/Triad.toml b/Resources/ConfigPresets/__Triad/Triad.toml new file mode 100644 index 00000000000..9f531841004 --- /dev/null +++ b/Resources/ConfigPresets/__Triad/Triad.toml @@ -0,0 +1,130 @@ +[game] +hostname = "[EN][MRP][18+]Triad Sector" +desc = "Triad Sector is a unique twist on the traditional Space Station gameplay. In the Triad Sector, everyone can be the captain of their own ship to venture forth and explore space beyond the station! Salvage, mine, research, trade, or explore your way to riches aboard your own vessel! Includes ships saving!" +lobbyenabled = true +lobbyduration = 180 + +[game.panic_bunker] +enabled = false +min_overall_minutes = 240 +disable_with_admins = true +enable_without_admins = true +show_reason = true +custom_reason = "You have not played on Triad sector long enough to connect to this server. Please play on Triad until you have more playtime." + +[infolinks] +discord = "https://discord.gg/q6dqdPcMnv" # Triad +github = "https://github.com/Triad-Sector/Triad" # Triad + +[net] +max_connections = 256 +tickrate = 30 +port = 25663 +bindto = "::,0.0.0.0" +# Automatic port forwarding! +# Disabled by default because you may not want to do this. +# upnp = true + +[vote] +restart_required_ratio = 0.85 +preset_enabled = true + +[netres] +limit = 10.0 + +[admin] +see_own_notes = true +deadmin_on_join = true +allow_multi_server_play = false + +[admin.alert] +min_players_sharing_connection = 2 + +[server] +id = "Triad" +rules_file = "FrontierRuleset" +uptime_restart_minutes = 0 + +[discord] +rich_main_icon_id = "Triad" +# Webhook to send adminhelp messages to. +ahelp_webhook = "" +# Webhook to send round status messages to. +round_update_webhook = "" +# Optionally, a role ID to ping when the round has ended. +# round_end_role = "" + +[ic] +flavor_text = true +punctuation = true + +[worldgen] +enabled = true + +[rules] +time = 30 + +[ahelp] +admin_prefix = false +admin_prefix_webhook = false + +[votekick] +enabled = false +eligible_number = 5 +initiator_ghost_requirement = false +voter_ghost_requirement = false + +[atmos] +space_wind = true + +[shuttle] +arrivals = false +emergency_dock_time = 1800 # an extra 28 minutes over the default +emergency_transit_time_min = 300 +auto_call_extension_time = 45 +emergency_early_launch_allowed = false + +[biomass] +easy_mode = false # reclaimer can work on soul-ful bodies, mrp server + +[control] +storage_limit = 3 + +[whitelist] +enabled = true + +[auth] +# Authentication (accounts): +# 0 = Optional, 1 = Required, 2 = Disabled +# Presumably do require authentication on any public server. +mode = 1 +# If true, even if authentication is required, localhost is still allowed to login directly regardless. +# You should probably never EVER need to touch this, but if you need a custom auth server, +# (the auth server being the one which manages Space Station 14 accounts), you change it here. +server = "https://auth.spacestation14.com/" + +[hub] +# Set to true to show this server on the public server list +# Before enabling this, read: https://docs.spacestation14.io/hosts/hub-rules +advertise = true +# Comma-separated list of tags, useful for categorizing your server. +# See https://docs.spacestation14.io/hosts/hub-rules for more details on this when it becomes relevant. +tags = "18+, lang:en, rp:med" +# URL of your server. Fill this in if you have a domain name, +# want to use HTTPS (with a reverse proxy), or other advanced scenarios. +# Must be in the form of an ss14:// or ss14s:// URI pointing to the status API. +server_url = "" +# Comma-separated list of URLs of hub servers to advertise to. +hub_urls = "https://hub.spacestation14.com/" + +[status] +# The status server is the TCP side, used by the launcher to determine engine version, etc. +# To be clear: Disabling it makes the launcher unable to connect! +enabled = true +# This is the address and port the status server binds to. +# The port is by default set based on net.port so it will follow what you set there. +bind = "*:25663" +# This is the address of the SS14 server as the launcher uses it. +# This is only needed if you're proxying the status HTTP server - +# by default the launcher will assume the address and port match that of the status server. +connectaddress = "" diff --git a/Resources/Locale/en-US/_Mono/catwalk.ftl b/Resources/Locale/en-US/_Mono/catwalk.ftl new file mode 100644 index 00000000000..6c5c25d634e --- /dev/null +++ b/Resources/Locale/en-US/_Mono/catwalk.ftl @@ -0,0 +1,3 @@ +steel-mono-catwalk = Steel mono catwalk +dark-mono-catwalk = Dark steel mono catwalk +white-mono-catwalk = White steel mono catwalk diff --git a/Resources/Maps/Structures/dock.yml b/Resources/Maps/Structures/dock.yml index fcf35dde6e0..a25bbf41a93 100644 --- a/Resources/Maps/Structures/dock.yml +++ b/Resources/Maps/Structures/dock.yml @@ -4,85 +4,111 @@ meta: engineVersion: 267.3.0 forkId: "" forkVersion: "" - time: 12/20/2025 08:27:46 - entityCount: 771 + time: 03/26/2026 23:13:50 + entityCount: 1921 maps: [] grids: -- 1 +- 2 orphans: -- 1 +- 2 nullspace: [] tilemap: - 4: Space - 0: FloorAstroGrass - 20: FloorBrokenWood - 2: FloorConcrete - 1: FloorConcreteMono - 13: FloorDark - 9: FloorDarkDiagonal - 19: FloorDirt - 10: FloorGlass - 16: FloorGrass - 14: FloorLaundry - 15: FloorMowedAstroGrass - 6: FloorOldConcrete - 7: FloorOldConcreteMono - 21: FloorRGlass - 17: FloorSteel - 18: FloorSteelDirty - 11: FloorTechMaint - 3: FloorTechMaint2 - 12: FloorWood - 8: Lattice - 5: Plating + 2: Space + 10: FloorDarkMini + 11: FloorDarkMono + 7: FloorDarkPlastic + 8: FloorRGlass + 9: FloorReinforced + 12: FloorRockVault + 5: Lattice + 13: LatticeCornerNE + 16: LatticeCornerNW + 15: LatticeCornerSE + 14: LatticeCornerSW + 0: Plating + 6: PlatingCornerNE + 3: PlatingCornerNW + 4: PlatingCornerSE + 1: PlatingCornerSW entities: - proto: "" entities: - - uid: 1 + - uid: 2 components: - type: MetaData name: grid - type: Transform - pos: -0.5,-0.46875 + pos: -0.484375,-0.46875 + parent: invalid - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: AgAAAAADAAIAAAAAAQACAAAAAAIAAgAAAAACAAIAAAAAAQACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAMAAQAAAAADAAEAAAAAAwABAAAAAAAAAQAAAAABAAEAAAAAAwABAAAAAAAAAQAAAAACAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + tiles: CAAAAAAAAAgAAAAAAAAAAAAAAAAACgAAAAAAAAgAAAAAAAAKAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAACAAAAAAAAAoAAAAAAAAMAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAoAAAAAAAAIAAAAAAAACgAAAAAAAAAAAAAAAAAKAAAAAAAACgAAAAAAAAgAAAAAAAAKAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAMAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAA0AAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAAACgAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAQAAAAAAAA0AAAAAAAAOAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAQAAAAAAAA0AAAAAAAAOAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAoAAAAAAAAKAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAADAAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAANAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAADwAAAAAAABAAAAAAAAACAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABQAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAAPAAAAAAAAEAAAAAAAAAIAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAQAAAAAAAAAgAAAAAAAAQAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABAAAAAAAAANAAAAAAAABQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAACAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAABAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEAAQAAAAADAAEAAAAAAQABAAAAAAEAAQAAAAADAAEAAAAAAQABAAAAAAMAAQAAAAADAAEAAAAAAgAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAMABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: CgAAAAAAAAoAAAAAAAAMAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAAAJAAAAAAAAAAAAAAAAAAwAAAAAAAAKAAAAAAAACAAAAAAAAAoAAAAAAAAAAAAAAAAACAAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAJAAAAAAAACQAAAAAAAAAAAAAAAAAKAAAAAAAACgAAAAAAAAgAAAAAAAAKAAAAAAAAAAAAAAAAAAgAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAAAAAAAAAADwAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAwAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAAPAAAAAAAABQAAAAAAAAAAAAAAAAAJAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAAKAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAABAAAAAAAAACAAAAAAAADwAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAPAAAAAAAAEAAAAAAAAAIAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAoAAAAAAAAHAAAAAAAADAAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAA8AAAAAAAAQAAAAAAAABQAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAUAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAADQAAAAAAAA4AAAAAAAAAAAAAAAAABwAAAAAAAAIAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAADQAAAAAAAA4AAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAADQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAUAAAAAAAAQAAAAAAAADQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAAAAcAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA0AAAAAAAAOAAAAAAAADwAAAAAAAAUAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAMAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAA0AAAAAAAAOAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAA0AAAAAAAAOAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAA0AAAAAAAAOAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAUAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAPAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAABAAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAoAAAAAAAAKAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAMAAAAAAAAPAAAAAAAAEAAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAAACgAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAwAAAAAAAA8AAAAAAAAQAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAgAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAADwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAwAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACgAAAAAAAAgAAAAAAAAKAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAACAAAAAAAAAoAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 -1,-1: ind: -1,-1 - tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAEAAQAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: BAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAABwAAAAAAAAIAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAFAAAAAAAADgAAAAAAAA8AAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAACAAAAAAAADwAAAAAAABAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAIAAAAAAAAPAAAAAAAAEAAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAgAAAAAAAA8AAAAAAAAQAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAA0AAAAAAAAFAAAAAAAABwAAAAAAAAcAAAAAAAAMAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAADAAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAA0AAAAAAAAOAAAAAAAABQAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAA0AAAAAAAAOAAAAAAAAAgAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAoAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAANAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAAKAAAAAAAABwAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAAAAAAAAAAJAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAADQAAAAAAAAUAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAAAAAAAAAADQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAwAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAkAAAAAAAAJAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAACAAAAAAAAAoAAAAAAAAAAAAAAAAACAAAAAAAAA== version: 7 - 0,-1: - ind: 0,-1 - tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + 0,-2: + ind: 0,-2 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAAADAAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + version: 7 + 1,-2: + ind: 1,-2 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAYAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAADAAAAAAAAAcAAAAAAAAHAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-2: + ind: -1,-2 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAA== + version: 7 + -2,-2: + ind: -2,-2 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAA== version: 7 -1,1: ind: -1,1 - tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: BgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -2,1: + ind: -2,1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: AgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAMAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAADAAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAHAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 1,1: + ind: 1,1 + tiles: AwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 - 0,2: - ind: 0,2 - tiles: AgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + -2,-1: + ind: -2,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACgAAAAAAAA== version: 7 - -1,2: - ind: -1,2 - tiles: BAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAA== + -2,0: + ind: -2,0 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAMAAAAAAAACgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAA== version: 7 - type: Broadphase - type: Physics bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures @@ -91,6 +117,7 @@ entities: - type: SpreaderGrid - type: Shuttle dampingModifier: 0.25 + - type: ImplicitRoof - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -98,129 +125,319 @@ entities: - type: DecalGrid chunkCollection: version: 2 - nodes: [] + nodes: + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 28: 21,-23 + 29: 21,-22 + 31: 21,-21 + 32: 21,-1 + 33: 21,0 + 34: 21,1 + 35: 21,21 + 36: 21,22 + 37: 21,23 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 25: -1,-25 + 26: 0,-25 + 27: 1,-25 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 41: -21,23 + 42: -21,22 + 43: -21,21 + 44: -21,1 + 45: -21,0 + 46: -21,-1 + 47: -21,-21 + 48: -21,-22 + 49: -21,-23 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 38: -1,25 + 39: 0,25 + 40: 1,25 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 14335 - 1: 32768 + 0: 65535 0,-1: - 0: 63283 + 0: 65535 -1,0: - 0: 36095 + 0: 65535 0,1: - 0: 65527 - 1: 8 + 0: 65535 -1,1: - 0: 65532 + 0: 65535 0,2: - 0: 32767 - 1: 32768 + 0: 14335 -1,2: - 0: 53247 + 0: 36095 0,3: - 0: 57203 + 0: 13107 1: 8 -1,3: - 0: 65483 - 1: 48 + 0: 34952 + 1: 19 0,4: - 0: 29567 - 1: 34816 + 0: 13107 + 1: 8 1,0: - 0: 255 + 0: 56251 1,1: - 1: 1 + 0: 32766 1,2: - 1: 4096 + 0: 52991 1,3: - 0: 65280 + 1: 50737 + 0: 140 1,-1: - 0: 61440 + 0: 48094 1,4: - 0: 15 - 1: 4096 + 1: 15 2,0: - 0: 255 + 0: 47103 + 2,1: + 0: 595 + 1: 27776 + 2,2: + 0: 63280 + 1: 2 2,3: - 0: 65280 + 0: 53247 + 1: 12288 2,-1: - 0: 61440 + 0: 63411 2,4: - 0: 15 + 1: 7 + 0: 136 3,0: - 0: 17 + 0: 255 + 1: 8192 + 3,1: + 1: 8755 + 3,2: + 1: 12834 3,3: - 0: 4352 + 1: 35 + 0: 63248 3,-1: - 0: 4096 + 0: 61440 + 1: 35 3,4: - 0: 1 - -3,0: + 0: 61439 + 4,0: 0: 255 + -4,0: + 0: 30583 + -4,-1: + 0: 30583 + -5,0: + 0: 18687 + -4,1: + 0: 30583 + -4,2: + 0: 65399 + -4,3: + 0: 59631 + -5,2: + 1: 32768 + -5,3: + 1: 34952 + -4,4: + 0: 65535 + -3,0: + 1: 25393 + 0: 128 + -3,1: + 1: 48580 + -3,2: + 0: 56576 + 1: 206 + -3,3: + 0: 32767 + 1: 32768 -3,-1: - 0: 61440 + 1: 13156 + 0: 32768 + -3,4: + 0: 307 + 1: 12 -2,0: - 0: 255 - -2,-1: - 0: 61440 + 0: 56541 + -2,1: + 0: 51405 + -2,2: + 0: 32766 -2,3: - 0: 43008 - 1: 196 + 0: 311 + 1: 31872 + -2,-1: + 0: 56541 -2,4: - 0: 8 - 1: 1088 + 1: 15 -1,-1: - 0: 64648 + 0: 65535 -1,4: - 0: 52175 - -1,-3: 0: 34952 - -1,-2: + 1: 3 + 0,-4: + 0: 13107 + 1: 8 + 0,-5: + 0: 13107 + -1,-4: 0: 34952 + 1: 4099 0,-3: - 0: 13107 + 0: 63283 + 1: 8 + -1,-3: + 0: 64648 + 1: 3 0,-2: - 0: 13107 - -3,7: - 0: 65520 - -2,7: - 0: 65520 - -1,5: 0: 65535 - -1,6: - 0: 36095 - -1,7: - 0: 65532 - -1,8: - 0: 34956 - 0,5: + -1,-2: 0: 65535 - 0,6: + 1,-4: + 1: 14031 + 0: 32768 + 1,-3: + 1: 1 + 0: 65228 + 1,-2: + 0: 65407 + 2,-4: + 1: 55 + 0: 65480 + 2,-3: 0: 14335 - 1: 34816 - 0,7: + 2,-2: + 0: 20992 + 1: 35938 + 2,-5: + 0: 32768 + 3,-4: + 0: 6143 + 1: 8192 + 3,-3: + 1: 8755 + 3,-2: + 1: 12834 + 3,-5: + 0: 65516 + 4,-4: + 0: 1 + 4,-1: + 0: 61440 + -4,-4: + 0: 59631 + -4,-5: 0: 65527 - 0,8: - 0: 13111 - 1,6: - 1: 256 - 1,7: - 0: 65520 - 2,7: - 0: 65520 - 3,7: - 0: 4368 - 0,9: + -5,-4: + 1: 34952 + -4,-3: + 0: 32767 + -5,-3: + 1: 136 + -4,-2: + 0: 30583 + -5,-1: + 0: 63552 + -3,-4: + 0: 65395 + 1: 140 + -3,-3: + 0: 3551 + 1: 49152 + -3,-2: + 1: 51646 + -3,-5: + 0: 12544 + -2,-4: + 1: 35967 + 0: 12544 + -2,-3: + 0: 65399 + -2,-2: + 0: 51406 + -1,-5: + 0: 34952 + 0,-7: + 0: 13056 + -1,-7: + 0: 34816 + 0,-6: 0: 13107 - -1,9: + -1,-6: 0: 34952 - 0,10: - 0: 819 - -1,10: + 3,-6: + 0: 32768 + 4,-6: + 0: 65508 + 4,-5: + 0: 14335 + 5,-6: + 0: 30577 + 5,0: + 0: 119 + 5,-1: + 0: 28672 + -4,-6: + 0: 12544 + -5,-6: + 0: 65525 + -5,-5: + 0: 3310 + 1: 32768 + -6,-6: + 0: 52416 + -5,4: + 1: 136 + 0: 60416 + -4,5: + 0: 311 + -5,5: + 0: 65534 + -1,5: + 0: 34952 + -1,6: 0: 2184 + 0,5: + 0: 13107 + 0,6: + 0: 819 + -6,5: + 0: 52416 + -5,6: + 0: 5 + 3,5: + 0: 140 + 4,4: + 0: 63281 + 4,5: + 0: 61439 + 4,6: + 0: 4 + 5,5: + 0: 30576 + 5,6: + 0: 1 + -6,-1: + 0: 49152 + -6,0: + 0: 204 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -257,4710 +474,12264 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Dock + - type: NavMap + - type: ForceAnchor - proto: AirAlarm entities: - - uid: 639 + - uid: 592 components: - type: Transform - pos: -2.5,17.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 - type: DeviceList devices: - - 527 - - 544 - - 651 - - 674 - - 673 - - 667 -- proto: AirlockExternalGlassShuttleRegular - entities: - - uid: 29 + - 1363 + - 543 + - 1362 + - 1481 + - 1463 + - 1428 + - 1464 + - 1427 + - 1078 + - 538 + - uid: 971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1 - - uid: 30 + pos: 3.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 1361 + - 1482 + - 1364 + - 1077 + - 1458 + - 1469 + - 948 + - 587 + - 1453 + - 1471 + - uid: 1118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 1457 + - 1472 + - 900 + - 1041 + - 1474 + - 1460 + - 1476 + - 1455 + - 1393 + - 1454 + - 1456 + - 1475 + - 1452 + - 1477 + - 905 + - 539 + - uid: 1220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - - uid: 31 + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 1389 + - 1467 + - 1468 + - 1379 + - 1466 + - 1365 +- proto: AirlockExternalGlassLocked + entities: + - uid: 97 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - - uid: 220 + pos: -19.5,24.5 + parent: 2 + - uid: 98 components: - type: Transform - pos: 0.5,-11.5 - parent: 1 - - uid: 290 + pos: -19.5,-23.5 + parent: 2 + - uid: 135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 1 - - uid: 307 + pos: 20.5,24.5 + parent: 2 + - uid: 877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,29.5 - parent: 1 - - uid: 556 + pos: 20.5,-23.5 + parent: 2 +- proto: AirlockExternalGlassShuttleRegular + entities: + - uid: 8 components: - type: Transform - pos: -0.5,-11.5 - parent: 1 - - uid: 559 + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + - uid: 26 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1 - - uid: 602 + pos: -21.5,-22.5 + parent: 2 + - uid: 159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,30.5 - parent: 1 - - uid: 603 + pos: 1.5,-25.5 + parent: 2 + - uid: 170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 1 - - uid: 604 + pos: -0.5,-25.5 + parent: 2 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - - uid: 605 + pos: -21.5,21.5 + parent: 2 + - uid: 341 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,42.5 - parent: 1 - - uid: 606 + pos: -0.5,26.5 + parent: 2 + - uid: 342 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,42.5 - parent: 1 - - uid: 610 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 1 - - uid: 612 + pos: 1.5,26.5 + parent: 2 + - uid: 343 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,42.5 - parent: 1 - - uid: 613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 1 - - uid: 614 + pos: 0.5,26.5 + parent: 2 + - uid: 394 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 1 - - uid: 615 + pos: 22.5,-22.5 + parent: 2 + - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,16.5 - parent: 1 - - uid: 648 + pos: 22.5,23.5 + parent: 2 + - uid: 559 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - - uid: 653 + pos: 22.5,22.5 + parent: 2 + - uid: 562 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,1.5 - parent: 1 - - uid: 722 + pos: 22.5,21.5 + parent: 2 + - uid: 563 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,31.5 - parent: 1 -- proto: APCBasic - entities: - - uid: 214 + pos: 22.5,1.5 + parent: 2 + - uid: 601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 6 + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - uid: 608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,42.5 - parent: 1 - - uid: 23 + rot: -1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - uid: 654 components: - type: Transform - pos: 0.5,-11.5 - parent: 1 - - uid: 24 + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 2 + - uid: 676 components: - type: Transform - pos: 1.5,-11.5 - parent: 1 - - uid: 47 + rot: -1.5707963267948966 rad + pos: -21.5,23.5 + parent: 2 + - uid: 679 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1 - - uid: 48 + pos: -21.5,-0.5 + parent: 2 + - uid: 719 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - - uid: 49 + pos: -21.5,-20.5 + parent: 2 + - uid: 720 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - - uid: 50 + pos: -21.5,-21.5 + parent: 2 + - uid: 881 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,1.5 - parent: 1 - - uid: 51 + pos: 22.5,-0.5 + parent: 2 + - uid: 891 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - - uid: 52 + pos: 22.5,-21.5 + parent: 2 + - uid: 937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 1 - - uid: 239 + rot: -1.5707963267948966 rad + pos: -21.5,22.5 + parent: 2 + - uid: 1723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 1 - - uid: 282 + pos: 0.5,-25.5 + parent: 2 +- proto: AlwaysPoweredlightBlue + entities: + - uid: 4 components: - type: Transform - pos: -0.5,-11.5 - parent: 1 - - uid: 285 + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 2 +- proto: AlwaysPoweredlightRed + entities: + - uid: 81 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 1 - - uid: 288 + pos: -7.5,4.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 70 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 235 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,30.5 - parent: 1 - - uid: 548 + pos: -6.5,2.5 + parent: 2 + - uid: 978 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,29.5 - parent: 1 - - uid: 552 + pos: -6.5,-1.5 + parent: 2 + - uid: 981 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1 - - uid: 553 + pos: -10.5,0.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - - uid: 570 + pos: 1.5,-25.5 + parent: 2 + - uid: 364 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,42.5 - parent: 1 - - uid: 620 + pos: -0.5,-25.5 + parent: 2 + - uid: 365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,42.5 - parent: 1 - - uid: 683 + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + - uid: 445 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 1 - - uid: 699 + pos: -21.5,-0.5 + parent: 2 + - uid: 447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,31.5 - parent: 1 - - uid: 702 + rot: 3.141592653589793 rad + pos: -19.5,24.5 + parent: 2 + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,16.5 - parent: 1 -- proto: CableApcExtension - entities: - - uid: 65 + pos: 22.5,23.5 + parent: 2 + - uid: 459 components: - type: Transform - pos: 6.5,15.5 - parent: 1 - - uid: 67 + pos: -19.5,-23.5 + parent: 2 + - uid: 554 components: - type: Transform - pos: 0.5,28.5 - parent: 1 - - uid: 68 + pos: 0.5,-25.5 + parent: 2 + - uid: 868 components: - type: Transform - pos: 3.5,7.5 - parent: 1 - - uid: 70 + rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 2 + - uid: 878 components: - type: Transform - pos: 0.5,30.5 - parent: 1 - - uid: 71 + rot: 1.5707963267948966 rad + pos: 22.5,22.5 + parent: 2 + - uid: 879 components: - type: Transform - pos: 0.5,17.5 - parent: 1 - - uid: 73 + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + - uid: 883 components: - type: Transform - pos: 4.5,15.5 - parent: 1 - - uid: 74 + pos: 20.5,-23.5 + parent: 2 + - uid: 893 components: - type: Transform - pos: 8.5,15.5 - parent: 1 - - uid: 75 + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 2 + - uid: 894 components: - type: Transform - pos: 0.5,0.5 - parent: 1 - - uid: 76 + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 2 + - uid: 895 components: - type: Transform - pos: 0.5,14.5 - parent: 1 - - uid: 82 + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 2 + - uid: 898 components: - type: Transform - pos: 0.5,23.5 - parent: 1 - - uid: 89 + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + - uid: 899 components: - type: Transform - pos: -2.5,0.5 - parent: 1 - - uid: 90 + rot: -1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - uid: 940 components: - type: Transform - pos: 0.5,32.5 - parent: 1 - - uid: 91 + rot: -1.5707963267948966 rad + pos: -21.5,22.5 + parent: 2 + - uid: 941 components: - type: Transform - pos: -5.5,0.5 - parent: 1 - - uid: 92 + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - uid: 942 components: - type: Transform - pos: 3.5,0.5 - parent: 1 - - uid: 93 + rot: -1.5707963267948966 rad + pos: -21.5,21.5 + parent: 2 + - uid: 944 components: - type: Transform - pos: 0.5,-0.5 - parent: 1 - - uid: 95 + rot: -1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 2 + - uid: 945 components: - type: Transform - pos: -2.5,8.5 - parent: 1 - - uid: 96 + rot: -1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 946 components: - type: Transform - pos: -3.5,0.5 - parent: 1 - - uid: 101 + rot: -1.5707963267948966 rad + pos: -21.5,-22.5 + parent: 2 + - uid: 961 components: - type: Transform - pos: -4.5,15.5 - parent: 1 - - uid: 102 + rot: -1.5707963267948966 rad + pos: -21.5,23.5 + parent: 2 + - uid: 962 components: - type: Transform - pos: -3.5,15.5 - parent: 1 - - uid: 108 + rot: 3.141592653589793 rad + pos: -0.5,26.5 + parent: 2 + - uid: 965 components: - type: Transform - pos: 0.5,19.5 - parent: 1 - - uid: 109 + rot: 3.141592653589793 rad + pos: 1.5,26.5 + parent: 2 + - uid: 1039 components: - type: Transform - pos: 0.5,3.5 - parent: 1 - - uid: 114 + rot: 3.141592653589793 rad + pos: 0.5,26.5 + parent: 2 + - uid: 1523 components: - type: Transform - pos: -8.5,0.5 - parent: 1 - - uid: 124 + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 +- proto: BenchSteelLeft + entities: + - uid: 906 components: - type: Transform - pos: 0.5,25.5 - parent: 1 - - uid: 131 + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 909 components: - type: Transform - pos: 0.5,-6.5 - parent: 1 - - uid: 136 + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 910 components: - type: Transform - pos: 0.5,-2.5 - parent: 1 - - uid: 139 + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - uid: 917 components: - type: Transform - pos: 8.5,30.5 - parent: 1 - - uid: 140 + pos: -3.5,9.5 + parent: 2 + - uid: 918 components: - type: Transform - pos: 9.5,30.5 - parent: 1 - - uid: 141 + pos: 3.5,9.5 + parent: 2 + - uid: 919 components: - type: Transform - pos: 0.5,38.5 - parent: 1 - - uid: 142 + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 920 components: - type: Transform - pos: 0.5,39.5 - parent: 1 - - uid: 143 + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 2 +- proto: BenchSteelMiddle + entities: + - uid: 907 components: - type: Transform - pos: -3.5,6.5 - parent: 1 - - uid: 144 + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 +- proto: BenchSteelRight + entities: + - uid: 908 components: - type: Transform - pos: -3.5,8.5 - parent: 1 - - uid: 145 + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - uid: 911 components: - type: Transform - pos: 0.5,-3.5 - parent: 1 - - uid: 153 + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - uid: 912 components: - type: Transform - pos: 0.5,24.5 - parent: 1 - - uid: 155 + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - uid: 913 components: - type: Transform - pos: -10.5,30.5 - parent: 1 - - uid: 156 + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 914 components: - type: Transform - pos: 0.5,2.5 - parent: 1 - - uid: 171 + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 915 components: - type: Transform - pos: -0.5,6.5 - parent: 1 - - uid: 172 + pos: -2.5,9.5 + parent: 2 + - uid: 916 components: - type: Transform - pos: -0.5,8.5 - parent: 1 - - uid: 173 + pos: 4.5,9.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 1 components: - type: Transform - pos: 0.5,8.5 - parent: 1 - - uid: 174 + pos: 9.5,12.5 + parent: 2 + - uid: 201 components: - type: Transform - pos: 0.5,7.5 - parent: 1 - - uid: 175 + pos: 1.5,-1.5 + parent: 2 + - uid: 202 components: - type: Transform - pos: 0.5,10.5 - parent: 1 - - uid: 176 + pos: 0.5,2.5 + parent: 2 + - uid: 204 components: - type: Transform - pos: 5.5,0.5 - parent: 1 - - uid: 177 + pos: -1.5,2.5 + parent: 2 + - uid: 207 components: - type: Transform - pos: -10.5,0.5 - parent: 1 - - uid: 178 + pos: -0.5,2.5 + parent: 2 + - uid: 209 components: - type: Transform - pos: 1.5,0.5 - parent: 1 - - uid: 179 + pos: 1.5,2.5 + parent: 2 + - uid: 353 components: - type: Transform - pos: 0.5,33.5 - parent: 1 - - uid: 181 + pos: 19.5,22.5 + parent: 2 + - uid: 361 components: - type: Transform - pos: 5.5,30.5 - parent: 1 - - uid: 182 + pos: -17.5,21.5 + parent: 2 + - uid: 367 components: - type: Transform - pos: 4.5,0.5 - parent: 1 - - uid: 187 + pos: -0.5,22.5 + parent: 2 + - uid: 397 components: - type: Transform - pos: 0.5,37.5 - parent: 1 - - uid: 188 + pos: 1.5,24.5 + parent: 2 + - uid: 457 components: - type: Transform - pos: 2.5,0.5 - parent: 1 - - uid: 190 + pos: 1.5,22.5 + parent: 2 + - uid: 516 components: - type: Transform - pos: -9.5,0.5 - parent: 1 - - uid: 191 + pos: -18.5,22.5 + parent: 2 + - uid: 518 components: - type: Transform - pos: 9.5,15.5 - parent: 1 - - uid: 192 + pos: 20.5,23.5 + parent: 2 + - uid: 520 components: - type: Transform - pos: 5.5,15.5 - parent: 1 - - uid: 201 + pos: 21.5,22.5 + parent: 2 + - uid: 542 components: - type: Transform - pos: 0.5,11.5 - parent: 1 - - uid: 202 + pos: -0.5,25.5 + parent: 2 + - uid: 586 components: - type: Transform - pos: 0.5,9.5 - parent: 1 - - uid: 204 + pos: -14.5,18.5 + parent: 2 + - uid: 588 components: - type: Transform - pos: 6.5,30.5 - parent: 1 - - uid: 205 + pos: 18.5,21.5 + parent: 2 + - uid: 591 components: - type: Transform - pos: 10.5,30.5 - parent: 1 - - uid: 227 + pos: 17.5,19.5 + parent: 2 + - uid: 619 components: - type: Transform - pos: 3.5,22.5 - parent: 1 - - uid: 228 + pos: -1.5,-1.5 + parent: 2 + - uid: 621 components: - type: Transform - pos: 3.5,23.5 - parent: 1 - - uid: 233 + pos: -17.5,22.5 + parent: 2 + - uid: 648 components: - type: Transform - pos: -0.5,21.5 - parent: 1 - - uid: 241 + pos: -2.5,-1.5 + parent: 2 + - uid: 649 components: - type: Transform - pos: 0.5,-10.5 - parent: 1 - - uid: 242 + pos: -0.5,-1.5 + parent: 2 + - uid: 651 components: - type: Transform - pos: -2.5,15.5 - parent: 1 - - uid: 247 + pos: -8.5,12.5 + parent: 2 + - uid: 668 components: - type: Transform - pos: 0.5,36.5 - parent: 1 - - uid: 253 + pos: -0.5,23.5 + parent: 2 + - uid: 684 components: - type: Transform - pos: 3.5,8.5 - parent: 1 - - uid: 255 + pos: -20.5,22.5 + parent: 2 + - uid: 781 components: - type: Transform - pos: -7.5,0.5 - parent: 1 - - uid: 257 + pos: 8.5,-10.5 + parent: 2 + - uid: 782 components: - type: Transform - pos: -2.5,30.5 - parent: 1 - - uid: 260 + pos: -16.5,21.5 + parent: 2 + - uid: 800 components: - type: Transform - pos: 6.5,0.5 - parent: 1 - - uid: 261 + pos: -16.5,20.5 + parent: 2 + - uid: 872 components: - type: Transform - pos: 3.5,30.5 - parent: 1 - - uid: 267 + pos: 10.5,-12.5 + parent: 2 + - uid: 884 components: - type: Transform - pos: -3.5,30.5 - parent: 1 - - uid: 268 + pos: 19.5,23.5 + parent: 2 + - uid: 885 components: - type: Transform - pos: 2.5,8.5 - parent: 1 - - uid: 269 + pos: 1.5,25.5 + parent: 2 + - uid: 888 components: - type: Transform - pos: -4.5,30.5 - parent: 1 - - uid: 273 + pos: 21.5,21.5 + parent: 2 + - uid: 956 components: - type: Transform - pos: 0.5,41.5 - parent: 1 - - uid: 274 + pos: -13.5,11.5 + parent: 2 + - uid: 970 components: - type: Transform - pos: 1.5,30.5 - parent: 1 - - uid: 280 + pos: -13.5,18.5 + parent: 2 + - uid: 972 components: - type: Transform - pos: -0.5,30.5 - parent: 1 - - uid: 281 + pos: 16.5,19.5 + parent: 2 + - uid: 979 components: - type: Transform - pos: -7.5,30.5 - parent: 1 - - uid: 283 + pos: -6.5,2.5 + parent: 2 + - uid: 982 components: - type: Transform - pos: 8.5,0.5 - parent: 1 - - uid: 308 + pos: 18.5,20.5 + parent: 2 + - uid: 984 components: - type: Transform - pos: 0.5,6.5 - parent: 1 - - uid: 314 + pos: 17.5,-19.5 + parent: 2 + - uid: 994 components: - type: Transform - pos: 0.5,21.5 - parent: 1 - - uid: 317 + pos: -8.5,2.5 + parent: 2 + - uid: 995 components: - type: Transform - pos: 10.5,15.5 - parent: 1 - - uid: 321 + pos: -8.5,1.5 + parent: 2 + - uid: 996 components: - type: Transform - pos: -1.5,30.5 - parent: 1 - - uid: 322 + pos: -8.5,0.5 + parent: 2 + - uid: 997 components: - type: Transform - pos: -5.5,30.5 - parent: 1 - - uid: 323 + pos: -8.5,-0.5 + parent: 2 + - uid: 998 components: - type: Transform - pos: -6.5,30.5 - parent: 1 - - uid: 346 + pos: -8.5,-1.5 + parent: 2 + - uid: 999 components: - type: Transform - pos: 0.5,-7.5 - parent: 1 - - uid: 347 + pos: -8.5,-2.5 + parent: 2 + - uid: 1000 components: - type: Transform - pos: 0.5,1.5 - parent: 1 - - uid: 351 + pos: -8.5,-3.5 + parent: 2 + - uid: 1001 components: - type: Transform - pos: 4.5,30.5 - parent: 1 - - uid: 354 + pos: -8.5,3.5 + parent: 2 + - uid: 1002 components: - type: Transform - pos: 11.5,0.5 - parent: 1 - - uid: 355 + pos: -8.5,4.5 + parent: 2 + - uid: 1003 components: - type: Transform - pos: -6.5,0.5 - parent: 1 - - uid: 357 + pos: -5.5,2.5 + parent: 2 + - uid: 1004 components: - type: Transform - pos: 7.5,0.5 - parent: 1 - - uid: 358 + pos: -4.5,2.5 + parent: 2 + - uid: 1005 components: - type: Transform - pos: 0.5,5.5 - parent: 1 - - uid: 368 + pos: -3.5,2.5 + parent: 2 + - uid: 1006 components: - type: Transform - pos: 11.5,15.5 - parent: 1 - - uid: 370 + pos: -2.5,2.5 + parent: 2 + - uid: 1008 components: - type: Transform - pos: 1.5,7.5 - parent: 1 - - uid: 371 + pos: 1.5,23.5 + parent: 2 + - uid: 1009 components: - type: Transform - pos: 0.5,13.5 - parent: 1 - - uid: 379 + pos: 21.5,23.5 + parent: 2 + - uid: 1011 components: - type: Transform - pos: -2.5,6.5 - parent: 1 - - uid: 385 + pos: 2.5,2.5 + parent: 2 + - uid: 1012 components: - type: Transform - pos: 0.5,15.5 - parent: 1 - - uid: 386 + pos: 3.5,2.5 + parent: 2 + - uid: 1013 components: - type: Transform - pos: 10.5,0.5 - parent: 1 - - uid: 388 + pos: 4.5,2.5 + parent: 2 + - uid: 1014 components: - type: Transform - pos: -5.5,15.5 - parent: 1 - - uid: 389 + pos: 5.5,2.5 + parent: 2 + - uid: 1015 components: - type: Transform - pos: -1.5,15.5 - parent: 1 - - uid: 390 + pos: 6.5,2.5 + parent: 2 + - uid: 1016 components: - type: Transform - pos: -1.5,8.5 - parent: 1 - - uid: 391 + pos: 7.5,2.5 + parent: 2 + - uid: 1017 components: - type: Transform - pos: 2.5,7.5 - parent: 1 - - uid: 392 + pos: 8.5,2.5 + parent: 2 + - uid: 1018 components: - type: Transform - pos: 2.5,30.5 - parent: 1 - - uid: 393 + pos: 9.5,2.5 + parent: 2 + - uid: 1019 components: - type: Transform - pos: 7.5,30.5 - parent: 1 - - uid: 394 + pos: 10.5,2.5 + parent: 2 + - uid: 1021 components: - type: Transform - pos: 0.5,-4.5 - parent: 1 - - uid: 395 + pos: -0.5,3.5 + parent: 2 + - uid: 1022 components: - type: Transform - pos: 11.5,30.5 - parent: 1 - - uid: 400 + pos: -0.5,4.5 + parent: 2 + - uid: 1023 components: - type: Transform - pos: 9.5,0.5 - parent: 1 - - uid: 444 + pos: -0.5,5.5 + parent: 2 + - uid: 1024 components: - type: Transform - pos: 1.5,8.5 - parent: 1 - - uid: 445 + pos: -0.5,6.5 + parent: 2 + - uid: 1025 components: - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 448 + pos: -0.5,7.5 + parent: 2 + - uid: 1026 components: - type: Transform - pos: 0.5,-8.5 - parent: 1 - - uid: 449 + pos: -0.5,8.5 + parent: 2 + - uid: 1027 components: - type: Transform - pos: 0.5,-1.5 - parent: 1 - - uid: 450 + pos: -0.5,9.5 + parent: 2 + - uid: 1028 components: - type: Transform - pos: 12.5,15.5 - parent: 1 - - uid: 453 + pos: -0.5,10.5 + parent: 2 + - uid: 1029 components: - type: Transform - pos: 0.5,20.5 - parent: 1 - - uid: 454 + pos: -0.5,11.5 + parent: 2 + - uid: 1030 components: - type: Transform - pos: 0.5,-5.5 - parent: 1 - - uid: 455 + pos: -0.5,12.5 + parent: 2 + - uid: 1031 components: - type: Transform - pos: 0.5,-9.5 - parent: 1 - - uid: 456 + pos: -0.5,14.5 + parent: 2 + - uid: 1032 components: - type: Transform - pos: 0.5,22.5 - parent: 1 - - uid: 460 + pos: -0.5,15.5 + parent: 2 + - uid: 1033 components: - type: Transform - pos: -0.5,0.5 - parent: 1 - - uid: 466 + pos: -0.5,16.5 + parent: 2 + - uid: 1034 components: - type: Transform - pos: 0.5,35.5 - parent: 1 - - uid: 474 + pos: -0.5,17.5 + parent: 2 + - uid: 1035 components: - type: Transform - pos: 0.5,12.5 - parent: 1 - - uid: 479 + pos: -0.5,18.5 + parent: 2 + - uid: 1036 components: - type: Transform - pos: -1.5,6.5 - parent: 1 - - uid: 481 + pos: -0.5,19.5 + parent: 2 + - uid: 1037 components: - type: Transform - pos: 1.5,15.5 - parent: 1 - - uid: 490 + pos: -0.5,20.5 + parent: 2 + - uid: 1038 components: - type: Transform - pos: -8.5,30.5 - parent: 1 - - uid: 491 + pos: -0.5,21.5 + parent: 2 + - uid: 1040 components: - type: Transform - pos: 0.5,26.5 - parent: 1 - - uid: 492 + pos: -0.5,13.5 + parent: 2 + - uid: 1042 components: - type: Transform - pos: -4.5,0.5 - parent: 1 - - uid: 500 + pos: -0.5,24.5 + parent: 2 + - uid: 1043 components: - type: Transform - pos: -0.5,15.5 - parent: 1 - - uid: 503 + pos: 1.5,21.5 + parent: 2 + - uid: 1044 components: - type: Transform - pos: 0.5,40.5 - parent: 1 - - uid: 505 + pos: 1.5,19.5 + parent: 2 + - uid: 1045 components: - type: Transform - pos: -9.5,30.5 - parent: 1 - - uid: 506 + pos: 1.5,18.5 + parent: 2 + - uid: 1046 components: - type: Transform - pos: 0.5,27.5 - parent: 1 - - uid: 507 + pos: 1.5,17.5 + parent: 2 + - uid: 1047 components: - type: Transform - pos: -1.5,0.5 - parent: 1 - - uid: 545 + pos: 1.5,16.5 + parent: 2 + - uid: 1048 components: - type: Transform - pos: -1.5,21.5 - parent: 1 - - uid: 583 + pos: 1.5,20.5 + parent: 2 + - uid: 1049 components: - type: Transform - pos: 0.5,18.5 - parent: 1 - - uid: 584 + pos: 1.5,15.5 + parent: 2 + - uid: 1050 components: - type: Transform - pos: 0.5,31.5 - parent: 1 - - uid: 587 + pos: 1.5,14.5 + parent: 2 + - uid: 1051 components: - type: Transform - pos: 7.5,15.5 - parent: 1 - - uid: 588 + pos: 1.5,13.5 + parent: 2 + - uid: 1052 components: - type: Transform - pos: 0.5,29.5 - parent: 1 - - uid: 589 + pos: 1.5,12.5 + parent: 2 + - uid: 1053 components: - type: Transform - pos: 0.5,16.5 - parent: 1 - - uid: 593 + pos: 1.5,11.5 + parent: 2 + - uid: 1054 components: - type: Transform - pos: 2.5,15.5 - parent: 1 - - uid: 594 + pos: 1.5,10.5 + parent: 2 + - uid: 1055 components: - type: Transform - pos: 3.5,15.5 - parent: 1 - - uid: 618 + pos: 1.5,9.5 + parent: 2 + - uid: 1056 components: - type: Transform - pos: 0.5,34.5 - parent: 1 - - uid: 655 + pos: 1.5,8.5 + parent: 2 + - uid: 1057 components: - type: Transform - pos: 2.5,23.5 - parent: 1 - - uid: 677 + pos: 1.5,7.5 + parent: 2 + - uid: 1058 components: - type: Transform - pos: 2.5,22.5 - parent: 1 - - uid: 682 + pos: 1.5,6.5 + parent: 2 + - uid: 1059 components: - type: Transform - pos: -2.5,21.5 - parent: 1 - - uid: 684 + pos: 1.5,5.5 + parent: 2 + - uid: 1060 components: - type: Transform - pos: -3.5,21.5 - parent: 1 - - uid: 685 + pos: 1.5,4.5 + parent: 2 + - uid: 1061 components: - type: Transform - pos: -2.5,24.5 - parent: 1 - - uid: 687 + pos: 1.5,3.5 + parent: 2 + - uid: 1062 components: - type: Transform - pos: -3.5,24.5 - parent: 1 - - uid: 688 + pos: 10.5,1.5 + parent: 2 + - uid: 1063 components: - type: Transform - pos: -0.5,24.5 - parent: 1 - - uid: 690 + pos: 11.5,1.5 + parent: 2 + - uid: 1064 components: - type: Transform - pos: -1.5,24.5 - parent: 1 - - uid: 694 + pos: 12.5,1.5 + parent: 2 + - uid: 1065 components: - type: Transform - pos: 1.5,22.5 - parent: 1 - - uid: 701 + pos: 13.5,1.5 + parent: 2 + - uid: 1066 components: - type: Transform - pos: 1.5,23.5 - parent: 1 - - uid: 736 + pos: 15.5,1.5 + parent: 2 + - uid: 1067 components: - type: Transform - pos: -3.5,17.5 - parent: 1 - - uid: 737 + pos: 14.5,1.5 + parent: 2 + - uid: 1068 components: - type: Transform - pos: -3.5,16.5 - parent: 1 - - uid: 738 + pos: 16.5,1.5 + parent: 2 + - uid: 1069 components: - type: Transform - pos: -4.5,17.5 - parent: 1 - - uid: 739 + pos: 17.5,1.5 + parent: 2 + - uid: 1071 components: - type: Transform - pos: -4.5,18.5 - parent: 1 - - uid: 740 + pos: -6.5,-1.5 + parent: 2 + - uid: 1072 components: - type: Transform - pos: -4.5,19.5 - parent: 1 - - uid: 741 + pos: -5.5,-1.5 + parent: 2 + - uid: 1073 components: - type: Transform - pos: -3.5,14.5 - parent: 1 - - uid: 742 + pos: -4.5,-1.5 + parent: 2 + - uid: 1074 components: - type: Transform - pos: -3.5,13.5 - parent: 1 - - uid: 743 + pos: -3.5,-1.5 + parent: 2 + - uid: 1080 components: - type: Transform - pos: -4.5,13.5 - parent: 1 - - uid: 744 + pos: 2.5,-1.5 + parent: 2 + - uid: 1081 components: - type: Transform - pos: -4.5,12.5 - parent: 1 - - uid: 745 + pos: 3.5,-1.5 + parent: 2 + - uid: 1082 components: - type: Transform - pos: -4.5,11.5 - parent: 1 -- proto: CableHV - entities: - - uid: 98 + pos: 4.5,-1.5 + parent: 2 + - uid: 1083 components: - type: Transform - pos: -6.5,16.5 - parent: 1 - - uid: 237 + pos: 5.5,-1.5 + parent: 2 + - uid: 1084 components: - type: Transform - pos: -6.5,15.5 - parent: 1 -- proto: CableMV - entities: - - uid: 99 + pos: 6.5,-1.5 + parent: 2 + - uid: 1085 components: - type: Transform - pos: -6.5,16.5 - parent: 1 - - uid: 100 + pos: 7.5,-1.5 + parent: 2 + - uid: 1086 components: - type: Transform - pos: -5.5,16.5 - parent: 1 - - uid: 387 + pos: 8.5,-1.5 + parent: 2 + - uid: 1087 components: - type: Transform - pos: -5.5,15.5 - parent: 1 -- proto: CargoPalletSell - entities: - - uid: 750 + pos: 9.5,-1.5 + parent: 2 + - uid: 1088 components: - type: Transform - pos: -1.5,6.5 - parent: 1 - - uid: 751 + pos: 10.5,-1.5 + parent: 2 + - uid: 1089 components: - type: Transform - pos: -1.5,7.5 - parent: 1 - - uid: 752 + pos: 10.5,-0.5 + parent: 2 + - uid: 1090 components: - type: Transform - pos: -1.5,8.5 - parent: 1 - - uid: 753 + pos: 11.5,-0.5 + parent: 2 + - uid: 1091 components: - type: Transform - pos: -1.5,9.5 - parent: 1 - - uid: 754 + pos: 12.5,-0.5 + parent: 2 + - uid: 1092 components: - type: Transform - pos: -0.5,6.5 - parent: 1 - - uid: 755 + pos: 13.5,-0.5 + parent: 2 + - uid: 1093 components: - type: Transform - pos: -0.5,7.5 - parent: 1 - - uid: 756 + pos: 14.5,-0.5 + parent: 2 + - uid: 1094 components: - type: Transform - pos: -0.5,8.5 - parent: 1 - - uid: 757 + pos: 15.5,-0.5 + parent: 2 + - uid: 1095 components: - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 758 + pos: 16.5,-0.5 + parent: 2 + - uid: 1096 components: - type: Transform - pos: -1.5,21.5 - parent: 1 - - uid: 759 + pos: 17.5,-0.5 + parent: 2 + - uid: 1098 components: - type: Transform - pos: -1.5,22.5 - parent: 1 - - uid: 760 + pos: -0.5,-2.5 + parent: 2 + - uid: 1099 components: - type: Transform - pos: -1.5,23.5 - parent: 1 - - uid: 761 + pos: -0.5,-3.5 + parent: 2 + - uid: 1100 components: - type: Transform - pos: -1.5,24.5 - parent: 1 - - uid: 762 + pos: -0.5,-4.5 + parent: 2 + - uid: 1101 components: - type: Transform - pos: -0.5,21.5 - parent: 1 - - uid: 763 + pos: -0.5,-5.5 + parent: 2 + - uid: 1102 components: - type: Transform - pos: -0.5,22.5 - parent: 1 - - uid: 764 + pos: -0.5,-6.5 + parent: 2 + - uid: 1103 components: - type: Transform - pos: -0.5,23.5 - parent: 1 - - uid: 765 + pos: -0.5,-7.5 + parent: 2 + - uid: 1104 components: - type: Transform - pos: -0.5,24.5 - parent: 1 -- proto: ComputerPalletConsoleNFLowMarket - entities: - - uid: 766 + pos: -0.5,-8.5 + parent: 2 + - uid: 1105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 1 - - uid: 767 + pos: -0.5,-9.5 + parent: 2 + - uid: 1106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1 -- proto: ComputerShipyard - entities: - - uid: 642 + pos: -0.5,-10.5 + parent: 2 + - uid: 1107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1 - - uid: 678 + pos: -0.5,-11.5 + parent: 2 + - uid: 1108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 -- proto: ComputerShipyardExpedition - entities: - - uid: 451 + pos: -0.5,-12.5 + parent: 2 + - uid: 1109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,9.5 - parent: 1 - - uid: 692 + pos: -0.5,-13.5 + parent: 2 + - uid: 1110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 1 -- proto: ComputerShipyardMedical - entities: - - uid: 643 + pos: -0.5,-14.5 + parent: 2 + - uid: 1111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - - uid: 679 + pos: -0.5,-15.5 + parent: 2 + - uid: 1112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 1 -- proto: ComputerShipyardScrap - entities: - - uid: 652 + pos: -0.5,-16.5 + parent: 2 + - uid: 1113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 1 - - uid: 728 + pos: -0.5,-17.5 + parent: 2 + - uid: 1114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 1 -- proto: ComputerShipyardSr - entities: - - uid: 640 + pos: -0.5,-18.5 + parent: 2 + - uid: 1115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 -- proto: ComputerWallmountAdvancedRadar - entities: - - uid: 734 + pos: -0.5,-19.5 + parent: 2 + - uid: 1116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - - type: Anchorable - flags: Unanchorable -- proto: ComputerWallmountBankATM - entities: - - uid: 151 + pos: -0.5,-20.5 + parent: 2 + - uid: 1117 components: - type: Transform - pos: -2.5,26.5 - parent: 1 - - uid: 185 + pos: 18.5,22.5 + parent: 2 + - uid: 1119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - - uid: 271 + pos: 1.5,-20.5 + parent: 2 + - uid: 1120 components: - type: Transform - pos: -2.5,11.5 - parent: 1 - - uid: 411 + pos: 1.5,-19.5 + parent: 2 + - uid: 1121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,19.5 - parent: 1 -- proto: ComputerWallmountRadar - entities: - - uid: 14 + pos: 1.5,-18.5 + parent: 2 + - uid: 1122 components: - type: Transform - pos: 7.5,17.5 - parent: 1 - - uid: 16 + pos: 1.5,-17.5 + parent: 2 + - uid: 1123 components: - type: Transform - pos: -6.5,32.5 - parent: 1 - - uid: 275 + pos: 1.5,-16.5 + parent: 2 + - uid: 1124 components: - type: Transform - pos: -6.5,2.5 - parent: 1 - - uid: 356 + pos: 1.5,-15.5 + parent: 2 + - uid: 1125 components: - type: Transform - pos: 7.5,2.5 - parent: 1 - - uid: 380 + pos: 1.5,-14.5 + parent: 2 + - uid: 1126 components: - type: Transform - pos: 7.5,32.5 - parent: 1 -- proto: DefaultStationBeaconFrontierDock - entities: - - uid: 733 + pos: 1.5,-13.5 + parent: 2 + - uid: 1127 components: - type: Transform - pos: 0.5,15.5 - parent: 1 -- proto: GasMinerNitrogen - entities: - - uid: 299 + pos: 1.5,-12.5 + parent: 2 + - uid: 1128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,12.5 - parent: 1 -- proto: GasMinerOxygen - entities: - - uid: 554 + pos: 1.5,-11.5 + parent: 2 + - uid: 1129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 1 -- proto: GasMixer - entities: - - uid: 646 + pos: 1.5,-10.5 + parent: 2 + - uid: 1130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - - type: GasMixer - inletTwoConcentration: 0.20999998 - inletOneConcentration: 0.79 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPassiveVent - entities: - - uid: 522 + pos: 1.5,-9.5 + parent: 2 + - uid: 1131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 671 + pos: 1.5,-8.5 + parent: 2 + - uid: 1132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 1 - - uid: 672 + pos: 1.5,-7.5 + parent: 2 + - uid: 1133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 1 - - uid: 691 + pos: 1.5,-6.5 + parent: 2 + - uid: 1134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPipeBend - entities: - - uid: 226 + pos: 1.5,-5.5 + parent: 2 + - uid: 1135 components: - type: Transform - pos: -4.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 234 + pos: 1.5,-4.5 + parent: 2 + - uid: 1136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 303 + pos: 1.5,-3.5 + parent: 2 + - uid: 1137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 508 + pos: 1.5,-2.5 + parent: 2 + - uid: 1138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 510 + pos: 1.5,-5.5 + parent: 2 + - uid: 1139 components: - type: Transform - pos: 1.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 524 + pos: 2.5,-5.5 + parent: 2 + - uid: 1140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,17.5 - parent: 1 - - uid: 537 + pos: 3.5,-5.5 + parent: 2 + - uid: 1141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 542 + pos: 4.5,-5.5 + parent: 2 + - uid: 1142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - - uid: 565 + pos: 5.5,-5.5 + parent: 2 + - uid: 1143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 574 + pos: 6.5,-5.5 + parent: 2 + - uid: 1144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 1 - - uid: 580 + pos: 7.5,-5.5 + parent: 2 + - uid: 1145 components: - type: Transform - pos: -0.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 624 + pos: 7.5,-4.5 + parent: 2 + - uid: 1146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 625 + pos: 7.5,-3.5 + parent: 2 + - uid: 1147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 700 + pos: 7.5,-2.5 + parent: 2 + - uid: 1148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,14.5 - parent: 1 - - uid: 704 + pos: 6.5,-6.5 + parent: 2 + - uid: 1149 components: - type: Transform - pos: -1.5,18.5 - parent: 1 - - uid: 720 + pos: 6.5,-7.5 + parent: 2 + - uid: 1150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1 - - uid: 721 + pos: 6.5,-8.5 + parent: 2 + - uid: 1151 components: - type: Transform - pos: -1.5,13.5 - parent: 1 - - uid: 723 + pos: 6.5,-9.5 + parent: 2 + - uid: 1152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 1 - - uid: 726 + pos: 7.5,-9.5 + parent: 2 + - uid: 1153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,13.5 - parent: 1 -- proto: GasPipeStraight - entities: - - uid: 5 + pos: 8.5,-9.5 + parent: 2 + - uid: 1154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8 + pos: 12.5,-14.5 + parent: 2 + - uid: 1155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 1 - - uid: 10 + pos: 9.5,-10.5 + parent: 2 + - uid: 1156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12 + pos: 9.5,-11.5 + parent: 2 + - uid: 1157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13 + pos: 9.5,-12.5 + parent: 2 + - uid: 1158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20 + pos: 14.5,-16.5 + parent: 2 + - uid: 1159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21 + pos: 10.5,-13.5 + parent: 2 + - uid: 1160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22 + pos: 11.5,-13.5 + parent: 2 + - uid: 1161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 27 + pos: -11.5,-13.5 + parent: 2 + - uid: 1162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 28 + pos: -11.5,-15.5 + parent: 2 + - uid: 1163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 35 + pos: 13.5,-14.5 + parent: 2 + - uid: 1164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 36 + pos: 13.5,-15.5 + parent: 2 + - uid: 1165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 37 + pos: 13.5,-16.5 + parent: 2 + - uid: 1166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 61 + pos: -11.5,-14.5 + parent: 2 + - uid: 1167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 62 + pos: 14.5,-17.5 + parent: 2 + - uid: 1168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 217 + pos: 15.5,-17.5 + parent: 2 + - uid: 1172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 222 + pos: 0.5,-1.5 + parent: 2 + - uid: 1175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 223 + pos: -17.5,1.5 + parent: 2 + - uid: 1181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 224 + pos: -15.5,19.5 + parent: 2 + - uid: 1182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 229 + pos: -10.5,0.5 + parent: 2 + - uid: 1183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 236 + pos: -11.5,0.5 + parent: 2 + - uid: 1184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 287 + pos: -12.5,0.5 + parent: 2 + - uid: 1185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 289 + pos: -13.5,0.5 + parent: 2 + - uid: 1186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,13.5 - parent: 1 - - uid: 291 + pos: -14.5,0.5 + parent: 2 + - uid: 1187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 1 - - uid: 292 + pos: -15.5,0.5 + parent: 2 + - uid: 1188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 302 + pos: -16.5,0.5 + parent: 2 + - uid: 1189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 509 + pos: -17.5,0.5 + parent: 2 + - uid: 1190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 511 + pos: -18.5,0.5 + parent: 2 + - uid: 1191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 512 + pos: -19.5,0.5 + parent: 2 + - uid: 1192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 513 + pos: -15.5,-17.5 + parent: 2 + - uid: 1193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 514 + pos: -20.5,21.5 + parent: 2 + - uid: 1195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 515 + pos: -14.5,1.5 + parent: 2 + - uid: 1196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 516 + pos: -14.5,3.5 + parent: 2 + - uid: 1197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 517 + pos: -14.5,2.5 + parent: 2 + - uid: 1198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 518 + pos: -14.5,4.5 + parent: 2 + - uid: 1199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 519 + pos: -14.5,5.5 + parent: 2 + - uid: 1200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 523 + pos: -14.5,6.5 + parent: 2 + - uid: 1201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 526 + pos: -14.5,7.5 + parent: 2 + - uid: 1202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 528 + pos: -14.5,8.5 + parent: 2 + - uid: 1203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 529 + pos: -14.5,9.5 + parent: 2 + - uid: 1204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 531 + pos: -14.5,10.5 + parent: 2 + - uid: 1205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 532 + pos: -14.5,11.5 + parent: 2 + - uid: 1206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 547 + pos: -12.5,11.5 + parent: 2 + - uid: 1207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 549 + pos: -20.5,1.5 + parent: 2 + - uid: 1208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 551 + pos: -12.5,12.5 + parent: 2 + - uid: 1209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 560 + pos: -12.5,13.5 + parent: 2 + - uid: 1210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 561 + pos: -12.5,14.5 + parent: 2 + - uid: 1211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 562 + pos: -12.5,15.5 + parent: 2 + - uid: 1212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 563 + pos: -12.5,16.5 + parent: 2 + - uid: 1213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 564 + pos: -12.5,17.5 + parent: 2 + - uid: 1215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 566 + pos: -20.5,0.5 + parent: 2 + - uid: 1216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 568 + pos: -20.5,23.5 + parent: 2 + - uid: 1217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 569 + pos: -20.5,-0.5 + parent: 2 + - uid: 1218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 581 + pos: -18.5,23.5 + parent: 2 + - uid: 1219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 1 - - uid: 599 + pos: -19.5,23.5 + parent: 2 + - uid: 1224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 617 + pos: -14.5,-0.5 + parent: 2 + - uid: 1225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 631 + pos: -14.5,-1.5 + parent: 2 + - uid: 1226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 632 + pos: -14.5,-3.5 + parent: 2 + - uid: 1227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 633 + pos: -14.5,-2.5 + parent: 2 + - uid: 1228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 634 + pos: -14.5,-5.5 + parent: 2 + - uid: 1229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 635 + pos: -14.5,-6.5 + parent: 2 + - uid: 1230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 636 + pos: -14.5,-4.5 + parent: 2 + - uid: 1231 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 637 + pos: -14.5,-8.5 + parent: 2 + - uid: 1232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 638 + pos: -14.5,-9.5 + parent: 2 + - uid: 1233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 641 + pos: -14.5,-10.5 + parent: 2 + - uid: 1234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 644 + pos: -14.5,-7.5 + parent: 2 + - uid: 1235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 664 + pos: -13.5,-10.5 + parent: 2 + - uid: 1236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 665 + pos: -12.5,-10.5 + parent: 2 + - uid: 1237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 666 + pos: -12.5,-11.5 + parent: 2 + - uid: 1238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 668 + pos: -12.5,-12.5 + parent: 2 + - uid: 1239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 669 + pos: -6.5,11.5 + parent: 2 + - uid: 1240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 670 + pos: -5.5,10.5 + parent: 2 + - uid: 1241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 675 + pos: -12.5,-15.5 + parent: 2 + - uid: 1242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 689 + pos: -12.5,-16.5 + parent: 2 + - uid: 1243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 693 + pos: -13.5,-16.5 + parent: 2 + - uid: 1244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1 - - uid: 698 + pos: -14.5,-16.5 + parent: 2 + - uid: 1252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1 - - uid: 706 + pos: 11.5,-14.5 + parent: 2 + - uid: 1253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 712 + pos: -11.5,-12.5 + parent: 2 + - uid: 1254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,17.5 - parent: 1 - - uid: 713 + pos: -10.5,-12.5 + parent: 2 + - uid: 1255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 714 + pos: -9.5,-12.5 + parent: 2 + - uid: 1256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 716 + pos: -8.5,-12.5 + parent: 2 + - uid: 1257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 719 + pos: -12.5,-15.5 + parent: 2 + - uid: 1258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPipeTJunction - entities: - - uid: 26 + pos: 7.5,10.5 + parent: 2 + - uid: 1259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 34 + pos: 11.5,14.5 + parent: 2 + - uid: 1260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 304 + pos: -1.5,-7.5 + parent: 2 + - uid: 1261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 567 + pos: -2.5,-7.5 + parent: 2 + - uid: 1262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 630 + pos: -3.5,-7.5 + parent: 2 + - uid: 1263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasVentPump - entities: - - uid: 527 + pos: -4.5,-7.5 + parent: 2 + - uid: 1264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 639 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 651 + pos: -5.5,-7.5 + parent: 2 + - uid: 1265 components: - type: Transform - pos: -0.5,30.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 639 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 667 + pos: -5.5,-8.5 + parent: 2 + - uid: 1266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 639 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasVentScrubber - entities: - - uid: 544 + pos: -5.5,-9.5 + parent: 2 + - uid: 1267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,15.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 639 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 673 + pos: -5.5,-10.5 + parent: 2 + - uid: 1268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 639 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 674 + pos: -6.5,-10.5 + parent: 2 + - uid: 1269 components: - type: Transform - pos: 0.5,30.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 639 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: Gateway - entities: - - uid: 558 + pos: -7.5,-10.5 + parent: 2 + - uid: 1270 components: - type: Transform - pos: -3.5,15.5 - parent: 1 - - type: Gateway - enabled: True -- proto: GeneratorRTG - entities: - - uid: 401 + pos: -8.5,-10.5 + parent: 2 + - uid: 1271 components: - type: Transform - pos: -6.5,15.5 - parent: 1 - - type: PowerSupplier - supplyRampRate: 5000 - supplyRampTolerance: 5000 - supplyRate: 100000 -- proto: GravityGeneratorMini - entities: - - uid: 443 + pos: -9.5,-10.5 + parent: 2 + - uid: 1272 components: - type: Transform - pos: -3.5,11.5 - parent: 1 -- proto: Grille - entities: - - uid: 2 + pos: 13.5,16.5 + parent: 2 + - uid: 1274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,34.5 - parent: 1 - - uid: 3 + pos: 15.5,18.5 + parent: 2 + - uid: 1275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 1 - - uid: 11 + pos: -10.5,16.5 + parent: 2 + - uid: 1276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1 - - uid: 15 + pos: -11.5,14.5 + parent: 2 + - uid: 1277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - - uid: 18 + pos: -10.5,14.5 + parent: 2 + - uid: 1278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1 - - uid: 19 + pos: -9.5,14.5 + parent: 2 + - uid: 1279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - - uid: 32 + pos: -9.5,13.5 + parent: 2 + - uid: 1280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,41.5 - parent: 1 - - uid: 38 + pos: -9.5,12.5 + parent: 2 + - uid: 1281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - - uid: 39 + pos: 12.5,14.5 + parent: 2 + - uid: 1282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,28.5 - parent: 1 - - uid: 40 + pos: -8.5,11.5 + parent: 2 + - uid: 1283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 1 - - uid: 41 + pos: -7.5,11.5 + parent: 2 + - uid: 1284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,32.5 - parent: 1 - - uid: 42 + pos: -14.5,-17.5 + parent: 2 + - uid: 1285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,33.5 - parent: 1 - - uid: 43 + pos: -13.5,17.5 + parent: 2 + - uid: 1286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 1 - - uid: 44 + pos: -1.5,8.5 + parent: 2 + - uid: 1287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,28.5 - parent: 1 - - uid: 45 + pos: -2.5,8.5 + parent: 2 + - uid: 1288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,40.5 - parent: 1 - - uid: 46 + pos: -3.5,8.5 + parent: 2 + - uid: 1289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,39.5 - parent: 1 - - uid: 54 + pos: -4.5,8.5 + parent: 2 + - uid: 1290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,28.5 - parent: 1 - - uid: 55 + pos: -5.5,8.5 + parent: 2 + - uid: 1291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,38.5 - parent: 1 - - uid: 56 + pos: -5.5,9.5 + parent: 2 + - uid: 1292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,34.5 - parent: 1 - - uid: 57 + pos: -6.5,9.5 + parent: 2 + - uid: 1293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,40.5 - parent: 1 - - uid: 60 + pos: 17.5,20.5 + parent: 2 + - uid: 1294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 1 - - uid: 103 + pos: 2.5,8.5 + parent: 2 + - uid: 1295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,28.5 - parent: 1 - - uid: 198 + pos: 3.5,8.5 + parent: 2 + - uid: 1296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - - uid: 216 + pos: 4.5,8.5 + parent: 2 + - uid: 1297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,35.5 - parent: 1 - - uid: 218 + pos: 5.5,8.5 + parent: 2 + - uid: 1298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 1 - - uid: 219 + pos: 6.5,8.5 + parent: 2 + - uid: 1299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,28.5 - parent: 1 - - uid: 250 + pos: 6.5,9.5 + parent: 2 + - uid: 1300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - - uid: 251 + pos: 6.5,10.5 + parent: 2 + - uid: 1301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - - uid: 263 + pos: -16.5,-19.5 + parent: 2 + - uid: 1302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - - uid: 277 + pos: 7.5,11.5 + parent: 2 + - uid: 1303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - - uid: 278 + pos: 8.5,11.5 + parent: 2 + - uid: 1304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - - uid: 279 + pos: 9.5,11.5 + parent: 2 + - uid: 1306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - - uid: 293 + pos: 10.5,12.5 + parent: 2 + - uid: 1307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - - uid: 294 + pos: 10.5,13.5 + parent: 2 + - uid: 1309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 1 - - uid: 295 + pos: 10.5,14.5 + parent: 2 + - uid: 1311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 1 - - uid: 296 + pos: 12.5,15.5 + parent: 2 + - uid: 1312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - - uid: 297 + pos: 13.5,15.5 + parent: 2 + - uid: 1314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - - uid: 298 + pos: 14.5,16.5 + parent: 2 + - uid: 1315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,6.5 - parent: 1 - - uid: 300 + pos: 14.5,17.5 + parent: 2 + - uid: 1316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - - uid: 301 + pos: 14.5,18.5 + parent: 2 + - uid: 1318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 1 - - uid: 305 + pos: 15.5,19.5 + parent: 2 + - uid: 1329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - - uid: 306 + pos: 7.5,3.5 + parent: 2 + - uid: 1330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,35.5 - parent: 1 - - uid: 313 + pos: 7.5,4.5 + parent: 2 + - uid: 1331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - - uid: 327 + pos: 7.5,5.5 + parent: 2 + - uid: 1332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - - uid: 330 + pos: 7.5,6.5 + parent: 2 + - uid: 1333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 1 - - uid: 333 + pos: 6.5,6.5 + parent: 2 + - uid: 1334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - - uid: 353 + pos: 6.5,7.5 + parent: 2 + - uid: 1337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - - uid: 372 + pos: -1.5,6.5 + parent: 2 + - uid: 1338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,28.5 - parent: 1 - - uid: 407 + pos: -3.5,6.5 + parent: 2 + - uid: 1339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - - uid: 408 + pos: -4.5,6.5 + parent: 2 + - uid: 1340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1 - - uid: 409 + pos: -5.5,6.5 + parent: 2 + - uid: 1341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - - uid: 410 + pos: -2.5,6.5 + parent: 2 + - uid: 1342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - - uid: 412 + pos: -1.5,-5.5 + parent: 2 + - uid: 1343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - - uid: 416 + pos: -3.5,-5.5 + parent: 2 + - uid: 1344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - - uid: 417 + pos: -4.5,-5.5 + parent: 2 + - uid: 1345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 1 - - uid: 418 + pos: -2.5,-5.5 + parent: 2 + - uid: 1346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - - uid: 419 + pos: -5.5,-5.5 + parent: 2 + - uid: 1491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,13.5 - parent: 1 - - uid: 420 + pos: -15.5,-18.5 + parent: 2 + - uid: 1492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 1 - - uid: 421 + pos: -17.5,-0.5 + parent: 2 + - uid: 1635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - - uid: 424 + pos: 5.5,6.5 + parent: 2 + - uid: 1636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - - uid: 425 + pos: 4.5,6.5 + parent: 2 + - uid: 1637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 1 - - uid: 426 + pos: 3.5,6.5 + parent: 2 + - uid: 1638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - - uid: 465 + pos: 2.5,6.5 + parent: 2 + - uid: 1639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - - uid: 520 + pos: 5.5,-7.5 + parent: 2 + - uid: 1640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,32.5 - parent: 1 - - uid: 525 + pos: 4.5,-7.5 + parent: 2 + - uid: 1641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 1 - - uid: 533 + pos: 3.5,-7.5 + parent: 2 + - uid: 1642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 1 - - uid: 535 + pos: 2.5,-7.5 + parent: 2 + - uid: 1890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1 - - uid: 536 + pos: -15.5,18.5 + parent: 2 + - uid: 1892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1 - - uid: 538 + pos: -16.5,19.5 + parent: 2 + - uid: 1899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 1 - - uid: 540 + pos: -15.5,-19.5 + parent: 2 + - uid: 1901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - - uid: 541 + pos: -16.5,-20.5 + parent: 2 + - uid: 1902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - - uid: 546 + pos: -17.5,-20.5 + parent: 2 + - uid: 1903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 1 - - uid: 571 + pos: -19.5,-20.5 + parent: 2 + - uid: 1904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,32.5 - parent: 1 - - uid: 572 + pos: -20.5,-20.5 + parent: 2 + - uid: 1905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,41.5 - parent: 1 - - uid: 575 + pos: -18.5,-20.5 + parent: 2 + - uid: 1906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - - uid: 576 + pos: -20.5,-21.5 + parent: 2 + - uid: 1907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1 - - uid: 577 + pos: -20.5,-22.5 + parent: 2 + - uid: 1908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - - uid: 578 + pos: -19.5,-22.5 + parent: 2 + - uid: 1909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 1 - - uid: 579 + pos: -18.5,-22.5 + parent: 2 + - uid: 1910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - - uid: 582 + pos: -0.5,-22.5 + parent: 2 + - uid: 1911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 1 - - uid: 600 + pos: -0.5,-23.5 + parent: 2 + - uid: 1912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - - uid: 601 + pos: -0.5,-24.5 + parent: 2 + - uid: 1913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - - uid: 609 + pos: -0.5,-21.5 + parent: 2 + - uid: 1914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 1 - - uid: 622 + pos: 1.5,-21.5 + parent: 2 + - uid: 1915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - - uid: 623 + pos: 1.5,-23.5 + parent: 2 + - uid: 1916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - - uid: 626 + pos: 1.5,-24.5 + parent: 2 + - uid: 1917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 1 - - uid: 627 + pos: 1.5,-22.5 + parent: 2 + - uid: 1918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - - uid: 628 + pos: 16.5,-17.5 + parent: 2 + - uid: 1919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 - - uid: 629 + pos: 16.5,-18.5 + parent: 2 + - uid: 1920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 1 - - uid: 645 + pos: 16.5,-19.5 + parent: 2 + - uid: 1922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,39.5 - parent: 1 - - uid: 656 + pos: 17.5,-20.5 + parent: 2 + - uid: 1923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - - uid: 657 + pos: 18.5,-20.5 + parent: 2 + - uid: 1924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 1 - - uid: 660 + pos: 19.5,-20.5 + parent: 2 + - uid: 1925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1 - - uid: 661 + pos: 20.5,-20.5 + parent: 2 + - uid: 1926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - - uid: 662 + pos: 21.5,-20.5 + parent: 2 + - uid: 1927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,22.5 - parent: 1 - - uid: 663 + pos: 21.5,-21.5 + parent: 2 + - uid: 1928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - - uid: 703 + pos: 21.5,-22.5 + parent: 2 + - uid: 1929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - - uid: 705 + pos: 20.5,-22.5 + parent: 2 + - uid: 1930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - - uid: 707 + pos: 19.5,-22.5 + parent: 2 + - uid: 1931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 1 - - uid: 710 + pos: 18.5,-0.5 + parent: 2 + - uid: 1932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 1 - - uid: 715 + pos: 19.5,-0.5 + parent: 2 + - uid: 1933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - - uid: 717 + pos: 21.5,-0.5 + parent: 2 + - uid: 1934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 1 - - uid: 718 + pos: 20.5,-0.5 + parent: 2 + - uid: 1935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 1 - - uid: 724 + pos: 18.5,1.5 + parent: 2 + - uid: 1936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - - uid: 725 + pos: 19.5,1.5 + parent: 2 + - uid: 1937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - - uid: 727 + pos: 20.5,1.5 + parent: 2 + - uid: 1938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 -- proto: MachineMedicalBountyRedemption + pos: 21.5,1.5 + parent: 2 +- proto: CableHV entities: - - uid: 746 + - uid: 980 components: - type: Transform - pos: 2.5,25.5 - parent: 1 - - uid: 747 + pos: -8.5,-0.5 + parent: 2 + - uid: 983 components: - type: Transform - pos: 2.5,20.5 - parent: 1 - - uid: 748 + pos: -8.5,1.5 + parent: 2 + - uid: 1308 components: - type: Transform - pos: 2.5,10.5 - parent: 1 - - uid: 749 + pos: -8.5,0.5 + parent: 2 + - uid: 1883 components: - type: Transform - pos: 2.5,5.5 - parent: 1 -- proto: MiniStationAnchor - entities: - - uid: 413 + pos: -7.5,0.5 + parent: 2 + - uid: 1885 components: - type: Transform - pos: -3.5,19.5 - parent: 1 -- proto: NFSignDock + pos: -9.5,0.5 + parent: 2 +- proto: CableMV entities: - - uid: 209 + - uid: 985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - - uid: 211 + pos: -8.5,1.5 + parent: 2 + - uid: 986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,32.5 - parent: 1 - - uid: 338 + pos: -8.5,2.5 + parent: 2 + - uid: 987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,42.5 - parent: 1 - - uid: 340 + pos: -7.5,1.5 + parent: 2 + - uid: 988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - - uid: 396 + pos: -6.5,1.5 + parent: 2 + - uid: 989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - - uid: 397 + pos: -6.5,2.5 + parent: 2 + - uid: 990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - - uid: 399 + pos: -8.5,-0.5 + parent: 2 + - uid: 991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - - uid: 496 + pos: -7.5,-0.5 + parent: 2 + - uid: 992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,42.5 - parent: 1 - - uid: 730 + pos: -6.5,-0.5 + parent: 2 + - uid: 993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1 - - uid: 731 + pos: -6.5,-1.5 + parent: 2 + - uid: 1179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 1 - - uid: 732 + pos: -9.5,0.5 + parent: 2 + - uid: 1180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 1 - - uid: 735 + pos: -10.5,0.5 + parent: 2 + - uid: 1305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 1 -- proto: Poweredlight + pos: -8.5,0.5 + parent: 2 +- proto: CargoPalletSell entities: - - uid: 9 + - uid: 138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 1 - - uid: 146 + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + - uid: 139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-0.5 - parent: 1 - - uid: 160 + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 2 + - uid: 140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 1 - - uid: 207 + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + - uid: 141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,14.5 - parent: 1 - - uid: 231 + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - uid: 143 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,18.5 - parent: 1 - - uid: 235 + pos: 0.5,5.5 + parent: 2 + - uid: 147 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 1 - - uid: 248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,36.5 - parent: 1 - - uid: 259 + pos: -0.5,-5.5 + parent: 2 + - uid: 148 components: - type: Transform - pos: 6.5,31.5 - parent: 1 - - uid: 328 + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 150 components: - type: Transform - pos: 6.5,16.5 - parent: 1 - - uid: 429 + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 151 components: - type: Transform - pos: -5.5,1.5 - parent: 1 - - uid: 464 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 284 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 1 - - uid: 471 - components: - - type: Transform - pos: 6.5,1.5 - parent: 1 - - uid: 504 + pos: -0.5,-4.5 + parent: 2 + - uid: 374 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 1 - - uid: 530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,27.5 - parent: 1 - - uid: 534 + pos: 1.5,7.5 + parent: 2 + - uid: 375 components: - type: Transform - pos: -2.5,25.5 - parent: 1 - - uid: 539 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 379 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,36.5 - parent: 1 - - uid: 543 + pos: 1.5,-6.5 + parent: 2 + - uid: 382 components: - type: Transform - pos: -2.5,10.5 - parent: 1 - - uid: 550 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - uid: 414 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 1 - - uid: 616 - components: - - type: Transform - pos: -5.5,31.5 - parent: 1 - - uid: 621 + pos: 1.5,5.5 + parent: 2 + - uid: 805 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,20.5 - parent: 1 - - uid: 649 + pos: 1.5,6.5 + parent: 2 + - uid: 1020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - - uid: 650 + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + - uid: 1173 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1 - - uid: 680 + pos: 1.5,-4.5 + parent: 2 +- proto: ComputerPalletConsoleNFLowMarket + entities: + - uid: 629 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - - uid: 681 + pos: -1.5,-5.5 + parent: 2 + - uid: 1174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 - - uid: 708 + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 +- proto: ComputerShipyard + entities: + - uid: 236 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1 - - uid: 711 + pos: 5.5,0.5 + parent: 2 +- proto: ComputerShipyardExpedition + entities: + - uid: 726 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,29.5 - parent: 1 -- proto: ReinforcedWindow + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 +- proto: ComputerShipyardMedical entities: - - uid: 66 + - uid: 149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - - uid: 69 + pos: 5.5,-0.5 + parent: 2 +- proto: ComputerShipyardScrap + entities: + - uid: 598 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - - uid: 72 + pos: 5.5,2.5 + parent: 2 +- proto: ComputerShipyardSr + entities: + - uid: 393 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,39.5 - parent: 1 - - uid: 77 + pos: 5.5,-1.5 + parent: 2 +- proto: ComputerWallmountAdvancedRadar + entities: + - uid: 929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 1 - - uid: 78 + pos: -12.5,0.5 + parent: 2 + - uid: 1488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - - uid: 79 + pos: 4.5,4.5 + parent: 2 + - uid: 1489 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 1 - - uid: 80 + pos: 4.5,-3.5 + parent: 2 +- proto: ComputerWallmountBankATM + entities: + - uid: 85 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - - uid: 81 + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 86 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - - uid: 111 + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 1672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,40.5 - parent: 1 - - uid: 112 + pos: 11.5,2.5 + parent: 2 + - uid: 1673 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - - uid: 113 + pos: 2.5,-10.5 + parent: 2 + - uid: 1674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,35.5 - parent: 1 - - uid: 115 + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - uid: 1675 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - - uid: 116 + pos: -12.5,8.5 + parent: 2 + - uid: 1676 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1 - - uid: 117 + pos: -12.5,-7.5 + parent: 2 +- proto: ComputerWallmountRadar + entities: + - uid: 904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - - uid: 118 + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - uid: 922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - - uid: 119 + rot: 1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - uid: 923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,32.5 - parent: 1 - - uid: 138 + pos: -17.5,2.5 + parent: 2 + - uid: 924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 1 - - uid: 147 + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,41.5 - parent: 1 - - uid: 148 + pos: 2.5,-15.5 + parent: 2 + - uid: 926 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - - uid: 149 + pos: 7.5,-6.5 + parent: 2 + - uid: 927 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 1 - - uid: 150 + pos: 7.5,7.5 + parent: 2 + - uid: 928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 - - uid: 152 + pos: 15.5,2.5 + parent: 2 +- proto: DarkCatwalkMono + entities: + - uid: 95 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - - uid: 159 + pos: -21.5,23.5 + parent: 2 + - uid: 118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,28.5 - parent: 1 - - uid: 161 + pos: 20.5,24.5 + parent: 2 + - uid: 120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - - uid: 162 + pos: 22.5,22.5 + parent: 2 + - uid: 136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,28.5 - parent: 1 - - uid: 163 + pos: -14.5,5.5 + parent: 2 + - uid: 137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - - uid: 165 + pos: -14.5,4.5 + parent: 2 + - uid: 145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - - uid: 167 + pos: -21.5,22.5 + parent: 2 + - uid: 194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - - uid: 168 + pos: 1.5,26.5 + parent: 2 + - uid: 197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,32.5 - parent: 1 - - uid: 169 + pos: 22.5,21.5 + parent: 2 + - uid: 241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 1 - - uid: 183 + pos: 0.5,19.5 + parent: 2 + - uid: 243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - - uid: 184 + pos: 0.5,18.5 + parent: 2 + - uid: 304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,38.5 - parent: 1 - - uid: 186 + pos: 22.5,-20.5 + parent: 2 + - uid: 398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 1 - - uid: 193 + pos: -21.5,-21.5 + parent: 2 + - uid: 400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1 - - uid: 195 + pos: -13.5,0.5 + parent: 2 + - uid: 410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 1 - - uid: 199 + pos: -19.5,-23.5 + parent: 2 + - uid: 415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - - uid: 208 + pos: -21.5,-22.5 + parent: 2 + - uid: 435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1 - - uid: 210 + pos: -13.5,-10.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 +- proto: GasMinerNitrogen + entities: + - uid: 49 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 +- proto: GasMinerOxygen + entities: + - uid: 56 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 +- proto: GasMixerOn + entities: + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 + targetPressure: 121.325 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPassiveVent + entities: + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary + - uid: 88 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary + - uid: 1483 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBendAlt1 + entities: + - uid: 12 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 657 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 897 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1545 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1648 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1670 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1703 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1783 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1837 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeBendAlt2 + entities: + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 540 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 625 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1390 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1544 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1576 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1729 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1733 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1749 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1784 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1836 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourwayAlt1 + entities: + - uid: 597 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1415 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1445 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1582 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1716 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeFourwayAlt2 + entities: + - uid: 1407 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1446 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1459 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1606 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1684 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 571 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1076 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1097 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1423 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1424 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1522 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1536 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1537 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1541 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1542 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1543 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1604 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1605 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1664 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1682 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1685 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1686 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1687 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1699 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1702 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1718 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1725 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1732 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1738 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1747 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1748 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1767 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1768 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1769 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1770 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1775 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1776 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1777 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1778 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1861 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 577 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 938 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 973 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1358 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1402 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1403 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1404 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1405 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1408 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1443 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1520 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1524 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1525 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1526 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1527 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1538 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1557 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1565 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1568 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1610 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1622 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1653 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1658 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1660 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1683 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1701 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1704 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1714 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1719 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1727 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1730 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1731 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1734 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1742 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1751 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1771 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1772 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1773 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1774 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1779 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1780 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1781 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1782 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1803 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1831 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1860 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 1521 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1562 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1564 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1573 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1810 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeTJunctionAlt2 + entities: + - uid: 1359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1498 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1618 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVentPump + entities: + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 905 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 948 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1078 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1361 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1364 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1365 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1220 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1220 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1220 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1458 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-18.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 587 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1220 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1467 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1220 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1220 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1469 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1476 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 1118 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 592 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1482 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 971 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#990000FF' +- proto: Gateway + entities: + - uid: 399 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: Gateway + enabled: True +- proto: GeneratorBasic15kW + entities: + - uid: 51 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 69 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 +- proto: Grille + entities: + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,24.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 2 + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 2 + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,20.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 2 + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 2 + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 2 + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,5.5 + parent: 2 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 2 + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,3.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,7.5 + parent: 2 + - uid: 852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 2 + - uid: 853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 2 + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 2 + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 2 + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 2 + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 2 + - uid: 860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 2 + - uid: 864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-3.5 + parent: 2 + - uid: 865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-6.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,23.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,22.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-20.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 2 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 2 + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-14.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 2 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - uid: 405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - uid: 406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 2 + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - uid: 610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,17.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 2 + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,20.5 + parent: 2 + - uid: 717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,22.5 + parent: 2 + - uid: 723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,21.5 + parent: 2 + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 2 + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - uid: 786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 2 + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - uid: 789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 2 + - uid: 809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 2 + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 2 + - uid: 812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - uid: 813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 2 + - uid: 814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 2 + - uid: 816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 2 + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - uid: 819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - uid: 827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - uid: 828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - uid: 833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 2 + - uid: 834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - uid: 835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + - uid: 836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 2 + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,13.5 + parent: 2 + - uid: 839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,12.5 + parent: 2 + - uid: 840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,21.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,17.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 2 +- proto: MachineMedicalBountyRedemption + entities: + - uid: 386 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 +- proto: MiniStationAnchor + entities: + - uid: 77 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 +- proto: PlastitaniumWindowIndestructible + entities: + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 936 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 +- proto: PoweredPuckLightCyan + entities: + - uid: 590 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 806 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 821 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 822 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 823 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 824 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 825 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 830 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 837 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 869 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor +- proto: PoweredPuckLightLED + entities: + - uid: 79 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 80 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 82 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 99 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 100 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 101 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 104 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 106 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 117 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 546 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 552 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 807 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 811 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 870 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 871 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 876 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 892 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 921 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 1075 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor + - uid: 1709 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - type: Physics + canCollide: False + - type: Visibility + - type: CollideOnAnchor +- proto: Railing + entities: + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 2 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - uid: 231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-23.5 + parent: 2 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-23.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2 + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - uid: 949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 2 + - uid: 952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - uid: 958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,2.5 + parent: 2 + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + - uid: 963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,8.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,23.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,20.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,22.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 2 + - uid: 418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 2 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 2 + - uid: 477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 2 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 2 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 2 + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 2 + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 2 + - uid: 567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - uid: 688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 2 + - uid: 698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 2 + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 2 + - uid: 718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - uid: 721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,24.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 2 + - uid: 766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 2 + - uid: 770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 2 + - uid: 771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 2 + - uid: 772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,7.5 + parent: 2 + - uid: 775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 2 + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 2 + - uid: 780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 2 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,20.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,21.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 2 + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-14.5 + parent: 2 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + - uid: 425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 2 + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 2 + - uid: 507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 2 + - uid: 508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - uid: 512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 2 + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 2 + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 566 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - - uid: 212 + pos: -10.5,17.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,21.5 + parent: 2 + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 2 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - uid: 640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,22.5 + parent: 2 + - uid: 642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,17.5 + parent: 2 + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 2 + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 2 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 2 + - uid: 677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,17.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 2 + - uid: 699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 2 + - uid: 713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - uid: 751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,13.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,12.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-20.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 +- proto: StairDark + entities: + - uid: 403 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 +- proto: StationMap + entities: + - uid: 536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,9.5 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 1887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - - uid: 213 + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 +- proto: VendingMachineAstroVend + entities: + - uid: 20 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,28.5 - parent: 1 - - uid: 238 + pos: -5.5,-3.5 + parent: 2 + missingComponents: + - Advertise + - TypingIndicator + - SpookySpeaker + - IntrinsicRadioReceiver + - ActiveRadio + - SentienceTarget + - PotentialDeadDrop + - PirateBountyItem +- proto: VendingMachineEngivend + entities: + - uid: 22 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - - uid: 240 + pos: -5.5,-2.5 + parent: 2 + - type: DisableToolUse + anchoring: True + missingComponents: + - SpookySpeaker + - IntrinsicRadioReceiver + - ActiveRadio + - SentienceTarget + - PotentialDeadDrop + - PirateBountyItem +- proto: VendingMachineExpeditionaryFlatpackVend + entities: + - uid: 27 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - - uid: 243 + pos: -5.5,2.5 + parent: 2 + missingComponents: + - TypingIndicator + - SpookySpeaker + - IntrinsicRadioReceiver + - ActiveRadio + - SentienceTarget + - PotentialDeadDrop + - PirateBountyItem +- proto: VendingMachineFlatpackVend + entities: + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,34.5 - parent: 1 - - uid: 244 + pos: -5.5,3.5 + parent: 2 + missingComponents: + - TypingIndicator + - SpookySpeaker + - IntrinsicRadioReceiver + - ActiveRadio + - SentienceTarget + - PotentialDeadDrop + - PirateBountyItem +- proto: VendingMachineFuelVend + entities: + - uid: 9 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,34.5 - parent: 1 - - uid: 249 + pos: -5.5,1.5 + parent: 2 + missingComponents: + - Advertise + - SpeakOnUIClosed + - TypingIndicator + - SpookySpeaker + - IntrinsicRadioReceiver + - ActiveRadio + - SentienceTarget + - PotentialDeadDrop + - PirateBountyItem +- proto: VendingMachineRobotics + entities: + - uid: 19 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1 - - uid: 256 + pos: -5.5,4.5 + parent: 2 + - type: DisableToolUse + anchoring: True + missingComponents: + - Advertise + - SpeakOnUIClosed + - TypingIndicator + - Speech + - SpookySpeaker + - IntrinsicRadioReceiver + - ActiveRadio + - SentienceTarget + - PotentialDeadDrop + - PirateBountyItem +- proto: VendingMachineSalvage + entities: + - uid: 21 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 1 - - uid: 258 + pos: -5.5,-0.5 + parent: 2 + - type: DisableToolUse + anchoring: True + missingComponents: + - SpookySpeaker + - IntrinsicRadioReceiver + - ActiveRadio + - SentienceTarget + - PotentialDeadDrop + - PirateBountyItem +- proto: VendingMachineYouTool + entities: + - uid: 11 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - - uid: 265 + pos: -5.5,-1.5 + parent: 2 + - type: DisableToolUse + anchoring: True + missingComponents: + - SpookySpeaker + - IntrinsicRadioReceiver + - ActiveRadio + - SentienceTarget + - PotentialDeadDrop + - PirateBountyItem +- proto: WallPlastitaniumDiagonal + entities: + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 373 components: - type: Transform rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 +- proto: WallPlastitaniumDiagonalIndestructible + entities: + - uid: 29 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,2.5 - parent: 1 - - uid: 266 + parent: 2 + - uid: 53 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 1 - - uid: 270 + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 2 + - uid: 58 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - - uid: 272 + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - - uid: 284 + rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 1176 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - - uid: 310 + pos: -10.5,0.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-23.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 2 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 2 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 2 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 2 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 2 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + - uid: 59 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 1 - - uid: 311 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 2 + - uid: 60 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - - uid: 312 + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 63 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,40.5 - parent: 1 - - uid: 315 + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 2 + - uid: 65 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,39.5 - parent: 1 - - uid: 339 + rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 2 + - uid: 67 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - - uid: 341 + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 75 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - - uid: 342 + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 2 + - uid: 108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,33.5 - parent: 1 - - uid: 344 + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - - uid: 345 + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 2 + - uid: 110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,35.5 - parent: 1 - - uid: 348 + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 2 + - uid: 114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 1 - - uid: 350 + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + - uid: 115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 1 - - uid: 359 + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 2 + - uid: 116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,28.5 - parent: 1 - - uid: 360 + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 2 + - uid: 121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,28.5 - parent: 1 - - uid: 361 + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,6.5 - parent: 1 - - uid: 362 + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 2 + - uid: 126 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 1 - - uid: 363 + pos: 18.5,2.5 + parent: 2 + - uid: 127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 1 - - uid: 364 + pos: 18.5,-1.5 + parent: 2 + - uid: 156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - - uid: 365 + pos: 8.5,8.5 + parent: 2 + - uid: 167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - - uid: 366 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 2 + - uid: 171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,28.5 - parent: 1 - - uid: 369 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - - uid: 373 + rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 2 + - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - - uid: 375 + pos: -7.5,7.5 + parent: 2 + - uid: 195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 1 - - uid: 376 + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - - uid: 377 + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 2 + - uid: 208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 1 - - uid: 378 + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 217 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -1.5,-10.5 - parent: 1 - - uid: 381 + parent: 2 + - uid: 220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 1 - - uid: 382 + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 1 - - uid: 383 + pos: -10.5,-10.5 + parent: 2 + - uid: 242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - - uid: 398 + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 256 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 1 - - uid: 433 + pos: 15.5,2.5 + parent: 2 + - uid: 257 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1 - - uid: 446 + pos: 22.5,-1.5 + parent: 2 + - uid: 258 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 1 - - uid: 447 + pos: 22.5,2.5 + parent: 2 + - uid: 268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - - uid: 457 + rot: 3.141592653589793 rad + pos: -21.5,2.5 + parent: 2 + - uid: 269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - - uid: 458 + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 2 + - uid: 275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,22.5 - parent: 1 - - uid: 459 + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 2 + - uid: 277 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - - uid: 461 + pos: -5.5,6.5 + parent: 2 + - uid: 278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 1 - - uid: 463 + pos: -5.5,-5.5 + parent: 2 + - uid: 294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 1 - - uid: 472 + pos: -13.5,-13.5 + parent: 2 + - uid: 295 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - - uid: 473 + pos: -20.5,20.5 + parent: 2 + - uid: 300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - - uid: 477 + pos: 2.5,-15.5 + parent: 2 + - uid: 302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - - uid: 480 + pos: -19.5,20.5 + parent: 2 + - uid: 303 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - - uid: 482 + pos: -21.5,20.5 + parent: 2 + - uid: 309 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 1 - - uid: 488 + pos: -20.5,24.5 + parent: 2 + - uid: 312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - - uid: 489 + rot: 3.141592653589793 rad + pos: -19.5,-19.5 + parent: 2 + - uid: 332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - - uid: 493 + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 339 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,41.5 - parent: 1 - - uid: 494 + pos: 15.5,-1.5 + parent: 2 + - uid: 351 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - - uid: 521 + pos: -21.5,24.5 + parent: 2 + - uid: 354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 1 - - uid: 585 + rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 2 + - uid: 371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1 - - uid: 586 + pos: -13.5,14.5 + parent: 2 + - uid: 428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1 - - uid: 591 + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,32.5 - parent: 1 - - uid: 592 + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,13.5 - parent: 1 - - uid: 596 + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 437 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - - uid: 598 + pos: -7.5,8.5 + parent: 2 + - uid: 444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - - uid: 619 + rot: 1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 2 + - uid: 467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 1 -- proto: SubstationWallBasic - entities: - - uid: 104 + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 2 + - uid: 468 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 1 -- proto: VendingMachineAstroVend - entities: - - uid: 7 + pos: -3.5,11.5 + parent: 2 + - uid: 469 components: - type: Transform - pos: -3.5,8.5 - parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 58 + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - uid: 470 components: - type: Transform - pos: -3.5,7.5 - parent: 1 -- proto: VendingMachineExpeditionaryFlatpackVend - entities: - - uid: 647 + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - uid: 471 components: - type: Transform - pos: -3.5,21.5 - parent: 1 -- proto: VendingMachineFlatpackVend - entities: - - uid: 686 + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 473 components: - type: Transform - pos: -3.5,22.5 - parent: 1 -- proto: VendingMachineFuelVend - entities: - - uid: 697 + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 2 + - uid: 474 components: - type: Transform - pos: -3.5,6.5 - parent: 1 -- proto: VendingMachineRobotics - entities: - - uid: 676 + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + - uid: 492 components: - type: Transform - pos: -3.5,23.5 - parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 654 + rot: 3.141592653589793 rad + pos: -18.5,-23.5 + parent: 2 + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - uid: 496 components: - type: Transform - pos: -3.5,9.5 - parent: 1 -- proto: VendingMachineYouTool - entities: - - uid: 696 + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 + - uid: 497 components: - type: Transform - pos: -3.5,24.5 - parent: 1 -- proto: WallPlastitaniumDiagonalIndestructible - entities: - - uid: 107 + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - uid: 501 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 1 - - uid: 123 + pos: 3.5,10.5 + parent: 2 + - uid: 502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 1 - - uid: 130 + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 2 + - uid: 505 components: - type: Transform - pos: -5.5,17.5 - parent: 1 - - uid: 133 + pos: 8.5,7.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 1 - - uid: 286 + pos: -20.5,-23.5 + parent: 2 + - uid: 526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,13.5 - parent: 1 - - uid: 331 + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 2 + - uid: 532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - - uid: 430 + pos: -12.5,9.5 + parent: 2 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - - uid: 469 + pos: -5.5,5.5 + parent: 2 + - uid: 557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 1 - - uid: 486 + pos: -12.5,-7.5 + parent: 2 + - uid: 569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 1 - - uid: 590 + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 570 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,20.5 - parent: 1 -- proto: WallPlastitaniumIndestructible - entities: - - uid: 105 + pos: -1.5,21.5 + parent: 2 + - uid: 580 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,14.5 - parent: 1 - - uid: 106 + pos: 2.5,16.5 + parent: 2 + - uid: 596 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,14.5 - parent: 1 - - uid: 128 + pos: -21.5,-1.5 + parent: 2 + - uid: 671 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,17.5 - parent: 1 - - uid: 129 + pos: -18.5,24.5 + parent: 2 + - uid: 685 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1 - - uid: 132 + pos: 2.5,26.5 + parent: 2 + - uid: 687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,16.5 - parent: 1 - - uid: 200 + rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 2 + - uid: 695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 1 - - uid: 230 + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 728 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,16.5 - parent: 1 - - uid: 232 + pos: -21.5,-19.5 + parent: 2 + - uid: 729 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,15.5 - parent: 1 - - uid: 254 + pos: -20.5,-19.5 + parent: 2 + - uid: 732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 1 - - uid: 276 + rot: 1.5707963267948966 rad + pos: -16.5,-9.5 + parent: 2 + - uid: 733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,17.5 - parent: 1 - - uid: 329 + rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 2 + - uid: 734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,20.5 - parent: 1 - - uid: 332 + rot: 1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 1 - - uid: 352 + pos: -12.5,8.5 + parent: 2 + - uid: 736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 1 - - uid: 384 + pos: -12.5,1.5 + parent: 2 + - uid: 737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,13.5 - parent: 1 - - uid: 403 + pos: -12.5,2.5 + parent: 2 + - uid: 738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,11.5 - parent: 1 - - uid: 414 + pos: -12.5,0.5 + parent: 2 + - uid: 739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 1 - - uid: 431 + pos: -12.5,-0.5 + parent: 2 + - uid: 740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,18.5 - parent: 1 - - uid: 437 + pos: -12.5,-1.5 + parent: 2 + - uid: 757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - - uid: 440 + pos: -16.5,10.5 + parent: 2 + - uid: 758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,12.5 - parent: 1 - - uid: 441 + pos: -16.5,9.5 + parent: 2 + - uid: 759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 1 - - uid: 468 + pos: -16.5,8.5 + parent: 2 + - uid: 760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - - uid: 484 + pos: -16.5,-7.5 + parent: 2 + - uid: 761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,19.5 - parent: 1 - - uid: 497 + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - uid: 762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - - uid: 729 + pos: -16.5,-2.5 + parent: 2 + - uid: 764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1 -- proto: WallReinforced - entities: - - uid: 4 + pos: -16.5,3.5 + parent: 2 + - uid: 773 components: - type: Transform - pos: -1.5,-11.5 - parent: 1 - - uid: 17 + rot: 3.141592653589793 rad + pos: -17.5,2.5 + parent: 2 + - uid: 774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,32.5 - parent: 1 - - uid: 25 + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 1245 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - - uid: 33 + pos: -1.5,26.5 + parent: 2 + - uid: 1246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 1 - - uid: 53 + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 1412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,36.5 - parent: 1 - - uid: 59 + pos: 22.5,24.5 + parent: 2 + - uid: 1413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 1 - - uid: 63 + pos: 21.5,24.5 + parent: 2 + - uid: 1425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - - uid: 87 + pos: 20.5,20.5 + parent: 2 + - uid: 1514 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1 - - uid: 94 + pos: 19.5,-23.5 + parent: 2 + - uid: 1593 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1 - - uid: 110 + pos: 21.5,-23.5 + parent: 2 + - uid: 1726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 1 - - uid: 120 + pos: 21.5,20.5 + parent: 2 + - uid: 1840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - - uid: 121 + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - uid: 1888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,11.5 - parent: 1 - - uid: 122 + pos: 22.5,20.5 + parent: 2 +- proto: WallReinforcedDiagonal + entities: + - uid: 6 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,10.5 - parent: 1 - - uid: 125 + pos: -12.5,18.5 + parent: 2 + - uid: 123 components: - type: Transform - pos: -3.5,4.5 - parent: 1 - - uid: 126 + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 2 + - uid: 124 components: - type: Transform - pos: -4.5,5.5 - parent: 1 - - uid: 134 + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - uid: 153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - - uid: 135 + pos: 8.5,-4.5 + parent: 2 + - uid: 154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - - uid: 137 + pos: 7.5,-5.5 + parent: 2 + - uid: 155 components: - type: Transform - pos: -4.5,21.5 - parent: 1 - - uid: 154 + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 1 - - uid: 157 + pos: 10.5,5.5 + parent: 2 + - uid: 162 components: - type: Transform - pos: -4.5,6.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 - uid: 164 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,36.5 - parent: 1 + pos: 9.5,6.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 - uid: 166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - - uid: 180 + rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1 - - uid: 189 + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - uid: 176 components: - type: Transform - pos: -2.5,26.5 - parent: 1 - - uid: 194 + pos: 10.5,-1.5 + parent: 2 + - uid: 177 components: - type: Transform - pos: -4.5,22.5 - parent: 1 - - uid: 196 + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 178 components: - type: Transform - pos: -2.5,4.5 - parent: 1 - - uid: 197 + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 188 components: - type: Transform - pos: -4.5,4.5 - parent: 1 - - uid: 203 + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 196 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,32.5 - parent: 1 - - uid: 206 + pos: 6.5,-10.5 + parent: 2 + - uid: 203 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 + pos: -1.5,-9.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-19.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 219 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - - uid: 221 + pos: 5.5,-9.5 + parent: 2 + - uid: 224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 1 - - uid: 252 + pos: 2.5,-9.5 + parent: 2 + - uid: 234 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 1 - - uid: 262 + pos: 18.5,-22.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 296 components: - type: Transform - pos: -4.5,8.5 - parent: 1 - - uid: 264 + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - uid: 317 components: - type: Transform - pos: -4.5,24.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 2 - uid: 318 components: - type: Transform - pos: -4.5,26.5 - parent: 1 - - uid: 319 + rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 2 + - uid: 323 components: - type: Transform - pos: -3.5,26.5 - parent: 1 - - uid: 326 + pos: -4.5,-9.5 + parent: 2 + - uid: 329 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,26.5 - parent: 1 - - uid: 336 + pos: 11.5,-11.5 + parent: 2 + - uid: 330 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,42.5 - parent: 1 - - uid: 337 + pos: 10.5,-14.5 + parent: 2 + - uid: 331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,42.5 - parent: 1 - - uid: 343 + rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 1 - - uid: 349 + pos: -15.5,17.5 + parent: 2 + - uid: 356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,37.5 - parent: 1 - - uid: 367 + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - uid: 357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - - uid: 374 + rot: 1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 2 + - uid: 360 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 1 - - uid: 402 - components: - - type: Transform - pos: -4.5,25.5 - parent: 1 - - uid: 404 - components: - - type: Transform - pos: -4.5,9.5 - parent: 1 - - uid: 405 + pos: 9.5,-13.5 + parent: 2 + - uid: 366 components: - type: Transform - pos: -4.5,7.5 - parent: 1 - - uid: 406 + pos: -9.5,-14.5 + parent: 2 + - uid: 376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1 - - uid: 423 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 377 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 1 - - uid: 432 + pos: 5.5,4.5 + parent: 2 + - uid: 395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1 - - uid: 438 + rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 2 + - uid: 402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,18.5 - parent: 1 - - uid: 439 + pos: 12.5,13.5 + parent: 2 + - uid: 416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - - uid: 467 + rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 2 + - uid: 417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - - uid: 475 + pos: 9.5,15.5 + parent: 2 + - uid: 422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 1 - - uid: 476 + rot: 1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - - uid: 478 + pos: -8.5,15.5 + parent: 2 + - uid: 446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - - uid: 483 + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 458 components: - type: Transform - pos: -4.5,23.5 - parent: 1 - - uid: 487 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 2 + - uid: 460 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - - uid: 495 + pos: 15.5,-15.5 + parent: 2 + - uid: 466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,28.5 - parent: 1 - - uid: 501 + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - uid: 472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,27.5 - parent: 1 - - uid: 502 + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 2 + - uid: 485 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - - uid: 555 + pos: -8.5,14.5 + parent: 2 + - uid: 486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - - uid: 557 + pos: 11.5,12.5 + parent: 2 + - uid: 489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,37.5 - parent: 1 - - uid: 573 + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 2 + - uid: 498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1 - - uid: 597 + rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - uid: 499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,32.5 - parent: 1 - - uid: 607 + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - - uid: 608 + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 2 + - uid: 503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,28.5 - parent: 1 - - uid: 611 + pos: 7.5,8.5 + parent: 2 + - uid: 504 components: - type: Transform - pos: 2.5,-11.5 - parent: 1 - - uid: 658 + pos: 8.5,9.5 + parent: 2 + - uid: 513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - - uid: 709 + rot: 3.141592653589793 rad + pos: -17.5,-23.5 + parent: 2 + - uid: 561 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,32.5 - parent: 1 - - uid: 954 + pos: -7.5,9.5 + parent: 2 + - uid: 582 components: - type: Transform - pos: 12.5,-1.5 - parent: 1 - - uid: 957 + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 2 + - uid: 593 components: - type: Transform - pos: 12.5,2.5 - parent: 1 - - uid: 958 + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - uid: 605 components: - type: Transform - pos: -11.5,2.5 - parent: 1 - - uid: 961 + rot: -1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - uid: 606 components: - type: Transform - pos: -11.5,-1.5 - parent: 1 -- proto: WallReinforcedDiagonal - entities: - - uid: 83 + pos: -15.5,-15.5 + parent: 2 + - uid: 611 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - - uid: 84 + pos: -16.5,22.5 + parent: 2 + - uid: 612 components: - type: Transform - pos: 3.5,5.5 - parent: 1 - - uid: 85 + rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 2 + - uid: 641 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - - uid: 86 + pos: -17.5,24.5 + parent: 2 + - uid: 643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 1 - - uid: 88 + rot: 1.5707963267948966 rad + pos: -17.5,23.5 + parent: 2 + - uid: 672 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 1 - - uid: 127 + pos: -16.5,23.5 + parent: 2 + - uid: 680 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - - uid: 158 + pos: -18.5,20.5 + parent: 2 + - uid: 686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,25.5 - parent: 1 - - uid: 170 + pos: 17.5,23.5 + parent: 2 + - uid: 689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - - uid: 225 + pos: -13.5,-18.5 + parent: 2 + - uid: 690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,32.5 - parent: 1 - - uid: 245 + rot: 3.141592653589793 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - - uid: 246 + pos: -17.5,-22.5 + parent: 2 + - uid: 696 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1 - - uid: 309 + pos: 13.5,-17.5 + parent: 2 + - uid: 697 components: - type: Transform - pos: 2.5,13.5 - parent: 1 - - uid: 320 + rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + - uid: 700 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 1 - - uid: 324 + pos: 13.5,-18.5 + parent: 2 + - uid: 702 components: - type: Transform - pos: 3.5,20.5 - parent: 1 - - uid: 325 + pos: -12.5,-17.5 + parent: 2 + - uid: 704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,28.5 - parent: 1 - - uid: 334 + rot: 3.141592653589793 rad + pos: 14.5,19.5 + parent: 2 + - uid: 705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 1 - - uid: 335 + pos: 19.5,20.5 + parent: 2 + - uid: 706 components: - type: Transform - pos: 2.5,-1.5 - parent: 1 - - uid: 415 + pos: 13.5,19.5 + parent: 2 + - uid: 707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 1 - - uid: 422 + pos: 15.5,16.5 + parent: 2 + - uid: 708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,11.5 - parent: 1 - - uid: 427 + pos: 18.5,24.5 + parent: 2 + - uid: 763 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 1 - - uid: 428 + pos: -16.5,2.5 + parent: 2 + - uid: 779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 1 - - uid: 434 + rot: 1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 2 + - uid: 783 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,26.5 - parent: 1 - - uid: 435 + pos: -17.5,-2.5 + parent: 2 + - uid: 784 components: - type: Transform - pos: 2.5,28.5 - parent: 1 - - uid: 436 + pos: -17.5,3.5 + parent: 2 + - uid: 1247 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,32.5 - parent: 1 - - uid: 442 + pos: 18.5,23.5 + parent: 2 + - uid: 1248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 1 - - uid: 452 + pos: -16.5,-21.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-22.5 + parent: 2 + - uid: 1250 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,5.5 - parent: 1 - - uid: 462 + pos: 16.5,-15.5 + parent: 2 + - uid: 1319 components: - type: Transform - pos: -0.5,16.5 - parent: 1 - - uid: 470 + rot: -1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 2 + - uid: 1350 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 1 - - uid: 485 + pos: -12.5,-18.5 + parent: 2 + - uid: 1378 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,19.5 - parent: 1 - - uid: 498 + pos: -14.5,-15.5 + parent: 2 + - uid: 1394 components: - type: Transform - pos: 2.5,4.5 - parent: 1 - - uid: 499 + rot: -1.5707963267948966 rad + pos: -12.5,19.5 + parent: 2 + - uid: 1426 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - - uid: 595 + pos: 13.5,18.5 + parent: 2 + - uid: 1433 components: - type: Transform - pos: 2.5,19.5 - parent: 1 - - uid: 659 + pos: 16.5,17.5 + parent: 2 + - uid: 1435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - - uid: 695 + rot: 3.141592653589793 rad + pos: 16.5,16.5 + parent: 2 + - uid: 1494 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,14.5 - parent: 1 -- proto: WarpPointBeacon - entities: - - uid: 316 + pos: 4.5,3.5 + parent: 2 + - uid: 1496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 -- proto: WindowClockworkDirectional - entities: - - uid: 64 + pos: 4.5,-2.5 + parent: 2 + - uid: 1499 components: - type: Transform - pos: -3.5,19.5 - parent: 1 - - uid: 97 + rot: 1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 2 + - uid: 1679 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 1 + pos: 17.5,22.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-14.5 + parent: 2 +- proto: WarpPointBeacon + entities: + - uid: 803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 2 ... diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 3445b2c7eb1..7ba6b3e64fa 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -452,6 +452,7 @@ - Deconstruct #Hardlight - AtmosDeviceFanDirectional + - PuckLight - type: LimitedCharges maxCharges: 30 - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml b/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml index 5a946c56e0c..b658e043f36 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml @@ -400,6 +400,8 @@ - type: ExtensionCableReceiver # Frontier - type: ApcPowerReceiver # Frontier powerLoad: 1500 # Frontier + - type: MiningGatheringSoft + - type: MiningGatheringHard # Mono Start - type: FireControllable - type: ShipGunClass diff --git a/Resources/Prototypes/Floof/Entities/Mobs/Species/resomi.yml b/Resources/Prototypes/Floof/Entities/Mobs/Species/resomi.yml index 59c6778f9f4..692e352d96d 100644 --- a/Resources/Prototypes/Floof/Entities/Mobs/Species/resomi.yml +++ b/Resources/Prototypes/Floof/Entities/Mobs/Species/resomi.yml @@ -80,7 +80,7 @@ sprite: Floof/Mobs/Species/Resomi/displacement.rsi state: inHand - type: Inventory - speciesId: Resomi + speciesId: resomi displacements: jumpsuit: sizeMaps: @@ -279,7 +279,7 @@ sprite: Floof/Mobs/Species/Resomi/displacement.rsi state: inHand - type: Inventory - speciesId: Resomi + speciesId: resomi displacements: jumpsuit: sizeMaps: diff --git a/Resources/Prototypes/RCD/rcd.yml b/Resources/Prototypes/RCD/rcd.yml index d35094ef0f6..2781a398fc5 100644 --- a/Resources/Prototypes/RCD/rcd.yml +++ b/Resources/Prototypes/RCD/rcd.yml @@ -58,7 +58,7 @@ rules: - CanBuildOnEmptyTile fx: EffectRCDConstruct1 - + - type: rcd id: FloorXenoborg name: tiles-xenoborg-floor @@ -72,7 +72,7 @@ rules: - CanBuildOnEmptyTile fx: EffectRCDConstruct1 - + - type: rcd id: FloorXeno name: tiles-xeno-floor @@ -86,7 +86,7 @@ rules: - CanBuildOnEmptyTile fx: EffectRCDConstruct1 - + - type: rcd id: FloorXenoSteel name: tiles-xeno-steel @@ -100,7 +100,7 @@ rules: - CanBuildOnEmptyTile fx: EffectRCDConstruct1 - + - type: rcd id: FloorXenoMaint name: tiles-xeno-maint @@ -142,7 +142,7 @@ collisionMask: FullTileMask rotation: Fixed fx: EffectRCDConstruct2 - + - type: rcd id: WallShuttle category: Walls @@ -154,7 +154,7 @@ collisionMask: FullTileMask rotation: Fixed fx: EffectRCDConstruct2 - + - type: rcd id: WallReinforced category: Walls @@ -166,7 +166,7 @@ collisionMask: FullTileMask rotation: Fixed fx: EffectRCDConstruct2 - + - type: rcd id: WallXenoborg category: Walls @@ -329,6 +329,22 @@ rotation: User fx: EffectRCDConstruct1 +# HL - Lighting +- type: rcd + id: PuckLight + category: Lighting + sprite: + sprite: /Textures/_HL/Structures/pucklight.rsi + state: base + mode: ConstructObject + prototype: PoweredPuckLight + cost: 2 + delay: 1 + collisionMask: TabletopMachineMask + collisionBounds: "0.25,0.25,-0.25,-0.25" + rotation: Fixed + fx: EffectRCDConstruct1 + # Electrical - type: rcd id: LVCable diff --git a/Resources/Prototypes/_DV/Entities/Mobs/Species/skrell.yml b/Resources/Prototypes/_DV/Entities/Mobs/Species/skrell.yml index ab06f52e5d5..2f05e40fcb1 100644 --- a/Resources/Prototypes/_DV/Entities/Mobs/Species/skrell.yml +++ b/Resources/Prototypes/_DV/Entities/Mobs/Species/skrell.yml @@ -34,7 +34,7 @@ baseDecayRate: 0.2 - type: Carriable - type: Inventory - speciesId: Skrell + speciesId: skrell - type: Icon sprite: _RMC14/Mobs/Skrells/parts.rsi state: head_m diff --git a/Resources/Prototypes/_HL/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/_HL/Entities/Clothing/Hands/gloves.yml index d17b9da2748..3a000a0c7bb 100644 --- a/Resources/Prototypes/_HL/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/_HL/Entities/Clothing/Hands/gloves.yml @@ -70,3 +70,19 @@ fiberMaterial: fibers-durathread fiberColor: fibers-orange - type: FingerprintMask + +- type: entity + parent: ClothingHandsGlovesSyntheticBase + id: ClothingHandsGlovesInterdyne + name: interdyne surgical gloves + description: shock resistant gloves with a self-sterilizing surface for interdyne surgeons. + components: + - type: Sprite + sprite: _HL/Clothing/Gloves/interdyne-surgical.rsi + - type: Clothing + sprite: _HL/Clothing/Gloves/interdyne-surgical.rsi + - type: Insulated + - type: Fiber + fiberMaterial: fibers-durathread + fiberColor: fibers-pink + - type: FingerprintMask diff --git a/Resources/Prototypes/_HL/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/_HL/Entities/Clothing/Head/hats.yml index d0152694912..7df3a4a3ebb 100644 --- a/Resources/Prototypes/_HL/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/_HL/Entities/Clothing/Head/hats.yml @@ -51,3 +51,14 @@ - type: Tag tags: - WhitelistChameleon + +- type: entity + parent: ClothingHeadHatBeret + id: ClothingHeadHatBeretInterdyne + name: interdyne beret + description: A beret in interdyne style. + components: + - type: Sprite + sprite: _HL/Clothing/Head/interdyneberet.rsi + - type: Clothing + sprite: _HL/Clothing/Head/interdyneberet.rsi diff --git a/Resources/Prototypes/_HL/Entities/Clothing/Masks/interdyne.yml b/Resources/Prototypes/_HL/Entities/Clothing/Masks/interdyne.yml index a3cf5b1ca7e..a7e4b6d7c03 100644 --- a/Resources/Prototypes/_HL/Entities/Clothing/Masks/interdyne.yml +++ b/Resources/Prototypes/_HL/Entities/Clothing/Masks/interdyne.yml @@ -31,3 +31,5 @@ layers: Snout: Mask hideOnToggle: true + - type: ZombificationResistance + zombificationResistanceCoefficient: 0.9 diff --git a/Resources/Prototypes/_HL/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/_HL/Entities/Clothing/OuterClothing/armor.yml index 31aeecc18cd..2f095d41504 100644 --- a/Resources/Prototypes/_HL/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/_HL/Entities/Clothing/OuterClothing/armor.yml @@ -84,3 +84,23 @@ sprite: _HL/Clothing/OuterClothing/pmc_armored_jacket_olive.rsi - type: Clothing sprite: _HL/Clothing/OuterClothing/pmc_armored_jacket_olive.rsi + +- type: entity + parent: [ BaseC2Contraband, ClothingOuterVestWebMercenary ] + id: ClothingOuterArmoredVestInterdyne + name: Interdyne armored vest + description: A high-quality armored vest with ceramic plates and chemically resistant fabric. + components: + - type: Sprite + sprite: _HL/Clothing/OuterClothing/interdynebodyarmor.rsi + - type: Clothing + sprite: _HL/Clothing/OuterClothing/interdynebodyarmor.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.75 + Slash: 0.75 + Piercing: 0.75 + Heat: 0.8 + Caustic: 0.7 + diff --git a/Resources/Prototypes/_HL/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/_HL/Entities/Clothing/OuterClothing/hardsuits.yml index a1472833dad..e2b78ab460c 100644 --- a/Resources/Prototypes/_HL/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/_HL/Entities/Clothing/OuterClothing/hardsuits.yml @@ -407,3 +407,72 @@ - type: HarpyHideWings # Frontier, needed for Harpies - type: StaticPrice # Frontier vendPrice: 7500 + +# Inderdyne Director Hardsuit + +- type: entity + parent: [ClothingOuterHardsuitSyndieElite, BaseC3SyndicateContraband, ContrabandClothing] + id: ClothingOuterHardsuitInderdyneDirector + name: interdyne director hardsuit + description: A custom-made hardsuit with biological protection for the directors of interdyne. + components: + - type: Sprite + sprite: _HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi + - type: Clothing + sprite: _HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitInterdyneDirector + - type: ZombificationResistance + zombificationResistanceCoefficient: 0.5 + - type: HideLayerClothing + slots: + - Tail + +# Interdyne Director Hardsuit Helmet +- type: entity + parent: [ClothingHeadHelmetHardsuitSyndieElite, BaseC3SyndicateContraband, ContrabandClothing] + id: ClothingHeadHelmetHardsuitInterdyneDirector + name: interdyne director hardsuit helmet + description: A hardsuit helmet with biological protection for the directors of interdyne. + components: + - type: Sprite + sprite: _HL/Clothing/Head/Hardsuits/interdyne-director.rsi + - type: Clothing + sprite: _HL/Clothing/Head/Hardsuits/interdyne-director.rsi + - type: ZombificationResistance + zombificationResistanceCoefficient: 0.8 + +# Inderdyne Crew Hardsuit + +- type: entity + parent: [ClothingOuterHardsuitSyndieMedic, BaseC3SyndicateContraband, ContrabandClothing] + id: ClothingOuterHardsuitInderdyneCrew + name: interdyne hardsuit + description: A custom-made hardsuit with biological protection for the members of interdyne. + components: + - type: Sprite + sprite: _HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi + - type: Clothing + sprite: _HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitInterdyneCrew + - type: ZombificationResistance + zombificationResistanceCoefficient: 0.7 + - type: HideLayerClothing + slots: + - Tail + + +# Interdyne Crew Hardsuit Helmet +- type: entity + parent: [ClothingHeadHelmetHardsuitSyndieMedic, BaseC3SyndicateContraband, ContrabandClothing] + id: ClothingHeadHelmetHardsuitInterdyneCrew + name: interdyne hardsuit helmet + description: A hardsuit helmet with biological protection for the members of interdyne. + components: + - type: Sprite + sprite: _HL/Clothing/Head/Hardsuits/interdyne-crew.rsi + - type: Clothing + sprite: _HL/Clothing/Head/Hardsuits/interdyne-crew.rsi + - type: ZombificationResistance + zombificationResistanceCoefficient: 0.9 diff --git a/Resources/Prototypes/_HL/Entities/Objects/Misc/rubber_stamp.yml b/Resources/Prototypes/_HL/Entities/Objects/Misc/rubber_stamp.yml new file mode 100644 index 00000000000..1aad5994052 --- /dev/null +++ b/Resources/Prototypes/_HL/Entities/Objects/Misc/rubber_stamp.yml @@ -0,0 +1,13 @@ +- type: entity + name: interdyne rubber stamp + parent: RubberStampBase + id: RubberStampInterdyne + description: Represents the entire bureaucratic might of the Interdyne Pharmaceutical Corporation. + categories: [ DoNotMap ] + components: + - type: Stamp + stampedName: Interdyne + stampedColor: "#EA7FC7" + stampState: "paper_stamp-interdyne" + - type: Sprite + state: stamp-interdyne diff --git a/Resources/Prototypes/_HL/Entities/Structures/Misc/pucklight.yml b/Resources/Prototypes/_HL/Entities/Structures/Misc/pucklight.yml new file mode 100644 index 00000000000..c7349838e20 --- /dev/null +++ b/Resources/Prototypes/_HL/Entities/Structures/Misc/pucklight.yml @@ -0,0 +1,488 @@ +- type: entity + name: puck light + description: "An always powered in-ground light." + id: PuckLight + suffix: AlwaysPowered + parent: BaseStructure + components: + - type: SubFloorHide + visibleLayers: + - enum.SubfloorLayers.FirstLayer + - enum.SubfloorLayers.SecondLayer + - type: Sprite + sprite: _HL/Structures/pucklight.rsi + snapCardinals: true + drawdepth: FloorObjects + noRot: true + layers: + - map: ["enum.PoweredLightLayers.Base", "enum.SubfloorLayers.SecondLayer"] + state: base + - map: ["enum.PoweredLightLayers.Glow", "enum.SubfloorLayers.FirstLayer"] + state: glow + shdaer: unshaded + state: base + - type: PointLight + radius: 10 + energy: 0.8 + softness: 1 + color: "#FFE4CE" + - type: Anchorable + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 1 + - !type:EmptyAllContainersBehaviour + - !type:PlaySoundBehavior + sound: + collection: MetalGlassBreak + - type: StaticPrice + price: 5 + # Add mono ship repair + - type: ShipRepairable + repairTime: 1 + repairCost: 1 + +- type: entity + id: PoweredPuckLightEmpty + name: puck light + description: "A small in-ground light." + suffix: Empty + parent: PuckLight + components: + - type: Sprite + sprite: _HL/Structures/pucklight.rsi + state: empty + - type: PointLight + enabled: false + - type: PoweredLight + bulb: Bulb + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + - type: ApcPowerReceiver + - type: ExtensionCableReceiver + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: SmartLight + - type: WirelessNetworkConnection + range: 200 + - type: DeviceLinkSink + ports: + - On + - Off + - Toggle + - type: Construction + graph: LightFixture + node: puckLight + - type: Appearance + - type: PoweredLightVisuals + blinkingSound: + path: "/Audio/Machines/light_tube_on.ogg" + spriteStateMap: + empty: empty + off: base + on: base + broken: broken + burned: burned + - type: DamageOnInteract + damage: + types: + Heat: 1 + popupText: powered-light-component-burn-hand + +- type: entity + id: PoweredPuckLight + name: puck light + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: "" + parent: PoweredPuckLightEmpty + components: + - type: Sprite + state: base + - type: PointLight + enabled: true + - type: ContainerFill + containers: + light_bulb: [ LightBulb ] + - type: AmbientOnPowered + - type: AmbientSound + volume: -25 + range: 1 + sound: + path: /Audio/Ambience/Objects/light_hum.ogg + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + - type: RCDDeconstructable + cost: 1 + delay: 2 + +# Its 1:30 am, I'm manic, and I'm listening to siivagunner rips +# Lets slog through the entities list WHOOP + +# LED +- type: entity + id: PoweredPuckLightLED + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: LED + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LedLightBulb ] + - type: PointLight + radius: 15 + energy: 1 + softness: 0.9 + color: "#eeeeff" + - type: DamageOnInteract + damage: + types: + Heat: 1 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightLED + parent: PuckLight + suffix: Always Powered, LED + components: + - type: PointLight + radius: 10 + energy: 2.5 + softness: 0.9 + color: "#eeeeff" + +# Exterior +- type: entity + id: PoweredPuckLightExterior + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Exterior + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ ExteriorLightBulb ] + - type: DamageOnInteract + damage: + types: + Heat: 4 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightExterior + parent: PuckLight + suffix: Always Powered, Exterior + components: + - type: PointLight + radius: 12 + energy: 4.5 + softness: 0.5 + color: "#B4FCF0" + +# Sodium +- type: entity + id: PoweredPuckLightSodium + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Sodium + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ SodiumLightBulb ] + - type: PointLight + radius: 10 + energy: 2.5 + softness: 0.9 + color: "#FFAF38" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightSodium + parent: PuckLight + suffix: Always Powered, Sodium + components: + - type: PointLight + radius: 10 + energy: 4 + softness: 0.5 + color: "#FFAF38" + +# Cyan +- type: entity + id: PoweredPuckLightCyan + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Cyan + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LightBulbCrystalCyan ] + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#47f8ff" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightCyan + parent: PuckLight + suffix: Always Powered, Cyan + components: + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#47f8ff" + +# Blue +- type: entity + id: PoweredPuckLightBlue + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Blue + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LightBulbCrystalBlue ] + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#39a1ff" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightBlue + parent: PuckLight + suffix: Always Powered, Blue + components: + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#39a1ff" + +# Yellow +- type: entity + id: PoweredPuckLightYellow + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Yellow + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LightBulbCrystalYellow ] + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#ffde46" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightYellow + parent: PuckLight + suffix: Always Powered, Yellow + components: + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#ffde46" + +# Pink +- type: entity + id: PoweredPuckLightPink + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Pink + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LightBulbCrystalPink ] + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#ff66cc" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightPink + parent: PuckLight + suffix: Always Powered, Pink + components: + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#ff66cc" + +# Orange +- type: entity + id: PoweredPuckLightOrange + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Orange + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LightBulbCrystalOrange ] + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#ff8227" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightOrange + parent: PuckLight + suffix: Always Powered, Orange + components: + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#ff8227" + +# Black +- type: entity + id: PoweredPuckLightBlack + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Black + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LightBulbCrystalBlack ] + - type: PointLight + radius: 8 + energy: 1 + softness: 0.5 + color: "#363636" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightBlack + parent: PuckLight + suffix: Always Powered, Black + components: + - type: PointLight + radius: 8 + energy: 1 + softness: 0.5 + color: "#363636" + +# Red +- type: entity + id: PoweredPuckLightRed + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Red + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LightBulbCrystalRed ] + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#fb4747" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightRed + parent: PuckLight + suffix: Always Powered, Red + components: + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#fb4747" + +# Green +- type: entity + id: PoweredPuckLightGreen + description: "An in-ground light fixture. Draws power and produces light when equipped with a light bulb." + suffix: Green + parent: PoweredPuckLight + components: + - type: ContainerFill + containers: + light_bulb: [ LightBulbCrystalGreen ] + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#52ff39" + - type: DamageOnInteract + damage: + types: + Heat: 2 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredPuckLightGreen + parent: PuckLight + suffix: Always Powered, Green + components: + - type: PointLight + radius: 8 + energy: 3 + softness: 0.5 + color: "#52ff39" diff --git a/Resources/Prototypes/_HL/Recipes/construction/Graphs/utilities/atmos_high_pressure.yml b/Resources/Prototypes/_HL/Recipes/construction/Graphs/utilities/atmos_high_pressure.yml index d67e1c120c6..4dc9db38faf 100644 --- a/Resources/Prototypes/_HL/Recipes/construction/Graphs/utilities/atmos_high_pressure.yml +++ b/Resources/Prototypes/_HL/Recipes/construction/Graphs/utilities/atmos_high_pressure.yml @@ -6,7 +6,7 @@ edges: - to: ventpumphighflow steps: - - tag: + - tag: HighPressureCasing name: construction-graph-tag-high-pressure-casing icon: sprite: Structures/Piping/Atmospherics/pump.rsi diff --git a/Resources/Prototypes/_HL/game_presets.yml b/Resources/Prototypes/_HL/game_presets.yml index c791bb29c3a..59c5457c529 100644 --- a/Resources/Prototypes/_HL/game_presets.yml +++ b/Resources/Prototypes/_HL/game_presets.yml @@ -262,16 +262,17 @@ - BasicRoundstartVariation # - NFRoundstartVariation -- type: gamePreset - id: NFPirate - alias: - - nfpirate - - pirate - name: nf-pirate-title - description: nf-pirate-description - showInVote: true - rules: - #- Secret - - NFAdventure - - BasicRoundstartVariation -# - NFRoundstartVariation +#- type: gamePreset +# id: NFPirate +# alias: +# - nfpirate +# - pirate +# name: nf-pirate-title +# description: nf-pirate-description +# showInVote: true +# rules: +# #- Secret +# - NFAdventure +# - BasicRoundstartVariation +## - NFRoundstartVariation +# diff --git a/Resources/Prototypes/_Mono/Entities/SpaceArtillery/SpaceArtillery/Energy/hitscan.yml b/Resources/Prototypes/_Mono/Entities/SpaceArtillery/SpaceArtillery/Energy/hitscan.yml index 97b4dd65990..cd5fc28f280 100644 --- a/Resources/Prototypes/_Mono/Entities/SpaceArtillery/SpaceArtillery/Energy/hitscan.yml +++ b/Resources/Prototypes/_Mono/Entities/SpaceArtillery/SpaceArtillery/Energy/hitscan.yml @@ -2,6 +2,7 @@ - type: hitscan id: PhalanxLaser + maxLength: 240 damage: types: Heat: 100 @@ -18,6 +19,7 @@ - type: hitscan id: ApolloLaser + maxLength: 240 damage: types: Heat: 10000 @@ -34,6 +36,7 @@ - type: hitscan id: PrometheusLaser + maxLength: 240 damage: types: Heat: 120 @@ -50,6 +53,7 @@ - type: hitscan id: TachyonLaser + maxLength: 240 damage: types: Heat: 30000 @@ -66,6 +70,7 @@ - type: hitscan id: SunderLaser + maxLength: 240 damage: types: Heat: 350 @@ -82,6 +87,7 @@ - type: hitscan id: GaussRound + maxLength: 240 damage: types: Piercing: 125 @@ -131,6 +137,7 @@ - type: hitscan id: ShipGlassingBeamPlasmaProjectile + maxLength: 240 damage: types: Radiation: 700 @@ -146,4 +153,3 @@ impactFlash: sprite: _Mono/Objects/Weapons/Guns/Projectiles/ship_lasers.rsi state: impact_superheavy_prefrac - maxLength: 250 diff --git a/Resources/Prototypes/_Mono/Entities/Structures/catwalk.yml b/Resources/Prototypes/_Mono/Entities/Structures/catwalk.yml new file mode 100644 index 00000000000..493d0be1410 --- /dev/null +++ b/Resources/Prototypes/_Mono/Entities/Structures/catwalk.yml @@ -0,0 +1,217 @@ +- type: entity + id: CatwalkMono + name: mono catwalk + description: A catwalk for easier EVA maneuvering and cable placement. + placement: + mode: SnapgridCenter + components: + - type: Clickable + - type: Sprite + sprite: _Mono/Structures/steel_catwalk.rsi + state: catwalk_preview + drawdepth: FloorTiles + - type: Icon + sprite: _Mono/Structures/steel_catwalk.rsi + state: catwalk_preview + - type: Transform + anchored: true + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepCatwalk + params: + volume: 8 + - type: Tag + tags: + - Catwalk + - type: Construction + graph: SteelMonoCatwalk + node: MonoCatwalk + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 500 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + PartRodMetal: # takes two to construct, so drop less than that + min: 0 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: TrayScanReveal + - type: RCDDeconstructable + cost: 2 + delay: 2 + fx: EffectRCDDeconstruct2 + - type: RequiresGrid + +- type: entity + id: DarkCatwalkMono + parent: CatwalkMono + components: + - type: Sprite + sprite: _Mono/Structures/dark_steel_catwalk.rsi + state: catwalk_preview + drawdepth: FloorTiles + - type: Icon + sprite: _Mono/Structures/dark_steel_catwalk.rsi + state: catwalk_preview + - type: Construction + graph: DarkMonoCatwalk + node: MonoCatwalk + +- type: entity + id: WhiteCatwalkMono + parent: CatwalkMono + components: + - type: Sprite + sprite: _Mono/Structures/white_steel_catwalk.rsi + state: catwalk_preview + drawdepth: FloorTiles + - type: Icon + sprite: _Mono/Structures/white_steel_catwalk.rsi + state: catwalk_preview + - type: Construction + graph: WhiteMonoCatwalk + node: MonoCatwalk + +- type: constructionGraph + id: SteelMonoCatwalk + start: start + graph: + - node: start + edges: + - to: MonoCatwalk + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 2 + + - node: MonoCatwalk + entity: CatwalkMono + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Cutting + +- type: construction + name: steel-mono-catwalk + id: SteelMonoCatwalk + graph: SteelMonoCatwalk + startNode: start + targetNode: MonoCatwalk + category: construction-category-structures + conditions: + - !type:TileNotBlocked + failIfSpace: false + - !type:TileType + targets: + - Lattice + - Plating + placementMode: SnapgridCenter + canBuildInImpassable: false + +- type: constructionGraph + id: DarkMonoCatwalk + start: start + graph: + - node: start + edges: + - to: MonoCatwalk + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 2 + + - node: MonoCatwalk + entity: DarkCatwalkMono + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Cutting + +- type: construction + name: dark-mono-catwalk + id: DarkMonoCatwalk + graph: DarkMonoCatwalk + startNode: start + targetNode: MonoCatwalk + category: construction-category-structures + conditions: + - !type:TileNotBlocked + failIfSpace: false + - !type:TileType + targets: + - Lattice + - Plating + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + +- type: constructionGraph + id: WhiteMonoCatwalk + start: start + graph: + - node: start + edges: + - to: MonoCatwalk + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 2 + + - node: MonoCatwalk + entity: WhiteCatwalkMono + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Cutting + +- type: construction + name: white-mono-catwalk + id: WhiteMonoCatwalk + graph: WhiteMonoCatwalk + startNode: start + targetNode: MonoCatwalk + category: construction-category-structures + conditions: + - !type:TileNotBlocked + failIfSpace: false + - !type:TileType + targets: + - Lattice + - Plating + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false diff --git a/Resources/Prototypes/_Mono/companies.yml b/Resources/Prototypes/_Mono/companies.yml index 84d5accaaa7..80a7a54331f 100644 --- a/Resources/Prototypes/_Mono/companies.yml +++ b/Resources/Prototypes/_Mono/companies.yml @@ -20,12 +20,6 @@ color: "#8B0000" disabled: true -- type: company - id: USSP - form: Antagonist - name: USSP - color: "#B01340" - - type: company id: TSFHighComm form: Protagonist @@ -87,5 +81,16 @@ name: Cybersun R&D color: "#d82918" +- type: company + id: USSP + form: Protagonist + name: USSP + color: "#B01340" + +- type: company + id: StratosPharmaceuticals + form: Protagonist + name: Stratos Pharmaceuticals + color: "#32CD32" # ====Rogue / Antag. Companies==== diff --git a/Resources/Prototypes/_StarLight/Entities/Mobs/Species/avali.yml b/Resources/Prototypes/_StarLight/Entities/Mobs/Species/avali.yml index d210d326ca7..3e14158e266 100644 --- a/Resources/Prototypes/_StarLight/Entities/Mobs/Species/avali.yml +++ b/Resources/Prototypes/_StarLight/Entities/Mobs/Species/avali.yml @@ -36,7 +36,7 @@ prototype: Avali requiredLegs: 2 - type: Inventory - speciesId: Avali + speciesId: avali displacements: jumpsuit: sizeMaps: @@ -179,7 +179,7 @@ - type: HumanoidAppearance species: Avali - type: Inventory - speciesId: Avali + speciesId: avali displacements: jumpsuit: sizeMaps: diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index 6f79fe8113c..dfb6fadebf0 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -242,6 +242,9 @@ }, { "name": "paper_stamp-nf-bailiff" + }, + { + "name": "paper_stamp-interdyne" } ] } diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-interdyne.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-interdyne.png new file mode 100644 index 00000000000..137e4cefa47 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-interdyne.png differ diff --git a/Resources/Textures/Objects/Misc/stamps.rsi/meta.json b/Resources/Textures/Objects/Misc/stamps.rsi/meta.json index 4057c027122..118286c1f5a 100644 --- a/Resources/Textures/Objects/Misc/stamps.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/stamps.rsi/meta.json @@ -69,6 +69,9 @@ }, { "name": "stamp-wizard" + }, + { + "name": "stamp-interdyne" } ] } diff --git a/Resources/Textures/Objects/Misc/stamps.rsi/stamp-interdyne.png b/Resources/Textures/Objects/Misc/stamps.rsi/stamp-interdyne.png new file mode 100644 index 00000000000..243da43238b Binary files /dev/null and b/Resources/Textures/Objects/Misc/stamps.rsi/stamp-interdyne.png differ diff --git a/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/equipped-HAND.png b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/equipped-HAND.png new file mode 100644 index 00000000000..1f2e903ba1a Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/icon.png b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/icon.png new file mode 100644 index 00000000000..bbadfbe4e4f Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/icon.png differ diff --git a/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/inhand-left.png b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/inhand-left.png new file mode 100644 index 00000000000..2aa6aa84b3c Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/inhand-left.png differ diff --git a/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/inhand-right.png b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/inhand-right.png new file mode 100644 index 00000000000..4a3a7c28cf2 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/inhand-right.png differ diff --git a/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/meta.json b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/meta.json new file mode 100644 index 00000000000..7013767fe81 --- /dev/null +++ b/Resources/Textures/_HL/Clothing/Gloves/interdyne-surgical.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified by DocMoth from OnsenCapy's combat gloves, and Seamless's Inhands", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/icon-flash.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/icon-flash.png new file mode 100644 index 00000000000..57526102b3b Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/icon-flash.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/icon.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/icon.png new file mode 100644 index 00000000000..6b4bc245036 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/icon.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/meta.json b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/meta.json new file mode 100644 index 00000000000..8f494220256 --- /dev/null +++ b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "created by mocha_rosensteel on discord.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-avali", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-avali", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-resomi", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-resomi", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-avali.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-avali.png new file mode 100644 index 00000000000..d57e40601a5 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-avali.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 00000000000..5a74c34dea9 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-resomi.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-resomi.png new file mode 100644 index 00000000000..d76244b2205 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-resomi.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 00000000000..b9c5277f676 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET.png new file mode 100644 index 00000000000..50aa5002e2e Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-avali.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-avali.png new file mode 100644 index 00000000000..4acd7cfd846 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-avali.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 00000000000..2a14996aa76 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-resomi.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-resomi.png new file mode 100644 index 00000000000..55cf019a479 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-resomi.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 00000000000..748087e0a75 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET.png new file mode 100644 index 00000000000..0f2bc05fa1d Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-crew.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/icon-flash.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/icon-flash.png new file mode 100644 index 00000000000..47eeb86698e Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/icon-flash.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/icon.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/icon.png new file mode 100644 index 00000000000..00ea03e03db Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/icon.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/meta.json b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/meta.json new file mode 100644 index 00000000000..8f494220256 --- /dev/null +++ b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "created by mocha_rosensteel on discord.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-avali", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-avali", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-resomi", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-resomi", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-avali.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-avali.png new file mode 100644 index 00000000000..fc27a3ca186 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-avali.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 00000000000..22f73416646 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-resomi.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-resomi.png new file mode 100644 index 00000000000..0f2e49ba06c Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-resomi.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 00000000000..93a65716eef Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET.png new file mode 100644 index 00000000000..37495c63b7f Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-avali.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-avali.png new file mode 100644 index 00000000000..b63ac502ab1 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-avali.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 00000000000..d80a4af4999 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-resomi.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-resomi.png new file mode 100644 index 00000000000..a230c21c922 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-resomi.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 00000000000..28978f2e00c Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET.png b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET.png new file mode 100644 index 00000000000..5e8acb9638b Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/Hardsuits/interdyne-director.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/equipped-HELMET.png b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..fa081c907ce Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/icon.png b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/icon.png new file mode 100644 index 00000000000..985d63c6df4 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/icon.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/inhand-left.png b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/inhand-left.png new file mode 100644 index 00000000000..437b102b381 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/inhand-left.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/inhand-right.png b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/inhand-right.png new file mode 100644 index 00000000000..fc1551d7fcd Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/inhand-right.png differ diff --git a/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/meta.json b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/meta.json new file mode 100644 index 00000000000..bb267f8ad85 --- /dev/null +++ b/Resources/Textures/_HL/Clothing/Head/interdyneberet.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified from the GoldenCan's Command Beret by DocMoth", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/equipped-NECK.png b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/equipped-NECK.png index 14a418e2c30..b17fe61f8fc 100644 Binary files a/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/equipped-NECK.png and b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/icon.png b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/icon.png index 0a397412ed1..5a181f7c6f6 100644 Binary files a/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/icon.png and b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/icon.png differ diff --git a/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/inhand-left.png b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/inhand-left.png new file mode 100644 index 00000000000..60bf24eee5e Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/inhand-right.png b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/inhand-right.png new file mode 100644 index 00000000000..d47219e0179 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/meta.json b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/meta.json index f92c14a13f6..248a1ef1812 100644 --- a/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/meta.json +++ b/Resources/Textures/_HL/Clothing/Neck/mantles/interdynemantle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by Dakota Haven - DiscordID '56038550335922176'", + "copyright": "Modified by DocMoth from syndicate ringleader cloak by Hyenh#6078.", "size": { "x": 32, "y": 32 @@ -13,6 +13,14 @@ { "name": "equipped-NECK", "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-avali.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-avali.png new file mode 100644 index 00000000000..079506bb662 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-avali.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 00000000000..a2f13b301b5 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 00000000000..ea223a7df0f Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..406183ced5e Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..5f2f9046d02 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/icon.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/icon.png new file mode 100644 index 00000000000..b1354e59449 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/icon.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/meta.json b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/meta.json new file mode 100644 index 00000000000..21cb7c5480b --- /dev/null +++ b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-crew.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "created by mocha_rosensteel on discord.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-avali", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-avali.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-avali.png new file mode 100644 index 00000000000..e713a5784a0 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-avali.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 00000000000..40c3ac161b0 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-resomi.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-resomi.png new file mode 100644 index 00000000000..3fb99400f4a Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-resomi.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..83e91c30f1a Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bc7d7b8a702 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/icon.png b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/icon.png new file mode 100644 index 00000000000..a44f35ff182 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/icon.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/meta.json b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/meta.json new file mode 100644 index 00000000000..21cb7c5480b --- /dev/null +++ b/Resources/Textures/_HL/Clothing/OuterClothing/Hardsuits/interdyne-director.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "created by mocha_rosensteel on discord.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-avali", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..09fa5771512 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/icon.png b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/icon.png new file mode 100644 index 00000000000..54961f3af37 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/icon.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/inhand-left.png b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/inhand-left.png new file mode 100644 index 00000000000..b650f3e29c0 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/inhand-left.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/inhand-right.png b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/inhand-right.png new file mode 100644 index 00000000000..d690e4a5a13 Binary files /dev/null and b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/inhand-right.png differ diff --git a/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/meta.json b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/meta.json new file mode 100644 index 00000000000..d1fcb901466 --- /dev/null +++ b/Resources/Textures/_HL/Clothing/OuterClothing/interdynebodyarmor.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by DocMoth", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_HL/Structures/pucklight.rsi/base.png b/Resources/Textures/_HL/Structures/pucklight.rsi/base.png new file mode 100644 index 00000000000..0b1daf05698 Binary files /dev/null and b/Resources/Textures/_HL/Structures/pucklight.rsi/base.png differ diff --git a/Resources/Textures/_HL/Structures/pucklight.rsi/broken.png b/Resources/Textures/_HL/Structures/pucklight.rsi/broken.png new file mode 100644 index 00000000000..eb86c0cfd7e Binary files /dev/null and b/Resources/Textures/_HL/Structures/pucklight.rsi/broken.png differ diff --git a/Resources/Textures/_HL/Structures/pucklight.rsi/burned.png b/Resources/Textures/_HL/Structures/pucklight.rsi/burned.png new file mode 100644 index 00000000000..851bf640df3 Binary files /dev/null and b/Resources/Textures/_HL/Structures/pucklight.rsi/burned.png differ diff --git a/Resources/Textures/_HL/Structures/pucklight.rsi/empty.png b/Resources/Textures/_HL/Structures/pucklight.rsi/empty.png new file mode 100644 index 00000000000..8920e073fe1 Binary files /dev/null and b/Resources/Textures/_HL/Structures/pucklight.rsi/empty.png differ diff --git a/Resources/Textures/_HL/Structures/pucklight.rsi/glow.png b/Resources/Textures/_HL/Structures/pucklight.rsi/glow.png new file mode 100644 index 00000000000..fe57d3faeae Binary files /dev/null and b/Resources/Textures/_HL/Structures/pucklight.rsi/glow.png differ diff --git a/Resources/Textures/_HL/Structures/pucklight.rsi/meta.json b/Resources/Textures/_HL/Structures/pucklight.rsi/meta.json new file mode 100644 index 00000000000..94677d0eae2 --- /dev/null +++ b/Resources/Textures/_HL/Structures/pucklight.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "by mangojuulpods (discord)", + "states": [ + { + "name": "broken" + }, + { + "name": "burned" + }, + { + "name": "base" + }, + { + "name": "empty" + }, + { + "name": "glow" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Mono/Structures/dark_steel_catwalk.rsi/catwalk_preview.png b/Resources/Textures/_Mono/Structures/dark_steel_catwalk.rsi/catwalk_preview.png new file mode 100644 index 00000000000..3479a3a7678 Binary files /dev/null and b/Resources/Textures/_Mono/Structures/dark_steel_catwalk.rsi/catwalk_preview.png differ diff --git a/Resources/Textures/_Mono/Structures/dark_steel_catwalk.rsi/meta.json b/Resources/Textures/_Mono/Structures/dark_steel_catwalk.rsi/meta.json new file mode 100644 index 00000000000..a9e8408e66e --- /dev/null +++ b/Resources/Textures/_Mono/Structures/dark_steel_catwalk.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 2, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from SS13 Shiptest. Recolored to match dark steel tiles.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "catwalk_preview" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Mono/Structures/steel_catwalk.rsi/catwalk_preview.png b/Resources/Textures/_Mono/Structures/steel_catwalk.rsi/catwalk_preview.png new file mode 100644 index 00000000000..825c9cca97f Binary files /dev/null and b/Resources/Textures/_Mono/Structures/steel_catwalk.rsi/catwalk_preview.png differ diff --git a/Resources/Textures/_Mono/Structures/steel_catwalk.rsi/meta.json b/Resources/Textures/_Mono/Structures/steel_catwalk.rsi/meta.json new file mode 100644 index 00000000000..04c321cd8b8 --- /dev/null +++ b/Resources/Textures/_Mono/Structures/steel_catwalk.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 2, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from SS13 Shiptest. Modified to shade match current steel tiles.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "catwalk_preview" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Mono/Structures/white_steel_catwalk.rsi/catwalk_preview.png b/Resources/Textures/_Mono/Structures/white_steel_catwalk.rsi/catwalk_preview.png new file mode 100644 index 00000000000..5adb047b8ae Binary files /dev/null and b/Resources/Textures/_Mono/Structures/white_steel_catwalk.rsi/catwalk_preview.png differ diff --git a/Resources/Textures/_Mono/Structures/white_steel_catwalk.rsi/meta.json b/Resources/Textures/_Mono/Structures/white_steel_catwalk.rsi/meta.json new file mode 100644 index 00000000000..78b24371d00 --- /dev/null +++ b/Resources/Textures/_Mono/Structures/white_steel_catwalk.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 2, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from SS13 Shiptest. Modified to shade match current white steel tiles.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "catwalk_preview" + } + ] +} \ No newline at end of file