From dce537df071f899f8419e512bd38991ee2a39771 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 17 Sep 2024 19:05:38 +0300 Subject: [PATCH 001/161] fix Tech anomaly loud sounds and superfast flickering (#32245) Update TechAnomalySystem.cs --- Content.Server/Anomaly/Effects/TechAnomalySystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs index 1b2849f1d77e..3e4d101f4fdf 100644 --- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs @@ -37,7 +37,7 @@ public override void Update(float frameTime) if (_timing.CurTime < tech.NextTimer) continue; - tech.NextTimer += TimeSpan.FromSeconds(tech.TimerFrequency * anom.Stability); + tech.NextTimer += TimeSpan.FromSeconds(tech.TimerFrequency); _signal.InvokePort(uid, tech.TimerPort); } From 9afc786573fa1e9a7077eac17aeb0f00c4000cad Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Sep 2024 16:06:45 +0000 Subject: [PATCH 002/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cc6d0ca3e05e..edca864463e6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Shotgun loading doafter now does something - type: Fix - id: 6888 - time: '2024-07-09T04:23:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29827 - author: slarticodefast changes: - message: The construction menu and building preview now show the correct passive @@ -3918,3 +3911,10 @@ id: 7387 time: '2024-09-17T09:49:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31876 +- author: TheShuEd + changes: + - message: fix Tech anomaly loud sounds and superfast flickering + type: Fix + id: 7388 + time: '2024-09-17T16:05:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32245 From 337af483ca0922050459dcd8e8955c2775387526 Mon Sep 17 00:00:00 2001 From: drakewill-CRL <46307022+drakewill-CRL@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:45:42 -0400 Subject: [PATCH 003/161] Fix plant mutations carrying over to other plants and future rounds (#32257) Lists are a reference type, so each component should get a new one, not point at the previous one. Co-authored-by: PraxisMapper --- Content.Server/Botany/SeedPrototype.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Server/Botany/SeedPrototype.cs b/Content.Server/Botany/SeedPrototype.cs index 7a3e08883ded..5608338f22e8 100644 --- a/Content.Server/Botany/SeedPrototype.cs +++ b/Content.Server/Botany/SeedPrototype.cs @@ -291,12 +291,13 @@ public SeedData Clone() CanScream = CanScream, TurnIntoKudzu = TurnIntoKudzu, SplatPrototype = SplatPrototype, - Mutations = Mutations, + Mutations = new List(), // Newly cloned seed is unique. No need to unnecessarily clone if repeatedly modified. Unique = true, }; + newSeed.Mutations.AddRange(Mutations); return newSeed; } From 60887dd2e5c6e665503cbf1784ae3bb0a3289b05 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Sep 2024 19:46:48 +0000 Subject: [PATCH 004/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index edca864463e6..445dae8c988b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: The construction menu and building preview now show the correct passive - vent sprite. - type: Fix - id: 6889 - time: '2024-07-09T13:39:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29820 - author: Cojoke-dot changes: - message: Pacifists can now use foam weaponry @@ -3918,3 +3910,10 @@ id: 7388 time: '2024-09-17T16:05:38.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32245 +- author: drakewill-CRL + changes: + - message: Fixed plant mutations carrying over to other plants and future rounds. + type: Fix + id: 7389 + time: '2024-09-17T19:45:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32257 From 6fc4e9682c8c4e38a38cfa03bd04fe7e5b5c3e28 Mon Sep 17 00:00:00 2001 From: Moomoobeef <62638182+Moomoobeef@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:09:55 -0700 Subject: [PATCH 005/161] Added a number of new and very nerdy names for the AI (#31951) * added many new names for AIs * fixed mistakes * removed Intel and AMD trademarks. Rip AI named Pentium. --- Resources/Prototypes/Datasets/Names/ai.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Resources/Prototypes/Datasets/Names/ai.yml b/Resources/Prototypes/Datasets/Names/ai.yml index 1d320c3f52fc..539ef4e3fad8 100644 --- a/Resources/Prototypes/Datasets/Names/ai.yml +++ b/Resources/Prototypes/Datasets/Names/ai.yml @@ -2,8 +2,11 @@ id: names_ai values: - 16-20 + - 512k + - 640k #ought to be enough for anybody - "790" - Adaptive Manipulator + - Adlib #named after the famous soundcard - ALICE - Allied Mastercomputer - Alpha 2 @@ -19,21 +22,28 @@ - Aniel - AOL - Asimov + - Bell 301 #the most influential modem ever, created by the bell system. It still lives on today in certain applications - Bishop - Blitz - Box + - Calculator - Cassandra - Cell - Chii - Chip + - C.R.A.I.G. + - Cray-2 #commercial supercomputer from the 70s + - CompuServe #if we're going to have AOL we may as well have some of their major competitors - Computer - Cutie - Daedalus + - DecTalk - Dee Model - Dial Up - Dorfl - Duey - Emma-2 + - ENIAC #famous early computer - Erasmus - Everything - Ez-27 @@ -47,12 +57,16 @@ - Helios - Hivebot Overmind - Huey + - iAI #a play on the fad apple spawned of putting "i" infront of your tech products name + - I.E. 6 #hell on earth (web browser) - Icarus + - Jeeves #if you don't get this one you are too young - Jinx - K.I.N.G - Klapaucius - Knight - Louie + - Manchester Mark 2 #named after the Manchester Mark 1, the successor of which was actually named the Ferranti Mark 1, rather than Manchester Mark 2 - MARK13 - Maria - Marvin @@ -64,6 +78,8 @@ - Mugsy3000 - Multivac - NCH + - NT v6.0 #A play on both NT as in NanoTrasen and NT as in windows NT, of which version 6.0 is windows vista + - Packard Bell - PTO - Project Y2K - Revelation @@ -76,10 +92,13 @@ - Shrike - Solo - Station Control Program + - AINU (AI's Not Unix) - Super 35 - Surgeon General - TWA - Terminus + - TPM 3.0 + - Turing Complete - Tidy - Ulysses - W1k1 From 870bacbcacedb7be7be95c9849470c7c4bf05e41 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 17 Sep 2024 22:11:01 +0000 Subject: [PATCH 006/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 445dae8c988b..11609a0efc96 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Pacifists can now use foam weaponry - type: Tweak - id: 6890 - time: '2024-07-09T13:46:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29835 - author: Plykiya changes: - message: You can now drop food and drinks to stop consuming it. @@ -3917,3 +3910,10 @@ id: 7389 time: '2024-09-17T19:45:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32257 +- author: Moomoobeef + changes: + - message: Added more names to the pool of names the AI can have. + type: Add + id: 7390 + time: '2024-09-17T22:09:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31951 From 61089355f047da92b8e2e19c70a26fbd73715d60 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 18 Sep 2024 01:19:34 +0300 Subject: [PATCH 007/161] Fix Anomaly infections infinity growing after curing (#32259) --- Content.Client/Anomaly/AnomalySystem.cs | 12 +++++++++++- Content.Shared/Anomaly/SharedAnomalySystem.cs | 2 ++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Content.Client/Anomaly/AnomalySystem.cs b/Content.Client/Anomaly/AnomalySystem.cs index c93f0ce94901..28c015f3021c 100644 --- a/Content.Client/Anomaly/AnomalySystem.cs +++ b/Content.Client/Anomaly/AnomalySystem.cs @@ -20,8 +20,9 @@ public override void Initialize() SubscribeLocalEvent(OnAppearanceChanged); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnAnimationComplete); - } + SubscribeLocalEvent(OnShutdown); + } private void OnStartup(EntityUid uid, AnomalyComponent component, ComponentStartup args) { _floating.FloatAnimation(uid, component.FloatingOffset, component.AnimationKey, component.AnimationTime); @@ -75,4 +76,13 @@ public override void Update(float frameTime) } } } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + if (!TryComp(ent, out var sprite)) + return; + + sprite.Scale = Vector2.One; + sprite.Color = sprite.Color.WithAlpha(1f); + } } diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index 9a0cde29988c..07beb1444d76 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -194,6 +194,8 @@ public void EndAnomaly(EntityUid uid, AnomalyComponent? component = null, bool s if (component.DeleteEntity) QueueDel(uid); + else + RemCompDeferred(uid); } /// From eca63a460393cea0fe7b6d1a24402ce9cf840b86 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 18 Sep 2024 03:40:24 +0200 Subject: [PATCH 008/161] Fix borg defib module throwing an exception (#32260) ToggleCellDraw was erroneously added to the parent prototype instead of the one that actually has a battery. --- .../Prototypes/Entities/Objects/Specific/Medical/defib.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index 7b5ba23fe331..69c106efab13 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -47,13 +47,13 @@ - type: GuideHelp guides: - Medical Doctor - - type: ToggleCellDraw - type: entity id: Defibrillator parent: [ BaseDefibrillator, PowerCellSlotMediumItem ] components: - type: MultiHandedItem + - type: ToggleCellDraw - type: PowerCellDraw useRate: 100 From 675a9197f20ee467c0fc99a03efccce47785186f Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 18 Sep 2024 04:41:24 +0300 Subject: [PATCH 009/161] Easy IconSmooth spriting (#32210) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * фыр * Update IconSmoothingTemplate README.txt --- .../IconSmoothingTemplate README.txt | 4 ++++ .../IconSmoothingTemplate.aseprite | Bin 0 -> 14094 bytes 2 files changed, 4 insertions(+) create mode 100644 Tools/SS14 Aseprite Templates/IconSmoothingTemplate README.txt create mode 100644 Tools/SS14 Aseprite Templates/IconSmoothingTemplate.aseprite diff --git a/Tools/SS14 Aseprite Templates/IconSmoothingTemplate README.txt b/Tools/SS14 Aseprite Templates/IconSmoothingTemplate README.txt new file mode 100644 index 000000000000..083e803ecd18 --- /dev/null +++ b/Tools/SS14 Aseprite Templates/IconSmoothingTemplate README.txt @@ -0,0 +1,4 @@ +This is a template that greatly simplifies working with IconSmooth sprites. + +A video on how to use it can be found at the link: +https://github.com/space-wizards/space-station-14/pull/32210 \ No newline at end of file diff --git a/Tools/SS14 Aseprite Templates/IconSmoothingTemplate.aseprite b/Tools/SS14 Aseprite Templates/IconSmoothingTemplate.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..112a1d932cadd62741abd5abceda653934e920fa GIT binary patch literal 14094 zcmeHNc~}$4wr^#;%!~_;Gwy?c=(r#vf`YQd8L#5#RYXKUgp48vMa;M$OCZhoMnzPj zBH{*75El?4AcifpiVzhvB1;4$jVuNU5JE^gNvFGR13K3?-~HqLao@Y&{T`LCI+d=| zr%s(Z=U3-+YMdPeHK&b$ppiPr6r#SNomBltv4=(s+@$(U|8etQ*os>UK{`dm;HVK4 z-$_(8G#woBvr%%W_7?-v*$eL;$vL|D`1<8LY;D)fUKC_L@8-<8VwaikBW*#;Zh78! zGC$~=lbOBE()=s?js>pwSm_k$v9K)4Fg$nB;$ti4`)#sVwQV6I>Z{8Mi%Nbw*$C%X zzKKaK_S+w~+GWRL8~64z1(~}_SZi*sbKdQ+=D<$}vive+_d3-Yji#pN^_lpKzP>w` z*g0?X*cN%@_|1&FMPdHF-K9qLoE-s{bnP~dUV#D-#p>aHyfH_;~G*511V7^G#{$H zL*603oIKL*i=M{m^hiaBOooZAU^hb3Uv<}z(?BmnVC)@oKeFQV^A3do1cg6iPQY`Q zUi1aGyVEf+)^X2tV~{XgflfWy+g+3=*@BBy`3blDWc>9_f&|P~ z&|b6o${4U&8g6pywjfWbUzzL}E`jI8#=5Jo<{8koBJ1j|rV3UDzx=U6#Ex%(Yya|E zChl3br4#;2^j7Qj7B+`-^5NBP*dDQhKAXMug-ElOVeJ*Ng{)XnW@>JNfX*hZ6XC+k_4oJvkRF+}5wTU=1{@O4C5S4^Ta%X$yEOIE0nHEiMXb&+)u zU!9gZ66NM=a}BJf>YwsSEn>G-}2b!;LQn#LqGt| zy};X?7$0`RQ%S+$^ZefR7* z0h?+rQ}1k0k>0c6zO}i_emO1$F6~|oqUS!{=o!S}H;S!$*!nR!5n$}IvUSg^D$}Tk zvuLI8Ol|ei^6Qsm(T0q7K1Ewfu=)etGosFPyI9;0(!*;B&sgO+X_9+_aqioPsn&Ln zQ?0>X{W`HDMd=-cn!~?kT^bM0_9b*~I_)CnT#|);a0)w*tk6gpnNhazjy!ogtv0-0 z|Iji*b4?90@2edXGGHE`ik^!ggwA>s zsnOnoX^K`(AJCMF!P*CiDmiK84N#fb&5sKxqp&k43wZl(E&%g2H1IOetsHC)Z_zV4 zd*>m`Ne^NRZPEvR^7XT9k&SJGeA$I>VBXljYMp|4kBQ?Z@C}oX<2~GA%T(+ncLu<# z$=3%gh;GJBa1q(^fTqtQ1V?~?u<;kWo~B!@Q|TI;cx-qh-YEJTO>U*}RA66|n3~#- z28-9J_m(v>lTbB3{9u_bR8&|npIu8DIE5ZVr}3Xjz_r)JtsZ#3)*H}ZvQq(`%V<1( zvh#ul6c?PM=Yb>bacWj_s~elclH#sSpjo8&oON;~x7nn^c(st5faGw2$1Q%K{}W&-7oh^@4K(_C^6X!ay66S`l{>2OTFQ zD+W%J@p|Bwu@QuBekH7l-GWwc4PmwZ5{MqVR~V<&TiR5VSi{v$(ZQfl}~k2+dU z5Axisr-anEd)6We{1@9`u7K2aRP2KpiY-d6uR#Fr-cJ)8fln)7y$nyqX!H;QRPfSa z3-tnI2T>$7o>>it>}4RTac7&z?+A{Er0H{=ge``Tpf9hidM_$Y%c1*%OENq8{YR%X zxnf>~%(;~3N4sdvUgDmPql7-RU#a&K@v`7#)DiI@C5Q{2d1SzBqlSArBi9A7{PMAdWj6s$#7qP&JwHUV$+-du>v~!U;oGIOM!tWXH zHe8YP&NB;OZ3-KGI&PHLg3+fHVtnPClMO+|g4eR6tI|P4r7X zE%!a=;Dx{3Xcn5hr_M=w_8n7{x=Ek04a5?z6T!Dq8l_=wh@HE{iLDpI zjhzmmlmi)84a{ENR5bTBtUh>H?=3f~bJ~~(?lk`)u$$DVw=u3mAx|Ktwt@=-3SjlU zsUmZ^xviWTFeWkZz`038t&qc*+Qk3mD8UJRgFI@DkgK?%q+h$7VBJUOYor&G;6*Hw3;XXP%YwkMv#)iz zt?*=I33yr^nxrzD0m}r-4J)Gb^)l?`h}^f`*+pzowgnQ>wLvdf+MJ0Ov0WRL+dzg? zT=W(mFgp$nwM>-~u~TVeGTJF*#YvQ@UHA|!D22!)^U}Nhs$Iyj8x8^PWv9RXSqlApRXTCXS_Bvvs;ljON8YcC}(>UkD zBBA}FV>Gvvx#wCQaa^K0-MK|<(g{TRw__M{kG9#H@Kn$d$Eeuz%z~;ZP9+$&X@=G~ z1>W^v^*WaaK2bpaFt@N?iR74)4*pY1qV`BLYvHRxU+uZ-E$;Wv_W z@Qxslv{%g-vxjyXn4WV2YttB*vGNz@dcQ);;0`Cu;}GLQ$3-d~Ty7KiV!uAFcTLZ^ zy6?9VjHUTG@3#hkZ%QJh{@YvZu3%N9c(24kY;4hcDL{-dGMlRISJW_<$h$Ua5sl4uIWkGheb;#FcbA?G=X5`3 zpef|j24wD|RhJFxb!9p4-zWsn_P_ia*i}32*b7jlC_O1wbA7gC&{=TuhYP)12qQUW zxPT^mw5I!(f_wJvV?-aG)+Xd3d$z0mUhr8~?LJv{EImc^ytEofPBH4#iDfg%uq617 z(LJ(McPb5ReQ`XSUp7_U8$Y37rwE)fTK#@TMnmaLa(9cB|LD;(K3reZmVcsU%4Cb|Sk>$OgJeZ08RWILmHmHt!%?F86NiptjYyvV3C>af2} zywSK}$AdIoJ8DNWypA!s4dFprN$87)3?p%3mt2$+Qv-XW{4nu7Wf7E&WR4T*(bA)j^d~nZp1U$WNIHxNqb_kmWgr}x6THh3zH`2F0A{(uW%|Z zFWwgf zzlMI=?jOWBzzo^9)BGdF0FVxq0SZHC^X|O?!P|cwxSdLY>nPKYoqy123_1+Lu68wT zkGm=kSyfdzTO0rL&XF^IzL|8we$lkCb7N<@zg9XhGcNo#Dt6NDI&tD(lTQEe0U^XN zAehiY7cB<{u28epE`b#kjo0A@kUev_Ijo2O2qTcoK`uJQ0u_;WObkSFtrH@}^td=D zf>e!-p=5(yivQ3goZ|GmLi485D;a*bXN#y}fP* z^zsv7c$5*u_5Z|^i4ho5jX}Sng9?vAL}(|D>ZGVnN5hL0Dkn&vKeTjgF1?@N94ag^ zj8+bMqa2SSccGwP#)h3gn<_Pyv+xgQJvf&PrEc|X{Uj$%C#|RVu!4;sWbY>_Ko=T> z@pQO+Lvfty*vM${-N6;Xa6Jvz>zJxOPGpe>%EP{eiUS9qsl!J?`9q5NA2s*s7%)>7 zoWUs_va8TZ(A)mkfFE082yNKPoDSvxjKWm*Nm--n!HDQ9{Y2v6tbK;N{%zX0(tfkW zxJUeeREu8KbUck`WH@^SYZX!%h>cPhGuf0#>=2G@$zgrOOyx(0RWxiv}e;vKY zPq!>XJ|a54?!OW5BBb7aTBYS6B=9BP6;XWlSiQn0A9Z*;^75xWW{d4JhyJK5KE0kQ zr6?OTB+>}AOsr=O8D#{0L1?3HNw08dBr=_yiBfLTo31Je3*c839>oQvmYR${EepCv z?co=Sf{AIGR{pO@X#ObJ!x=V$YVKlX7DcD)EZ@qF_dTN5TB&dmjSGC}aMO@=e%3u= z{YP0RTU>54)|I@lytezJ2kclCU%V3K7mTva9Q2k5`rW{Dp&j^Ae)P>D( z6#9PBtNTOv6qTLwv*fzG@t@3gMfIn_V}A%gUcx*$I&jEmRV7|kv*fR^;C;iw3~OdE z8vW!U!!|SQO#_j|FwXqnBQOY@AbH0QmeEBIn2do0l92~O3b6F@D7Sb zMp7X!1VvF{0(Bav--){Re_&D94l3}4pjWr#)E}kSTv6(EzzXi*6VAgA3~OoFG=}|Q z7&V5Wa(I6j-V}#Jhv9f>I7p;o>EXzDIDZ&Unuaq)Dmfa?r-xr6{OQdJ$tRZoK<$&z zlo~{JV2tA!GpJWO02lv;>tq+St#=$H%qY_l)Dbx9gvTGpJ!U}TAX5kcFmOyWnyM?P zYD(3Qg*p~@zW(dSE5?5z#!q3vwpzfe8F@5&qt~dY1Ezo5b9}|+q@MGe_S_KeiS=oD zkZ;}-%WCP=jXAXRJI)jT{btEAw_3o&Tpkt`Rx%R5S%tG^e#^{F}0!@xA@ul_1IgS3rVb|n?_>o`=>{vBBF UoOs=6@h%0vEot(c1jDqy1Eecdl>h($ literal 0 HcmV?d00001 From 974c08596b50664b419791e589c363abac7c80eb Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:43:30 +1200 Subject: [PATCH 010/161] Fix AudioSystem nullability checks for engine PR (#32233) --- Content.Client/Audio/AmbientSoundSystem.cs | 3 +++ Content.Client/Audio/ClientGlobalSoundSystem.cs | 4 ++-- Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs | 4 ++-- Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs | 2 +- Content.Client/Traits/ParacusiaSystem.cs | 2 +- Content.Client/Weather/WeatherSystem.cs | 9 +++++---- Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs | 2 +- .../Kitchen/EntitySystems/ReagentGrinderSystem.cs | 2 +- .../Mech/Equipment/EntitySystems/MechGrabberSystem.cs | 2 +- Content.Server/Salvage/SalvageSystem.Runner.cs | 4 ++-- .../Shuttles/Systems/ShuttleSystem.FasterThanLight.cs | 3 ++- 11 files changed, 21 insertions(+), 16 deletions(-) diff --git a/Content.Client/Audio/AmbientSoundSystem.cs b/Content.Client/Audio/AmbientSoundSystem.cs index ca6336b91b85..b525747aa9cd 100644 --- a/Content.Client/Audio/AmbientSoundSystem.cs +++ b/Content.Client/Audio/AmbientSoundSystem.cs @@ -306,6 +306,9 @@ private void ProcessNearbyAmbience(TransformComponent playerXform) .WithMaxDistance(comp.Range); var stream = _audio.PlayEntity(comp.Sound, Filter.Local(), uid, false, audioParams); + if (stream == null) + continue; + _playingSounds[sourceEntity] = (stream.Value.Entity, comp.Sound, key); playingCount++; diff --git a/Content.Client/Audio/ClientGlobalSoundSystem.cs b/Content.Client/Audio/ClientGlobalSoundSystem.cs index 7c77865f7415..50c3971d95ad 100644 --- a/Content.Client/Audio/ClientGlobalSoundSystem.cs +++ b/Content.Client/Audio/ClientGlobalSoundSystem.cs @@ -67,7 +67,7 @@ private void PlayAdminSound(AdminSoundEvent soundEvent) if(!_adminAudioEnabled) return; var stream = _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); - _adminAudio.Add(stream.Value.Entity); + _adminAudio.Add(stream?.Entity); } private void PlayStationEventMusic(StationEventMusicEvent soundEvent) @@ -76,7 +76,7 @@ private void PlayStationEventMusic(StationEventMusicEvent soundEvent) if(!_eventAudioEnabled || _eventAudio.ContainsKey(soundEvent.Type)) return; var stream = _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); - _eventAudio.Add(soundEvent.Type, stream.Value.Entity); + _eventAudio.Add(soundEvent.Type, stream?.Entity); } private void PlayGameSound(GameGlobalSoundEvent soundEvent) diff --git a/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs b/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs index d60c978ccf5c..bf7ab26cba25 100644 --- a/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs +++ b/Content.Client/Audio/ContentAudioSystem.AmbientMusic.cs @@ -213,9 +213,9 @@ private void UpdateAmbientMusic() false, AudioParams.Default.WithVolume(_musicProto.Sound.Params.Volume + _volumeSlider)); - _ambientMusicStream = strim.Value.Entity; + _ambientMusicStream = strim?.Entity; - if (_musicProto.FadeIn) + if (_musicProto.FadeIn && strim != null) { FadeIn(_ambientMusicStream, strim.Value.Component, AmbientMusicFadeTime); } diff --git a/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs b/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs index 92c5b7a41915..9864dbcb2a91 100644 --- a/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs +++ b/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs @@ -185,7 +185,7 @@ private void PlaySoundtrack(string soundtrackFilename) false, _lobbySoundtrackParams.WithVolume(_lobbySoundtrackParams.Volume + SharedAudioSystem.GainToVolume(_configManager.GetCVar(CCVars.LobbyMusicVolume))) ); - if (playResult.Value.Entity == default) + if (playResult == null) { _sawmill.Warning( $"Tried to play lobby soundtrack '{{Filename}}' using {nameof(SharedAudioSystem)}.{nameof(SharedAudioSystem.PlayGlobal)} but it returned default value of EntityUid!", diff --git a/Content.Client/Traits/ParacusiaSystem.cs b/Content.Client/Traits/ParacusiaSystem.cs index 3789f24cb0d0..af4d8ef278fa 100644 --- a/Content.Client/Traits/ParacusiaSystem.cs +++ b/Content.Client/Traits/ParacusiaSystem.cs @@ -69,7 +69,7 @@ private void PlayParacusiaSounds(EntityUid uid) var newCoords = Transform(uid).Coordinates.Offset(randomOffset); // Play the sound - paracusia.Stream = _audio.PlayStatic(paracusia.Sounds, uid, newCoords).Value.Entity; + paracusia.Stream = _audio.PlayStatic(paracusia.Sounds, uid, newCoords)?.Entity; } } diff --git a/Content.Client/Weather/WeatherSystem.cs b/Content.Client/Weather/WeatherSystem.cs index a0e8a44f40be..975831392cb7 100644 --- a/Content.Client/Weather/WeatherSystem.cs +++ b/Content.Client/Weather/WeatherSystem.cs @@ -47,10 +47,11 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype if (!Timing.IsFirstTimePredicted || weatherProto.Sound == null) return; - weather.Stream ??= _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true).Value.Entity; + weather.Stream ??= _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true)?.Entity; + + if (!TryComp(weather.Stream, out AudioComponent? comp)) + return; - var stream = weather.Stream.Value; - var comp = Comp(stream); var occlusion = 0f; // Work out tiles nearby to determine volume. @@ -115,7 +116,7 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype var alpha = GetPercent(weather, uid); alpha *= SharedAudioSystem.VolumeToGain(weatherProto.Sound.Params.Volume); - _audio.SetGain(stream, alpha, comp); + _audio.SetGain(weather.Stream, alpha, comp); comp.Occlusion = occlusion; } diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index 9f43f760185f..1ac02ac88258 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -112,7 +112,7 @@ private void OnCookStart(Entity ent, ref ComponentStar SetAppearance(ent.Owner, MicrowaveVisualState.Cooking, microwaveComponent); microwaveComponent.PlayingStream = - _audio.PlayPvs(microwaveComponent.LoopingSound, ent, AudioParams.Default.WithLoop(true).WithMaxDistance(5)).Value.Entity; + _audio.PlayPvs(microwaveComponent.LoopingSound, ent, AudioParams.Default.WithLoop(true).WithMaxDistance(5))?.Entity; } private void OnCookStop(Entity ent, ref ComponentShutdown args) diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 71536ddf8ebe..12c5a30a4b29 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -305,7 +305,7 @@ private void DoWork(EntityUid uid, ReagentGrinderComponent reagentGrinder, Grind active.Program = program; reagentGrinder.AudioStream = _audioSystem.PlayPvs(sound, uid, - AudioParams.Default.WithPitchScale(1 / reagentGrinder.WorkTimeMultiplier)).Value.Entity; //slightly higher pitched + AudioParams.Default.WithPitchScale(1 / reagentGrinder.WorkTimeMultiplier))?.Entity; //slightly higher pitched _userInterfaceSystem.ServerSendUiMessage(uid, ReagentGrinderUiKey.Key, new ReagentGrinderWorkStartedMessage(program)); } diff --git a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs index aa28a8063c0d..08120f5c296f 100644 --- a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs +++ b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs @@ -155,7 +155,7 @@ private void OnInteract(EntityUid uid, MechGrabberComponent component, UserActiv return; args.Handled = true; - component.AudioStream = _audio.PlayPvs(component.GrabSound, uid).Value.Entity; + component.AudioStream = _audio.PlayPvs(component.GrabSound, uid)?.Entity; var doAfterArgs = new DoAfterArgs(EntityManager, args.User, component.GrabDelay, new GrabberDoAfterEvent(), uid, target: target, used: uid) { BreakOnMove = true diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 23a575413ed5..921d96670941 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -154,8 +154,8 @@ private void UpdateRunner() } else if (comp.Stream == null && remaining < audioLength) { - var audio = _audio.PlayPvs(comp.Sound, uid).Value; - comp.Stream = audio.Entity; + var audio = _audio.PlayPvs(comp.Sound, uid); + comp.Stream = audio?.Entity; _audio.SetMapAudio(audio); comp.Stage = ExpeditionStage.MusicCountdown; Dirty(uid, comp); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index e544c1538d15..ce6a914847f9 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -397,7 +397,8 @@ private void UpdateFTLStarting(Entity entity) new EntityCoordinates(fromMapUid.Value, _mapSystem.GetGridPosition(entity.Owner)), true, startupAudio.Params); _audio.SetPlaybackPosition(clippedAudio, entity.Comp1.StartupTime); - clippedAudio.Value.Component.Flags |= AudioFlags.NoOcclusion; + if (clippedAudio != null) + clippedAudio.Value.Component.Flags |= AudioFlags.NoOcclusion; } // Offset the start by buffer range just to avoid overlap. From 2bceaad7854a423836e81c7b78985de1b98e9b8f Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Wed, 18 Sep 2024 04:49:37 +0300 Subject: [PATCH 011/161] Use TurfSystem.IsTileBlocked instead of TurfHelpers (#32174) * Use TurfSystem.IsTileBlocked instead of TurfHelpers * ! --- .../Engineering/EntitySystems/SpawnAfterInteractSystem.cs | 4 +++- Content.Server/Respawn/SpecialRespawnSystem.cs | 7 +++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs index 8391e8faada5..407f877515aa 100644 --- a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs +++ b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.DoAfter; using Content.Shared.Interaction; using Content.Shared.Maps; +using Content.Shared.Physics; using Content.Shared.Stacks; using JetBrains.Annotations; using Robust.Shared.Map.Components; @@ -15,6 +16,7 @@ public sealed class SpawnAfterInteractSystem : EntitySystem { [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly StackSystem _stackSystem = default!; + [Dependency] private readonly TurfSystem _turfSystem = default!; public override void Initialize() { @@ -36,7 +38,7 @@ private async void HandleAfterInteract(EntityUid uid, SpawnAfterInteractComponen bool IsTileClear() { - return tileRef.Tile.IsEmpty == false && !tileRef.IsBlockedTurf(true); + return tileRef.Tile.IsEmpty == false && !_turfSystem.IsTileBlocked(tileRef, CollisionGroup.MobMask); } if (!IsTileClear()) diff --git a/Content.Server/Respawn/SpecialRespawnSystem.cs b/Content.Server/Respawn/SpecialRespawnSystem.cs index 8c86449008ab..6d398db259db 100644 --- a/Content.Server/Respawn/SpecialRespawnSystem.cs +++ b/Content.Server/Respawn/SpecialRespawnSystem.cs @@ -2,16 +2,15 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Chat.Managers; using Content.Server.GameTicking; -using Content.Shared.Station.Components; -using Content.Server.Station.Systems; using Content.Shared.Database; using Content.Shared.Maps; using Content.Shared.Physics; using Content.Shared.Respawn; +using Content.Shared.Station.Components; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Random; using Robust.Shared.Prototypes; +using Robust.Shared.Random; namespace Content.Server.Respawn; @@ -179,7 +178,7 @@ public bool TryFindRandomTile(EntityUid targetGrid, EntityUid targetMap, int max foreach (var newTileRef in grid.GetTilesIntersecting(circle)) { - if (newTileRef.IsSpace(_tileDefinitionManager) || newTileRef.IsBlockedTurf(true) || !_atmosphere.IsTileMixtureProbablySafe(targetGrid, targetMap, mapTarget)) + if (newTileRef.IsSpace(_tileDefinitionManager) || _turf.IsTileBlocked(newTileRef, CollisionGroup.MobMask) || !_atmosphere.IsTileMixtureProbablySafe(targetGrid, targetMap, mapTarget)) continue; found = true; From 54e4cfecfe44109b0c5333d3044ded6199105459 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:32:16 +1000 Subject: [PATCH 012/161] Update submodule to 235.0.0 (#32265) --- Resources/Prototypes/Entities/Mobs/Player/silicon.yml | 6 +++--- RobustToolbox | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 62dbf3ee1065..493cfdf6cb63 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -2,7 +2,7 @@ - type: entity id: AiHeld description: Components added / removed from an entity that gets inserted into an AI core. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: IntrinsicRadioReceiver - type: IntrinsicRadioTransmitter @@ -341,7 +341,7 @@ - type: entity id: StationAiBrain parent: PositronicBrain - noSpawn: true + categories: [ HideSpawnMenu ] suffix: DO NOT MAP components: - type: Sprite @@ -382,7 +382,7 @@ id: StationAiHolo name: AI eye description: The AI's viewer. - noSpawn: true + categories: [ HideSpawnMenu ] suffix: DO NOT MAP components: - type: NoFTL diff --git a/RobustToolbox b/RobustToolbox index 0f60ad9018f5..c86cb0b7951c 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 0f60ad9018f54f9b49da1810bbffa01e2c5975f7 +Subproject commit c86cb0b7951cc4a662c7292138c5f45d868c5f58 From a1237910c5e5919b2a3742b6628ff45d3a9982a0 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:37:35 +0200 Subject: [PATCH 013/161] Fix bagel vox box (#32208) Fix vox box on bagel --- Resources/Maps/bagel.yml | 48 ++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 7505068a50a1..d661e097c364 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -154188,12 +154188,36 @@ entities: parent: 60 - proto: WindoorSecure entities: + - uid: 2538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3481: + - DoorStatus: DoorBolt - uid: 3269 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-46.5 parent: 60 + - uid: 3481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2538: + - DoorStatus: DoorBolt - uid: 3911 components: - type: Transform @@ -154249,30 +154273,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-9.5 parent: 60 - - uid: 2538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-13.5 - parent: 60 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 3481: - - DoorStatus: DoorBolt - - uid: 3481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 60 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2538: - - DoorStatus: DoorBolt - uid: 12188 components: - type: Transform From 8322b1c2d15640a2c81c4746200e857c056005d3 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 18 Sep 2024 15:28:09 +0200 Subject: [PATCH 014/161] New publish workflow for Robust.Cdn (#32222) This uses multiple API requests to directly send the publish to the CDN server, no more GitHub artifacts. Faster, less moving parts. Needs Robust.Cdn 2.2.0 --- .github/workflows/publish.yml | 18 +------- Tools/publish_multi_request.py | 78 ++++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 17 deletions(-) create mode 100644 Tools/publish_multi_request.py diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 16cb5017d6a1..d08ae1350208 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,21 +41,10 @@ jobs: - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release - - name: Upload build artifact - id: artifact-upload-step - uses: actions/upload-artifact@v4 - with: - name: build - path: release/*.zip - compression-level: 0 - retention-days: 0 - - name: Publish version - run: Tools/publish_github_artifact.py + run: Tools/publish_multi_request.py env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} - ARTIFACT_ID: ${{ steps.artifact-upload-step.outputs.artifact-id }} GITHUB_REPOSITORY: ${{ vars.GITHUB_REPOSITORY }} - name: Publish changelog (Discord) @@ -68,8 +57,3 @@ jobs: run: Tools/actions_changelog_rss.py env: CHANGELOG_RSS_KEY: ${{ secrets.CHANGELOG_RSS_KEY }} - - - uses: geekyeggo/delete-artifact@v5 - if: always() - with: - name: build diff --git a/Tools/publish_multi_request.py b/Tools/publish_multi_request.py new file mode 100644 index 000000000000..a63359afd6c4 --- /dev/null +++ b/Tools/publish_multi_request.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python3 + +import requests +import os +import subprocess +from typing import Iterable + +PUBLISH_TOKEN = os.environ["PUBLISH_TOKEN"] +VERSION = os.environ["GITHUB_SHA"] + +RELEASE_DIR = "release" + +# +# CONFIGURATION PARAMETERS +# Forks should change these to publish to their own infrastructure. +# +ROBUST_CDN_URL = "https://wizards.cdn.spacestation14.com/" +FORK_ID = "wizards" + +def main(): + session = requests.Session() + session.headers = { + "Authorization": f"Bearer {PUBLISH_TOKEN}", + } + + print(f"Starting publish on Robust.Cdn for version {VERSION}") + + data = { + "version": VERSION, + "engineVersion": get_engine_version(), + } + headers = { + "Content-Type": "application/json" + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/start", json=data, headers=headers) + resp.raise_for_status() + print("Publish successfully started, adding files...") + + for file in get_files_to_publish(): + print(f"Publishing {file}") + with open(file, "rb") as f: + headers = { + "Content-Type": "application/octet-stream", + "Robust-Cdn-Publish-File": os.path.basename(file), + "Robust-Cdn-Publish-Version": VERSION + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/file", data=f, headers=headers) + + resp.raise_for_status() + + print("Successfully pushed files, finishing publish...") + + data = { + "version": VERSION + } + headers = { + "Content-Type": "application/json" + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/finish", json=data, headers=headers) + resp.raise_for_status() + + print("SUCCESS!") + + +def get_files_to_publish() -> Iterable[str]: + for file in os.listdir(RELEASE_DIR): + yield os.path.join(RELEASE_DIR, file) + + +def get_engine_version() -> str: + proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") + tag = proc.stdout.strip() + assert tag.startswith("v") + return tag[1:] # Cut off v prefix. + + +if __name__ == '__main__': + main() From b55366cf9be9f23ec8d8f17c590cb62c57f92d54 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 18 Sep 2024 16:09:25 +0200 Subject: [PATCH 015/161] chmod +x publish_multi_request.py (#32274) Fuck. --- Tools/publish_multi_request.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 Tools/publish_multi_request.py diff --git a/Tools/publish_multi_request.py b/Tools/publish_multi_request.py old mode 100644 new mode 100755 From 489938cdb14755b93181aa0de8899363e075c5d3 Mon Sep 17 00:00:00 2001 From: AsnDen <75905158+AsnDen@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:54:00 +0300 Subject: [PATCH 016/161] ghost-role-information-silicon-rules (#32275) changes missing ghost-role-information-rules-default-silicon to ghost-role-information-silicon-rules --- Resources/Prototypes/Entities/Mobs/Player/silicon.yml | 4 ++-- .../Devices/Syndicate_Gadgets/reinforcement_teleporter.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 493cfdf6cb63..15878a4017d0 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -462,7 +462,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-assault-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostTakeoverAvailable @@ -495,7 +495,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-saboteur-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml index 1a7a02e73372..71f98d81c96d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -100,7 +100,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-assault-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostRoleMobSpawner From ed83593948ef9863e0be8c5b900d1a116c4854ab Mon Sep 17 00:00:00 2001 From: Calecute <34964590+Calecute@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:15:34 -0300 Subject: [PATCH 017/161] Fix guidebook cakebatter recipe (#32276) Bugfix: Add 5 milk to cake batter recipe in the guidebook to correctly reflect new recipe --- Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 3eb9c2ca2f2b..7e5e20139b09 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -13,7 +13,7 @@ WARNING: This is not an automatically generated list, things here may become out - Tortila Dough = 15 Cornmeal, 10 Water - Tofu = 5 Enzyme (Catalyst), 30 Soy Milk - Pie Dough = 2 Eggs (12u), 15 Flour, 5 Table Salt -- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar +- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar, 5 Milk - Vegan Cake Batter = 15 Soy Milk, 15 Flour, 5 Sugar - Butter = 30 Milk, 5 Table Salt (Catalyst) - Cheese Wheel = 5 Enzyme (Catalyst), 40 Milk From 697f4f5ef94696f54a527103a8ee001d73161afc Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Sep 2024 15:16:42 +0000 Subject: [PATCH 018/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 11609a0efc96..ed88f5c696d2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now drop food and drinks to stop consuming it. - type: Fix - id: 6891 - time: '2024-07-09T23:12:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29854 - author: Boaz1111 changes: - message: Guitars can now be worn in the suit storage slot @@ -3917,3 +3910,10 @@ id: 7390 time: '2024-09-17T22:09:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31951 +- author: Calecute + changes: + - message: Corrected cake batter recipe in guidebook + type: Fix + id: 7391 + time: '2024-09-18T15:15:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32276 From 9fad1ab14ece4ea2139dedb9a185532b8ed520e1 Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:10:53 +0300 Subject: [PATCH 019/161] Wires ui tooltip localization (#32284) * Wires ui tooltip localization * Corrections after review --- Content.Client/Wires/UI/WiresMenu.cs | 9 +-------- .../Locale/en-US/wires/components/wires-component.ftl | 6 ++++++ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Content.Client/Wires/UI/WiresMenu.cs b/Content.Client/Wires/UI/WiresMenu.cs index eccc548297cd..77fc3accceb3 100644 --- a/Content.Client/Wires/UI/WiresMenu.cs +++ b/Content.Client/Wires/UI/WiresMenu.cs @@ -584,17 +584,10 @@ public StatusLight(StatusLightData data, IResourceCache resourceCache) private sealed class HelpPopup : Popup { - private const string Text = "Click on the gold contacts with a multitool in hand to pulse their wire.\n" + - "Click on the wires with a pair of wirecutters in hand to cut/mend them.\n\n" + - "The lights at the top show the state of the machine, " + - "messing with wires will probably do stuff to them.\n" + - "Wire layouts are different each round, " + - "but consistent between machines of the same type."; - public HelpPopup() { var label = new RichTextLabel(); - label.SetMessage(Text); + label.SetMessage(Loc.GetString("wires-menu-help-popup")); AddChild(new PanelContainer { StyleClasses = {ExamineSystem.StyleClassEntityTooltip}, diff --git a/Resources/Locale/en-US/wires/components/wires-component.ftl b/Resources/Locale/en-US/wires/components/wires-component.ftl index be27c270bb4d..e98e5c21cab2 100644 --- a/Resources/Locale/en-US/wires/components/wires-component.ftl +++ b/Resources/Locale/en-US/wires/components/wires-component.ftl @@ -10,3 +10,9 @@ wires-component-ui-on-receive-message-cannot-mend-uncut-wire = You can't mend a wires-menu-name-label = Wires wires-menu-dead-beef-text = DEAD-BEEF +wires-menu-help-popup = + Click on the gold contacts with a multitool in hand to pulse their wire. + Click on the wires with a pair of wirecutters in hand to cut/mend them. + + The lights at the top show the state of the machine, messing with wires will probably do stuff to them. + Wire layouts are different each round, but consistent between machines of the same type. From 6d4177567eb921f30ffad8588a77068dc0bb96ca Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:16:47 +0300 Subject: [PATCH 020/161] Localization of the shuttle call sender (#32286) --- Content.Server/RoundEnd/RoundEndSystem.cs | 6 +++--- Resources/Locale/en-US/round-end/round-end-system.ftl | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 82bdb78816f0..bb5934f3f08d 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -125,7 +125,7 @@ public bool IsRoundEndRequested() return _countdownTokenSource != null; } - public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") + public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "round-end-system-shuttle-sender-announcement") { var duration = DefaultCountdownDuration; @@ -143,7 +143,7 @@ public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = tr RequestRoundEnd(duration, requester, checkCooldown, text, name); } - public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") + public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "round-end-system-shuttle-sender-announcement") { if (_gameTicker.RunLevel != GameRunLevel.InRound) return; @@ -183,7 +183,7 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, _chatSystem.DispatchGlobalAnnouncement(Loc.GetString(text, ("time", time), ("units", Loc.GetString(units))), - name, + Loc.GetString(name), false, null, Color.Gold); diff --git a/Resources/Locale/en-US/round-end/round-end-system.ftl b/Resources/Locale/en-US/round-end/round-end-system.ftl index f86851506bc5..30069f717139 100644 --- a/Resources/Locale/en-US/round-end/round-end-system.ftl +++ b/Resources/Locale/en-US/round-end/round-end-system.ftl @@ -4,6 +4,7 @@ round-end-system-shuttle-called-announcement = An emergency shuttle has been sen round-end-system-shuttle-already-called-announcement = An emergency shuttle has already been sent. round-end-system-shuttle-auto-called-announcement = An automatic crew shift change shuttle has been sent. ETA: {$time} {$units}. Recall the shuttle to extend the shift. round-end-system-shuttle-recalled-announcement = The emergency shuttle has been recalled. +round-end-system-shuttle-sender-announcement = Station round-end-system-round-restart-eta-announcement = Restarting the round in {$time} {$units}... eta-units-minutes = minutes From 55b7e3ce0e5216e06db64f6d4c4408a20f48c8c3 Mon Sep 17 00:00:00 2001 From: Skarletto <122584947+Skarletto@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:51:11 -0400 Subject: [PATCH 021/161] change jamjar glasses description (#32215) nerds only please --- Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 368cefe9cb4e..467bbf873f23 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -100,7 +100,7 @@ parent: ClothingEyesBase id: ClothingEyesGlassesJamjar name: jamjar glasses - description: Also known as Virginity Protectors. + description: These retro glasses remind you of a simpler time. components: - type: Sprite sprite: Clothing/Eyes/Glasses/jamjar.rsi From 58119bc3f769cad480b3daaf3dbc5335d8a9c1a9 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:58:58 -0700 Subject: [PATCH 022/161] Fix recycler eating materials (Salvage mains rejoice) (#32144) first commit --- Resources/Prototypes/Entities/Structures/Machines/recycler.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml index 8bbbad6c0d19..f62923fe2af3 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml @@ -85,6 +85,7 @@ volume: -3 cutOffSound: false - type: MaterialStorage + insertOnInteract: false - type: Conveyor - type: Rotatable - type: Repairable From 64aab9e41dbef39cd1100dc5eca02e6167fc6572 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Sep 2024 22:00:05 +0000 Subject: [PATCH 023/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ed88f5c696d2..9879e7f9a325 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Boaz1111 - changes: - - message: Guitars can now be worn in the suit storage slot - type: Add - id: 6892 - time: '2024-07-09T23:28:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29048 - author: Winkarst-cpu changes: - message: Fixed popup spam when trying to open borg's UI while the borg is locked. @@ -3917,3 +3910,10 @@ id: 7391 time: '2024-09-18T15:15:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32276 +- author: Beck Thompson + changes: + - message: Recycler no longer allows basic materials to be inserted into it. + type: Fix + id: 7392 + time: '2024-09-18T21:58:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32144 From ba24ebfb4f9e887d08b885424241e3365ff43104 Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Thu, 19 Sep 2024 01:21:53 +0300 Subject: [PATCH 024/161] Localization cooldown/remaining string in alerts (#32282) Cooldown localization --- Content.Client/Actions/UI/ActionAlertTooltip.cs | 2 +- Resources/Locale/en-US/actions/ui/actionslot.ftl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/Actions/UI/ActionAlertTooltip.cs b/Content.Client/Actions/UI/ActionAlertTooltip.cs index f805f6643d2f..2425cdefb916 100644 --- a/Content.Client/Actions/UI/ActionAlertTooltip.cs +++ b/Content.Client/Actions/UI/ActionAlertTooltip.cs @@ -101,7 +101,7 @@ protected override void FrameUpdate(FrameEventArgs args) { var duration = Cooldown.Value.End - Cooldown.Value.Start; - if (!FormattedMessage.TryFromMarkup($"[color=#a10505]{(int) duration.TotalSeconds} sec cooldown ({(int) timeLeft.TotalSeconds + 1} sec remaining)[/color]", out var markup)) + if (!FormattedMessage.TryFromMarkup(Loc.GetString("ui-actionslot-duration", ("duration", (int)duration.TotalSeconds), ("timeLeft", (int)timeLeft.TotalSeconds + 1)), out var markup)) return; _cooldownLabel.SetMessage(markup); diff --git a/Resources/Locale/en-US/actions/ui/actionslot.ftl b/Resources/Locale/en-US/actions/ui/actionslot.ftl index 332054f10e9d..c0deaad248c2 100644 --- a/Resources/Locale/en-US/actions/ui/actionslot.ftl +++ b/Resources/Locale/en-US/actions/ui/actionslot.ftl @@ -1,2 +1,2 @@ ui-actionslot-charges = Uses left: {$charges} - +ui-actionslot-duration = [color=#a10505] {$duration} sec cooldown ({$timeLeft} sec remaining)[/color] From 8a924c84ae57dfe18fe0c27f995b4ea16be6a527 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:36:44 +0000 Subject: [PATCH 025/161] add interaction success/failure events (#32216) * add interaction success/failure events * pro --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Interaction/Events/InteractionFailureEvent.cs | 7 +++++++ .../Interaction/Events/InteractionSuccessEvent.cs | 7 +++++++ Content.Shared/Interaction/InteractionPopupSystem.cs | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 Content.Shared/Interaction/Events/InteractionFailureEvent.cs create mode 100644 Content.Shared/Interaction/Events/InteractionSuccessEvent.cs diff --git a/Content.Shared/Interaction/Events/InteractionFailureEvent.cs b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs new file mode 100644 index 000000000000..a820048104d0 --- /dev/null +++ b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Interaction.Events; + +/// +/// Raised on the target when failing to pet/hug something. +/// +[ByRefEvent] +public readonly record struct InteractionFailureEvent(EntityUid User); diff --git a/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs new file mode 100644 index 000000000000..da4f9e43d7d2 --- /dev/null +++ b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Interaction.Events; + +/// +/// Raised on the target when successfully petting/hugging something. +/// +[ByRefEvent] +public readonly record struct InteractionSuccessEvent(EntityUid User); diff --git a/Content.Shared/Interaction/InteractionPopupSystem.cs b/Content.Shared/Interaction/InteractionPopupSystem.cs index 2a742d4211b6..20c079dfd8c8 100644 --- a/Content.Shared/Interaction/InteractionPopupSystem.cs +++ b/Content.Shared/Interaction/InteractionPopupSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Bed.Sleep; using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Components; +using Content.Shared.Interaction.Events; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Popups; @@ -100,6 +101,9 @@ private void SharedInteract( if (component.InteractSuccessSpawn != null) Spawn(component.InteractSuccessSpawn, _transform.GetMapCoordinates(uid)); + + var ev = new InteractionSuccessEvent(user); + RaiseLocalEvent(target, ref ev); } else { @@ -111,6 +115,9 @@ private void SharedInteract( if (component.InteractFailureSpawn != null) Spawn(component.InteractFailureSpawn, _transform.GetMapCoordinates(uid)); + + var ev = new InteractionFailureEvent(user); + RaiseLocalEvent(target, ref ev); } if (!string.IsNullOrEmpty(component.MessagePerceivedByOthers)) From 2c9a3020ab866510f2ae19a16707f27e1e239288 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 18 Sep 2024 23:00:48 +0000 Subject: [PATCH 026/161] make epinephrine adrenaline (#32076) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/Reagents/medicine.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 4dcef67f77dd..105ae1104871 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -359,6 +359,10 @@ key: KnockedDown time: 0.75 type: Remove + - !type:GenericStatusEffect + key: Adrenaline # Guess what epinephrine is... + component: IgnoreSlowOnDamage + time: 5 # lingers less than hivemind reagent to give it a niche - type: reagent id: Hyronalin From a8686b359779c3e2b22318a2a9234b02b489d9aa Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Sep 2024 23:01:54 +0000 Subject: [PATCH 027/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9879e7f9a325..58776aa93c48 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Fixed popup spam when trying to open borg's UI while the borg is locked. - type: Fix - id: 6893 - time: '2024-07-09T23:48:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29861 - author: Lokachop changes: - message: Scarves now count as warm clothing for the warm clothing cargo bounty. @@ -3917,3 +3910,10 @@ id: 7392 time: '2024-09-18T21:58:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32144 +- author: deltanedas + changes: + - message: Epinephrine now adds Adrenaline, because it is. + type: Tweak + id: 7393 + time: '2024-09-18T23:00:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32076 From d4a5bc8d6be87a90ee70db4530efa1a0864f177b Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:55:26 -0700 Subject: [PATCH 028/161] Fix unbuckling others when clicking on the strap entity (#29998) * Add failing unbuckle InteractHand test * Skip trybuckle if strap doesn't have space * Unbuckle others not just user * Fix test failing due to delay * Change to raise event instead of calling OnInteractHand * Add test for buckle and unbuckle on InteractHand * Add tick delay * Remove unneeded tick delay and clean up * Comment code * Cleanup * Swap to fastest checks first * Fix reading empty sequence when there are no buckled entities --- .../Tests/Buckle/BuckleTest.Interact.cs | 108 ++++++++++++++++++ .../Tests/Buckle/BuckleTest.cs | 2 +- .../Buckle/SharedBuckleSystem.Interaction.cs | 26 ++++- 3 files changed, 129 insertions(+), 7 deletions(-) create mode 100644 Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs diff --git a/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs b/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs new file mode 100644 index 000000000000..d9cce764ab7d --- /dev/null +++ b/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs @@ -0,0 +1,108 @@ +using Content.Shared.Buckle; +using Content.Shared.Buckle.Components; +using Content.Shared.Interaction; +using Robust.Server.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests.Buckle; + +public sealed partial class BuckleTest +{ + [Test] + public async Task BuckleInteractUnbuckleOther() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.ResolveDependency(); + var buckleSystem = entMan.System(); + + EntityUid user = default; + EntityUid victim = default; + EntityUid chair = default; + BuckleComponent buckle = null; + StrapComponent strap = null; + + await server.WaitAssertion(() => + { + user = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + victim = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + chair = entMan.SpawnEntity(StrapDummyId, MapCoordinates.Nullspace); + + Assert.That(entMan.TryGetComponent(victim, out buckle)); + Assert.That(entMan.TryGetComponent(chair, out strap)); + +#pragma warning disable RA0002 + buckle.Delay = TimeSpan.Zero; +#pragma warning restore RA0002 + + // Buckle victim to chair + Assert.That(buckleSystem.TryBuckle(victim, user, chair, buckle)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.EqualTo(chair), "Victim did not get buckled to the chair."); + Assert.That(buckle.Buckled, "Victim is not buckled."); + Assert.That(strap.BuckledEntities, Does.Contain(victim), "Chair does not have victim buckled to it."); + }); + + // InteractHand with chair to unbuckle victim + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.Null); + Assert.That(buckle.Buckled, Is.False); + Assert.That(strap.BuckledEntities, Does.Not.Contain(victim)); + }); + }); + + await pair.CleanReturnAsync(); + } + + [Test] + public async Task BuckleInteractBuckleUnbuckleSelf() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.ResolveDependency(); + + EntityUid user = default; + EntityUid chair = default; + BuckleComponent buckle = null; + StrapComponent strap = null; + + await server.WaitAssertion(() => + { + user = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + chair = entMan.SpawnEntity(StrapDummyId, MapCoordinates.Nullspace); + + Assert.That(entMan.TryGetComponent(user, out buckle)); + Assert.That(entMan.TryGetComponent(chair, out strap)); + +#pragma warning disable RA0002 + buckle.Delay = TimeSpan.Zero; +#pragma warning restore RA0002 + + // Buckle user to chair + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.EqualTo(chair), "Victim did not get buckled to the chair."); + Assert.That(buckle.Buckled, "Victim is not buckled."); + Assert.That(strap.BuckledEntities, Does.Contain(user), "Chair does not have victim buckled to it."); + }); + + // InteractHand with chair to unbuckle + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.Null); + Assert.That(buckle.Buckled, Is.False); + Assert.That(strap.BuckledEntities, Does.Not.Contain(user)); + }); + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs index 156f42aac333..1b31fe38c289 100644 --- a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs +++ b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs @@ -15,7 +15,7 @@ namespace Content.IntegrationTests.Tests.Buckle [TestFixture] [TestOf(typeof(BuckleComponent))] [TestOf(typeof(StrapComponent))] - public sealed class BuckleTest + public sealed partial class BuckleTest { private const string BuckleDummyId = "BuckleDummy"; private const string StrapDummyId = "StrapDummy"; diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs index 7677e800fe96..1a15e52a3c43 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs @@ -1,5 +1,5 @@ +using System.Linq; using Content.Shared.Buckle.Components; -using Content.Shared.Cuffs.Components; using Content.Shared.DoAfter; using Content.Shared.DragDrop; using Content.Shared.IdentityManagement; @@ -84,15 +84,29 @@ private void OnStrapInteractHand(EntityUid uid, StrapComponent component, Intera if (!TryComp(args.User, out BuckleComponent? buckle)) return; - if (buckle.BuckledTo == null && component.BuckleOnInteractHand) + // Buckle self + if (buckle.BuckledTo == null && component.BuckleOnInteractHand && StrapHasSpace(uid, buckle, component)) + { TryBuckle(args.User, args.User, uid, buckle, popup: true); - else if (buckle.BuckledTo == uid) - TryUnbuckle(args.User, args.User, buckle, popup: true); - else + args.Handled = true; + return; + } + + // Unbuckle self + if (buckle.BuckledTo == uid && TryUnbuckle(args.User, args.User, buckle, popup: true)) + { + args.Handled = true; return; + } + + // Unbuckle others + if (component.BuckledEntities.TryFirstOrNull(out var buckled) && TryUnbuckle(buckled.Value, args.User)) + { + args.Handled = true; + return; + } // TODO BUCKLE add out bool for whether a pop-up was generated or not. - args.Handled = true; } private void OnBuckleInteractHand(Entity ent, ref InteractHandEvent args) From 7ceb2d250799474c6c627121a0cfde7bf90379d4 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:55:53 -0700 Subject: [PATCH 029/161] Add a method to get the first available ItemSlot (#29846) * Add a method to get the first available ItemSlot * Make TryInsertEmpty use TryGetAvailableSlot * Add param doc comments --- .../Containers/ItemSlot/ItemSlotsSystem.cs | 69 ++++++++++++++----- 1 file changed, 53 insertions(+), 16 deletions(-) diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index f41fa2b22d2c..f25273f40394 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -359,39 +359,76 @@ public bool TryInsertFromHand(EntityUid uid, ItemSlot slot, EntityUid user, Hand /// Useful for predicted interactions /// /// False if failed to insert item - public bool TryInsertEmpty(Entity ent, EntityUid item, EntityUid? user, bool excludeUserAudio = false) + public bool TryInsertEmpty(Entity ent, + EntityUid item, + EntityUid? user, + bool excludeUserAudio = false) { + if (!Resolve(ent, ref ent.Comp, false)) + return false; + + TryComp(user, out HandsComponent? handsComp); + + if (!TryGetAvailableSlot(ent, + item, + user == null ? null : (user.Value, handsComp), + out var itemSlot, + emptyOnly: true)) + return false; + + if (user != null && !_handsSystem.TryDrop(user.Value, item, handsComp: handsComp)) + return false; + + Insert(ent, itemSlot, item, user, excludeUserAudio: excludeUserAudio); + return true; + } + + /// + /// Tries to get any slot that the can be inserted into. + /// + /// Entity that is being inserted into. + /// Entity being inserted into . + /// Entity inserting into . + /// The ItemSlot on to insert into. + /// True only returns slots that are empty. + /// False returns any slot that is able to receive . + /// True when a slot is found. Otherwise, false. + public bool TryGetAvailableSlot(Entity ent, + EntityUid item, + Entity? userEnt, + [NotNullWhen(true)] out ItemSlot? itemSlot, + bool emptyOnly = false) + { + itemSlot = null; + + if (userEnt is { } user + && Resolve(user, ref user.Comp) + && _handsSystem.IsHolding(user, item)) + { + if (!_handsSystem.CanDrop(user, item, user.Comp)) + return false; + } + if (!Resolve(ent, ref ent.Comp, false)) return false; var slots = new List(); foreach (var slot in ent.Comp.Slots.Values) { - if (slot.ContainerSlot?.ContainedEntity != null) + if (emptyOnly && slot.ContainerSlot?.ContainedEntity != null) continue; - if (CanInsert(ent, item, user, slot)) + if (CanInsert(ent, item, userEnt, slot)) slots.Add(slot); } if (slots.Count == 0) return false; - if (user != null && _handsSystem.IsHolding(user.Value, item)) - { - if (!_handsSystem.TryDrop(user.Value, item)) - return false; - } - slots.Sort(SortEmpty); - foreach (var slot in slots) - { - if (TryInsert(ent, slot, item, user, excludeUserAudio: excludeUserAudio)) - return true; - } - - return false; + itemSlot = slots[0]; + return true; } private static int SortEmpty(ItemSlot a, ItemSlot b) From e6e166405d1008db374363d41d78459330d9f19f Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 18 Sep 2024 23:56:32 +0000 Subject: [PATCH 030/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 58776aa93c48..8190ecd8fe4f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Lokachop - changes: - - message: Scarves now count as warm clothing for the warm clothing cargo bounty. - type: Tweak - id: 6894 - time: '2024-07-10T05:26:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29779 - author: Aquif changes: - message: It is now possible to "lock" admin faxes such that they cannot be edited @@ -3917,3 +3910,11 @@ id: 7393 time: '2024-09-18T23:00:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32076 +- author: ShadowCommander + changes: + - message: Fixed clicking on chairs and beds with an entity buckled to them not + unbuckling them. + type: Fix + id: 7394 + time: '2024-09-18T23:55:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29998 From 84062da1289b760ee8714239322ae07b74e6187c Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 18 Sep 2024 23:58:10 +0000 Subject: [PATCH 031/161] let FlashArea be called from shared (#30343) * let FlashArea be called from shared * untroll --------- Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: metalgearsloth --- Content.Client/Flash/FlashOverlay.cs | 4 +++- Content.Server/Flash/FlashSystem.cs | 2 +- Content.Shared/Flash/SharedFlashSystem.cs | 13 +++++++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Content.Client/Flash/FlashOverlay.cs b/Content.Client/Flash/FlashOverlay.cs index 046be2aa6214..8e41c382dd7e 100644 --- a/Content.Client/Flash/FlashOverlay.cs +++ b/Content.Client/Flash/FlashOverlay.cs @@ -16,6 +16,7 @@ public sealed class FlashOverlay : Overlay [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IGameTiming _timing = default!; + private readonly SharedFlashSystem _flash; private readonly StatusEffectsSystem _statusSys; public override OverlaySpace Space => OverlaySpace.WorldSpace; @@ -27,6 +28,7 @@ public FlashOverlay() { IoCManager.InjectDependencies(this); _shader = _prototypeManager.Index("FlashedEffect").InstanceUnique(); + _flash = _entityManager.System(); _statusSys = _entityManager.System(); } @@ -41,7 +43,7 @@ protected override void FrameUpdate(FrameEventArgs args) || !_entityManager.TryGetComponent(playerEntity, out var status)) return; - if (!_statusSys.TryGetTime(playerEntity.Value, SharedFlashSystem.FlashedKey, out var time, status)) + if (!_statusSys.TryGetTime(playerEntity.Value, _flash.FlashedKey, out var time, status)) return; var curTime = _timing.CurTime; diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index ccb58e94f814..fb449a372cd4 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -152,7 +152,7 @@ public void Flash(EntityUid target, } } - public void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) + public override void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) { var transform = Transform(source); var mapPosition = _transform.GetMapCoordinates(transform); diff --git a/Content.Shared/Flash/SharedFlashSystem.cs b/Content.Shared/Flash/SharedFlashSystem.cs index f83f02a31058..b7788098870b 100644 --- a/Content.Shared/Flash/SharedFlashSystem.cs +++ b/Content.Shared/Flash/SharedFlashSystem.cs @@ -1,10 +1,15 @@ +using Content.Shared.Flash.Components; using Content.Shared.StatusEffect; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; -namespace Content.Shared.Flash +namespace Content.Shared.Flash; + +public abstract class SharedFlashSystem : EntitySystem { - public abstract class SharedFlashSystem : EntitySystem + public ProtoId FlashedKey = "Flashed"; + + public virtual void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) { - [ValidatePrototypeId] - public const string FlashedKey = "Flashed"; } } From 1c839da60496f4a3171c7f959a88effe4aeff5a8 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:01:40 +0000 Subject: [PATCH 032/161] move TriggerExplosion to shared (#30227) * move component to shared * add fake systems * update server explosion system and remove duplicate transform query --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Client/Explosion/ExplosionSystem.cs | 5 +-- .../Behaviors/SolutionExplosionBehavior.cs | 2 +- .../EntitySystems/ExplosionSystem.Airtight.cs | 3 +- .../EntitySystems/ExplosionSystem.CVars.cs | 4 +-- .../EntitySystems/ExplosionSystem.GridMap.cs | 2 +- .../ExplosionSystem.Processing.cs | 7 ++-- .../EntitySystems/ExplosionSystem.TileFill.cs | 4 +-- .../EntitySystems/ExplosionSystem.Visuals.cs | 3 +- .../EntitySystems/ExplosionSystem.cs | 15 +++----- .../Components/ExplosiveComponent.cs | 35 +++++++------------ .../EntitySystems/SharedExplosionSystem.cs | 25 ++++++++++--- 11 files changed, 52 insertions(+), 53 deletions(-) rename {Content.Server => Content.Shared}/Explosion/Components/ExplosiveComponent.cs (76%) diff --git a/Content.Client/Explosion/ExplosionSystem.cs b/Content.Client/Explosion/ExplosionSystem.cs index a2ed2d50e0d1..692782ded4b7 100644 --- a/Content.Client/Explosion/ExplosionSystem.cs +++ b/Content.Client/Explosion/ExplosionSystem.cs @@ -2,7 +2,4 @@ namespace Content.Client.Explosion.EntitySystems; -public sealed class ExplosionSystem : SharedExplosionSystem -{ - -} +public sealed class ExplosionSystem : SharedExplosionSystem; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs index 5166aaccabba..08c7c8f068f8 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs @@ -1,4 +1,4 @@ -using Content.Server.Explosion.Components; +using Content.Shared.Explosion.Components; using JetBrains.Annotations; namespace Content.Server.Destructible.Thresholds.Behaviors diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs index 4b59c8f1c48f..6fa553bc8b60 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs @@ -6,9 +6,10 @@ using Content.Shared.Explosion.EntitySystems; using Content.Shared.FixedPoint; using Robust.Shared.Map.Components; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { [Dependency] private readonly DestructibleSystem _destructibleSystem = default!; diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs index ce98f89de7af..5af06ef93684 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs @@ -1,8 +1,8 @@ using Content.Shared.CCVar; -using Content.Shared.Explosion.EntitySystems; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { public int MaxIterations { get; private set; } public int MaxArea { get; private set; } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs index 75bb606441a4..29477c16b28e 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs @@ -12,7 +12,7 @@ namespace Content.Server.Explosion.EntitySystems; // A good portion of it is focused around keeping track of what tile-indices on a grid correspond to tiles that border // space. AFAIK no other system currently needs to track these "edge-tiles". If they do, this should probably be a // property of the grid itself? -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { /// /// Set of tiles of each grid that are directly adjacent to space, along with the directions that face space. diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 6d0cbcf2794c..97d52e436a8f 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -22,9 +22,10 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { [Dependency] private readonly FlammableSystem _flammableSystem = default!; @@ -218,7 +219,7 @@ internal bool ExplodeTile(BroadphaseComponent lookup, // get the entities on a tile. Note that we cannot process them directly, or we get // enumerator-changed-while-enumerating errors. List<(EntityUid, TransformComponent)> list = new(); - var state = (list, processed, _transformQuery); + var state = (list, processed, EntityManager.TransformQuery); // get entities: lookup.DynamicTree.QueryAabb(ref state, GridQueryCallback, gridBox, true); @@ -317,7 +318,7 @@ internal void ExplodeSpace(BroadphaseComponent lookup, var gridBox = Box2.FromDimensions(tile * DefaultTileSize, new Vector2(DefaultTileSize, DefaultTileSize)); var worldBox = spaceMatrix.TransformBox(gridBox); var list = new List<(EntityUid, TransformComponent)>(); - var state = (list, processed, invSpaceMatrix, lookup.Owner, _transformQuery, gridBox, _transformSystem); + var state = (list, processed, invSpaceMatrix, lookup.Owner, EntityManager.TransformQuery, gridBox, _transformSystem); // get entities: lookup.DynamicTree.QueryAabb(ref state, SpaceQueryCallback, worldBox, true); diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs index 8c3229e06eef..7b73490d9467 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs @@ -7,13 +7,13 @@ using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Timing; -using Content.Shared.Explosion.EntitySystems; + namespace Content.Server.Explosion.EntitySystems; // This partial part of the explosion system has all of the functions used to create the actual explosion map. // I.e, to get the sets of tiles & intensity values that describe an explosion. -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { /// /// This is the main explosion generating function. diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs index 219dba4bdeb8..57323e4de709 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs @@ -5,10 +5,11 @@ using Robust.Server.GameObjects; using Robust.Shared.GameStates; using Robust.Shared.Map; + namespace Content.Server.Explosion.EntitySystems; // This part of the system handled send visual / overlay data to clients. -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { public void InitVisuals() { diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index cd0ca1c22eb2..818953ed4b47 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -12,6 +12,8 @@ using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Explosion; +using Content.Shared.Explosion.Components; +using Content.Shared.Explosion.EntitySystems; using Content.Shared.GameTicking; using Content.Shared.Inventory; using Content.Shared.Projectiles; @@ -53,7 +55,6 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly SharedMapSystem _map = default!; - private EntityQuery _transformQuery; private EntityQuery _flammableQuery; private EntityQuery _physicsQuery; private EntityQuery _projectileQuery; @@ -103,7 +104,6 @@ public override void Initialize() InitAirtightMap(); InitVisuals(); - _transformQuery = GetEntityQuery(); _flammableQuery = GetEntityQuery(); _physicsQuery = GetEntityQuery(); _projectileQuery = GetEntityQuery(); @@ -141,15 +141,8 @@ private void OnGetResistance(EntityUid uid, ExplosionResistanceComponent compone args.DamageCoefficient *= modifier; } - /// - /// Given an entity with an explosive component, spawn the appropriate explosion. - /// - /// - /// Also accepts radius or intensity arguments. This is useful for explosives where the intensity is not - /// specified in the yaml / by the component, but determined dynamically (e.g., by the quantity of a - /// solution in a reaction). - /// - public void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) + /// + public override void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) { // log missing: false, because some entities (e.g. liquid tanks) attempt to trigger explosions when damaged, // but may not actually be explosive. diff --git a/Content.Server/Explosion/Components/ExplosiveComponent.cs b/Content.Shared/Explosion/Components/ExplosiveComponent.cs similarity index 76% rename from Content.Server/Explosion/Components/ExplosiveComponent.cs rename to Content.Shared/Explosion/Components/ExplosiveComponent.cs index 2b27a89d9db7..bab7f5a7d678 100644 --- a/Content.Server/Explosion/Components/ExplosiveComponent.cs +++ b/Content.Shared/Explosion/Components/ExplosiveComponent.cs @@ -1,8 +1,7 @@ -using Content.Server.Explosion.EntitySystems; -using Content.Shared.Explosion; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Content.Shared.Explosion.EntitySystems; +using Robust.Shared.Prototypes; -namespace Content.Server.Explosion.Components; +namespace Content.Shared.Explosion.Components; /// /// Specifies an explosion that can be spawned by this entity. The explosion itself is spawned via -[RegisterComponent] +[RegisterComponent, Access(typeof(SharedExplosionSystem))] public sealed partial class ExplosiveComponent : Component { - /// /// The explosion prototype. This determines the damage types, the tile-break chance, and some visual /// information (e.g., the light that the explosion gives off). /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("explosionType", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ExplosionType = default!; + [DataField(required: true)] + public ProtoId ExplosionType = default!; /// /// The maximum intensity the explosion can have on a single tile. This limits the maximum damage and tile /// break chance the explosion can achieve at any given location. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxIntensity")] + [DataField] public float MaxIntensity = 4; /// /// How quickly the intensity drops off as you move away from the epicenter. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("intensitySlope")] + [DataField] public float IntensitySlope = 1; /// @@ -47,38 +42,34 @@ public sealed partial class ExplosiveComponent : Component /// This number can be overridden by passing optional argument to . /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("totalIntensity")] + [DataField] public float TotalIntensity = 10; /// /// Factor used to scale the explosion intensity when calculating tile break chances. Allows for stronger /// explosives that don't space tiles, without having to create a new explosion-type prototype. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("tileBreakScale")] + [DataField] public float TileBreakScale = 1f; /// /// Maximum number of times that an explosive can break a tile. Currently, for normal space stations breaking a /// tile twice will generally result in a vacuum. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxTileBreak")] + [DataField] public int MaxTileBreak = int.MaxValue; /// /// Whether this explosive should be able to create a vacuum by breaking tiles. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("canCreateVacuum")] + [DataField] public bool CanCreateVacuum = true; /// /// An override for whether or not the entity should be deleted after it explodes. /// If null, the system calling the explode method handles it. /// - [DataField("deleteAfterExplosion")] + [DataField] public bool? DeleteAfterExplosion; /// diff --git a/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs b/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs index 1d926dd0b67d..f29825580784 100644 --- a/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs +++ b/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs @@ -1,25 +1,40 @@ -using Content.Shared.Explosion.Components; using Content.Shared.Armor; +using Content.Shared.Explosion.Components; namespace Content.Shared.Explosion.EntitySystems; +/// +/// Lets code in shared trigger explosions and handles explosion resistance examining. +/// All processing is still done clientside. +/// public abstract class SharedExplosionSystem : EntitySystem { - public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnArmorExamine); } - private void OnArmorExamine(EntityUid uid, ExplosionResistanceComponent component, ref ArmorExamineEvent args) + private void OnArmorExamine(Entity ent, ref ArmorExamineEvent args) { - var value = MathF.Round((1f - component.DamageCoefficient) * 100, 1); + var value = MathF.Round((1f - ent.Comp.DamageCoefficient) * 100, 1); if (value == 0) return; args.Msg.PushNewline(); - args.Msg.AddMarkupOrThrow(Loc.GetString(component.Examine, ("value", value))); + args.Msg.AddMarkupOrThrow(Loc.GetString(ent.Comp.Examine, ("value", value))); + } + + /// + /// Given an entity with an explosive component, spawn the appropriate explosion. + /// + /// + /// Also accepts radius or intensity arguments. This is useful for explosives where the intensity is not + /// specified in the yaml / by the component, but determined dynamically (e.g., by the quantity of a + /// solution in a reaction). + /// + public virtual void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) + { } } From 4f77709eed9b5012e58303820eafb0242a0f36fd Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:02:27 +1000 Subject: [PATCH 033/161] Add flip button to mapping state (#30636) --- Content.Client/Mapping/MappingScreen.xaml | 1 + Content.Client/Mapping/MappingScreen.xaml.cs | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/Content.Client/Mapping/MappingScreen.xaml b/Content.Client/Mapping/MappingScreen.xaml index b64136084788..9cc3e734f0e9 100644 --- a/Content.Client/Mapping/MappingScreen.xaml +++ b/Content.Client/Mapping/MappingScreen.xaml @@ -78,6 +78,7 @@ ToolTip="Pick (Hold 5)" /> + diff --git a/Content.Client/Mapping/MappingScreen.xaml.cs b/Content.Client/Mapping/MappingScreen.xaml.cs index b2ad2fd83fbb..46c0e51fad69 100644 --- a/Content.Client/Mapping/MappingScreen.xaml.cs +++ b/Content.Client/Mapping/MappingScreen.xaml.cs @@ -96,6 +96,22 @@ public MappingScreen() Pick.Texture.TexturePath = "/Textures/Interface/eyedropper.svg.png"; Delete.Texture.TexturePath = "/Textures/Interface/eraser.svg.png"; + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png"; + Flip.OnPressed += args => FlipSides(); + } + + public void FlipSides() + { + ScreenContainer.Flip(); + + if (SpawnContainer.GetPositionInParent() == 0) + { + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png"; + } + else + { + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_ccw.svg.192dpi.png"; + } } private void OnDecalColorPicked(Color color) From 6958789f37db66d54a8c68f6d04d997c8f1650ab Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:08:37 -0700 Subject: [PATCH 034/161] Give prototype refactor (#29697) * Update GivePrototype * File scoped namespace * Change to EntProtoId instead of ProtoId<> for better validation --- .../Construction/Completions/GivePrototype.cs | 54 ++++++++++--------- 1 file changed, 30 insertions(+), 24 deletions(-) diff --git a/Content.Server/Construction/Completions/GivePrototype.cs b/Content.Server/Construction/Completions/GivePrototype.cs index f45bd5ba1052..f05feb70c034 100644 --- a/Content.Server/Construction/Completions/GivePrototype.cs +++ b/Content.Server/Construction/Completions/GivePrototype.cs @@ -1,44 +1,50 @@ using Content.Server.Stack; using Content.Shared.Construction; +using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Prototypes; using Content.Shared.Stacks; using JetBrains.Annotations; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Construction.Completions +namespace Content.Server.Construction.Completions; + +[UsedImplicitly] +[DataDefinition] +public sealed partial class GivePrototype : IGraphAction { - [UsedImplicitly] - [DataDefinition] - public sealed partial class GivePrototype : IGraphAction + [DataField] + public EntProtoId Prototype { get; private set; } = string.Empty; + + [DataField] + public int Amount { get; private set; } = 1; + + public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { - [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Prototype { get; private set; } = string.Empty; - [DataField("amount")] - public int Amount { get; private set; } = 1; + if (string.IsNullOrEmpty(Prototype)) + return; - public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) + if (EntityPrototypeHelpers.HasComponent(Prototype)) { - if (string.IsNullOrEmpty(Prototype)) - return; + var stackSystem = entityManager.EntitySysManager.GetEntitySystem(); + var stacks = stackSystem.SpawnMultiple(Prototype, Amount, userUid ?? uid); - var coordinates = entityManager.GetComponent(userUid ?? uid).Coordinates; + if (userUid is null || !entityManager.TryGetComponent(userUid, out HandsComponent? handsComp)) + return; - if (EntityPrototypeHelpers.HasComponent(Prototype)) + foreach (var item in stacks) { - var stackEnt = entityManager.SpawnEntity(Prototype, coordinates); - var stack = entityManager.GetComponent(stackEnt); - entityManager.EntitySysManager.GetEntitySystem().SetCount(stackEnt, Amount, stack); - entityManager.EntitySysManager.GetEntitySystem().PickupOrDrop(userUid, stackEnt); + stackSystem.TryMergeToHands(item, userUid.Value, hands: handsComp); } - else + } + else + { + var handsSystem = entityManager.EntitySysManager.GetEntitySystem(); + var handsComp = userUid is not null ? entityManager.GetComponent(userUid.Value) : null; + for (var i = 0; i < Amount; i++) { - for (var i = 0; i < Amount; i++) - { - var item = entityManager.SpawnEntity(Prototype, coordinates); - entityManager.EntitySysManager.GetEntitySystem().PickupOrDrop(userUid, item); - } + var item = entityManager.SpawnNextToOrDrop(Prototype, userUid ?? uid); + handsSystem.PickupOrDrop(userUid, item, handsComp: handsComp); } } } From cc7e5e01508b6ac79d6e85b18ec4ec7bc839ec71 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Thu, 19 Sep 2024 02:14:29 +0200 Subject: [PATCH 035/161] Allow containment field generators to be enabled on mapinit (#31158) * Initial commit * review fix --- .../EntitySystems/ContainmentFieldGeneratorSystem.cs | 7 +++++++ .../Components/ContainmentFieldGeneratorComponent.cs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs index 05262f299962..6d97c8ccb3dd 100644 --- a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs @@ -37,6 +37,7 @@ public override void Initialize() SubscribeLocalEvent(OnUnanchorAttempt); SubscribeLocalEvent(OnComponentRemoved); SubscribeLocalEvent(PreventBreach); + SubscribeLocalEvent(OnMapInit); } public override void Update(float frameTime) @@ -61,6 +62,12 @@ public override void Update(float frameTime) #region Events + private void OnMapInit(Entity generator, ref MapInitEvent args) + { + if (generator.Comp.Enabled) + ChangeFieldVisualizer(generator); + } + /// /// A generator receives power from a source colliding with it. /// diff --git a/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs b/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs index 938b34f354a6..6b09edfa1f00 100644 --- a/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs +++ b/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs @@ -79,7 +79,7 @@ public int PowerBuffer /// /// Is the generator toggled on? /// - [ViewVariables] + [DataField] public bool Enabled; /// From c2a201d998830b36fa525c5ee9bb1375bf41d732 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Thu, 19 Sep 2024 03:23:50 +0300 Subject: [PATCH 036/161] Make fire leave burnt decals on the tiles (#31939) * Make fire leave burnt decals on the tiles * License * Yes * Update * Spelling error * Prototypes reload support * To array --- .../EntitySystems/AtmosphereSystem.Hotspot.cs | 33 +++++++++++++++--- .../Atmos/EntitySystems/AtmosphereSystem.cs | 19 ++++++++++ Resources/Prototypes/Decals/burnt.yml | 31 ++++++++++++++++ .../Textures/Decals/burnt.rsi/burnt1.png | Bin 0 -> 896 bytes .../Textures/Decals/burnt.rsi/burnt2.png | Bin 0 -> 938 bytes .../Textures/Decals/burnt.rsi/burnt3.png | Bin 0 -> 928 bytes .../Textures/Decals/burnt.rsi/burnt4.png | Bin 0 -> 1041 bytes Resources/Textures/Decals/burnt.rsi/meta.json | 27 ++++++++++++++ 8 files changed, 106 insertions(+), 4 deletions(-) create mode 100644 Resources/Prototypes/Decals/burnt.yml create mode 100644 Resources/Textures/Decals/burnt.rsi/burnt1.png create mode 100644 Resources/Textures/Decals/burnt.rsi/burnt2.png create mode 100644 Resources/Textures/Decals/burnt.rsi/burnt3.png create mode 100644 Resources/Textures/Decals/burnt.rsi/burnt4.png create mode 100644 Resources/Textures/Decals/burnt.rsi/meta.json diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index db952237338f..a03f27b561ae 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -1,19 +1,21 @@ using Content.Server.Atmos.Components; -using Content.Server.Atmos.Reactions; +using Content.Server.Decals; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Reactions; -using Content.Shared.Audio; using Content.Shared.Database; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Player; +using Robust.Shared.Random; namespace Content.Server.Atmos.EntitySystems { public sealed partial class AtmosphereSystem { + [Dependency] private readonly DecalSystem _decalSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + private const int HotspotSoundCooldownCycles = 200; private int _hotspotSoundCooldown = 0; @@ -56,7 +58,30 @@ private void ProcessHotspot( if (tile.Hotspot.Bypassing) { tile.Hotspot.State = 3; - // TODO ATMOS: Burn tile here + + var gridUid = ent.Owner; + var tilePos = tile.GridIndices; + + // Get the existing decals on the tile + var tileDecals = _decalSystem.GetDecalsInRange(gridUid, tilePos); + + // Count the burnt decals on the tile + var tileBurntDecals = 0; + + foreach (var set in tileDecals) + { + if (Array.IndexOf(_burntDecals, set.Decal.Id) == -1) + continue; + + tileBurntDecals++; + + if (tileBurntDecals > 4) + break; + } + + // Add a random burned decal to the tile only if there are less than 4 of them + if (tileBurntDecals < 4) + _decalSystem.TryAddDecal(_burntDecals[_random.Next(_burntDecals.Length)], new EntityCoordinates(gridUid, tilePos), out _, cleanable: true); if (tile.Air.Temperature > Atmospherics.FireMinimumTemperatureToSpread) { diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs index 44bfa4cc10c7..13d8f73dc56b 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Fluids.EntitySystems; using Content.Server.NodeContainer.EntitySystems; using Content.Shared.Atmos.EntitySystems; +using Content.Shared.Decals; using Content.Shared.Doors.Components; using Content.Shared.Maps; using JetBrains.Annotations; @@ -12,7 +13,9 @@ using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Physics.Systems; +using Robust.Shared.Prototypes; using Robust.Shared.Random; +using System.Linq; namespace Content.Server.Atmos.EntitySystems; @@ -36,6 +39,7 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly TileSystem _tile = default!; [Dependency] private readonly MapSystem _map = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] public readonly PuddleSystem Puddle = default!; private const float ExposedUpdateDelay = 1f; @@ -47,6 +51,8 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem private EntityQuery _firelockQuery; private HashSet _entSet = new(); + private string[] _burntDecals = []; + public override void Initialize() { base.Initialize(); @@ -66,7 +72,9 @@ public override void Initialize() _firelockQuery = GetEntityQuery(); SubscribeLocalEvent(OnTileChanged); + SubscribeLocalEvent(OnPrototypesReloaded); + CacheDecals(); } public override void Shutdown() @@ -81,6 +89,12 @@ private void OnTileChanged(ref TileChangedEvent ev) InvalidateTile(ev.NewTile.GridUid, ev.NewTile.GridIndices); } + private void OnPrototypesReloaded(PrototypesReloadedEventArgs ev) + { + if (ev.WasModified()) + CacheDecals(); + } + public override void Update(float frameTime) { base.Update(frameTime); @@ -107,4 +121,9 @@ public override void Update(float frameTime) _exposedTimer -= ExposedUpdateDelay; } + + private void CacheDecals() + { + _burntDecals = _prototypeManager.EnumeratePrototypes().Where(x => x.Tags.Contains("burnt")).Select(x => x.ID).ToArray(); + } } diff --git a/Resources/Prototypes/Decals/burnt.yml b/Resources/Prototypes/Decals/burnt.yml new file mode 100644 index 000000000000..d9d500e1aa25 --- /dev/null +++ b/Resources/Prototypes/Decals/burnt.yml @@ -0,0 +1,31 @@ +- type: decal + id: burnt1 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt1 + +- type: decal + id: burnt2 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt2 + +- type: decal + id: burnt3 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt3 + +- type: decal + id: burnt4 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt4 diff --git a/Resources/Textures/Decals/burnt.rsi/burnt1.png b/Resources/Textures/Decals/burnt.rsi/burnt1.png new file mode 100644 index 0000000000000000000000000000000000000000..3fcb7a4949b5bd561e68d784d47d9de20a5411d2 GIT binary patch literal 896 zcmV-`1AqL9P)_`sikSPhHe~3@fwDqi`!27YaPdN z#XAQ{Mbb&qIqVecW=VHRx3Ec4r4L^n0fb{a_q`;oVHMzdNk>T+Sc&%@lCF||0?2Ft z@TYMc*YYNKA9lck1x~sM{t=mf#{D6J5x9NYmwnV>7*yT_FA<=R=W95g?Z)O zXSr#2Y=Ql?;o%@8o6DVb-DIUOt;rA7Zqkdr_f#YackO{-WHbkhbz#xIZKXZvnvEm5 zqy=1*J0rIo$w#m!1hcO>t!)7E3@{KcA~AFJ1mfTv&z_QJ?G^KYLr)tTSp~V56pmai zijU>lBbsI)jXMU>N%|82%xnYVQR|G~sBqFV0d4O6tE9hS-})Wbk4UT*l<1YPa0dME z%4dp2&wEZnHs9=N?ya7z8ydklV$1s3jzCLe6r|b5_i)Oi)aKYqGeBI^ZuBez`a(2a-$50Ok=tVpxs0ZTk;p WW37K`!OrIZ0000C literal 0 HcmV?d00001 diff --git a/Resources/Textures/Decals/burnt.rsi/burnt2.png b/Resources/Textures/Decals/burnt.rsi/burnt2.png new file mode 100644 index 0000000000000000000000000000000000000000..01f8f220b2ddae1a13fac2b816531109a5b848d9 GIT binary patch literal 938 zcmV;b16BNqP)18A2vnpw(ar z1~qsht;3vCD6w`Ao}uGYnUsA1aPJrnOd)6t3!DMiI$6ER(;`s9#u7N6pd4cTwdf`G z2_S*!hJ`)wbZg_0F*v6MHg>;GCHx+Tzwt=JH}-T(U;23XN71bm6J#p9IFTkcm5gqK z^tAwduWz%!Cu7Bw`%{PCis#BPcvk^T9Mi6`N4!4&RvUe%3k*DgXzsb>EVX7P2z~>G z2Krrr1)9=8G5B6W`vj{g4YsN1zcPIW zV5X|>9a}N0^|cQ3pfrEhjEwHJG@W?V`+P6qA}w&JCyhP*2=lg}bc01jVF^I8;Vi)i z$25J`1XEDr2dgllPFL=UA+3cqy1hLF*B(=5xn)$H0500m$U z0e2oTkWELyx%aGmdnf@ivuFkGjjv`jofKps$SYI+o{QLmWYm8K086<%#GyXvdo6YO3$m!Aax?qf)&Kwi M07*qoM6N<$f@T`Jp8x;= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Decals/burnt.rsi/burnt3.png b/Resources/Textures/Decals/burnt.rsi/burnt3.png new file mode 100644 index 0000000000000000000000000000000000000000..e9dcbe37533f6e1aa9f17dca58d5c2b15973408a GIT binary patch literal 928 zcmV;R17G}!P)a;W5Jit{9MAGY^Z#EoHA`ZHfq9@0+$c_ss#F3Yb>H5b2K)d9;0(;b2;6I(YfiwU zR-b2J0b1Sv3Va8?0W0tZ+=|v(^sm5|IuEc8z_0pnEn*Eg)rHngikQ=J>b^JNQUKjM z124sV@V=U@}kW6B%Z?YOXZZ67&`UX#a^V zgRKSR6c-ac9NCPJ)+sP}?|AZ=OUQfLXypjSnJtYb^FAr12DEu*x(wYpR<-;Fy!M$X z52e%uQ@veg?pTLhLe{bD$dvbOccIXcG>9sFVDbZAW`p^r92HlsY)$oI$1Dm>^mDco)UP^r= zL+Z-M(9I&I26LR!R#}p>toG$s2_8XIFDGbZO=)!|&3&SZk+GSTFg37rL_af6-vjic z595{^=*`gg1HNabOX;%Sr-W)pb9q;Pne_ox{7lkJJQ?RL?wAwc2x0GCII8SaXXUwA zh|&jo5Hh~96&b6gen5aShX_!KrDrZs^V{%1UMzI3){{b2u`{;`kj?~;+p#!H6W9Q($&N#+@YmG_~VwO}MVq9HEt4ibR! zhh*Y?R!gSl{1)dNci=DZ8~9Uv+L^73v7BmCYqohITkDjrUwzIW5+(lw{H*!6G_W@$ zHWYejpJ=k8`QHCOJc`y>tLoMXe;4Cdwq9TXUb2K5Mw&zu=pPS`GTPfadjU^`5@AN8LXHrEQ@sW!o?S0000>5u66hM z4m^NiHO3eX*Z_Or0K5TPU{`Y+mg`cwewV(X0aFctb1gUnw^Fnz1$haG6`-ls3TRhj zTWcO=&?oQ*m|9r)0Oqp#TJM`0+fp{iP&x4|kXCy(F~*WRg|4yHm7O$Z3@hZC3%Q7b1Bh-dPs1$Qf@v`@_y9w&{#5aS4fRjqi1w0A)j?W*E(IU2gdNo z9N$d7p$suMngBj(^BcWn-b(pC1mEZxK88gPUSprtVEGXMrT{QD;1|8_{{_AmfH!*V z9dig8R{->c-pl3Y{#o_0o=P(3&A0uY&rB&Y*RmE;*Pk8zpt(CK!dC-Q9t-uZ#*1$#Q# zs9XRl_pag=_br{6ZoGQw63>Rr!|sEk;zL-tKE)=HtaD)P_Uwv=$Pjo*@23L$0)Vhy z04mMrG43W-@<$#%bt*m^j@A9H?@Bob9$)( zcjIm5%Yuhml7uSvU*J%ik1Ql~q4#|OWM7xEbH9mg zc=V!P9)U|X7FkdrQz<{vf5mjU9`M~HvpasHv#E72-S5h)6L9_u9x#X3!t};m00000 LNkvXXu0mjfo00E? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Decals/burnt.rsi/meta.json b/Resources/Textures/Decals/burnt.rsi/meta.json new file mode 100644 index 000000000000..48a8f33138cf --- /dev/null +++ b/Resources/Textures/Decals/burnt.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "From https://github.com/BeeStation/BeeStation-Hornet/blob/master/icons/turf/turf_damage.dmi at f2d6fbdf36aa0951049498cf28e028a38e32fe0b", + "states": [ + { + "name": "burnt1" + + }, + { + "name": "burnt2" + + }, + { + "name": "burnt3" + + }, + { + "name": "burnt4" + + } + ] +} From 0c5a053ae4ec06ad4471884dd81aa5053522d716 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 00:24:56 +0000 Subject: [PATCH 037/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8190ecd8fe4f..050ad0721c23 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Aquif - changes: - - message: It is now possible to "lock" admin faxes such that they cannot be edited - by cybersun pens or any other IC means. - type: Add - id: 6895 - time: '2024-07-10T05:28:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28972 - author: Ghagliiarghii changes: - message: The Librarian's Books Bag can now hold D&D related items such as dice @@ -3918,3 +3910,10 @@ id: 7394 time: '2024-09-18T23:55:26.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29998 +- author: Winkarst-cpu + changes: + - message: Now fire leaves burn marks on the tiles that were affected by it. + type: Add + id: 7395 + time: '2024-09-19T00:23:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31939 From 1c3cfeeb35f425cd556103e4a673c01ae16cf69d Mon Sep 17 00:00:00 2001 From: ArchRBX <5040911+ArchRBX@users.noreply.github.com> Date: Thu, 19 Sep 2024 02:25:47 +0100 Subject: [PATCH 038/161] Coordinates under IFF Label on Mass Scanners and Shuttle Consoles (#31501) * adds coord label beneath iff label * fixed wrong coordinate system being used * changes the clamping on the label UI to instead normalise the UI's distance vector from the centre of the screen, fixes corner-hugging * cleaned up if-statement by moving the calc ahead of it * fixed clamping, fixed parenting issue, added draw cull on coord label --------- Co-authored-by: archrbx --- .../Shuttles/UI/ShuttleNavControl.xaml.cs | 47 +++++++++++++++---- 1 file changed, 38 insertions(+), 9 deletions(-) diff --git a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs index 64ead32586d2..2674343e0591 100644 --- a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs @@ -199,7 +199,9 @@ protected override void Draw(DrawingHandleScreen handle) var gridMatrix = _transform.GetWorldMatrix(gUid); var matty = Matrix3x2.Multiply(gridMatrix, ourWorldMatrixInvert); - var color = _shuttles.GetIFFColor(grid, self: false, iff); + + var labelColor = _shuttles.GetIFFColor(grid, self: false, iff); + var coordColor = new Color(labelColor.R * 0.8f, labelColor.G * 0.8f, labelColor.B * 0.8f, 0.5f); // Others default: // Color.FromHex("#FFC000FF") @@ -213,25 +215,52 @@ protected override void Draw(DrawingHandleScreen handle) var gridCentre = Vector2.Transform(gridBody.LocalCenter, matty); gridCentre.Y = -gridCentre.Y; + var distance = gridCentre.Length(); var labelText = Loc.GetString("shuttle-console-iff-label", ("name", labelName), ("distance", $"{distance:0.0}")); + var mapCoords = _transform.GetWorldPosition(gUid); + var coordsText = $"({mapCoords.X:0.0}, {mapCoords.Y:0.0})"; + // yes 1.0 scale is intended here. var labelDimensions = handle.GetDimensions(Font, labelText, 1f); + var coordsDimensions = handle.GetDimensions(Font, coordsText, 0.7f); // y-offset the control to always render below the grid (vertically) var yOffset = Math.Max(gridBounds.Height, gridBounds.Width) * MinimapScale / 1.8f; - // The actual position in the UI. We offset the matrix position to render it off by half its width - // plus by the offset. - var uiPosition = ScalePosition(gridCentre)- new Vector2(labelDimensions.X / 2f, -yOffset); + // The actual position in the UI. We centre the label by offsetting the matrix position + // by half the label's width, plus the y-offset + var gridScaledPosition = ScalePosition(gridCentre) - new Vector2(0, -yOffset); - // Look this is uggo so feel free to cleanup. We just need to clamp the UI position to within the viewport. - uiPosition = new Vector2(Math.Clamp(uiPosition.X, 0f, PixelWidth - labelDimensions.X ), - Math.Clamp(uiPosition.Y, 0f, PixelHeight - labelDimensions.Y)); + // Normalize the grid position if it exceeds the viewport bounds + // normalizing it instead of clamping it preserves the direction of the vector and prevents corner-hugging + var gridOffset = gridScaledPosition / PixelSize - new Vector2(0.5f, 0.5f); + var offsetMax = Math.Max(Math.Abs(gridOffset.X), Math.Abs(gridOffset.Y)) * 2f; + if (offsetMax > 1) + { + gridOffset = new Vector2(gridOffset.X / offsetMax, gridOffset.Y / offsetMax); + + gridScaledPosition = (gridOffset + new Vector2(0.5f, 0.5f)) * PixelSize; + } - handle.DrawString(Font, uiPosition, labelText, color); + var labelUiPosition = gridScaledPosition - new Vector2(labelDimensions.X / 2f, 0); + var coordUiPosition = gridScaledPosition - new Vector2(coordsDimensions.X / 2f, -labelDimensions.Y); + + // clamp the IFF label's UI position to within the viewport extents so it hugs the edges of the viewport + // coord label intentionally isn't clamped so we don't get ugly clutter at the edges + var controlExtents = PixelSize - new Vector2(labelDimensions.X, labelDimensions.Y); //new Vector2(labelDimensions.X * 2f, labelDimensions.Y); + labelUiPosition = Vector2.Clamp(labelUiPosition, Vector2.Zero, controlExtents); + + // draw IFF label + handle.DrawString(Font, labelUiPosition, labelText, labelColor); + + // only draw coords label if close enough + if (offsetMax < 1) + { + handle.DrawString(Font, coordUiPosition, coordsText, 0.7f, coordColor); + } } // Detailed view @@ -241,7 +270,7 @@ protected override void Draw(DrawingHandleScreen handle) if (!gridAABB.Intersects(viewAABB)) continue; - DrawGrid(handle, matty, grid, color); + DrawGrid(handle, matty, grid, labelColor); DrawDocks(handle, gUid, matty); } } From c2f0626e029c1f3b33aa9b7770ef7d3ee0fa2aae Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 01:26:53 +0000 Subject: [PATCH 039/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 050ad0721c23..4b779d845b67 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Ghagliiarghii - changes: - - message: The Librarian's Books Bag can now hold D&D related items such as dice - and battlemats. - type: Tweak - id: 6896 - time: '2024-07-10T05:51:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29863 - author: Beck Thompson, Tayrtahn changes: - message: Typing indicators now correctly stack and will not overwrite your default @@ -3917,3 +3909,14 @@ id: 7395 time: '2024-09-19T00:23:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31939 +- author: ArchRBX + changes: + - message: Mass scanners and shuttle consoles now display coordinates beneath IFF + labels + type: Add + - message: IFF labels that are beyond the viewport extents maintain their heading + and don't hug corners + type: Fix + id: 7396 + time: '2024-09-19T01:25:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31501 From 9c905cd58f5453c6ab7821709bdbf5fcf1249df9 Mon Sep 17 00:00:00 2001 From: Luiz Costa <33888056+luizwritescode@users.noreply.github.com> Date: Wed, 18 Sep 2024 23:15:44 -0300 Subject: [PATCH 040/161] Fix TEG acting as infinite energy source on destruction (#29972) * TEG now checks for power supply before checking for IsFullyBuilt * Update Content.Server/Power/Generation/Teg/TegSystem.cs Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> --- Content.Server/Power/Generation/Teg/TegSystem.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs index 9fb7d5ff1f64..027f25704023 100644 --- a/Content.Server/Power/Generation/Teg/TegSystem.cs +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -102,10 +102,6 @@ private void GeneratorExamined(EntityUid uid, TegGeneratorComponent component, E private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref AtmosDeviceUpdateEvent args) { - var tegGroup = GetNodeGroup(uid); - if (tegGroup is not { IsFullyBuilt: true }) - return; - var supplier = Comp(uid); var powerReceiver = Comp(uid); if (!powerReceiver.Powered) @@ -114,6 +110,10 @@ private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref return; } + var tegGroup = GetNodeGroup(uid); + if (tegGroup is not { IsFullyBuilt: true }) + return; + var circA = tegGroup.CirculatorA!.Owner; var circB = tegGroup.CirculatorB!.Owner; From b1296294052e6bb1af45efb97c350cc898746b22 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 02:16:50 +0000 Subject: [PATCH 041/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4b779d845b67..8eba2ed6d887 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Beck Thompson, Tayrtahn - changes: - - message: Typing indicators now correctly stack and will not overwrite your default - species indicator. - type: Fix - id: 6897 - time: '2024-07-10T05:51:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29492 - author: Winkarst-cpu changes: - message: Now confirmation popup is displayed and item panel status is updated @@ -3920,3 +3912,10 @@ id: 7396 time: '2024-09-19T01:25:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31501 +- author: coffeeware + changes: + - message: a powered TEG won't produce infinite power when destroyed + type: Fix + id: 7397 + time: '2024-09-19T02:15:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29972 From 550c4231816cd28251d3c42d32002bcf0ac4d5aa Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:17:13 -0400 Subject: [PATCH 042/161] Clean up solution regen and drain comps (#29777) * clean up solution regen and drain comps * Tape applied. * Update Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs Co-authored-by: Tayrtahn * remain entity * That has to be a rogue test fail. --------- Co-authored-by: Tayrtahn --- .../SolutionRegenerationComponent.cs | 12 +++++----- .../SolutionRegenerationSystem.cs | 4 ++-- .../Fluids/Components/DrainComponent.cs | 24 +++++++++---------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs index 23bf6b215736..03c0ffe0c1ae 100644 --- a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs @@ -14,31 +14,31 @@ public sealed partial class SolutionRegenerationComponent : Component /// /// The name of the solution to add to. /// - [DataField("solution", required: true), ViewVariables(VVAccess.ReadWrite)] + [DataField("solution", required: true)] public string SolutionName = string.Empty; /// /// The solution to add reagents to. /// - [DataField("solutionRef")] - public Entity? Solution = null; + [DataField] + public Entity? SolutionRef = null; /// /// The reagent(s) to be regenerated in the solution. /// - [DataField("generated", required: true), ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true)] public Solution Generated = default!; /// /// How long it takes to regenerate once. /// - [DataField("duration"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan Duration = TimeSpan.FromSeconds(1); /// /// The time when the next regeneration will occur. /// - [DataField("nextChargeTime", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField("nextChargeTime", customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextRegenTime = TimeSpan.FromSeconds(0); } diff --git a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs index 6a600628572d..bccd59470696 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs @@ -24,7 +24,7 @@ public override void Update(float frameTime) // timer ignores if its full, it's just a fixed cycle regen.NextRegenTime = _timing.CurTime + regen.Duration; - if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.Solution, out var solution)) + if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.SolutionRef, out var solution)) { var amount = FixedPoint2.Min(solution.AvailableVolume, regen.Generated.Volume); if (amount <= FixedPoint2.Zero) @@ -41,7 +41,7 @@ public override void Update(float frameTime) generated = regen.Generated.Clone().SplitSolution(amount); } - _solutionContainer.TryAddSolution(regen.Solution.Value, generated); + _solutionContainer.TryAddSolution(regen.SolutionRef.Value, generated); } } } diff --git a/Content.Shared/Fluids/Components/DrainComponent.cs b/Content.Shared/Fluids/Components/DrainComponent.cs index 4fb4fe943833..50cb5f519581 100644 --- a/Content.Shared/Fluids/Components/DrainComponent.cs +++ b/Content.Shared/Fluids/Components/DrainComponent.cs @@ -23,14 +23,14 @@ public sealed partial class DrainComponent : Component [DataField] public Entity? Solution = null; - [DataField("accumulator")] + [DataField] public float Accumulator = 0f; /// /// Does this drain automatically absorb surrouding puddles? Or is it a drain designed to empty - /// solutions in it manually? + /// solutions in it manually? /// - [DataField("autoDrain"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public bool AutoDrain = true; /// @@ -38,47 +38,47 @@ public sealed partial class DrainComponent : Component /// Divided by puddles, so if there are 5 puddles this will take 1/5 from each puddle. /// This will stay fixed to 1 second no matter what DrainFrequency is. /// - [DataField("unitsPerSecond")] + [DataField] public float UnitsPerSecond = 6f; /// /// How many units are ejected from the buffer per second. /// - [DataField("unitsDestroyedPerSecond")] + [DataField] public float UnitsDestroyedPerSecond = 3f; /// /// How many (unobstructed) tiles away the drain will /// drain puddles from. /// - [DataField("range"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float Range = 2f; /// /// How often in seconds the drain checks for puddles around it. /// If the EntityQuery seems a bit unperformant this can be increased. /// - [DataField("drainFrequency")] + [DataField] public float DrainFrequency = 1f; /// /// How much time it takes to unclog it with a plunger /// - [DataField("unclogDuration"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float UnclogDuration = 1f; /// /// What's the probability of uncloging on each try /// - [DataField("unclogProbability"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float UnclogProbability = 0.75f; - [DataField("manualDrainSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier ManualDrainSound = new SoundPathSpecifier("/Audio/Effects/Fluids/slosh.ogg"); - [DataField("plungerSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier PlungerSound = new SoundPathSpecifier("/Audio/Items/Janitor/plunger.ogg"); - [DataField("unclogSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier UnclogSound = new SoundPathSpecifier("/Audio/Effects/Fluids/glug.ogg"); } From bdd0561254a0f2b6cef0a032af566bd908e9de58 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Thu, 19 Sep 2024 14:21:26 +1200 Subject: [PATCH 043/161] Make status effect networking not use `TryAddStatusEffect` (#28766) * Make status effect networking not use `TryAddStatusEffect` * a --- .../StatusEffect/StatusEffectsSystem.cs | 74 ++++++++++--------- 1 file changed, 39 insertions(+), 35 deletions(-) diff --git a/Content.Shared/StatusEffect/StatusEffectsSystem.cs b/Content.Shared/StatusEffect/StatusEffectsSystem.cs index 9806077f9bb8..95abea63db0d 100644 --- a/Content.Shared/StatusEffect/StatusEffectsSystem.cs +++ b/Content.Shared/StatusEffect/StatusEffectsSystem.cs @@ -14,6 +14,7 @@ public sealed class StatusEffectsSystem : EntitySystem [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; + private List _toRemove = new(); public override void Initialize() { @@ -32,18 +33,28 @@ public override void Update(float frameTime) var curTime = _gameTiming.CurTime; var enumerator = EntityQueryEnumerator(); + _toRemove.Clear(); while (enumerator.MoveNext(out var uid, out _, out var status)) { - foreach (var state in status.ActiveEffects.ToArray()) + if (status.ActiveEffects.Count == 0) + { + // This shouldn't happen, but just in case something sneaks through + _toRemove.Add(uid); + continue; + } + + foreach (var state in status.ActiveEffects) { - // if we're past the end point of the effect if (curTime > state.Value.Cooldown.Item2) - { TryRemoveStatusEffect(uid, state.Key, status); - } } } + + foreach (var uid in _toRemove) + { + RemComp(uid); + } } private void OnGetState(EntityUid uid, StatusEffectsComponent component, ref ComponentGetState args) @@ -62,29 +73,21 @@ private void OnHandleState(EntityUid uid, StatusEffectsComponent component, ref component.AllowedEffects.AddRange(state.AllowedEffects); // Remove non-existent effects. - foreach (var effect in component.ActiveEffects.Keys) + foreach (var key in component.ActiveEffects.Keys) { - if (!state.ActiveEffects.ContainsKey(effect)) - { - TryRemoveStatusEffect(uid, effect, component, remComp: false); - } + if (!state.ActiveEffects.ContainsKey(key)) + component.ActiveEffects.Remove(key); } foreach (var (key, effect) in state.ActiveEffects) { - // don't bother with anything if we already have it - if (component.ActiveEffects.ContainsKey(key)) - { - component.ActiveEffects[key] = new(effect); - continue; - } - - var time = effect.Cooldown.Item2 - effect.Cooldown.Item1; - - TryAddStatusEffect(uid, key, time, true, component, effect.Cooldown.Item1); - component.ActiveEffects[key].RelevantComponent = effect.RelevantComponent; - // state handling should not add networked components, that is handled separately by the client game state manager. + component.ActiveEffects[key] = new(effect); } + + if (component.ActiveEffects.Count == 0) + RemComp(uid); + else + EnsureComp(uid); } private void OnRejuvenate(EntityUid uid, StatusEffectsComponent component, RejuvenateEvent args) @@ -109,18 +112,16 @@ public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool if (!Resolve(uid, ref status, false)) return false; - if (TryAddStatusEffect(uid, key, time, refresh, status)) - { - // If they already have the comp, we just won't bother updating anything. - if (!EntityManager.HasComponent(uid)) - { - var comp = EntityManager.AddComponent(uid); - status.ActiveEffects[key].RelevantComponent = _componentFactory.GetComponentName(comp.GetType()); - } + if (!TryAddStatusEffect(uid, key, time, refresh, status)) + return false; + + if (HasComp(uid)) return true; - } - return false; + EntityManager.AddComponent(uid); + status.ActiveEffects[key].RelevantComponent = _componentFactory.GetComponentName(); + return true; + } public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool refresh, string component, @@ -162,8 +163,12 @@ public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool re /// If the effect already exists, it will simply replace the cooldown with the new one given. /// If you want special 'effect merging' behavior, do it your own damn self! /// - public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool refresh, - StatusEffectsComponent? status = null, TimeSpan? startTime = null) + public bool TryAddStatusEffect(EntityUid uid, + string key, + TimeSpan time, + bool refresh, + StatusEffectsComponent? status = null, + TimeSpan? startTime = null) { if (!Resolve(uid, ref status, false)) return false; @@ -334,8 +339,7 @@ public bool HasStatusEffect(EntityUid uid, string key, /// The entity to check on. /// The status effect ID to check for /// The status effect component, should you already have it. - public bool CanApplyEffect(EntityUid uid, string key, - StatusEffectsComponent? status = null) + public bool CanApplyEffect(EntityUid uid, string key, StatusEffectsComponent? status = null) { // don't log since stuff calling this prolly doesn't care if we don't actually have it if (!Resolve(uid, ref status, false)) From 3fc9f96b75b2a3ebc1a02319758eb6853452cb05 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:42:49 -0700 Subject: [PATCH 044/161] Move PlaceableSurfaceComponent usages to PlaceableSurfaceSystem (#28384) * Move placeable check to PlaceableSurfaceSystem This check stops entities from being inserted into a storage entity when it has a PlaceableSurfaceComponent. The entity is instead placed on top of the entity like a table. * Move SetPlaceable to PlaceableSurfaceSystem * Update to transform system and consolidate code * Fix interaction with storage that has a placeable component * deadlock --------- Co-authored-by: metalgearsloth --- .../Placeable/PlaceableSurfaceSystem.cs | 29 ++++++++++++++++--- .../SharedEntityStorageSystem.cs | 3 -- .../EntitySystems/SharedStorageSystem.cs | 4 ++- Content.Shared/Storage/StorageComponent.cs | 3 ++ 4 files changed, 31 insertions(+), 8 deletions(-) diff --git a/Content.Shared/Placeable/PlaceableSurfaceSystem.cs b/Content.Shared/Placeable/PlaceableSurfaceSystem.cs index a9a9390a6e0e..c332064ea38e 100644 --- a/Content.Shared/Placeable/PlaceableSurfaceSystem.cs +++ b/Content.Shared/Placeable/PlaceableSurfaceSystem.cs @@ -1,6 +1,7 @@ using System.Numerics; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Storage; using Content.Shared.Storage.Components; namespace Content.Shared.Placeable; @@ -8,12 +9,16 @@ namespace Content.Shared.Placeable; public sealed class PlaceableSurfaceSystem : EntitySystem { [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnAfterInteractUsing); + SubscribeLocalEvent(OnStorageInteractUsingAttempt); + SubscribeLocalEvent(OnStorageAfterOpen); + SubscribeLocalEvent(OnStorageAfterClose); } public void SetPlaceable(EntityUid uid, bool isPlaceable, PlaceableSurfaceComponent? surface = null) @@ -21,6 +26,9 @@ public void SetPlaceable(EntityUid uid, bool isPlaceable, PlaceableSurfaceCompon if (!Resolve(uid, ref surface, false)) return; + if (surface.IsPlaceable == isPlaceable) + return; + surface.IsPlaceable = isPlaceable; Dirty(uid, surface); } @@ -59,11 +67,24 @@ private void OnAfterInteractUsing(EntityUid uid, PlaceableSurfaceComponent surfa if (!_handsSystem.TryDrop(args.User, args.Used)) return; - if (surface.PlaceCentered) - Transform(args.Used).LocalPosition = Transform(uid).LocalPosition + surface.PositionOffset; - else - Transform(args.Used).Coordinates = args.ClickLocation; + _transformSystem.SetCoordinates(args.Used, + surface.PlaceCentered ? Transform(uid).Coordinates.Offset(surface.PositionOffset) : args.ClickLocation); args.Handled = true; } + + private void OnStorageInteractUsingAttempt(Entity ent, ref StorageInteractUsingAttemptEvent args) + { + args.Cancelled = true; + } + + private void OnStorageAfterOpen(Entity ent, ref StorageAfterOpenEvent args) + { + SetPlaceable(ent.Owner, true, ent.Comp); + } + + private void OnStorageAfterClose(Entity ent, ref StorageAfterCloseEvent args) + { + SetPlaceable(ent.Owner, false, ent.Comp); + } } diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 4932613d0e64..309ac0a2e093 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -487,9 +487,6 @@ private void ModifyComponents(EntityUid uid, SharedEntityStorageComponent? compo } } - if (TryComp(uid, out var surface)) - _placeableSurface.SetPlaceable(uid, component.Open, surface); - _appearance.SetData(uid, StorageVisuals.Open, component.Open); _appearance.SetData(uid, StorageVisuals.HasContents, component.Contents.ContainedEntities.Count > 0); } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index def9d797c483..d6fde292a147 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -364,7 +364,9 @@ private void OnInteractUsing(EntityUid uid, StorageComponent storageComp, Intera if (args.Handled || !CanInteract(args.User, (uid, storageComp), storageComp.ClickInsert, false)) return; - if (HasComp(uid)) + var attemptEv = new StorageInteractUsingAttemptEvent(); + RaiseLocalEvent(uid, ref attemptEv); + if (attemptEv.Cancelled) return; PlayerInsertHeldEntity((uid, storageComp), args.User); diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index a666169f5294..d2c607e57f76 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -238,6 +238,9 @@ public AnimateInsertingEntitiesEvent(NetEntity storage, List storedEn [ByRefEvent] public record struct StorageInteractAttemptEvent(bool Silent, bool Cancelled = false); + [ByRefEvent] + public record struct StorageInteractUsingAttemptEvent(bool Cancelled = false); + [NetSerializable] [Serializable] public enum StorageVisuals : byte From 3acf6b93a109ea542b3110c1f9b7fc59c6976aa3 Mon Sep 17 00:00:00 2001 From: Willhelm53 <97707302+Willhelm53@users.noreply.github.com> Date: Thu, 19 Sep 2024 03:51:33 -0400 Subject: [PATCH 045/161] Padded ItemStatus Text (#29560) * Back in the saddle again! <(8o) * if you like my STYLE you should see my SHEETS ;-) * stylesheet change works for ItemStatusNotHeld but broken for ItemStatus. Just using xaml for now. * teehee * beeg --------- Co-authored-by: metalgearsloth --- Content.Client/Stylesheets/StyleNano.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index 0bd75003a209..ccd36c35e82b 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -695,6 +695,18 @@ public StyleNano(IResourceCache resCache) : base(resCache) new StyleProperty("font-color", Color.FromHex("#E5E5E581")), }), + // ItemStatus for hands + Element() + .Class(StyleClassItemStatusNotHeld) + .Prop("font", notoSansItalic10) + .Prop("font-color", ItemStatusNotHeldColor) + .Prop(nameof(Control.Margin), new Thickness(4, 0, 0, 2)), + + Element() + .Class(StyleClassItemStatus) + .Prop(nameof(RichTextLabel.LineHeightScale), 0.7f) + .Prop(nameof(Control.Margin), new Thickness(4, 0, 0, 2)), + // Context Menu window Element().Class(ContextMenuPopup.StyleClassContextMenuPopup) .Prop(PanelContainer.StylePropertyPanel, contextMenuBackground), From 94ad76fd07f148628c1b5d8070565635957caeb2 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Thu, 19 Sep 2024 04:02:37 -0400 Subject: [PATCH 046/161] Fix Set Outfit command/verb (#29672) * Filter Set Outfit menu to exclude loadout sets * Apply loadouts to job outfits * Use appropriate species for Urists * squishy --------- Co-authored-by: metalgearsloth --- .../UI/SetOutfit/SetOutfitMenu.xaml.cs | 18 +++++++--- .../Commands/SetOutfitCommand.cs | 36 +++++++++++++++++++ 2 files changed, 49 insertions(+), 5 deletions(-) diff --git a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs index 7cb32b43df59..615f1434df22 100644 --- a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs +++ b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs @@ -1,14 +1,13 @@ +using System.Linq; using System.Numerics; using Content.Client.UserInterface.Controls; +using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; using Robust.Client.AutoGenerated; using Robust.Client.Console; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Localization; using Robust.Shared.Prototypes; namespace Content.Client.Administration.UI.SetOutfit @@ -65,9 +64,18 @@ private void SearchBarOnOnTextChanged(LineEdit.LineEditEventArgs obj) PopulateByFilter(SearchBar.Text); } + private IEnumerable GetPrototypes() + { + // Filter out any StartingGearPrototypes that belong to loadouts + var loadouts = _prototypeManager.EnumeratePrototypes(); + var loadoutGears = loadouts.Select(l => l.StartingGear); + return _prototypeManager.EnumeratePrototypes() + .Where(p => !loadoutGears.Contains(p.ID)); + } + private void PopulateList() { - foreach (var gear in _prototypeManager.EnumeratePrototypes()) + foreach (var gear in GetPrototypes()) { OutfitList.Add(GetItem(gear, OutfitList)); } @@ -76,7 +84,7 @@ private void PopulateList() private void PopulateByFilter(string filter) { OutfitList.Clear(); - foreach (var gear in _prototypeManager.EnumeratePrototypes()) + foreach (var gear in GetPrototypes()) { if (!string.IsNullOrEmpty(filter) && gear.ID.ToLowerInvariant().Contains(filter.Trim().ToLowerInvariant())) diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index ff4d34705a6c..9240e7b91b66 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -4,11 +4,15 @@ using Content.Server.Preferences.Managers; using Content.Shared.Access.Components; using Content.Shared.Administration; +using Content.Shared.Clothing; using Content.Shared.Hands.Components; +using Content.Shared.Humanoid; using Content.Shared.Inventory; using Content.Shared.PDA; using Content.Shared.Preferences; +using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; +using Content.Shared.Station; using Robust.Shared.Console; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -82,9 +86,11 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit return false; HumanoidCharacterProfile? profile = null; + ICommonSession? session = null; // Check if we are setting the outfit of a player to respect the preferences if (entityManager.TryGetComponent(target, out ActorComponent? actorComponent)) { + session = actorComponent.PlayerSession; var userId = actorComponent.PlayerSession.UserId; var preferencesManager = IoCManager.Resolve(); var prefs = preferencesManager.GetPreferences(userId); @@ -128,6 +134,36 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit } } + // See if this starting gear is associated with a job + var jobs = prototypeManager.EnumeratePrototypes(); + foreach (var job in jobs) + { + if (job.StartingGear != gear) + continue; + + var jobProtoId = LoadoutSystem.GetJobPrototype(job.ID); + if (!prototypeManager.TryIndex(jobProtoId, out var jobProto)) + break; + + // Don't require a player, so this works on Urists + profile ??= entityManager.TryGetComponent(target, out var comp) + ? HumanoidCharacterProfile.DefaultWithSpecies(comp.Species) + : new HumanoidCharacterProfile(); + // Try to get the user's existing loadout for the role + profile.Loadouts.TryGetValue(jobProtoId, out var roleLoadout); + + if (roleLoadout == null) + { + // If they don't have a loadout for the role, make a default one + roleLoadout = new RoleLoadout(jobProtoId); + roleLoadout.SetDefault(profile, session, prototypeManager); + } + + // Equip the target with the job loadout + var stationSpawning = entityManager.System(); + stationSpawning.EquipRoleLoadout(target, roleLoadout, jobProto); + } + return true; } } From 59a8f4445d36d76a58ef814b3762cc324130deee Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:41:24 +0200 Subject: [PATCH 047/161] adds plasma and uranium arrows (#31241) --- .../Weapons/Guns/Projectiles/arrows.yml | 53 +++++++++++++++++++ .../Graphs/weapons/improvised_arrow.yml | 48 +++++++++++++++++ .../Recipes/Construction/weapons.yml | 22 ++++++++ 3 files changed, 123 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 6f925139fb1b..f1172c5de08c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -106,3 +106,56 @@ - type: Construction graph: ImprovisedArrow node: ImprovisedArrow + +- type: entity + parent: BaseArrow + id: ArrowImprovisedPlasma + name: plasma glass shard arrow + description: The greyshirt's preferred projectile. Now with extra lethality! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi + layers: + - state: tail + color: white + - state: rod + color: darkgray + - state: tip + color: purple + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 30 + - type: Construction + graph: ImprovisedArrowPlasma + node: ImprovisedArrowPlasma + +- type: entity + parent: BaseArrow + id: ArrowImprovisedUranium + name: uranium glass shard arrow + description: The greyshirt's preferred projectile. Now with added radiation! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi + layers: + - state: tail + color: white + - state: rod + color: darkgray + - state: tip + color: green + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 25 + Radiation: 5 + - type: Construction + graph: ImprovisedArrowUranium + node: ImprovisedArrowUranium diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml index 04b94690467d..20e06e9f4841 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml @@ -21,3 +21,51 @@ - node: ImprovisedArrow entity: ArrowImprovised + +- type: constructionGraph + id: ImprovisedArrowPlasma + start: start + graph: + - node: start + edges: + - to: ImprovisedArrowPlasma + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: PlasmaGlassShard + name: plasma glass shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: ImprovisedArrowPlasma + entity: ArrowImprovisedPlasma + +- type: constructionGraph + id: ImprovisedArrowUranium + start: start + graph: + - node: start + edges: + - to: ImprovisedArrowUranium + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: UraniumGlassShard + name: uranium glass shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: ImprovisedArrowUranium + entity: ArrowImprovisedUranium diff --git a/Resources/Prototypes/Recipes/Construction/weapons.yml b/Resources/Prototypes/Recipes/Construction/weapons.yml index 040d4c8963d1..5936a3506913 100644 --- a/Resources/Prototypes/Recipes/Construction/weapons.yml +++ b/Resources/Prototypes/Recipes/Construction/weapons.yml @@ -152,6 +152,28 @@ icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } objectType: Item +- type: construction + name: plasma glass shard arrow + id: ImprovisedArrowPlasma + graph: ImprovisedArrowPlasma + startNode: start + targetNode: ImprovisedArrowPlasma + category: construction-category-weapons + description: An arrow tipped with pieces of a plasma glass shard, for use with a bow. + icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } + objectType: Item + +- type: construction + name: uranium glass shard arrow + id: ImprovisedArrowUranium + graph: ImprovisedArrowUranium + startNode: start + targetNode: ImprovisedArrowUranium + category: construction-category-weapons + description: An arrow tipped with pieces of a uranium glass shard, for use with a bow. + icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } + objectType: Item + - type: construction name: improvised bow id: ImprovisedBow From 75ff65d108e0a228d85a2d5dde5cbdbd50ed0cd3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 08:42:31 +0000 Subject: [PATCH 048/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8eba2ed6d887..156fe91ffc8d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now confirmation popup is displayed and item panel status is updated - after setting a custom solution transfer volume. - type: Fix - id: 6898 - time: '2024-07-10T10:32:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29852 - author: Winkarst-cpu changes: - message: Added exit confirmation for character setup menu with unsaved changes. @@ -3919,3 +3911,10 @@ id: 7397 time: '2024-09-19T02:15:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29972 +- author: Boaz1111 + changes: + - message: Added plasma and uranium arrows. + type: Add + id: 7398 + time: '2024-09-19T08:41:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31241 From 1468cbdb8a59beb2dfc9188a3108157496549a57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=AD=D0=B4=D1=83=D0=B0=D1=80=D0=B4?= <36124833+Ertanic@users.noreply.github.com> Date: Thu, 19 Sep 2024 13:22:02 +0300 Subject: [PATCH 049/161] Wanted list cartridge (#31223) * WantedListCartridge has been added * WantedListCartridge user interface works * WantedListCartridge is added as standard in some PDAs * The CriminalRecordsSystem can now also take into account who created the record * Added offense history table * Fix of missing loaderUid for a cartridge without installing the program * Added personalized information about the target * The crime history has been finalized * Added StatusList * The officer's name has been added to the automatic history * WantedListCartridge has been added to the HOS locker * WantedListCartridge has been removed from brigmedic's preset programs * The StealConditionSystem now takes into account whether a cartridge is inserted or installed * Added target to thief on WantedListCartridge * Merge fix * Removing copypaste * Fix merge 2 * The sprite of WantedListCartridge has been changed * Update pda.yml * Fix scrollbar in the history table * Upstream localization fix * `StatusList` has been replaced by `ListContainer` with `TextureRect` * Margin fix --- .../Cartridges/WantedListUi.cs | 30 +++ .../Cartridges/WantedListUiFragment.cs | 240 ++++++++++++++++++ .../Cartridges/WantedListUiFragment.xaml | 50 ++++ .../CartridgeLoader/CartridgeLoaderSystem.cs | 6 + .../Cartridges/WantedListCartridge.cs | 8 + .../Systems/CriminalRecordsConsoleSystem.cs | 34 +-- .../Systems/CriminalRecordsSystem.cs | 90 ++++++- .../Systems/StealConditionSystem.cs | 6 + .../Cartridges/WantedListUiState.cs | 11 + .../CriminalRecords/CriminalRecord.cs | 8 +- .../Systems/SharedCriminalRecordsSystem.cs | 21 ++ .../en-US/cartridge-loader/cartridges.ftl | 29 +++ .../criminal-records/criminal-records.ftl | 2 +- .../conditions/steal-target-groups.ftl | 1 + .../Catalog/Fills/Lockers/heads.yml | 1 + .../Entities/Objects/Devices/cartridges.yml | 23 ++ .../Entities/Objects/Devices/pda.yml | 31 ++- .../Prototypes/Objectives/objectiveGroups.yml | 1 + .../Objectives/stealTargetGroups.yml | 7 + Resources/Prototypes/Objectives/thief.yml | 9 + .../Devices/cartridge.rsi/cart-sec.png | Bin 0 -> 314 bytes .../Objects/Devices/cartridge.rsi/meta.json | 5 +- 22 files changed, 579 insertions(+), 34 deletions(-) create mode 100644 Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs create mode 100644 Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs create mode 100644 Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml create mode 100644 Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs create mode 100644 Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs create mode 100644 Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs b/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs new file mode 100644 index 000000000000..3c97b8b37d15 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs @@ -0,0 +1,30 @@ +using Content.Client.UserInterface.Fragments; +using Content.Shared.CartridgeLoader.Cartridges; +using Robust.Client.UserInterface; + +namespace Content.Client.CartridgeLoader.Cartridges; + +public sealed partial class WantedListUi : UIFragment +{ + private WantedListUiFragment? _fragment; + + public override Control GetUIFragmentRoot() + { + return _fragment!; + } + + public override void Setup(BoundUserInterface userInterface, EntityUid? fragmentOwner) + { + _fragment = new WantedListUiFragment(); + } + + public override void UpdateState(BoundUserInterfaceState state) + { + switch (state) + { + case WantedListUiState cast: + _fragment?.UpdateState(cast.Records); + break; + } + } +} diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs new file mode 100644 index 000000000000..4137f6c2af0c --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs @@ -0,0 +1,240 @@ +using System.Linq; +using Content.Client.UserInterface.Controls; +using Content.Shared.CriminalRecords.Systems; +using Content.Shared.Security; +using Content.Shared.StatusIcon; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Input; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Client.CartridgeLoader.Cartridges; + +[GenerateTypedNameReferences] +public sealed partial class WantedListUiFragment : BoxContainer +{ + [Dependency] private readonly IEntitySystemManager _entitySystem = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + private readonly SpriteSystem _spriteSystem; + + private string? _selectedTargetName; + private List _wantedRecords = new(); + + public WantedListUiFragment() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + _spriteSystem = _entitySystem.GetEntitySystem(); + + SearchBar.OnTextChanged += OnSearchBarTextChanged; + } + + private void OnSearchBarTextChanged(LineEdit.LineEditEventArgs args) + { + var found = !String.IsNullOrWhiteSpace(args.Text) + ? _wantedRecords.FindAll(r => + r.TargetInfo.Name.Contains(args.Text) || + r.Status.ToString().Contains(args.Text, StringComparison.OrdinalIgnoreCase)) + : _wantedRecords; + + UpdateState(found, false); + } + + public void UpdateState(List records, bool refresh = true) + { + if (records.Count == 0) + { + NoRecords.Visible = true; + RecordsList.Visible = false; + RecordUnselected.Visible = false; + PersonContainer.Visible = false; + + _selectedTargetName = null; + if (refresh) + _wantedRecords.Clear(); + + RecordsList.PopulateList(new List()); + + return; + } + + NoRecords.Visible = false; + RecordsList.Visible = true; + RecordUnselected.Visible = true; + PersonContainer.Visible = false; + + var dataList = records.Select(r => new StatusListData(r)).ToList(); + + RecordsList.GenerateItem = GenerateItem; + RecordsList.ItemPressed = OnItemSelected; + RecordsList.PopulateList(dataList); + + if (refresh) + _wantedRecords = records; + } + + private void OnItemSelected(BaseButton.ButtonEventArgs args, ListData data) + { + if (data is not StatusListData(var record)) + return; + + FormattedMessage GetLoc(string fluentId, params (string,object)[] args) + { + var msg = new FormattedMessage(); + var fluent = Loc.GetString(fluentId, args); + msg.AddMarkupPermissive(fluent); + return msg; + } + + // Set personal info + PersonName.Text = record.TargetInfo.Name; + TargetAge.SetMessage(GetLoc( + "wanted-list-age-label", + ("age", record.TargetInfo.Age) + )); + TargetJob.SetMessage(GetLoc( + "wanted-list-job-label", + ("job", record.TargetInfo.JobTitle.ToLower()) + )); + TargetSpecies.SetMessage(GetLoc( + "wanted-list-species-label", + ("species", record.TargetInfo.Species.ToLower()) + )); + TargetGender.SetMessage(GetLoc( + "wanted-list-gender-label", + ("gender", record.TargetInfo.Gender) + )); + + // Set reason + WantedReason.SetMessage(GetLoc( + "wanted-list-reason-label", + ("reason", record.Reason ?? Loc.GetString("wanted-list-unknown-reason-label")) + )); + + // Set status + PersonState.SetMessage(GetLoc( + "wanted-list-status-label", + ("status", record.Status.ToString().ToLower()) + )); + + // Set initiator + InitiatorName.SetMessage(GetLoc( + "wanted-list-initiator-label", + ("initiator", record.Initiator ?? Loc.GetString("wanted-list-unknown-initiator-label")) + )); + + // History table + // Clear table if it exists + HistoryTable.RemoveAllChildren(); + + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-time-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + }); + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-reason-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + HorizontalExpand = true, + }); + + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-initiator-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + }); + + if (record.History.Count > 0) + { + HistoryTable.Visible = true; + + foreach (var history in record.History.OrderByDescending(h => h.AddTime)) + { + HistoryTable.AddChild(new Label() + { + Text = $"{history.AddTime.Hours:00}:{history.AddTime.Minutes:00}:{history.AddTime.Seconds:00}", + StyleClasses = { "LabelSmall" }, + VerticalAlignment = VAlignment.Top, + }); + + HistoryTable.AddChild(new RichTextLabel() + { + Text = $"[color=white]{history.Crime}[/color]", + HorizontalExpand = true, + VerticalAlignment = VAlignment.Top, + StyleClasses = { "LabelSubText" }, + Margin = new(10f, 0f), + }); + + HistoryTable.AddChild(new RichTextLabel() + { + Text = $"[color=white]{history.InitiatorName}[/color]", + StyleClasses = { "LabelSubText" }, + VerticalAlignment = VAlignment.Top, + }); + } + } + + RecordUnselected.Visible = false; + PersonContainer.Visible = true; + + // Save selected item + _selectedTargetName = record.TargetInfo.Name; + } + + private void GenerateItem(ListData data, ListContainerButton button) + { + if (data is not StatusListData(var record)) + return; + + var box = new BoxContainer() { Orientation = LayoutOrientation.Horizontal, HorizontalExpand = true }; + var label = new Label() { Text = record.TargetInfo.Name }; + var rect = new TextureRect() + { + TextureScale = new(2.2f), + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Margin = new(0f, 0f, 6f, 0f), + }; + + if (record.Status is not SecurityStatus.None) + { + var proto = "SecurityIcon" + record.Status switch + { + SecurityStatus.Detained => "Incarcerated", + _ => record.Status.ToString(), + }; + + if (_prototypeManager.TryIndex(proto, out var prototype)) + { + rect.Texture = _spriteSystem.Frame0(prototype.Icon); + } + } + + box.AddChild(rect); + box.AddChild(label); + button.AddChild(box); + button.AddStyleClass(ListContainer.StyleClassListContainerButton); + + if (record.TargetInfo.Name.Equals(_selectedTargetName)) + { + button.Pressed = true; + // For some reason the event is not called when `Pressed` changed, call it manually. + OnItemSelected( + new(button, new(new(), BoundKeyState.Down, new(), false, new(), new())), + data); + } + } +} + +internal record StatusListData(WantedRecord Record) : ListData; diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml new file mode 100644 index 000000000000..7b5d116ad74b --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml @@ -0,0 +1,50 @@ + + + + + + + diff --git a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs index cd422328c3e1..7caec6150ede 100644 --- a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs +++ b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs @@ -340,6 +340,9 @@ protected override void OnItemInserted(EntityUid uid, CartridgeLoaderComponent l if (args.Container.ID != InstalledContainerId && args.Container.ID != loader.CartridgeSlot.ID) return; + if (TryComp(args.Entity, out CartridgeComponent? cartridge)) + cartridge.LoaderUid = uid; + RaiseLocalEvent(args.Entity, new CartridgeAddedEvent(uid)); base.OnItemInserted(uid, loader, args); } @@ -360,6 +363,9 @@ protected override void OnItemRemoved(EntityUid uid, CartridgeLoaderComponent lo if (deactivate) RaiseLocalEvent(args.Entity, new CartridgeDeactivatedEvent(uid)); + if (TryComp(args.Entity, out CartridgeComponent? cartridge)) + cartridge.LoaderUid = null; + RaiseLocalEvent(args.Entity, new CartridgeRemovedEvent(uid)); base.OnItemRemoved(uid, loader, args); diff --git a/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs b/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs new file mode 100644 index 000000000000..08eef62379ab --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs @@ -0,0 +1,8 @@ +using Content.Shared.Security; + +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent] +public sealed partial class WantedListCartridgeComponent : Component +{ +} diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs index c5f1d159f31c..ca1d45e64494 100644 --- a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs @@ -68,6 +68,13 @@ private void OnFiltersChanged(Entity ent, ref S } } + private void GetOfficer(EntityUid uid, out string officer) + { + var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, uid); + RaiseLocalEvent(tryGetIdentityShortInfoEvent); + officer = tryGetIdentityShortInfoEvent.Title ?? Loc.GetString("criminal-records-console-unknown-officer"); + } + private void OnChangeStatus(Entity ent, ref CriminalRecordChangeStatus msg) { // prevent malf client violating wanted/reason nullability @@ -90,29 +97,22 @@ private void OnChangeStatus(Entity ent, ref Cri return; } + var oldStatus = record.Status; + + var name = _records.RecordName(key.Value); + GetOfficer(mob.Value, out var officer); + // when arresting someone add it to history automatically // fallback exists if the player was not set to wanted beforehand if (msg.Status == SecurityStatus.Detained) { var oldReason = record.Reason ?? Loc.GetString("criminal-records-console-unspecified-reason"); var history = Loc.GetString("criminal-records-console-auto-history", ("reason", oldReason)); - _criminalRecords.TryAddHistory(key.Value, history); + _criminalRecords.TryAddHistory(key.Value, history, officer); } - var oldStatus = record.Status; - // will probably never fail given the checks above - _criminalRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason); - - var name = _records.RecordName(key.Value); - var officer = Loc.GetString("criminal-records-console-unknown-officer"); - - var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, mob.Value); - RaiseLocalEvent(tryGetIdentityShortInfoEvent); - if (tryGetIdentityShortInfoEvent.Title != null) - { - officer = tryGetIdentityShortInfoEvent.Title; - } + _criminalRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason, officer); (string, object)[] args; if (reason != null) @@ -152,14 +152,16 @@ private void OnChangeStatus(Entity ent, ref Cri private void OnAddHistory(Entity ent, ref CriminalRecordAddHistory msg) { - if (!CheckSelected(ent, msg.Actor, out _, out var key)) + if (!CheckSelected(ent, msg.Actor, out var mob, out var key)) return; var line = msg.Line.Trim(); if (line.Length < 1 || line.Length > ent.Comp.MaxStringLength) return; - if (!_criminalRecords.TryAddHistory(key.Value, line)) + GetOfficer(mob.Value, out var officer); + + if (!_criminalRecords.TryAddHistory(key.Value, line, officer)) return; // no radio message since its not crucial to officers patrolling diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs index a65fb0be9e1a..7c65ce8c248c 100644 --- a/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs @@ -1,10 +1,15 @@ -using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Server.CartridgeLoader; +using Content.Server.CartridgeLoader.Cartridges; using Content.Server.StationRecords.Systems; using Content.Shared.CriminalRecords; using Content.Shared.CriminalRecords.Systems; using Content.Shared.Security; using Content.Shared.StationRecords; using Content.Server.GameTicking; +using Content.Server.Station.Systems; +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; namespace Content.Server.CriminalRecords.Systems; @@ -20,12 +25,18 @@ public sealed class CriminalRecordsSystem : SharedCriminalRecordsSystem { [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly StationRecordsSystem _records = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly CartridgeLoaderSystem _cartridge = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnGeneralRecordCreated); + SubscribeLocalEvent(OnRecordChanged); + SubscribeLocalEvent(OnCartridgeUiReady); + SubscribeLocalEvent(OnHistoryAdded); + SubscribeLocalEvent(OnHistoryRemoved); } private void OnGeneralRecordCreated(AfterGeneralRecordCreatedEvent ev) @@ -39,14 +50,14 @@ private void OnGeneralRecordCreated(AfterGeneralRecordCreatedEvent ev) /// Reason should only be passed if status is Wanted, nullability isn't checked. /// /// True if the status is changed, false if not - public bool TryChangeStatus(StationRecordKey key, SecurityStatus status, string? reason) + public bool TryChangeStatus(StationRecordKey key, SecurityStatus status, string? reason, string? initiatorName = null) { // don't do anything if its the same status if (!_records.TryGetRecord(key, out var record) || status == record.Status) return false; - OverwriteStatus(key, record, status, reason); + OverwriteStatus(key, record, status, reason, initiatorName); return true; } @@ -54,16 +65,24 @@ public bool TryChangeStatus(StationRecordKey key, SecurityStatus status, string? /// /// Sets the status without checking previous status or reason nullability. /// - public void OverwriteStatus(StationRecordKey key, CriminalRecord record, SecurityStatus status, string? reason) + public void OverwriteStatus(StationRecordKey key, CriminalRecord record, SecurityStatus status, string? reason, string? initiatorName = null) { record.Status = status; record.Reason = reason; + record.InitiatorName = initiatorName; var name = _records.RecordName(key); if (name != string.Empty) UpdateCriminalIdentity(name, status); _records.Synchronize(key); + + var args = new CriminalRecordChangedEvent(record); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } } /// @@ -76,15 +95,23 @@ public bool TryAddHistory(StationRecordKey key, CrimeHistory entry) return false; record.History.Add(entry); + + var args = new CriminalHistoryAddedEvent(entry); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } + return true; } /// /// Creates and tries to add a history entry using the current time. /// - public bool TryAddHistory(StationRecordKey key, string line) + public bool TryAddHistory(StationRecordKey key, string line, string? initiatorName = null) { - var entry = new CrimeHistory(_ticker.RoundDuration(), line); + var entry = new CrimeHistory(_ticker.RoundDuration(), line, initiatorName); return TryAddHistory(key, entry); } @@ -100,7 +127,58 @@ public bool TryDeleteHistory(StationRecordKey key, uint index) if (index >= record.History.Count) return false; + var history = record.History[(int)index]; record.History.RemoveAt((int) index); + + var args = new CriminalHistoryRemovedEvent(history); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } + return true; } + + private void OnRecordChanged(Entity ent, ref CriminalRecordChangedEvent args) => + StateChanged(ent); + + private void OnHistoryAdded(Entity ent, ref CriminalHistoryAddedEvent args) => + StateChanged(ent); + + private void OnHistoryRemoved(Entity ent, ref CriminalHistoryRemovedEvent args) => + StateChanged(ent); + + private void StateChanged(Entity ent) + { + if (Comp(ent).LoaderUid is not { } loaderUid) + return; + + UpdateReaderUi(ent, loaderUid); + } + + private void OnCartridgeUiReady(Entity ent, ref CartridgeUiReadyEvent args) + { + UpdateReaderUi(ent, args.Loader); + } + + private void UpdateReaderUi(Entity ent, EntityUid loaderUid) + { + if (_station.GetOwningStation(ent) is not { } station) + return; + + var records = _records.GetRecordsOfType(station) + .Where(cr => cr.Item2.Status is not SecurityStatus.None || cr.Item2.History.Count > 0) + .Select(cr => + { + var (i, r) = cr; + var key = new StationRecordKey(i, station); + // Hopefully it will work smoothly..... + _records.TryGetRecord(key, out GeneralStationRecord? generalRecord); + return new WantedRecord(generalRecord!, r.Status, r.Reason, r.InitiatorName, r.History); + }); + var state = new WantedListUiState(records.ToList()); + + _cartridge.UpdateCartridgeUiState(loaderUid, state); + } } diff --git a/Content.Server/Objectives/Systems/StealConditionSystem.cs b/Content.Server/Objectives/Systems/StealConditionSystem.cs index be34a80fe348..e2d81e011cf5 100644 --- a/Content.Server/Objectives/Systems/StealConditionSystem.cs +++ b/Content.Server/Objectives/Systems/StealConditionSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Objectives.Components; using Content.Server.Objectives.Components.Targets; +using Content.Shared.CartridgeLoader; using Content.Shared.Mind; using Content.Shared.Objectives.Components; using Content.Shared.Objectives.Systems; @@ -172,6 +173,11 @@ private int CheckStealTarget(EntityUid entity, StealConditionComponent condition if (target.StealGroup != condition.StealGroup) return 0; + // check if cartridge is installed + if (TryComp(entity, out var cartridge) && + cartridge.InstallationStatus is not InstallationStatus.Cartridge) + return 0; + // check if needed target alive if (condition.CheckAlive) { diff --git a/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs b/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs new file mode 100644 index 000000000000..9d55e0c16368 --- /dev/null +++ b/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs @@ -0,0 +1,11 @@ +using Content.Shared.CriminalRecords; +using Content.Shared.CriminalRecords.Systems; +using Robust.Shared.Serialization; + +namespace Content.Shared.CartridgeLoader.Cartridges; + +[Serializable, NetSerializable] +public sealed class WantedListUiState(List records) : BoundUserInterfaceState +{ + public List Records = records; +} diff --git a/Content.Shared/CriminalRecords/CriminalRecord.cs b/Content.Shared/CriminalRecords/CriminalRecord.cs index 0fe23d439541..5a023a9188c6 100644 --- a/Content.Shared/CriminalRecords/CriminalRecord.cs +++ b/Content.Shared/CriminalRecords/CriminalRecord.cs @@ -23,6 +23,12 @@ public sealed record CriminalRecord [DataField] public string? Reason; + /// + /// The name of the person who changed the status. + /// + [DataField] + public string? InitiatorName; + /// /// Criminal history of the person. /// This should have charges and time served added after someone is detained. @@ -35,4 +41,4 @@ public sealed record CriminalRecord /// A line of criminal activity and the time it was added at. /// [Serializable, NetSerializable] -public record struct CrimeHistory(TimeSpan AddTime, string Crime); +public record struct CrimeHistory(TimeSpan AddTime, string Crime, string? InitiatorName); diff --git a/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs b/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs index 96b33ab91bd3..d665d32f1ed2 100644 --- a/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs +++ b/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs @@ -2,6 +2,8 @@ using Content.Shared.IdentityManagement.Components; using Content.Shared.Security; using Content.Shared.Security.Components; +using Content.Shared.StationRecords; +using Robust.Shared.Serialization; namespace Content.Shared.CriminalRecords.Systems; @@ -50,3 +52,22 @@ public void SetCriminalIcon(string name, SecurityStatus status, EntityUid charac Dirty(characterUid, record); } } + +[Serializable, NetSerializable] +public struct WantedRecord(GeneralStationRecord targetInfo, SecurityStatus status, string? reason, string? initiator, List history) +{ + public GeneralStationRecord TargetInfo = targetInfo; + public SecurityStatus Status = status; + public string? Reason = reason; + public string? Initiator = initiator; + public List History = history; +}; + +[ByRefEvent] +public record struct CriminalRecordChangedEvent(CriminalRecord Record); + +[ByRefEvent] +public record struct CriminalHistoryAddedEvent(CrimeHistory History); + +[ByRefEvent] +public record struct CriminalHistoryRemovedEvent(CrimeHistory History); diff --git a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl index f5cda2f2a18b..2db27f5be09a 100644 --- a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl @@ -19,3 +19,32 @@ log-probe-scan = Downloaded logs from {$device}! log-probe-label-time = Time log-probe-label-accessor = Accessed by log-probe-label-number = # + +# Wanted list cartridge +wanted-list-program-name = Wanted list +wanted-list-label-no-records = It's all right, cowboy +wanted-list-search-placeholder = Search by name and status + +wanted-list-age-label = [color=darkgray]Age:[/color] [color=white]{$age}[/color] +wanted-list-job-label = [color=darkgray]Job:[/color] [color=white]{$job}[/color] +wanted-list-species-label = [color=darkgray]Species:[/color] [color=white]{$species}[/color] +wanted-list-gender-label = [color=darkgray]Gender:[/color] [color=white]{$gender}[/color] + +wanted-list-reason-label = [color=darkgray]Reason:[/color] [color=white]{$reason}[/color] +wanted-list-unknown-reason-label = unknown reason + +wanted-list-initiator-label = [color=darkgray]Initiator:[/color] [color=white]{$initiator}[/color] +wanted-list-unknown-initiator-label = unknown initiator + +wanted-list-status-label = [color=darkgray]status:[/color] {$status -> + [suspected] [color=yellow]suspected[/color] + [wanted] [color=red]wanted[/color] + [detained] [color=#b18644]detained[/color] + [paroled] [color=green]paroled[/color] + [discharged] [color=green]discharged[/color] + *[other] none + } + +wanted-list-history-table-time-col = Time +wanted-list-history-table-reason-col = Crime +wanted-list-history-table-initiator-col = Initiator diff --git a/Resources/Locale/en-US/criminal-records/criminal-records.ftl b/Resources/Locale/en-US/criminal-records/criminal-records.ftl index 6d6a97300c23..2a7c09912fae 100644 --- a/Resources/Locale/en-US/criminal-records/criminal-records.ftl +++ b/Resources/Locale/en-US/criminal-records/criminal-records.ftl @@ -39,7 +39,7 @@ criminal-records-console-released = {$name} has been released by {$officer}. criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name}. criminal-records-console-paroled = {$name} has been released on parole by {$officer}. criminal-records-console-not-parole = {$officer} cleared the parole status of {$name}. -criminal-records-console-unknown-officer = +criminal-records-console-unknown-officer = ## Filters diff --git a/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl b/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl index 91b3c92b1c33..689e2e7808eb 100644 --- a/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl +++ b/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl @@ -40,6 +40,7 @@ steal-target-groups-clothing-eyes-hud-beer = beer goggles steal-target-groups-bible = bible steal-target-groups-clothing-neck-goldmedal = gold medal of crewmanship steal-target-groups-clothing-neck-clownmedal = clown medal +steal-target-groups-wanted-list-cartridge = wanted list cartridge # Thief structures steal-target-groups-teg = teg generator part diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index d31896301600..31ebad618370 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -325,6 +325,7 @@ - id: RubberStampHos - id: SecurityTechFabCircuitboard - id: WeaponDisabler + - id: WantedListCartridge # Hardsuit table, used for suit storage as well - type: entityTable diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index f9581149e214..91493f48cd1f 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -93,3 +93,26 @@ - type: GuideHelp guides: - Forensics + +- type: entity + parent: BaseItem + id: WantedListCartridge + name: Wanted list cartridge + description: A program to get a list of wanted persons. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + - type: UIFragment + ui: !type:WantedListUi + - type: Cartridge + programName: wanted-list-program-name + icon: + sprite: Objects/Misc/books.rsi + state: icon_magnifier + - type: WantedListCartridge + - type: StealTarget + stealGroup: WantedListCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 40f6f77e12d2..48e7a28debeb 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -114,6 +114,18 @@ - type: Speech speechVerb: Robotic +- type: entity + id: BaseSecurityPDA + abstract: true + components: + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - WantedListCartridge + - type: entity parent: BasePDA id: BaseMedicalPDA @@ -433,7 +445,7 @@ state: pda-library - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: LawyerPDA name: lawyer PDA description: For lawyers to poach dubious clients. @@ -476,7 +488,7 @@ state: pda-janitor - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: CaptainPDA name: captain PDA description: Surprisingly no different from your PDA. @@ -651,7 +663,7 @@ state: pda-science - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: HoSPDA name: head of security PDA description: Whosoever bears this PDA is the law. @@ -666,7 +678,7 @@ state: pda-hos - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: WardenPDA name: warden PDA description: The OS appears to have been jailbroken. @@ -681,7 +693,7 @@ state: pda-warden - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: SecurityPDA name: security PDA description: Red to hide the stains of passenger blood. @@ -695,7 +707,7 @@ state: pda-security - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: CentcomPDA name: CentComm PDA description: Light green sign of walking bureaucracy. @@ -733,6 +745,7 @@ - NotekeeperCartridge - NewsReaderCartridge - LogProbeCartridge + - WantedListCartridge - type: entity parent: CentcomPDA @@ -834,7 +847,7 @@ - Cartridge - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: ERTLeaderPDA name: ERT Leader PDA suffix: Leader @@ -982,7 +995,7 @@ state: pda-boxer - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: DetectivePDA name: detective PDA description: Smells like rain... pouring down the rooftops... @@ -1082,7 +1095,7 @@ state: pda-seniorphysician - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: SeniorOfficerPDA name: senior officer PDA description: Beaten, battered and broken, but just barely useable. diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 481ca0f93d84..e72de0d94a93 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -73,6 +73,7 @@ ForensicScannerStealObjective: 1 #sec FlippoEngravedLighterStealObjective: 0.5 ClothingHeadHatWardenStealObjective: 1 + WantedListCartridgeStealObjective: 1 ClothingOuterHardsuitVoidParamedStealObjective: 1 #med MedicalTechFabCircuitboardStealObjective: 1 ClothingHeadsetAltMedicalStealObjective: 1 diff --git a/Resources/Prototypes/Objectives/stealTargetGroups.yml b/Resources/Prototypes/Objectives/stealTargetGroups.yml index 48f56e2bfcd7..09619bf9868e 100644 --- a/Resources/Prototypes/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/Objectives/stealTargetGroups.yml @@ -263,6 +263,13 @@ sprite: Clothing/Neck/Medals/clownmedal.rsi state: icon +- type: stealTargetGroup + id: WantedListCartridge + name: steal-target-groups-wanted-list-cartridge + sprite: + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + #Thief structures - type: stealTargetGroup diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index f8e44d831e94..7a46d0f5e9b8 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -184,6 +184,15 @@ - type: Objective difficulty: 1.2 +- type: entity + parent: BaseThiefStealObjective + id: WantedListCartridgeStealObjective + components: + - type: StealCondition + stealGroup: WantedListCartridge + - type: Objective + difficulty: 1 + - type: entity #Medical subgroup parent: BaseThiefStealObjective id: ClothingOuterHardsuitVoidParamedStealObjective diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png new file mode 100644 index 0000000000000000000000000000000000000000..6a3197004cbf0460f517049aae94986a820100c8 GIT binary patch literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}w>(`OLn2z= zPBG+bHsEosU!^CfG-YaI@P@Arw!!>Ij%i9n2!48CD9e?Vk(r#al<({8fG=PF9}i=a zXiNNK?We4?Xvgswmreg783m87T6N&e>_dCMzu2W0{b+?@a@w5Va_S66OTvzKT-&+) zy`Tg0gP>`v7O_v|ifB21#c)yI>9-=2!@74lNZGY-JEyyB!?LprqYi4z{jcMH#o42s z{*tBWRzJ5%XQ9=%64~O4%?le|Nwo=>Mck8YduV;#K$H3X-)LTAXO}DUR*80WXvyrb zb#Pgt_wn=c8wNawcQEPn`j%LP9bO0YC0}ZUXPU1sgBFm@0mLA1DR?r7@^tlcS?83{ F1ONqldhh@M literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index f3b02a2b2eab..d5fad5600621 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord)", "size": { "x": 32, "y": 32 @@ -79,6 +79,9 @@ { "name": "cart-y" }, + { + "name": "cart-sec" + }, { "name": "insert_overlay" } From ccadcc97819daaa2f8028df695527643392f9063 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 10:23:08 +0000 Subject: [PATCH 050/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 156fe91ffc8d..df513a66be1d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Added exit confirmation for character setup menu with unsaved changes. - type: Add - id: 6899 - time: '2024-07-11T00:24:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29875 - author: ShadowCommander changes: - message: Players can now use melee attacks and shoves while dragging an entity @@ -3918,3 +3911,14 @@ id: 7398 time: '2024-09-19T08:41:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31241 +- author: Ertanic + changes: + - message: Wanted list program and its cartridge. + type: Add + - message: The cartridge has been added to the HOS locker. + type: Add + - message: Added target to thief on wanted list cartridge. + type: Add + id: 7399 + time: '2024-09-19T10:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31223 From 854bfd27cb062680caaeeec2a4c58b53372b4af6 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Thu, 19 Sep 2024 12:23:45 +0200 Subject: [PATCH 051/161] Crew Monitor filter (#31659) * crewmon filter * string case matching Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Medical/CrewMonitoring/CrewMonitoringWindow.xaml | 3 +++ .../Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs | 5 +++++ .../en-US/medical/components/crew-monitoring-component.ftl | 2 ++ 3 files changed, 10 insertions(+) diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml index 660f2e5e11f5..dd40749d33b2 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml @@ -15,6 +15,9 @@ + + departmentSens // Populate departments foreach (var sensor in departmentSensors) { + if (!string.IsNullOrEmpty(SearchLineEdit.Text) + && !sensor.Name.Contains(SearchLineEdit.Text, StringComparison.CurrentCultureIgnoreCase) + && !sensor.Job.Contains(SearchLineEdit.Text, StringComparison.CurrentCultureIgnoreCase)) + continue; + var coordinates = _entManager.GetCoordinates(sensor.Coordinates); // Add a button that will hold a username and other details diff --git a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl index 7fd7f4608e16..601c45e4e223 100644 --- a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl +++ b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl @@ -2,6 +2,8 @@ crew-monitoring-user-interface-title = Crew Monitoring Console +crew-monitor-filter-line-placeholder = Filter + crew-monitoring-user-interface-name = Name crew-monitoring-user-interface-job = Job crew-monitoring-user-interface-status = Status From eb9047982a0080b9b26b1d124e56b6279a0bd96f Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 10:24:51 +0000 Subject: [PATCH 052/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index df513a66be1d..5f5d96f41c9d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ShadowCommander - changes: - - message: Players can now use melee attacks and shoves while dragging an entity - in their active hand. - type: Tweak - id: 6900 - time: '2024-07-11T04:48:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29703 - author: Cojoke-dot changes: - message: You can no longer shoot out of crates with guns @@ -3922,3 +3914,10 @@ id: 7399 time: '2024-09-19T10:22:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31223 +- author: Errant + changes: + - message: Crew monitor list can now be filtered by name and job. + type: Add + id: 7400 + time: '2024-09-19T10:23:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31659 From 3c0be539ecf199b4b7f29fdf010938330f3692f7 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:35:39 -0400 Subject: [PATCH 053/161] Oasis updoot. (#32133) * updoooooooooooot * had to change to closed shutters * I press wrong button * ngl logic gates kinda ass to work with * get linked * Why is it so easy to place entities twice!? * camer --- Resources/Maps/oasis.yml | 2305 ++++++++++++++++++++++++++++++-------- 1 file changed, 1863 insertions(+), 442 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 398fdeb398f0..8cde5f558c2a 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -226,7 +226,7 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAABZQAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAARAAAAAAAgQAAAAAAZQAAAAAAZQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAABZQAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-3: ind: -4,-3 @@ -366,7 +366,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAAAZQAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAAAZQAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAJQAAAAAAJQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADbAAAAAAAbAAAAAAA version: 6 4,1: ind: 4,1 @@ -459,9 +459,6 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 961: -57,-9 - 962: -56,-9 - 963: -55,-9 964: -55,-10 965: -56,-10 966: -57,-10 @@ -472,6 +469,9 @@ entities: 971: -56,-12 972: -57,-12 3489: -3,-31 + 3930: -57,-13 + 3931: -56,-13 + 3932: -55,-13 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1258,7 +1258,6 @@ entities: 3286: -53,-11 3287: -53,-12 3288: -53,-13 - 3289: -53,-15 3307: -58,3 3308: -57,3 3309: -56,3 @@ -1485,17 +1484,15 @@ entities: 3245: -58,1 3246: -58,0 3247: -58,-1 - 3248: -58,-8 - 3249: -58,-9 3250: -58,-10 3251: -58,-11 3252: -58,-12 - 3253: -58,-13 3254: -58,-14 3255: -58,-15 3343: -47,-5 3351: -47,-2 3360: -50,-2 + 3942: -58,-13 - node: color: '#D381C996' id: BrickTileWhiteInnerNw @@ -1693,8 +1690,6 @@ entities: decals: 3256: -58,-15 3257: -57,-15 - 3258: -54,-15 - 3259: -53,-15 3260: -53,-13 3261: -53,-12 3262: -53,-11 @@ -1710,7 +1705,6 @@ entities: 3272: -53,1 3273: -53,2 3274: -53,3 - 3290: -53,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSe @@ -1923,18 +1917,12 @@ entities: color: '#BC863FFF' id: BrickTileWhiteInnerSw decals: - 3291: -53,-15 - 3292: -54,-15 3293: -57,-15 3294: -58,-15 3295: -58,-14 - 3296: -58,-13 3297: -58,-12 3298: -58,-11 3299: -58,-10 - 3300: -58,-9 - 3301: -58,-8 - 3302: -58,-7 3303: -58,0 3304: -58,1 3305: -58,2 @@ -1942,6 +1930,9 @@ entities: 3346: -47,2 3352: -47,-2 3359: -50,1 + 3941: -58,-13 + 3943: -58,-9 + 3946: -54,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSw @@ -5676,25 +5667,26 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3340: -58,-13 3556: -22,42 3572: -31,35 + 3929: -58,-14 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 979: -56,-7 983: -56,-3 - 999: -54,-13 3555: -18,42 3573: -24,35 + 3928: -54,-14 + 3940: -56,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3339: -58,-8 3553: -22,44 3571: -31,37 + 3927: -58,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5702,9 +5694,10 @@ entities: 977: -56,-1 978: -56,-1 984: -56,-5 - 998: -54,-8 3554: -18,44 3570: -24,37 + 3926: -54,-9 + 3939: -56,-7 - node: color: '#FFFFFFFF' id: WarnFull @@ -5712,6 +5705,7 @@ entities: 2479: 12,53 2480: 13,53 2481: 14,53 + 3944: -53,-15 - node: color: '#BC863FFF' id: WarnFullGreyscale @@ -5732,8 +5726,9 @@ entities: 3334: -58,-12 3335: -58,-11 3336: -58,-10 - 3337: -58,-9 3549: -22,43 + 3924: -58,-13 + 3945: -54,-15 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5769,14 +5764,15 @@ entities: id: WarnLineN decals: 974: -57,-1 - 988: -57,-8 - 989: -56,-8 - 990: -56,-8 - 991: -55,-8 3341: -58,-1 3546: -19,44 3547: -20,44 3548: -21,44 + 3918: -57,-9 + 3919: -56,-9 + 3920: -55,-9 + 3934: -58,-7 + 3935: -57,-7 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5787,20 +5783,18 @@ entities: 993: -54,-11 994: -54,-12 2462: 17,49 - 3338: -54,-9 3540: 21,46 3541: 21,47 3542: 21,48 3543: 21,49 3545: -18,43 + 3925: -54,-13 + 3938: -56,-8 - node: color: '#FFFFFFFF' id: WarnLineW decals: 973: -57,-7 - 995: -55,-13 - 996: -56,-13 - 997: -57,-13 2458: 12,46 2459: 13,46 2460: 14,46 @@ -5812,10 +5806,15 @@ entities: 2476: 19,51 2477: 15,53 2478: 11,53 - 3342: -58,-7 3550: -21,42 3551: -20,42 3552: -19,42 + 3921: -57,-14 + 3922: -56,-14 + 3923: -55,-14 + 3933: -58,-7 + 3936: -58,-9 + 3937: -57,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -7372,9 +7371,9 @@ entities: 3: 3276 0: 32768 -16,-5: - 0: 3080 + 0: 35848 -16,-4: - 3: 140 + 3: 52428 -15,-7: 3: 4368 0: 3276 @@ -7941,16 +7940,15 @@ entities: 0: 4879 3: 52224 14,5: - 0: 4593 + 0: 7633 14,6: - 0: 1 + 0: 15 3: 13056 15,5: - 0: 248 + 0: 35768 15,6: - 3: 14024 - 16,6: - 3: 34947 + 0: 15 + 3: 13824 16,7: 3: 55544 13,12: @@ -8101,19 +8099,18 @@ entities: 0: 1 -2,-18: 0: 4096 + -16,-3: + 3: 17612 -16,-2: - 3: 12 + 3: 4 0: 51200 -16,-1: 0: 2240 - -16,-3: - 3: 32768 -15,-3: - 3: 4369 - 0: 52428 - -15,-2: 3: 1 - 0: 64972 + 0: 56796 + -15,-2: + 0: 64975 -14,-3: 0: 65535 -14,-2: @@ -8121,7 +8118,9 @@ entities: 16,4: 3: 25188 16,5: - 3: 63010 + 3: 58914 + 16,6: + 3: 34946 16,3: 3: 18018 17,5: @@ -11271,11 +11270,19 @@ entities: parent: 2 - type: DeviceList devices: - - 29003 - - 29004 + - 10840 + - 10841 - 29050 - 9276 - - 28969 + - 10839 + - type: DeviceLinkSource + linkedPorts: + 12356: + - AirWarning: Close + - AirDanger: Close + 13577: + - AirDanger: Close + - AirWarning: Close - proto: AirCanister entities: - uid: 4223 @@ -12350,40 +12357,44 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - - uid: 826 + - uid: 11331 components: - type: Transform - pos: -60.5,-20.5 + pos: -58.5,-2.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 28494: + 11335: - DoorStatus: DoorBolt - - uid: 11331 + - uid: 11332 components: - type: Transform - pos: -58.5,-2.5 + pos: -58.5,-4.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11335: + 11336: - DoorStatus: DoorBolt - - uid: 11332 + - uid: 29523 components: - type: Transform - pos: -58.5,-4.5 + rot: 1.5707963267948966 rad + pos: -60.5,-20.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11336: - - DoorStatus: DoorBolt - - uid: 28494 + 827: + - DoorStatus: InputB + 29543: + - DoorStatus: InputA + - DoorStatus: InputB + - uid: 29528 components: - type: Transform pos: -58.5,-19.5 @@ -12392,19 +12403,39 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 826: - - DoorStatus: DoorBolt - - uid: 28495 + 29536: + - DoorStatus: InputA + 29539: + - DoorStatus: InputA + - uid: 29532 components: - type: Transform + rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 277: - - DoorStatus: DoorBolt + 29538: + - DoorStatus: InputA + 29534: + - DoorStatus: InputA + - uid: 29541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29542: + - DoorStatus: InputA + - DoorStatus: InputB + 826: + - DoorStatus: InputB - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 234 @@ -12914,20 +12945,6 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-17.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5767: - - DoorStatus: InputA - - DockStatus: InputA - - DockStatus: InputB - - type: DeviceLinkSink - invokeCounter: 1 - uid: 353 components: - type: Transform @@ -13016,6 +13033,42 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 21002 + - uid: 24126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 277: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + 29540: + - DockStatus: InputA + 29535: + - DockStatus: InputA + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 29530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10843: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + 29533: + - DockStatus: InputA + 29537: + - DockStatus: InputA + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 24601 @@ -14417,7 +14470,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59140.387 + secondsUntilStateChange: -75908.84 state: Opening - uid: 6934 components: @@ -14429,7 +14482,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59143.02 + secondsUntilStateChange: -75911.48 state: Opening - uid: 6935 components: @@ -14441,7 +14494,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59141.87 + secondsUntilStateChange: -75910.33 state: Opening - uid: 6936 components: @@ -14452,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59141.086 + secondsUntilStateChange: -75909.55 state: Opening - proto: AirlockTheatreLocked entities: @@ -15623,14 +15676,6 @@ entities: - type: Transform pos: 21.42931,-41.39281 parent: 2 -- proto: AntimovCircuitBoard - entities: - - uid: 29447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.214676,22.569477 - parent: 2 - proto: APCBasic entities: - uid: 1172 @@ -36971,6 +37016,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Biogenerator + entities: + - uid: 10836 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 - proto: BlastDoor entities: - uid: 7042 @@ -37187,6 +37239,430 @@ entities: - type: Transform pos: -11.612324,33.571518 parent: 2 + - uid: 11365 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + parent: 7896 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 11371 + components: + - type: MetaData + name: Smark Dock Mk VII User Manual + - type: Transform + parent: 7898 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 11372 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + parent: 7899 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 29573 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + rot: 9.42477796076938 rad + pos: -53.18508,9.538769 + parent: 2 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + - proto: BookMedicalOfficer entities: - uid: 29053 @@ -37285,6 +37761,18 @@ entities: - type: Transform pos: -6.5,32.5 parent: 2 + - type: Storage + storedItems: + 11365: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11365 - uid: 7897 components: - type: Transform @@ -37295,11 +37783,35 @@ entities: - type: Transform pos: -6.5,34.5 parent: 2 + - type: Storage + storedItems: + 11371: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11371 - uid: 7899 components: - type: Transform pos: -8.5,32.5 parent: 2 + - type: Storage + storedItems: + 11372: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11372 - uid: 7900 components: - type: Transform @@ -37529,9 +38041,9 @@ entities: - uid: 15048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.241848,9.595246 - parent: 2 + parent: 29261 + - type: Physics + canCollide: False - uid: 29291 components: - type: Transform @@ -37600,11 +38112,11 @@ entities: 11862: position: 1,0 _rotation: South - - uid: 23238 + - uid: 29521 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.605057,5.3996086 + pos: -56.42585,5.4972024 parent: 2 - type: ContainerContainer containers: @@ -37677,9 +38189,9 @@ entities: - uid: 15047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.658516,9.595246 - parent: 2 + parent: 29260 + - type: Physics + canCollide: False - uid: 28614 components: - type: Transform @@ -37778,6 +38290,12 @@ entities: parent: 3609 - type: Physics canCollide: False + - uid: 11381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.65753,9.624434 + parent: 2 - uid: 24154 components: - type: Transform @@ -38006,13 +38524,21 @@ entities: - uid: 9656 components: - type: Transform - pos: 7.5352507,21.61231 + pos: 3.4859555,19.501976 parent: 2 - uid: 22743 components: - type: Transform pos: 7.3088074,9.718449 parent: 21002 +- proto: ButtonFrameCaution + entities: + - uid: 5767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 10949 @@ -55628,6 +56154,61 @@ entities: - type: Transform pos: -3.5,16.5 parent: 2 + - uid: 29496 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 29497 + components: + - type: Transform + pos: -60.5,-16.5 + parent: 2 + - uid: 29498 + components: + - type: Transform + pos: -60.5,-15.5 + parent: 2 + - uid: 29499 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 2 + - uid: 29500 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 29501 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 29502 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 29503 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 29504 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 29505 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 29506 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -74612,6 +75193,156 @@ entities: rot: 3.141592653589793 rad pos: 52.5,27.5 parent: 2 + - uid: 29547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - uid: 29548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-13.5 + parent: 2 + - uid: 29549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-12.5 + parent: 2 + - uid: 29550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-11.5 + parent: 2 + - uid: 29551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - uid: 29552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 2 + - uid: 29553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - uid: 29554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-12.5 + parent: 2 + - uid: 29555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-11.5 + parent: 2 + - uid: 29556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 + - uid: 29557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - uid: 29558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-22.5 + parent: 2 + - uid: 29559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - uid: 29560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 + - uid: 29561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-21.5 + parent: 2 + - uid: 29562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-22.5 + parent: 2 + - uid: 29563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - uid: 29564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-24.5 + parent: 2 + - uid: 29565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-26.5 + parent: 2 + - uid: 29566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-26.5 + parent: 2 + - uid: 29567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-25.5 + parent: 2 + - uid: 29568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-25.5 + parent: 2 + - uid: 29569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-24.5 + parent: 2 + - uid: 29570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-23.5 + parent: 2 + - uid: 29571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-22.5 + parent: 2 - proto: Chair entities: - uid: 495 @@ -78394,6 +79125,11 @@ entities: parent: 2 - proto: ConveyorBelt entities: + - uid: 11325 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 - uid: 11344 components: - type: Transform @@ -78466,6 +79202,11 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-1.5 parent: 2 + - uid: 11361 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 - uid: 11363 components: - type: Transform @@ -78476,6 +79217,11 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 + - uid: 11382 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 - uid: 11565 components: - type: Transform @@ -78526,6 +79272,11 @@ entities: - type: Transform pos: -57.5,-26.5 parent: 2 + - uid: 11990 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 - uid: 12092 components: - type: Transform @@ -78562,6 +79313,17 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-14.5 parent: 2 + - uid: 20597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-7.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 - uid: 29007 components: - type: Transform @@ -78609,6 +79371,44 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,20.5 parent: 2 + - uid: 29508 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 29511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - uid: 29512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - uid: 29513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-7.5 + parent: 2 + - uid: 29515 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 29516 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 29517 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 - proto: CorporateCircuitBoard entities: - uid: 20270 @@ -88783,7 +89583,7 @@ entities: - uid: 23236 components: - type: Transform - pos: -52.941887,9.867835 + pos: -52.803364,9.780684 parent: 2 - proto: DrinkGlass entities: @@ -90777,6 +91577,18 @@ entities: - type: Transform pos: 28.730253,22.5 parent: 2 + - type: Storage + storedItems: + 10837: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 10837 - uid: 19175 components: - type: Transform @@ -90792,6 +91604,18 @@ entities: - type: Transform pos: -52.221172,11.5 parent: 2 + - type: Storage + storedItems: + 15047: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15047 - uid: 29261 components: - type: Transform @@ -90802,6 +91626,9 @@ entities: 29262: position: 0,0 _rotation: South + 15048: + position: 1,0 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container @@ -90809,11 +91636,7 @@ entities: occludes: True ents: - 29262 - - uid: 29268 - components: - - type: Transform - pos: -54.773254,11.5 - parent: 2 + - 15048 - proto: filingCabinetTall entities: - uid: 19177 @@ -93232,7 +94055,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -50464.367 + secondsUntilStateChange: -67232.83 - type: DeviceNetwork deviceLists: - 18275 @@ -125898,6 +126721,8 @@ entities: - type: DeviceNetwork deviceLists: - 18463 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 14721 components: - type: Transform @@ -127782,6 +128607,8 @@ entities: - type: DeviceNetwork deviceLists: - 18463 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14720 components: - type: Transform @@ -129094,7 +129921,9 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 28969 +- proto: GasVentScrubberVox + entities: + - uid: 10839 components: - type: Transform rot: 1.5707963267948966 rad @@ -129105,22 +129934,22 @@ entities: - 231 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 29003 + - uid: 10840 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,19.5 + pos: -12.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - 231 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 29004 + - uid: 10841 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,19.5 + pos: -13.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -132571,18 +133400,6 @@ entities: - type: Transform pos: -34.5,37.5 parent: 2 - - uid: 10845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 2 - - uid: 10847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 2 - uid: 10925 components: - type: Transform @@ -132671,29 +133488,23 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,6.5 parent: 2 - - uid: 11340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,1.5 - parent: 2 - - uid: 11341 + - uid: 11327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,2.5 + pos: -58.5,-13.5 parent: 2 - - uid: 11342 + - uid: 11340 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-8.5 + pos: -58.5,1.5 parent: 2 - - uid: 11343 + - uid: 11341 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-7.5 + pos: -58.5,2.5 parent: 2 - uid: 11351 components: @@ -132713,60 +133524,18 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-3.5 parent: 2 - - uid: 11361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-6.5 - parent: 2 - uid: 11362 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 - - uid: 11366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 2 - - uid: 11367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 2 - - uid: 11370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 2 - - uid: 11372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 2 - uid: 11380 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,4.5 parent: 2 - - uid: 11381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 2 - - uid: 11382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-18.5 - parent: 2 - uid: 11383 components: - type: Transform @@ -135155,6 +135924,12 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,34.5 parent: 2 + - uid: 23245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 - uid: 23276 components: - type: Transform @@ -135455,11 +136230,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-19.5 parent: 21002 - - uid: 24126 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - uid: 24133 components: - type: Transform @@ -136322,6 +137092,18 @@ entities: rot: 3.141592653589793 rad pos: 52.5,66.5 parent: 21002 + - uid: 28969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 29004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 - uid: 29043 components: - type: Transform @@ -136434,12 +137216,36 @@ entities: rot: 3.141592653589793 rad pos: 60.5,24.5 parent: 2 + - uid: 29448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 - uid: 29458 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,23.5 parent: 2 + - uid: 29493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 29494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 + - uid: 29495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 - proto: GrilleBroken entities: - uid: 22881 @@ -136832,18 +137638,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-56.5 parent: 2 - - uid: 20597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-7.5 - parent: 2 - - uid: 20610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-15.5 - parent: 2 - uid: 20611 components: - type: Transform @@ -137810,7 +138604,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -87296.22 + secondsUntilStateChange: -104064.67 state: Opening - uid: 5211 components: @@ -139548,8 +140342,228 @@ entities: - type: Transform pos: 35.5,35.5 parent: 2 +- proto: LogicGateAnd + entities: + - uid: 2259 + components: + - type: Transform + anchored: True + pos: -59.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 12066: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 28494 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29541: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29507 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29523: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29527 + components: + - type: Transform + anchored: True + pos: -59.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 11297: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29533 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29540: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29534 + components: + - type: Transform + anchored: True + pos: -61.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29539: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29535 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29537: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29536 + components: + - type: Transform + anchored: True + pos: -61.5,-13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29538: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static +- proto: LogicGateNor + entities: + - uid: 29542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28494: + - Output: InputB + - uid: 29543 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29507: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static - proto: LogicGateOr entities: + - uid: 826 + components: + - type: Transform + anchored: True + pos: -60.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 29527: + - Output: InputA + 12066: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 827 + components: + - type: Transform + anchored: True + pos: -60.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 2259: + - Output: InputA + 11297: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 11297 + components: + - type: Transform + anchored: True + pos: -58.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29528: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 12066 + components: + - type: Transform + anchored: True + pos: -58.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29532: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - uid: 28922 components: - type: Transform @@ -139583,8 +140597,146 @@ entities: linkedPorts: 28436: - Output: DoorBolt + - uid: 29522 + components: + - type: Transform + anchored: True + pos: -60.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 11 + - type: DeviceLinkSource + linkedPorts: + 29527: + - Output: InputB + 2259: + - Output: InputB + 29533: + - Output: InputB + 29535: + - Output: InputB + 29536: + - Output: InputB + 29534: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29529 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29507: + - Output: InputA + 24126: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29531 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28494: + - Output: InputA + 29530: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29537 + components: + - type: Transform + anchored: True + pos: -61.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29531: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29538 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29531: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 29539 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29529: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 29540 + components: + - type: Transform + anchored: True + pos: -61.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29529: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static - proto: LogicGateXor entities: + - uid: 277 + components: + - type: Transform + anchored: True + pos: -61.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 827: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static - uid: 5762 components: - type: Transform @@ -139662,65 +140814,65 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 5767 + - uid: 6810 components: - type: Transform anchored: True - pos: -59.5,-17.5 + pos: -11.5,-82.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 28495: + 12847: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 6810 + - uid: 7854 components: - type: Transform anchored: True - pos: -11.5,-82.5 + rot: -1.5707963267948966 rad + pos: -4.5,52.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 12847: + 7764: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 7854 + - uid: 7856 components: - type: Transform anchored: True rot: -1.5707963267948966 rad - pos: -4.5,52.5 + pos: -6.5,52.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7764: + 7763: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 7856 + - uid: 10843 components: - type: Transform anchored: True - rot: -1.5707963267948966 rad - pos: -6.5,52.5 + pos: -61.5,-17.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7763: - - Output: DoorBolt + 826: + - Output: InputA - type: Physics canCollide: False bodyType: Static @@ -140249,6 +141401,13 @@ entities: - type: Transform pos: -27.514933,-49.371128 parent: 2 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 29520 + components: + - type: Transform + pos: -56.05085,0.6887263 + parent: 2 - proto: MedicalBed entities: - uid: 1313 @@ -140867,6 +142026,11 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 21002 + - uid: 29490 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 - proto: NitrousOxideCanister entities: - uid: 8864 @@ -141010,14 +142174,6 @@ entities: - type: Transform pos: -27.493137,-34.27025 parent: 2 -- proto: OverlordCircuitBoard - entities: - - uid: 29448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.798008,22.579893 - parent: 2 - proto: OxygenCanister entities: - uid: 723 @@ -141272,9 +142428,112 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] + AUTHORIZATION FORM[/color][/bold][/head] + [bold]=====================================================[/bold] + + + [bold]Authorizing Entity:[/bold] + + Name: ______________________ , Position: _______________________ + + + [bold]Approved Shipwright(s):[/bold] + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + + [bold]1. PROJECT DETAILS + + [/bold] + + Shuttle Name: ________________________ + + Class/Model: __________________________ + + Design Specifications: ______________________________ + + + [bold]2. AUTHORIZATION + + [/bold] + + The Authorizing Entity grants the Shipwright permission to commence construction of the specified shuttle. All designs and materials are to be approved by the Authorizing Entity before fabrication begins. + + + [bold]3. TERMS OF CONSTRUCTION + + [/bold] + + [bullet] [bold]Duration:[/bold] Construction to be completed within ______. + + [bullet] [bold]Resources:[/bold] All materials and components required for construction are to be sourced by the Shipwright, with costs covered by the Authorizing Entity only when preapproved unless otherwise specified. + + [bullet] [bold]Modifications:[/bold] Any design changes must receive prior approval from the Authorizing Entity. + + [bullet] [bold]Remittance:[/bold] As payment for authorization and support services the Shipwright agrees to provide the Authorizing Entity the sum of ___________ in either materials or speso equivalent. + + + [bold]4. INSPECTION & TESTING + + [/bold] + + The Authorizing Entity reserves the right to inspect the vessel at any stage of construction. Upon completion, the Shipwright must conduct a series of spaceworthiness tests, overseen by the Authorizing Entity. + + + [bold]5. WARRANTIES & LIABILITY + + [/bold] + + The Shipwright guarantees the vessel will be constructed according to the highest standards of interstellar engineering. Any defects or malfunctions discovered within ______ minutes of delivery must be rectified at the Shipwright’s expense. + + + [bold]6. DISPUTE RESOLUTION + + [/bold] + + Any disagreements will be resolved by the Station’s Resident Arbitrator. + + + [bold]SIGNED: + + [/bold] + + Shipwright(s): + + __________________________ + + __________________________ + + __________________________ + + __________________________ + + + Authorizing Entity: + __________________________ (Stamp) + + + + - type: Physics + canCollide: False + - uid: 7657 + components: + - type: Transform + parent: 3489 + - type: Paper + content: >+ + [bold]=====================================================[/bold] + + + [head=1][bold][color=green] SHUTTLE CONSTRUCTION + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141366,21 +142625,105 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - - uid: 7657 + - uid: 9368 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9369 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9370 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9371 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9376 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 9377 components: - type: Transform parent: 3489 + - type: Physics + canCollide: False + - uid: 9378 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 9684 + components: + - type: Transform + pos: -11.299824,33.680893 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: -11.299824,33.540268 + parent: 2 + - uid: 9686 + components: + - type: Transform + pos: -11.284199,33.399643 + parent: 2 + - uid: 9687 + components: + - type: Transform + pos: -8.737324,31.732964 + parent: 2 + - uid: 9688 + components: + - type: Transform + pos: -8.331074,31.639214 + parent: 2 + - uid: 9897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.647428,-30.309217 + parent: 2 + - uid: 9898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.069303,-30.387342 + parent: 2 + - uid: 10176 + components: + - type: Transform + parent: 2695 + - type: Physics + canCollide: False + - uid: 10837 + components: + - type: Transform + parent: 2693 - type: Paper content: >+ [bold]=====================================================[/bold] [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141472,91 +142815,8 @@ entities: __________________________ (Stamp) - - type: Physics - canCollide: False - - uid: 9368 - components: - - type: Transform - parent: 3609 - - type: Physics - canCollide: False - - uid: 9369 - components: - - type: Transform - parent: 3609 - - type: Physics - canCollide: False - - uid: 9370 - components: - - type: Transform - parent: 3609 - - type: Physics - canCollide: False - - uid: 9371 - components: - - type: Transform - parent: 3609 - - type: Physics - canCollide: False - - uid: 9376 - components: - - type: Transform - parent: 3489 - - type: Physics - canCollide: False - - uid: 9377 - components: - - type: Transform - parent: 3489 - - type: Physics - canCollide: False - - uid: 9378 - components: - - type: Transform - parent: 3489 - - type: Physics - canCollide: False - - uid: 9684 - components: - - type: Transform - pos: -11.299824,33.680893 - parent: 2 - - uid: 9685 - components: - - type: Transform - pos: -11.299824,33.540268 - parent: 2 - - uid: 9686 - components: - - type: Transform - pos: -11.284199,33.399643 - parent: 2 - - uid: 9687 - components: - - type: Transform - pos: -8.737324,31.732964 - parent: 2 - - uid: 9688 - components: - - type: Transform - pos: -8.331074,31.639214 - parent: 2 - - uid: 9897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.647428,-30.309217 - parent: 2 - - uid: 9898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.069303,-30.387342 - parent: 2 - - uid: 10176 - components: - - type: Transform - parent: 2695 + + - type: Physics canCollide: False - uid: 11861 @@ -141609,31 +142869,31 @@ entities: - uid: 23239 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23240 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23241 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23242 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23243 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23854 @@ -141661,7 +142921,7 @@ entities: - uid: 29252 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 29253 @@ -141781,9 +143041,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141875,6 +143133,7 @@ entities: __________________________ (Stamp) + - uid: 29262 components: - type: Transform @@ -141885,9 +143144,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141979,6 +143236,7 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - uid: 29265 @@ -141991,9 +143249,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142084,6 +143340,7 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - uid: 29266 @@ -142097,9 +143354,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142191,6 +143446,7 @@ entities: __________________________ (Stamp) + - uid: 29267 components: - type: Transform @@ -142202,9 +143458,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142296,6 +143550,7 @@ entities: __________________________ (Stamp) + - proto: PaperBin10 entities: - uid: 23867 @@ -142583,6 +143838,12 @@ entities: rot: 1.5707963267948966 rad pos: 14.100553,-30.277967 parent: 2 + - uid: 10838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.686268,5.695119 + parent: 2 - uid: 11857 components: - type: Transform @@ -142615,12 +143876,6 @@ entities: - type: Transform pos: 12.537674,6.638035 parent: 21002 - - uid: 23245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.667557,5.732942 - parent: 2 - uid: 23436 components: - type: Transform @@ -143056,14 +144311,16 @@ entities: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 11327 + - uid: 11366 components: - type: Transform + rot: 1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 - - uid: 11328 + - uid: 11367 components: - type: Transform + rot: 1.5707963267948966 rad pos: -58.5,-5.5 parent: 2 - uid: 11546 @@ -143071,6 +144328,22 @@ entities: - type: Transform pos: -47.5,-0.5 parent: 2 + - uid: 29509 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 29510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - uid: 29524 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 - proto: PlasticFlapsAirtightOpaque entities: - uid: 10165 @@ -143079,9 +144352,10 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 - - uid: 11225 + - uid: 11370 components: - type: Transform + rot: -1.5707963267948966 rad pos: -51.5,-14.5 parent: 2 - proto: PlayerStationAi @@ -145263,12 +146537,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-11.5 parent: 2 - - uid: 12066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 2 - uid: 12067 components: - type: Transform @@ -145971,6 +147239,12 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,12.5 parent: 2 + - uid: 29447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-10.5 + parent: 2 - uid: 29452 components: - type: Transform @@ -146011,11 +147285,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,37.5 parent: 2 - - uid: 2259 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 2 - uid: 6947 components: - type: Transform @@ -146027,6 +147296,11 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,31.5 parent: 2 + - uid: 11343 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 - uid: 11558 components: - type: Transform @@ -146064,6 +147338,11 @@ entities: parent: 2 - type: PointLight radius: 8 + - uid: 11987 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 - uid: 12058 components: - type: Transform @@ -146095,11 +147374,6 @@ entities: - type: Transform pos: 48.5,51.5 parent: 2 - - uid: 24001 - components: - - type: Transform - pos: -59.5,-26.5 - parent: 2 - uid: 24003 components: - type: Transform @@ -146149,6 +147423,12 @@ entities: rot: 3.141592653589793 rad pos: -45.5,27.5 parent: 2 + - uid: 29572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-26.5 + parent: 2 - proto: PoweredlightSodium entities: - uid: 21438 @@ -148210,18 +149490,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,-25.5 parent: 2 - - uid: 11986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-24.5 - parent: 2 - - uid: 11987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-23.5 - parent: 2 - uid: 11988 components: - type: Transform @@ -148494,6 +149762,12 @@ entities: rot: 3.141592653589793 rad pos: -14.5,12.5 parent: 2 + - uid: 28495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 - uid: 28983 components: - type: Transform @@ -148530,6 +149804,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,15.5 parent: 2 + - uid: 29546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 - proto: RailingCorner entities: - uid: 64 @@ -148804,6 +150084,12 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,30.5 parent: 2 + - uid: 29489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-10.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -149280,6 +150566,33 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,30.5 parent: 2 + - uid: 29486 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 29487 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 29488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - uid: 29544 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 29545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 - proto: RailingRound entities: - uid: 3408 @@ -150352,6 +151665,11 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 2 + - uid: 29514 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 1061 @@ -150946,11 +152264,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-17.5 parent: 2 - - uid: 827 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - uid: 1206 components: - type: Transform @@ -153220,42 +154533,18 @@ entities: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 10836 + - uid: 10842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-8.5 + pos: -58.5,-11.5 parent: 2 - - uid: 10837 + - uid: 10847 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 2 - - uid: 10840 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,-12.5 parent: 2 - - uid: 10841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 2 - - uid: 10842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 2 - - uid: 10843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 2 - uid: 10854 components: - type: Transform @@ -153337,22 +154626,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-55.5 parent: 2 - - uid: 11297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 2 - uid: 11323 components: - type: Transform pos: -59.5,-0.5 parent: 2 - - uid: 11325 - components: - - type: Transform - pos: -60.5,-6.5 - parent: 2 - uid: 11326 components: - type: Transform @@ -153363,17 +154641,11 @@ entities: - type: Transform pos: -59.5,-3.5 parent: 2 - - uid: 11365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 2 - - uid: 11371 + - uid: 11342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-18.5 + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 parent: 2 - uid: 11373 components: @@ -153381,12 +154653,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 - - uid: 11375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 2 - uid: 11469 components: - type: Transform @@ -153900,6 +155166,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-10.5 parent: 21002 + - uid: 23238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 2 - uid: 23416 components: - type: Transform @@ -154175,11 +155447,11 @@ entities: parent: 2 - proto: SalvageMagnet entities: - - uid: 11990 + - uid: 29518 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-24.5 + pos: -61.5,-25.5 parent: 2 - proto: SaxophoneInstrument entities: @@ -155372,6 +156644,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,9.5 parent: 2 + - uid: 29526 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29522: + - DoorStatus: InputA + - uid: 29574 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29522: + - DoorStatus: InputB - proto: ShuttersWindowOpen entities: - uid: 742 @@ -155987,6 +157277,18 @@ entities: - Pressed: Toggle 11337: - Pressed: Toggle + - uid: 11986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29526: + - Pressed: Toggle + 29574: + - Pressed: Toggle - uid: 12804 components: - type: MetaData @@ -159864,6 +161166,13 @@ entities: parent: 2 - type: SpamEmitSound enabled: False +- proto: SpawnMechRipley + entities: + - uid: 29519 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 - proto: SpawnMobBee entities: - uid: 610 @@ -163905,6 +165214,8 @@ entities: pos: -57.5,-20.5 parent: 2 - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply id: Salvage - uid: 29177 components: @@ -163927,6 +165238,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo Dock N + - uid: 29525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Dock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 23224 @@ -167585,6 +168907,69 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 29268 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29511: + - Left: Forward + - Right: Reverse + - Middle: Off + 20597: + - Left: Forward + - Right: Reverse + - Middle: Off + 29512: + - Left: Forward + - Right: Reverse + - Middle: Off + 29513: + - Right: Reverse + - Middle: Off + - Left: Off + 29514: + - Left: Forward + - Right: Reverse + - Middle: Off + 11361: + - Left: Forward + - Right: Reverse + - Middle: Off + 11325: + - Left: Forward + - Right: Reverse + - Middle: Off + 24001: + - Left: Forward + - Right: Reverse + - Middle: Off + 29515: + - Left: Forward + - Right: Reverse + - Middle: Off + 29516: + - Left: Forward + - Right: Reverse + - Middle: Off + 29517: + - Left: Forward + - Right: Reverse + - Middle: Off + 11990: + - Left: Forward + - Right: Reverse + - Middle: Off + 29508: + - Left: Forward + - Right: Off + - Middle: Off + 11382: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 9643 @@ -176469,17 +177854,11 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-6.5 parent: 2 - - uid: 10838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-9.5 - parent: 2 - - uid: 10839 + - uid: 10845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-10.5 + rot: 3.141592653589793 rad + pos: -60.5,-7.5 parent: 2 - uid: 10846 components: @@ -177191,6 +178570,12 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 2 + - uid: 11225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-6.5 + parent: 2 - uid: 11226 components: - type: Transform @@ -178670,6 +180055,12 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,28.5 parent: 2 + - uid: 20610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-8.5 + parent: 2 - uid: 20659 components: - type: Transform @@ -181122,6 +182513,12 @@ entities: rot: 3.141592653589793 rad pos: -22.5,34.5 parent: 2 + - uid: 29003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-10.5 + parent: 2 - uid: 29293 components: - type: Transform @@ -181302,6 +182699,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,21.5 parent: 2 + - uid: 29492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-9.5 + parent: 2 - proto: WallSolid entities: - uid: 309 @@ -185566,6 +186969,12 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-45.5 parent: 2 + - uid: 29491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 - proto: WallSolidRust entities: - uid: 24642 @@ -186775,7 +188184,7 @@ entities: pos: -9.5,17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: 13577: @@ -186787,7 +188196,7 @@ entities: pos: -11.5,17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 5 + invokeCounter: 7 - type: DeviceLinkSource linkedPorts: 12356: @@ -187643,6 +189052,18 @@ entities: rot: 3.141592653589793 rad pos: -24.5,38.5 parent: 2 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 - uid: 18936 components: - type: Transform @@ -188538,7 +189959,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -432500.88 + secondsUntilStateChange: -449269.3 state: Opening - uid: 28863 components: From 67b34cf8cfcf43aa84d7d2b2b6e9faf443f3d463 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:35:57 +0200 Subject: [PATCH 054/161] Update Omega (#32237) --- Resources/Maps/omega.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 77dea071ac8d..2ffa5eca0349 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -31690,14 +31690,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 4984 + - uid: 6290 components: - type: Transform - pos: -3.5,26.5 + pos: 12.5,-18.5 parent: 4812 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 3469 @@ -58676,10 +58673,10 @@ entities: stash: !type:ContainerSlot {} - proto: PottedPlantRD entities: - - uid: 6290 + - uid: 12045 components: - type: Transform - pos: 24.5,-18.5 + pos: 28.5,-20.5 parent: 4812 - proto: PowerCellRecharger entities: @@ -67865,10 +67862,10 @@ entities: parent: 4812 - proto: SurveillanceCameraRouterScience entities: - - uid: 12045 + - uid: 4984 components: - type: Transform - pos: 12.5,-18.5 + pos: 24.5,-18.5 parent: 4812 - proto: SurveillanceCameraRouterSecurity entities: @@ -69907,6 +69904,11 @@ entities: showEnts: False occludes: True ents: [] + - uid: 4373 + components: + - type: Transform + pos: -3.5,26.5 + parent: 4812 - uid: 4991 components: - type: Transform From 2e37b1fb2f3d6aaa38ee32dede36e7e2f8c6eb4a Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:36:12 +0200 Subject: [PATCH 055/161] Update Meta (#32238) --- Resources/Maps/meta.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index e8c1f0bb6a22..1f210e438adb 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -10880,7 +10880,7 @@ entities: pos: -42.5,29.5 parent: 5350 - type: Door - secondsUntilStateChange: -5682.053 + secondsUntilStateChange: -5745.716 state: Opening - type: DeviceLinkSink invokeCounter: 2 @@ -63381,14 +63381,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 26528 + - uid: 26984 components: - type: Transform - pos: 108.5,-7.5 + pos: 29.5,-36.5 parent: 5350 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 10811 @@ -144591,6 +144588,11 @@ entities: showEnts: False occludes: True ents: [] + - uid: 26528 + components: + - type: Transform + pos: 108.5,-7.5 + parent: 5350 - uid: 26547 components: - type: Transform From 37a8c23f79ea83501e11132fd2ef18a027eae3ae Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:36:29 +0200 Subject: [PATCH 056/161] Update Fland (#32241) --- Resources/Maps/fland.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index ab7238572371..54ef4d551041 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -98863,11 +98863,8 @@ entities: - uid: 27828 components: - type: Transform - pos: 97.5,33.5 + pos: 31.5,-31.5 parent: 13329 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 13050 @@ -198140,7 +198137,7 @@ entities: - uid: 13290 components: - type: Transform - pos: 31.5,-31.5 + pos: 97.5,33.5 parent: 13329 - uid: 35415 components: From cd8ba1d6b3f99b25c6e5d25c5b489728cdcf154d Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Thu, 19 Sep 2024 06:37:28 -0700 Subject: [PATCH 057/161] Cog update (Engineering update) (#32263) * updated cog atmos and engi * fixed that * updated --- Resources/Maps/cog.yml | 24541 ++++++++++++++++++++------------------- 1 file changed, 12831 insertions(+), 11710 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index bc5742dfac7a..7915d9cef028 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -80,7 +80,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: EgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,0: ind: -1,0 @@ -92,7 +92,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAA + tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -100,7 +100,7 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD version: 6 -2,-1: ind: -2,-1 @@ -176,19 +176,19 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA + tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAAAYAAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAAgAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAADYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAYAAAAAABgQAAAAAABwAAAAAABwAAAAAAAwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAwAAAAAAgQAAAAAAYAAAAAACBwAAAAAAYAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAABYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAAgAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAADYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAYAAAAAABgQAAAAAABwAAAAAABwAAAAAAAwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAwAAAAAAgQAAAAAAYAAAAAACBwAAAAAAYAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAABYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 - tiles: gQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAABYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAABBwAAAAAAAgAAAAABBwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAwAAAAAABwAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAABYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAABBwAAAAAAAgAAAAABBwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-2: ind: 2,-2 @@ -212,7 +212,7 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-4: ind: 3,-4 @@ -228,7 +228,7 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAA version: 6 4,-2: ind: 4,-2 @@ -236,23 +236,23 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: YAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,1: ind: 1,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAABAwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADgAAAAACYAAAAAADYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAYAAAAAADAgAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAABAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADgAAAAACYAAAAAADYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAYAAAAAADAgAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA version: 6 0,1: ind: 0,1 @@ -296,11 +296,11 @@ entities: version: 6 3,0: ind: 3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 3,1: ind: 3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAABAgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAABAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAABAgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAABAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 @@ -320,7 +320,7 @@ entities: version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABCwAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -336,11 +336,11 @@ entities: version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAAgAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAAgAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 @@ -424,19 +424,19 @@ entities: version: 6 4,0: ind: 4,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 4,1: ind: 4,1 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: gAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -466,6 +466,10 @@ entities: ind: -5,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 5,1: + ind: 5,1 + tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -487,11 +491,26 @@ entities: version: 2 nodes: - node: + angle: -3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 5498: 61,-4 - 5499: 62,-4 + 8241: 30,2 + 8242: 30,4 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 7781: 77,0 + 8243: 29,5 + 8313: 77,8 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 7788: 68,9 + 8312: 76,9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -500,6 +519,21 @@ entities: 2955: 64,44 6205: 7,-43 6206: 4,-43 + 7783: 67,0 + 7789: 67,8 + 7989: 20,1 + 7990: 20,-1 + 7991: 20,-3 + 7992: 20,-5 + 7993: 20,-7 + 7994: 20,-9 + 7995: 20,-11 + 8201: 30,-3 + 8204: 26,-17 + 8205: 18,-17 + 8206: 45,-1 + 8364: 35.78848,-2.4661767 + 8365: 40,-1 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -507,12 +541,11 @@ entities: decals: 2960: 49,63 2961: 52,64 - 4654: 60,2 - 4655: 62,2 - 4656: 64,2 - 4657: 66,2 - 4658: 68,2 5198: 12.964991,13.606268 + 7784: 68,-1 + 7785: 76,-1 + 8199: 30,-15 + 8200: 30,-9 - node: color: '#FFFFFFFF' id: Basalt1 @@ -614,20 +647,9 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 5475: 53,-7 - 5476: 54,-7 - 5477: 55,-7 - 5478: 56,-7 - 5479: 57,-7 - 5480: 58,-7 - 5481: 57,-4 - 5482: 58,-4 - 5483: 55,-5 - 5484: 54,-5 - 5485: 53,-5 - 5486: 53,-4 - 5487: 54,-4 - 5488: 55,-4 + 8245: 31,2 + 8246: 31,3 + 8247: 31,4 - node: color: '#FFFFFFFF' id: Bot @@ -668,7 +690,6 @@ entities: 1436: -24,-32 1437: -25,-32 1438: -23,-32 - 1439: -42,-21 1440: -43,-24 1441: -49,-27 1442: -49,-23 @@ -690,7 +711,6 @@ entities: 2047: -15,-9 2048: -13,-7 2049: -26,2 - 2082: -1,-12 2089: -32,11 2090: -29,11 2091: -29,7 @@ -753,8 +773,6 @@ entities: 4343: -46,-50 4344: -46,-47 4345: -35,-38 - 4494: 17,0 - 4497: 25,0 4498: 33,-42 4523: 45,43 4524: 46,43 @@ -774,7 +792,6 @@ entities: 4543: -20,4 4544: -20,14 4545: -23,31 - 4635: 54,2 4713: 15,58 5020: 3,43 5047: 42,56 @@ -793,22 +810,14 @@ entities: 5799: -2,-4 6198: 3,-46 6200: 3,-40 - 6233: 11,-4 6258: 58,-27 6337: -11,2 - 6493: 51,4 - 6494: 52,4 - 6495: 53,4 6519: 45,2 - 6627: 17,-14 - 6628: 25,-14 6630: 20,-19 6631: 23,-19 6632: 16,-17 6633: 28,-17 6634: 33,-14 - 6635: 30,2 - 6636: 13,-14 6652: -24,-8 6654: -25,-11 6655: -25,-12 @@ -829,17 +838,37 @@ entities: 6793: 61,-19 6794: 62,-19 6795: 63,-19 - 6803: 35,-2 7202: 3,-61 7203: 3,-60 7204: -8,-69 7205: -17,-59 7521: 3,70 7522: 5,70 - 7552: 52,1 7598: -26,47 7599: -31,46 7600: -9,-36 + 7700: 3,-21 + 7701: 4,-21 + 7704: 3,-19 + 7705: 4,-19 + 7726: 24,7 + 7764: 50,-2 + 7765: 50,-1 + 7766: 58,0 + 7767: 58,8 + 7768: 62,9 + 7769: 60,-4 + 7770: 58,-5 + 7771: 57,12 + 7772: 68,0 + 7774: 76,8 + 8016: 20,-15 + 8196: 31,-3 + 8197: 42,-2 + 8198: 42,-1 + 8209: 39,4 + 8210: 40,4 + 8253: 31,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -878,17 +907,69 @@ entities: 2957: 50,59 2958: 48,65 2959: 50,65 - 6207: 18,7 + 7790: 76,0 + 7822: 68,8 + 7999: 8,-9 + - node: + color: '#000000FF' + id: BotGreyscale + decals: + 7721: 27,9 + - node: + color: '#0096FFFF' + id: BotGreyscale + decals: + 7712: 26,12 + 7713: 27,12 + 7714: 27,11 + - node: + color: '#90BBFFFF' + id: BotGreyscale + decals: + 7725: 25,8 + - node: + color: '#FF0000FF' + id: BotGreyscale + decals: + 7709: 26,11 + 7710: 25,11 + 7711: 25,12 - node: color: '#FF00FFFF' id: BotGreyscale decals: 6801: 2,59 + - node: + color: '#FF4DFFFF' + id: BotGreyscale + decals: + 7720: 24,8 + - node: + color: '#FFA500FF' + id: BotGreyscale + decals: + 7716: 27,6 + 7717: 27,7 + - node: + color: '#FFFF00FF' + id: BotGreyscale + decals: + 7715: 27,8 + - node: + angle: 1.5707963267948966 rad + color: '#FFFF00FF' + id: BotGreyscale + decals: + 7996: 10,-12 + 7997: 11,-12 + 7998: 12,-12 - node: color: '#FFFFFFFF' id: BotGreyscale decals: 6802: 2,58 + 7718: 25,9 + 7719: 25,10 - node: color: '#FFFFFFFF' id: Box @@ -908,16 +989,24 @@ entities: id: Box decals: 6702: 3,-6 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Box + decals: + 7791: 64,8 + 7792: 64,0 + 7793: 68,-4 + 7794: 76,-4 + 7795: 80,0 + 7796: 76,12 + 7798: 80,8 + 7821: 68,12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Box decals: - 4659: 60,2 - 4660: 62,2 - 4661: 64,2 - 4662: 66,2 - 4663: 68,2 5199: 13,13 - node: color: '#3EB38896' @@ -998,6 +1087,9 @@ entities: 5582: -46,72 5583: -46,67 6692: 0,-15 + 7848: 53,4 + 7849: 53,5 + 7850: 53,6 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1026,6 +1118,8 @@ entities: 7361: -12,-13 7362: -11,-15 7519: 59,58 + 7940: 57,-1 + 7974: 61,5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1040,6 +1134,8 @@ entities: 7332: -13,21 7337: -21,24 7518: 57,58 + 7939: 54,-1 + 7973: 58,5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -1056,6 +1152,8 @@ entities: 7335: -20,19 7365: -11,-16 7366: -19,-16 + 7935: 57,-4 + 7971: 61,3 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -1075,6 +1173,8 @@ entities: 7358: -20,-16 7359: -13,-16 7517: 57,52 + 7936: 54,-4 + 7972: 58,3 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -1176,6 +1276,9 @@ entities: 7514: 59,57 7515: 59,56 7516: 59,53 + 7945: 57,-3 + 7946: 57,-2 + 7980: 61,4 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1228,6 +1331,10 @@ entities: 7328: -11,21 7367: -20,-11 7510: 75,54 + 7943: 55,-1 + 7944: 56,-1 + 7977: 59,5 + 7978: 60,5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1278,6 +1385,10 @@ entities: 7330: -11,19 7374: -12,-16 7504: 67,43 + 7937: 55,-4 + 7938: 56,-4 + 7975: 59,3 + 7976: 60,3 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1317,6 +1428,9 @@ entities: 7511: 57,56 7512: 57,57 7513: 57,53 + 7941: 54,-3 + 7942: 54,-2 + 7979: 58,4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -1533,6 +1647,8 @@ entities: id: Caution decals: 5282: 60,-15 + 7799: 64,2 + 7800: 64,6 - node: cleanable: True color: '#3C44AAFF' @@ -1547,6 +1663,12 @@ entities: 4347: -44.25874,-48.932568 4357: -43.14474,-50.673935 4358: -44.534176,-46.580185 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 8244: 29,6 - node: color: '#FFFFFFFF' id: Delivery @@ -1556,7 +1678,6 @@ entities: 1270: 54,-23 1273: 62,-15 1276: 54,-37 - 1355: 19,3 1781: 33,35 1782: 33,36 1783: 33,37 @@ -1596,6 +1717,19 @@ entities: 6661: -30,-7 6666: -22,-3 7523: 3,68 + 8358: 24,-15 + 8359: 25,-15 + 8360: 26,-15 + 8362: 60,12 + 8363: 59,12 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 7818: 62,3 + 7819: 62,4 + 7820: 62,5 - node: cleanable: True color: '#B02E26FF' @@ -1652,7 +1786,6 @@ entities: 6614: 39,24 6615: 51,18 6616: 45,8 - 6617: 45,0 7048: -38,-59 7049: -37,-57 7087: -35,-57 @@ -1700,6 +1833,11 @@ entities: 7498: -66,-20 7499: -65,-20 7500: -61,-31 + 8175: 3,-21 + 8176: 4,-19 + 8320: 36,1 + 8321: 37,-3 + 8322: 31,0 - node: cleanable: True zIndex: 1 @@ -1717,7 +1855,6 @@ entities: 6943: 39,7 6944: 40,6 6945: 41,6 - 6946: 43,1 6947: 44,-4 6948: 42,-5 6949: 43,-7 @@ -1740,6 +1877,11 @@ entities: 7034: 40,31 7035: 30,10 7036: 28,14 + 8099: 29,6 + 8129: 44,-1 + 8130: 47,-4 + 8168: 42,4 + 8169: 45,0 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -1791,25 +1933,14 @@ entities: 1461: -10,-23 1466: 16,3 1467: 15,3 - 1468: 15,4 - 1469: 16,4 - 1470: 16,5 - 1471: 15,5 1481: 19,5 1482: 22,5 - 1483: 21,2 1484: 19,6 - 1485: 27,3 - 1486: 25,3 - 1487: 35,-3 - 1488: 33,-2 1489: 31,-12 1490: 30,-14 1491: 32,-16 1492: 27,-18 - 1493: 25,-16 1494: 21,-18 - 1495: 19,-17 1496: 32,-24 1497: 30,-22 1498: 23,-23 @@ -2007,20 +2138,9 @@ entities: 4272: 10,16 4273: 14,15 4274: 11,17 - 4275: 10,-6 - 4276: 7,-4 - 4277: 8,-3 - 4278: 9,-2 - 4279: 8,1 - 4280: 8,1 4282: 19,5 4283: 25,5 4284: 28,3 - 4285: 29,2 - 4289: 36,-2 - 4290: 36,-1 - 4291: 34,1 - 4292: 34,-2 4293: 13,-28 4294: 17,-27 4295: 20,-28 @@ -2133,41 +2253,9 @@ entities: 4908: -13,-28 4910: -22,-29 4911: -25,-29 - 4912: 13,-11 - 4913: 9,-11 - 4914: 10,-11 - 4915: 9,-9 - 4916: 8,-10 - 4917: 13,-9 - 4918: 11,-7 - 4919: 12,-7 - 4921: 8,-4 - 4922: 8,-2 - 4923: 10,-2 - 4925: 9,-4 - 4928: 7,5 - 4929: 8,5 4930: 11,4 - 4931: 12,3 - 4934: 27,3 4935: 27,4 4936: 28,3 - 5096: 64,-2 - 5097: 61,0 - 5098: 66,1 - 5099: 69,-2 - 5100: 73,0 - 5101: 70,1 - 5102: 73,6 - 5103: 71,-2 - 5104: 63,-3 - 5105: 56,-1 - 5106: 53,2 - 5107: 55,5 - 5108: 54,6 - 5109: 69,2 - 5110: 60,-3 - 5111: 62,-3 5112: 47,8 5113: 48,8 5114: 48,8 @@ -2230,19 +2318,6 @@ entities: 5402: 48,-19 5403: 52,-15 5404: 48,-15 - 5405: 78,5 - 5406: 78,8 - 5407: 78,11 - 5408: 75,11 - 5409: 73,12 - 5410: 71,11 - 5411: 74,12 - 5412: 71,12 - 5413: 69,12 - 5414: 66,12 - 5415: 64,12 - 5416: 61,12 - 5417: 57,12 5418: 55,12 5419: 54,11 5420: 54,10 @@ -2253,7 +2328,6 @@ entities: 5425: 51,8 5426: 50,8 5427: 48,8 - 5428: 54,4 5430: 45,8 5431: 5,-24 5432: -1,-24 @@ -2484,7 +2558,6 @@ entities: 6520: 41,-1 6521: 41,0 6522: 41,1 - 6523: 44,0 6524: 45,2 6525: 46,3 6526: 45,4 @@ -2494,15 +2567,8 @@ entities: 6530: 42,7 6531: 43,4 6532: 43,3 - 6533: 44,-2 - 6534: 45,-2 6535: 44,-5 6536: 44,-6 - 6537: 40,-3 - 6538: 40,-3 - 6539: 37,-3 - 6540: 35,0 - 6541: 31,-3 6542: 29,-4 6543: 29,-1 6544: 31,-9 @@ -2520,31 +2586,9 @@ entities: 6556: 40,-13 6557: 42,-14 6558: 43,-13 - 6559: 54,-7 - 6560: 56,-4 - 6561: 57,-6 - 6562: 54,-5 - 6563: 57,-5 6564: 55,-6 - 6565: 61,-5 - 6566: 63,-4 - 6567: 65,-5 - 6568: 68,-3 - 6569: 70,-5 - 6570: 72,-4 - 6571: 73,-5 - 6572: 71,-3 - 6573: 68,-5 - 6574: 68,0 - 6575: 66,0 - 6576: 63,-1 6577: 53,-2 - 6578: 48,-1 6579: 47,-1 - 6580: 45,-1 - 6581: 44,0 - 6582: 45,0 - 6583: 44,-2 6584: 44,-3 6585: 45,-3 6586: 46,-3 @@ -2698,6 +2742,14 @@ entities: 7494: -66,-30 7495: -65,-29 7496: -63,-29 + 8170: 4,-21 + 8171: 2,-20 + 8172: 3,-19 + 8173: 1,-21 + 8174: 1,-19 + 8317: 34,-2 + 8318: 40,-3 + 8319: 38,-2 - node: cleanable: True zIndex: 1 @@ -2720,11 +2772,79 @@ entities: 6975: 43,-6 6976: 42,-4 6977: 43,-4 - 6978: 43,-2 - 6979: 43,0 - 6980: 42,1 6981: 43,4 6982: 43,6 + 8075: 17,-11 + 8076: 10,-7 + 8077: 9,-12 + 8078: 20,-14 + 8080: 19,-11 + 8081: 12,-7 + 8082: 15,-5 + 8083: 16,-9 + 8084: 11,-10 + 8085: 17,-9 + 8086: 17,-6 + 8087: 9,-5 + 8088: 10,1 + 8089: 8,3 + 8090: 9,5 + 8091: 11,6 + 8092: 19,2 + 8093: 18,-3 + 8094: 16,-1 + 8095: 30,-5 + 8096: 25,6 + 8097: 27,10 + 8098: 26,11 + 8100: 29,12 + 8101: 29,10 + 8102: 30,9 + 8103: 30,8 + 8104: 31,8 + 8105: 31,7 + 8106: 31,6 + 8107: 31,5 + 8108: 30,4 + 8109: 30,4 + 8111: 29,2 + 8112: 29,6 + 8113: 34,4 + 8114: 35,4 + 8115: 37,4 + 8116: 40,4 + 8117: 40,2 + 8118: 40,1 + 8119: 39,0 + 8120: 39,0 + 8121: 45,-2 + 8122: 45,-1 + 8123: 43,-2 + 8124: 47,-2 + 8125: 48,-1 + 8126: 44,-1 + 8127: 43,1 + 8128: 42,2 + 8131: 56,-6 + 8132: 54,-5 + 8133: 58,-2 + 8134: 53,1 + 8135: 53,-1 + 8136: 56,0 + 8137: 61,2 + 8138: 58,4 + 8139: 61,6 + 8140: 62,4 + 8141: 54,4 + 8142: 55,6 + 8143: 58,8 + 8144: 57,10 + 8146: 62,8 + 8148: 62,12 + 8151: 72,12 + 8152: 64,4 + 8153: 64,-1 + 8154: 58,-5 - node: cleanable: True color: '#FFFFFFFF' @@ -3180,17 +3300,8 @@ entities: 3410: 64,42 3411: 47,10 3412: 43,7 - 3413: 36,-3 - 3415: 30,2 - 3417: 25,3 - 3418: 21,2 - 3423: 9,-2 - 3424: 9,-3 - 3425: 8,-4 3426: 10,0 - 3427: 11,-8 3430: 13,-16 - 3431: 12,-14 3432: 11,-16 3433: 9,-21 3434: 10,-22 @@ -3738,6 +3849,8 @@ entities: 7041: 27,16 7042: 27,17 7043: 27,16 + 8159: 55,-2 + 8160: 56,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -3750,8 +3863,6 @@ entities: 1455: -8,-23 1456: -7,-23 1457: -7,-24 - 1476: 14,5 - 1477: 14,4 1642: 41,24 1643: 41,25 1644: 40,23 @@ -3887,7 +3998,6 @@ entities: 7000: 40,8 7001: 42,4 7002: 42,2 - 7003: 42,-3 7004: 44,-5 7005: 43,-5 7006: 42,-6 @@ -3914,6 +4024,20 @@ entities: 7027: 40,-29 7028: 37,-27 7029: 37,-23 + 8065: 16,-11 + 8066: 11,-9 + 8067: 15,-6 + 8068: 16,-1 + 8069: 18,-5 + 8070: 14,-9 + 8071: 11,-6 + 8072: 19,-5 + 8073: 18,2 + 8074: 15,-1 + 8155: 62,-1 + 8156: 61,0 + 8157: 58,-4 + 8158: 56,-2 - node: cleanable: True color: '#FFFFFFFF' @@ -3955,6 +4079,29 @@ entities: 7128: -5,-69 7129: 0,-66 7196: 4,-61 + 8323: 40,0 + 8324: 40,-1 + 8325: 38,-3 + 8326: 34,-2 + 8327: 40,-2 + 8328: 40,-1 + 8329: 39,-2 + 8330: 36,-3 + 8331: 40,3 + 8332: 39,2 + 8333: 36,1 + 8334: 35,1 + 8335: 34,2 + 8336: 35,3 + 8337: 35,3 + 8338: 34,3 + 8339: 35,4 + 8340: 37,3 + 8341: 36,2 + 8342: 34,0 + 8343: 33,1 + 8344: 34,2 + 8345: 35,3 - node: cleanable: True zIndex: 1 @@ -3967,6 +4114,13 @@ entities: 6986: 33,19 6987: 32,23 6988: 33,25 + 8161: 42,-8 + 8162: 42,1 + 8163: 43,0 + 8164: 42,4 + 8165: 42,4 + 8166: 42,4 + 8167: 42,4 - node: cleanable: True color: '#B02E26FF' @@ -4263,17 +4417,13 @@ entities: 692: 30,-19 693: 31,-19 703: 34,-22 - 832: 35,-2 847: 29,-14 848: 29,-13 849: 29,-12 - 864: 20,3 1360: 12,-25 1361: 13,-25 2825: 45,46 5767: 35,-8 - 6216: 17,4 - 6217: 17,5 - node: color: '#FFFFFFFF' id: Grassa2 @@ -4456,12 +4606,11 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale decals: - 4632: 55,2 - 4633: 53,2 - 4634: 52,2 - 5489: 56,-4 - 6487: 53,6 - 6488: 52,6 + 8037: 19,7 + 8038: 20,7 + 8039: 21,7 + 8040: 22,7 + 8251: 30,6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -4788,7 +4937,6 @@ entities: 777: 12,-20 778: 13,-20 801: 27,-16 - 837: 35,-3 858: 26,-21 1364: 32,-14 1393: -24,-3 @@ -4818,8 +4966,6 @@ entities: 4729: -13,-22 4730: -12,-22 4731: -11,-22 - 4957: 11,5 - 4958: 12,5 5048: 13,-26 5049: 12,-26 5050: 11,-26 @@ -4834,16 +4980,19 @@ entities: 5059: 5,-26 5276: 31,-26 5277: 30,-26 - 6208: 13,5 - 6209: 14,5 - 6210: 15,5 - 6231: 21,4 6622: 17,-16 6623: 18,-16 - 6624: 24,-16 - 6625: 25,-16 - 6626: 26,-16 6629: 27,-26 + 7844: 48,-1 + 7863: 53,2 + 7865: 57,0 + 7866: 56,0 + 7929: 56,-4 + 8048: 58,12 + 8220: 35,-2 + 8221: 36,-2 + 8222: 37,-2 + 8346: 38,-2 - node: color: '#FA750096' id: HalfTileOverlayGreyscale @@ -4880,6 +5029,12 @@ entities: 6448: -23,26 6449: -21,26 6450: -20,26 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale180 + decals: + 8008: 17,-14 + 8009: 18,-14 - node: color: '#43990996' id: HalfTileOverlayGreyscale180 @@ -5230,7 +5385,6 @@ entities: 812: 18,-18 817: 24,-18 859: 26,-24 - 868: 21,1 1362: 30,-17 1363: 31,-17 1391: -23,-8 @@ -5240,17 +5394,23 @@ entities: 2785: 44,47 2809: 32,45 2810: 31,45 - 4966: 8,0 6038: 30,45 6040: 33,45 6041: 34,45 - 6213: 15,4 - 6214: 14,4 - 6222: 23,3 6651: -24,-13 - 7403: 34,2 - 7404: 35,2 - 7405: 36,2 + 7823: 48,-2 + 7824: 46,-2 + 7825: 45,-2 + 7826: 44,-2 + 7851: 57,-7 + 7852: 56,-7 + 7853: 55,-7 + 7854: 54,-7 + 7912: 55,-1 + 8216: 37,-3 + 8217: 36,-3 + 8347: 38,-3 + 8348: 39,-3 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -5286,8 +5446,12 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale270 decals: - 5492: 53,-6 - 6492: 51,5 + 8024: 8,-12 + 8025: 8,-11 + 8026: 8,-10 + 8248: 29,2 + 8249: 29,3 + 8250: 29,4 - node: color: '#43990996' id: HalfTileOverlayGreyscale270 @@ -5541,10 +5705,8 @@ entities: 780: 8,-21 781: 8,-22 782: 8,-23 - 829: 37,-1 856: 25,-23 857: 25,-22 - 865: 20,2 1933: -18,-7 1934: -18,-6 1935: -18,-5 @@ -5564,23 +5726,34 @@ entities: 4305: 48,61 4306: 48,62 4307: 48,63 - 4964: 7,1 - 4965: 7,2 - 4968: 9,-8 - 4969: 9,-7 5787: 29,-5 5788: 29,-4 5789: 29,-3 5790: 29,-2 5791: 29,-1 5792: 29,0 - 6218: 18,4 - 6219: 18,5 - 6220: 18,6 6514: 45,4 6518: 45,3 - 6804: 37,0 - 6805: 37,1 + 7832: 42,-7 + 7833: 42,-6 + 7834: 42,-4 + 7836: 42,0 + 7837: 42,1 + 7855: 53,-6 + 7856: 53,-5 + 7857: 53,-4 + 7870: 52,1 + 7930: 57,-3 + 7950: 57,2 + 7951: 57,3 + 7952: 57,4 + 7953: 57,5 + 7954: 57,6 + 8054: 57,8 + 8055: 57,9 + 8223: 39,-1 + 8224: 39,0 + 8236: 39,2 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 @@ -5606,12 +5779,8 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale90 decals: - 4639: 55,4 - 4640: 55,5 - 5490: 58,-6 - 5491: 58,-5 - 6491: 55,6 7571: -50,30 + 8252: 31,5 - node: color: '#43990996' id: HalfTileOverlayGreyscale90 @@ -5916,12 +6085,8 @@ entities: 790: 18,-23 791: 18,-22 805: 28,-18 - 840: 33,-1 - 841: 33,0 - 842: 33,1 854: 27,-23 855: 27,-22 - 867: 22,2 1397: -20,-4 1398: -20,-5 1399: -20,-6 @@ -5934,17 +6099,10 @@ entities: 4310: 58,62 4311: 58,63 4312: 58,64 - 4950: 13,-11 - 4951: 13,-10 - 4952: 13,-9 - 4953: 13,-8 - 4954: 13,-7 5793: 31,-1 5794: 31,0 - 5795: 31,-3 5796: 31,-4 5797: 31,-5 - 6230: 22,3 6471: -27,-3 6472: -27,-5 6473: -27,-6 @@ -5956,6 +6114,19 @@ entities: 6649: -23,-11 6650: -23,-10 7572: -50,27 + 7827: 43,-3 + 7828: 43,-4 + 7829: 43,-6 + 7839: 43,2 + 7867: 55,1 + 7911: 54,-2 + 7947: 55,4 + 7948: 55,5 + 7949: 55,6 + 8230: 40,0 + 8234: 40,2 + 8235: 40,3 + 8237: 10,-19 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -5967,11 +6138,16 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 1357: 22,-1 - 1358: 20,-1 - 1359: 21,-1 6106: -27,-28 6108: -26,-28 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 7815: 64,5 + 7816: 64,4 + 7817: 64,3 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -5984,6 +6160,11 @@ entities: id: MiniTileBoxOverlay decals: 245: -44,-21 + - node: + color: '#52B4E996' + id: MiniTileOverlay + decals: + 7727: -42,-21 - node: color: '#D381C996' id: MiniTileWhiteLineW @@ -6069,8 +6250,13 @@ entities: color: '#3EB38896' id: QuarterTileOverlayGreyscale decals: - 4653: 56,2 - 5495: 57,-6 + 8012: 23,-17 + 8017: 22,-17 + 8018: 21,-17 + 8019: 20,-17 + 8020: 19,-17 + 8022: 24,-17 + 8023: 24,-16 - node: color: '#474F52FF' id: QuarterTileOverlayGreyscale @@ -6289,13 +6475,9 @@ entities: id: QuarterTileOverlayGreyscale decals: 712: 30,-21 - 833: 36,-3 - 838: 37,-2 2813: 40,43 2814: 50,45 2840: 44,49 - 4980: 12,-7 - 4981: 13,-7 6478: -28,-11 6479: -28,-10 6480: -28,-9 @@ -6305,6 +6487,17 @@ entities: 6484: -28,-5 6485: -28,-4 6486: -28,-3 + 7830: 42,-8 + 7846: 49,-1 + 7847: 44,0 + 7917: 57,-4 + 7923: 56,-2 + 7924: 55,-4 + 7926: 57,-2 + 7934: 55,-3 + 8225: 39,-2 + 8232: 33,-2 + 8233: 34,-2 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale @@ -6334,12 +6527,11 @@ entities: color: '#3EB38896' id: QuarterTileOverlayGreyscale180 decals: - 4648: 56,1 - 4649: 56,0 - 4650: 56,-1 - 4651: 56,-2 - 4652: 56,2 - 5494: 56,-5 + 8021: 18,-16 + 8032: 27,5 + 8033: 26,5 + 8034: 25,5 + 8036: 24,5 - node: color: '#43990996' id: QuarterTileOverlayGreyscale180 @@ -6548,22 +6740,21 @@ entities: 1368: 31,-12 1369: 31,-13 1389: -21,-7 - 4972: 11,-3 - 4973: 11,-2 - 4979: 11,-6 5768: 31,-10 5769: 31,-9 5770: 31,-7 - 6215: 13,4 - 6234: 11,-5 - 6637: 12,-2 - 6638: 13,-2 - 6639: 13,-1 - 6640: 13,0 - 6641: 13,1 - 6642: 13,2 - 6643: 13,3 - 7406: 33,2 + 7840: 43,-2 + 7914: 54,-1 + 7918: 56,-1 + 7920: 54,-3 + 7928: 56,-2 + 7933: 55,-3 + 7955: 59,2 + 7956: 60,2 + 7957: 61,2 + 7958: 62,2 + 8219: 34,-3 + 8229: 33,-3 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -6588,11 +6779,6 @@ entities: 6468: -12,27 6469: -11,27 6470: -10,27 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale270 - decals: - 5496: 57,-5 - node: color: '#52B4E956' id: QuarterTileOverlayGreyscale270 @@ -6781,17 +6967,15 @@ entities: 5777: 29,-8 5778: 29,-7 6620: 19,-18 - 7407: 37,2 + 7838: 42,3 + 7845: 49,-2 + 7931: 57,-1 + 8056: 57,10 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 5737: -2,-8 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale90 - decals: - 5497: 56,-6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -6927,8 +7111,6 @@ entities: id: QuarterTileOverlayGreyscale90 decals: 701: 32,-23 - 834: 34,-3 - 839: 33,-2 1936: -12,13 1937: -12,14 1938: -11,14 @@ -6985,8 +7167,15 @@ entities: 2608: 20,68 2609: 21,68 2610: 22,69 - 4955: 13,-12 5046: 28,43 + 7831: 43,-8 + 7841: 43,0 + 7868: 55,0 + 7932: 54,-4 + 7959: 59,6 + 7960: 60,6 + 7961: 61,6 + 8238: 10,-20 - node: color: '#FFFFFFFF' id: Rock01 @@ -7066,11 +7255,6 @@ entities: id: SpaceStationSign7 decals: 1867: -19,9 - - node: - color: '#3EB38896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 6490: 51,6 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale @@ -7172,14 +7356,15 @@ entities: 698: 30,-20 699: 29,-21 772: 8,-19 - 835: 36,-2 850: 25,-21 1388: -25,-3 2827: 44,53 2828: 43,49 - 6228: 20,4 6512: 45,5 6621: 16,-16 + 7860: 52,2 + 8042: 53,-3 + 8043: 59,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale @@ -7275,17 +7460,21 @@ entities: 774: 18,-24 806: 28,-19 853: 27,-24 - 863: 22,1 1385: -21,-8 1386: -20,-7 2830: 48,47 6039: 35,45 - 6211: 16,4 + 8231: 40,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 decals: 199: -26,-45 + - node: + color: '#3EB38896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 8004: 16,-14 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale270 @@ -7370,13 +7559,12 @@ entities: 792: 16,-18 793: 25,-19 852: 25,-24 - 862: 20,1 1384: -25,-8 2826: 43,47 - 4963: 7,0 6037: 29,45 - 6221: 18,3 6619: 19,-19 + 7859: 53,-7 + 8041: 52,0 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 @@ -7479,13 +7667,12 @@ entities: 700: 35,-23 775: 18,-21 798: 28,-16 - 836: 34,-2 851: 27,-21 1387: -20,-3 2829: 48,53 - 6212: 16,5 - 6229: 22,4 6516: 46,5 + 7864: 55,2 + 8044: 60,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 @@ -7501,17 +7688,19 @@ entities: color: '#000000FF' id: WarnBox decals: - 5192: 66,50 5194: -26,-51 5966: 37,19 5967: 43,14 + - node: + color: '#439909FF' + id: WarnBox + decals: + 8058: 39,53 - node: color: '#52B4E9FF' id: WarnBox decals: - 4099: 67,50 4100: 59,52 - 4104: 39,51 - node: color: '#DE3A3AFF' id: WarnBox @@ -7551,7 +7740,6 @@ entities: color: '#52B4E9FF' id: WarnBoxGreyscale decals: - 5193: 66,50 5195: -26,-51 - node: color: '#8C347FFF' @@ -7560,35 +7748,46 @@ entities: 5968: 37,19 5969: 43,14 - node: + zIndex: 1 color: '#52B4E9FF' + id: WarnCornerGreyscaleSW + decals: + 8064: 66,50 + - node: + color: '#439909FF' id: WarnCornerNE decals: - 4102: 25,56 + 8057: 25,56 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 923: 36,1 2688: 22,66 2697: 12,84 2698: 25,84 2699: 26,82 + 8185: 35,3 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 922: 34,1 1429: -37,-10 2687: 21,66 2700: 10,82 2701: 11,84 2742: 24,84 + 8184: 33,3 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnCornerNW decals: 542: -6,-50 + - node: + color: '#439909FF' + id: WarnCornerSE + decals: + 8059: 67,50 - node: color: '#DE3A3AFF' id: WarnCornerSE @@ -7600,21 +7799,26 @@ entities: decals: 22: -41,-44 23: -47,-28 - 917: 36,-1 2686: 22,65 2693: 12,72 2694: 25,72 2695: 26,77 + 8177: 35,1 + - node: + color: '#000000FF' + id: WarnCornerSW + decals: + 8063: 66,50 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 916: 34,-1 2689: 21,65 2690: 23,73 2691: 24,72 2692: 11,72 2696: 10,77 + 8183: 33,1 - node: color: '#334E6DFF' id: WarnCornerSmallGreyscaleNE @@ -7640,23 +7844,16 @@ entities: id: WarnCornerSmallNE decals: 886: 13,-22 - 891: 19,-17 - 892: 21,-17 902: 10,-17 2746: 25,82 2767: 54,61 - 4941: 10,-12 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 885: 18,-22 - 889: 23,-17 - 890: 21,-17 2743: 11,82 2766: 58,61 - 3932: 26,3 - 4948: 10,-6 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -7668,8 +7865,6 @@ entities: 1260: 57,-37 2745: 25,77 2771: 52,64 - 3935: 29,4 - 4940: 10,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -7677,7 +7872,6 @@ entities: 905: 9,-15 1253: 57,-25 2744: 11,77 - 4949: 10,-1 - node: color: '#FFFFFFFF' id: WarnFull @@ -7713,11 +7907,9 @@ entities: 877: 23,-21 878: 13,-21 879: 13,-20 - 894: 20,-15 895: 10,-16 896: 10,-15 897: 10,-14 - 920: 36,0 1259: 57,-38 2069: -15,5 2070: -15,6 @@ -7764,13 +7956,10 @@ entities: 2770: 52,63 2946: 59,55 2947: 59,54 - 3930: 29,2 - 3931: 29,3 4606: 59,-49 4616: 59,-50 - 4942: 10,-11 - 4943: 10,-10 5598: -35,62 + 8195: 35,2 - node: color: '#334E6DFF' id: WarnLineGreyscaleE @@ -7818,7 +8007,6 @@ entities: 576: -4,-44 577: 0,-44 906: 8,-15 - 918: 35,-1 973: -1,-14 1244: 59,-15 1252: 56,-25 @@ -7837,6 +8025,15 @@ entities: 5522: -29,66 5523: -28,66 5524: -27,66 + 8192: 34,1 + 8297: 13,-12 + 8298: 14,-12 + 8299: 15,-12 + 8300: 16,-12 + 8301: 17,-12 + 8302: 18,-12 + 8303: 19,-12 + 8304: 20,-12 - node: zIndex: 2 color: '#FFFFFFFF' @@ -7864,10 +8061,8 @@ entities: 872: 20,-22 873: 20,-21 884: 18,-21 - 893: 22,-15 903: 9,-17 904: 9,-16 - 921: 34,0 1431: -37,-11 1715: 36,17 2060: -13,5 @@ -7914,13 +8109,8 @@ entities: 2762: 58,64 2944: 57,54 2945: 57,55 - 3928: 26,4 - 3929: 26,5 - 4944: 10,-5 - 4945: 10,-4 - 4946: 10,-3 - 4947: 10,-2 5597: -36,62 + 8193: 33,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7952,13 +8142,10 @@ entities: 881: 16,-22 882: 15,-22 883: 17,-22 - 887: 20,-17 - 888: 22,-17 898: 11,-17 899: 12,-17 900: 13,-17 901: 14,-17 - 919: 35,1 974: -1,-14 1249: 59,-15 1417: -32,-10 @@ -7973,8 +8160,14 @@ entities: 2757: 55,61 2758: 56,61 2759: 57,61 - 3933: 24,3 - 3934: 25,3 + 8194: 34,3 + 8305: 14,4 + 8306: 15,4 + 8307: 16,4 + 8308: 17,4 + 8309: 18,4 + 8310: 19,4 + 8311: 20,4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8299,52 +8492,53 @@ entities: 1,3: 0: 65524 1,0: - 2: 9830 - 0: 34952 + 2: 26214 1,1: - 2: 8738 - 0: 2184 + 2: 30438 1,4: 0: 65535 1,-1: - 2: 26208 + 2: 58976 0: 2186 2,0: - 0: 40445 + 1: 30576 2,1: - 0: 955 - 2: 32768 + 2: 8337 + 1: 3680 2,2: - 2: 65535 + 2: 65523 2,3: 0: 65520 + 2,-1: + 2: 36864 + 1: 24576 + 0: 239 2,4: 0: 65535 - 2,-1: - 0: 52701 3,0: - 0: 48051 - 1: 8 + 2: 4369 + 0: 52428 3,1: - 0: 33023 + 2: 4113 + 1: 256 + 0: 51404 3,2: - 2: 16368 - 0: 32768 + 2: 13105 + 0: 36040 3,3: 0: 65464 3,-1: - 0: 13063 - 1: 34952 + 2: 4096 + 0: 52479 3,4: 0: 65535 4,0: - 1: 71 - 0: 53520 + 0: 65535 4,1: - 0: 56831 + 0: 43775 4,2: - 0: 1 - 2: 53232 + 0: 816 + 2: 52416 4,3: 0: 1 1: 26112 @@ -8445,42 +8639,35 @@ entities: 1,-2: 0: 41718 1,-4: - 0: 17510 + 0: 17638 1,-3: 0: 25668 1,-5: - 0: 26214 + 0: 25687 2,-4: 0: 4095 2,-3: 0: 65535 2,-2: - 0: 56574 + 0: 61183 2,-5: 0: 62079 3,-4: - 0: 9079 - 1: 32768 + 0: 57463 3,-3: - 0: 13107 - 1: 34952 + 0: 65535 3,-2: - 0: 8243 - 1: 34952 + 0: 65535 3,-5: 0: 63247 4,-4: - 0: 7 - 1: 63232 + 0: 63239 4,-3: - 2: 18 - 1: 13032 + 0: 65535 4,-2: - 2: 754 - 1: 12288 + 0: 65535 4,-1: - 2: 528 - 1: 63714 + 0: 65535 -4,-8: 0: 63347 -4,-9: @@ -8531,18 +8718,17 @@ entities: 0,-7: 0: 4095 0,-6: - 0: 255 - 2: 8192 + 0: 57599 0,-9: 0: 57297 0,-5: - 2: 3170 + 0: 238 1,-8: 0: 3002 1,-7: 0: 12287 1,-6: - 0: 28279 + 0: 23671 1,-9: 0: 41710 2,-8: @@ -9119,8 +9305,8 @@ entities: 5,-9: 0: 63231 5,-4: - 0: 1365 - 1: 61440 + 0: 5461 + 2: 49152 6,-8: 0: 61678 6,-7: @@ -9130,8 +9316,9 @@ entities: 6,-6: 0: 61166 6,-4: - 0: 15 - 1: 63232 + 0: 127 + 1: 12288 + 2: 49152 6,-9: 0: 60637 7,-8: @@ -9155,25 +9342,31 @@ entities: 8,-5: 0: 3839 5,-3: - 2: 8818 - 1: 136 + 0: 4369 + 2: 17476 5,-2: - 2: 10231 + 0: 4369 + 2: 17476 5,-1: - 2: 626 - 1: 63616 + 0: 4369 + 2: 17476 + 5,0: + 0: 4369 + 2: 50244 6,-3: - 1: 60088 - 2: 66 + 3: 48 + 4: 12288 + 2: 34952 6,-2: - 2: 626 - 1: 59528 + 5: 48 + 1: 12288 + 2: 34952 6,-1: - 1: 63674 - 2: 576 + 1: 12336 + 2: 34952 6,0: - 1: 15 - 0: 65280 + 2: 51336 + 1: 12336 7,-3: 0: 61166 7,-2: @@ -9181,7 +9374,7 @@ entities: 7,-1: 0: 61166 7,0: - 0: 30542 + 0: 61006 8,-4: 0: 36795 8,-3: @@ -9190,50 +9383,43 @@ entities: 8,-2: 0: 61167 8,-1: - 0: 61408 + 0: 4080 4,4: 1: 6 0: 4352 2: 49152 - 5,0: - 0: 63344 5,1: - 0: 2047 + 0: 32753 5,2: - 2: 65014 + 2: 64880 5,3: 2: 30583 5,4: 2: 32767 6,1: - 0: 255 - 2: 32768 + 0: 65520 6,2: - 2: 32760 + 0: 61167 6,3: - 2: 1092 + 0: 14 + 2: 1024 7,1: - 0: 19 - 2: 65224 + 0: 36606 7,2: - 2: 287 - 0: 17408 + 0: 26478 7,3: - 0: 18271 + 0: 18254 6,4: 0: 200 2: 49971 7,4: 0: 26230 - 8,0: - 0: 4078 - 8,1: - 2: 15 - 0: 28160 8,2: 0: 63270 8,3: 0: 47935 + 8,0: + 0: 61166 9,-4: 0: 65535 9,-3: @@ -9242,15 +9428,15 @@ entities: 9,-2: 0: 57297 9,-1: - 0: 48944 + 0: 36848 9,0: - 0: 33723 + 0: 64443 10,-4: 0: 56797 10,-3: 0: 56543 10,-1: - 0: 64972 + 0: 65500 10,0: 0: 56797 10,-2: @@ -9263,9 +9449,8 @@ entities: 0: 57565 11,-2: 0: 13070 - 2: 32768 11,-1: - 0: 64497 + 0: 65439 11,-5: 0: 56797 11,0: @@ -9277,15 +9462,16 @@ entities: 2: 34816 12,-2: 0: 11 - 2: 65152 + 2: 61056 12,-1: - 0: 61440 + 0: 65280 2: 110 + 8,1: + 0: 28174 8,4: 0: 48059 9,1: - 2: 1 - 0: 65294 + 0: 65291 9,2: 0: 63343 9,3: @@ -9303,7 +9489,7 @@ entities: 11,1: 0: 14574 11,2: - 0: 65295 + 0: 65423 11,3: 0: 4063 11,4: @@ -9314,7 +9500,7 @@ entities: 12,1: 0: 3003 12,2: - 0: 48911 + 0: 48927 12,3: 0: 44943 8,-9: @@ -9463,8 +9649,8 @@ entities: 14,-8: 0: 65535 15,-9: - 0: 4147 - 2: 52428 + 0: 4351 + 2: 52224 15,-13: 0: 4352 15,-8: @@ -9474,7 +9660,8 @@ entities: 16,-10: 2: 65520 16,-9: - 2: 8191 + 0: 255 + 2: 7936 13,-16: 2: 36608 13,-15: @@ -9531,41 +9718,40 @@ entities: 0: 4335 2: 57344 13,-1: - 0: 64270 + 0: 65518 13,-2: 0: 61152 + 13,0: + 0: 20479 14,-3: 0: 16503 2: 45056 14,-2: - 0: 65392 + 0: 29488 + 2: 136 14,-1: - 0: 65303 - 13,0: - 0: 20472 + 0: 30719 14,0: - 0: 4095 + 0: 60999 15,-3: - 2: 21840 - 0: 8736 + 2: 12832 15,-2: - 2: 13 - 0: 65282 + 2: 4082 15,-1: - 0: 65535 + 0: 28767 15,0: - 0: 4095 + 0: 30471 16,-4: 0: 257 16,-2: - 0: 65280 + 2: 4080 16,-1: - 0: 65535 + 2: 8947 + 0: 4104 19,-8: 0: 61183 19,-9: - 0: 61952 - 2: 255 + 0: 62207 19,-7: 0: 14 20,-8: @@ -9576,67 +9762,76 @@ entities: 17,-10: 2: 65520 17,-9: - 2: 4095 + 0: 255 + 2: 3840 18,-10: 2: 32624 1: 32896 18,-9: - 2: 2047 + 0: 255 + 2: 1792 19,-10: 1: 65520 20,-10: 1: 13104 2: 34824 20,-9: - 2: 35071 - 0: 12544 + 0: 12799 + 2: 34816 21,-10: - 2: 65391 + 2: 3951 + 0: 61440 21,-9: - 2: 4095 - 1: 28672 + 0: 4027 + 2: 28672 21,-8: - 1: 34 - 2: 1368 + 2: 1402 22,-10: - 2: 4112 + 2: 16 + 0: 4096 22,-9: - 2: 273 + 0: 273 16,0: - 0: 4095 + 0: 4377 + 2: 8806 17,-2: - 0: 65280 + 2: 4080 17,-1: - 0: 65535 + 0: 4111 + 2: 33776 17,0: - 0: 4095 + 0: 19 + 2: 37132 18,-2: - 0: 30464 + 2: 4080 18,-1: - 0: 30591 + 0: 15 + 2: 14832 18,0: - 0: 1919 + 2: 12567 + 0: 8 19,-2: - 0: 20480 - 2: 35840 + 2: 4080 19,-1: - 0: 4113 - 2: 17612 + 0: 4099 + 2: 35320 19,0: - 0: 8465 - 2: 21572 + 0: 19 + 2: 47564 20,-2: - 2: 4352 + 2: 53232 20,-1: - 2: 21873 + 2: 61183 + 0: 4096 4,5: - 2: 30716 + 0: 17 + 2: 29900 + 3,5: + 0: 255 + 2: 61440 4,6: 2: 4371 0: 52224 - 3,5: - 2: 61440 - 0: 119 3,6: 2: 65535 4,7: @@ -10025,47 +10220,38 @@ entities: 13,1: 0: 20479 13,2: - 0: 24015 + 0: 56783 13,3: - 0: 4381 + 0: 4383 2: 3072 13,4: 0: 4437 1: 49152 + 14,2: + 0: 65262 14,3: - 0: 15 - 2: 3840 + 2: 65504 + 0: 14 14,1: - 2: 8750 - 3: 34816 - 14,2: - 2: 50722 - 3: 8 - 0: 2048 + 0: 20206 15,1: - 2: 15 - 4: 8704 - 5: 34816 + 0: 18295 15,2: - 0: 768 - 2: 64512 - 4: 2 - 5: 8 + 0: 21606 15,3: - 0: 15 - 2: 7936 + 0: 13 + 2: 65520 15,4: - 2: 15 + 2: 1 16,1: - 2: 15 - 1: 43520 + 0: 4369 + 2: 25134 16,2: - 2: 61696 - 1: 10 - 0: 3584 + 0: 25 + 2: 61990 16,3: - 0: 15 - 2: 12032 + 2: 65523 + 0: 8 12,8: 0: 65534 13,5: @@ -10077,8 +10263,6 @@ entities: 0: 61166 13,8: 0: 65535 - 14,4: - 2: 15 14,5: 2: 4383 14,6: @@ -10092,8 +10276,6 @@ entities: 2: 68 15,5: 2: 31 - 16,4: - 2: 15 16,5: 2: 47 12,9: @@ -10805,44 +10987,62 @@ entities: 2: 1092 -5,18: 0: 631 + 16,4: + 2: 2 17,1: - 2: 8751 - 1: 34816 + 2: 415 + 0: 4096 17,2: - 2: 8162 - 0: 32768 + 0: 19 + 2: 62348 17,3: 0: 15 - 2: 53120 + 2: 65520 17,4: - 2: 7 + 2: 4 18,1: - 2: 34959 - 1: 13056 + 2: 4415 18,2: - 2: 4088 - 0: 61440 + 2: 63799 + 0: 8 18,3: - 0: 7 - 2: 65408 + 0: 15 + 2: 65520 19,1: - 2: 13107 - 0: 17476 + 2: 51647 + 0: 4096 19,2: - 2: 819 - 0: 29764 + 0: 19 + 2: 63884 19,3: - 2: 61680 + 0: 3843 + 2: 61688 + 18,4: + 2: 8 20,0: - 2: 22357 + 0: 4369 + 2: 61166 20,1: - 2: 30037 + 0: 4369 + 2: 61166 20,2: - 2: 21845 + 0: 17 + 2: 65262 20,3: - 2: 30039 + 2: 64767 + 0: 512 17,5: 2: 71 + 20,4: + 2: 1 + 21,0: + 2: 16 + 21,1: + 2: 256 + 21,2: + 2: 4096 + 21,-1: + 2: 1 -14,-4: 0: 65520 -4,-18: @@ -10909,7 +11109,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - 6666.982 - 0 - 0 @@ -10921,11 +11120,12 @@ entities: - 0 - 0 - 0 + - 0 - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 + - 6666.982 - 0 - 0 - 0 @@ -11035,12 +11235,6 @@ entities: parent: 5895 - type: InstantAction container: 5895 - - uid: 6214 - components: - - type: Transform - parent: 6212 - - type: InstantAction - container: 6212 - uid: 9079 components: - type: Transform @@ -11083,6 +11277,30 @@ entities: parent: 27129 - type: InstantAction container: 27129 + - uid: 28700 + components: + - type: Transform + parent: 28698 + - type: InstantAction + container: 28698 + - uid: 28706 + components: + - type: Transform + parent: 28705 + - type: InstantAction + container: 28705 + - uid: 28708 + components: + - type: Transform + parent: 28707 + - type: InstantAction + container: 28707 + - uid: 28710 + components: + - type: Transform + parent: 28709 + - type: InstantAction + container: 28709 - uid: 30712 components: - type: Transform @@ -11101,6 +11319,14 @@ entities: parent: 30713 - type: InstantAction container: 30713 +- proto: ActionToggleJetpack + entities: + - uid: 28699 + components: + - type: Transform + parent: 28698 + - type: InstantAction + container: 28698 - proto: ActionToggleLight entities: - uid: 5596 @@ -11209,20 +11435,6 @@ entities: - 2762 - 3994 - 28345 - - uid: 447 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 12 - - type: DeviceList - devices: - - 4786 - - 4738 - - 9994 - - 9995 - - 5310 - - 4685 - - 9294 - uid: 448 components: - type: Transform @@ -11230,10 +11442,8 @@ entities: parent: 12 - type: DeviceList devices: - - 10001 + - 10811 - 5298 - - 5294 - - 5409 - 9485 - 9303 - 23891 @@ -11387,6 +11597,17 @@ entities: - 2100 - 1250 - 2081 + - uid: 2682 + components: + - type: Transform + pos: 35.5,5.5 + parent: 12 + - type: DeviceList + devices: + - 26593 + - 2684 + - 26415 + - 4787 - uid: 2852 components: - type: Transform @@ -11437,16 +11658,11 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-12.5 parent: 12 - - type: DeviceList - devices: - - 9995 - - 5310 - - 4685 - - 4744 - - 4742 - - 4738 - - 9994 - - 27305 + - uid: 3983 + components: + - type: Transform + pos: 16.5,6.5 + parent: 12 - uid: 4418 components: - type: Transform @@ -11461,7 +11677,7 @@ entities: - 7389 - 7388 - 7390 - - 26311 + - 19173 - 26312 - 28364 - 29393 @@ -11474,10 +11690,24 @@ entities: devices: - 28375 - 9321 - - 9294 - 5255 - 10027 - 5305 + - uid: 4906 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 12 + - type: DeviceList + devices: + - 26593 + - 9303 + - 10811 + - 5298 + - 6709 + - 5011 + - 2679 + - 28904 - uid: 6833 components: - type: Transform @@ -11531,17 +11761,6 @@ entities: - 2909 - 346 - 8673 - - uid: 8910 - components: - - type: Transform - pos: 55.5,-2.5 - parent: 12 - - type: DeviceList - devices: - - 26637 - - 5128 - - 26457 - - 27003 - uid: 8914 components: - type: Transform @@ -11678,21 +11897,6 @@ entities: - 3533 - 2762 - 3584 - - uid: 10017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 12 - - type: DeviceList - devices: - - 10001 - - 5298 - - 5294 - - 10000 - - 5409 - - 10002 - - 5281 - uid: 10018 components: - type: Transform @@ -11716,13 +11920,25 @@ entities: - 9315 - 9314 - 9318 - - 9319 - 9305 - 9310 - 9311 - 5280 - 10003 - 10026 + - uid: 11505 + components: + - type: Transform + pos: 30.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 12232 + - 12231 + - 31515 + - 23891 + - 31516 + - 31517 - uid: 12032 components: - type: Transform @@ -12305,37 +12521,16 @@ entities: - 2201 - 19749 - 4153 - - uid: 26937 - components: - - type: Transform - pos: 69.5,3.5 - parent: 12 - - type: DeviceList - devices: - - 27162 - - 26780 - - uid: 26938 + - uid: 26792 components: - type: Transform - pos: 56.5,3.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 12 - type: DeviceList devices: - - 26924 - - 26639 - - 26940 - - 26979 - - 26441 - - 26928 - - 26949 - - 20793 - - 26923 - - 26941 - - 26931 - - 26935 - - 26932 - - 26933 - - 26934 + - 6212 + - 28752 - uid: 27296 components: - type: Transform @@ -12360,6 +12555,57 @@ entities: - 27280 - 4009 - 4011 + - uid: 27311 + components: + - type: Transform + pos: 52.5,3.5 + parent: 12 + - type: DeviceList + devices: + - 26949 + - 2021 + - 2020 + - 26923 + - 609 + - 2034 + - 26790 + - 15130 + - uid: 27312 + components: + - type: Transform + pos: 52.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 26923 + - 7789 + - 27005 + - 20793 + - uid: 27313 + components: + - type: Transform + pos: 59.5,13.5 + parent: 12 + - type: DeviceList + devices: + - 27309 + - 19292 + - 19188 + - 7807 + - 2359 + - uid: 27314 + components: + - type: Transform + pos: 61.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 7547 + - 5887 + - 9717 + - 27310 + - 2359 + - 2020 - uid: 28270 components: - type: Transform @@ -12662,33 +12908,6 @@ entities: - 9321 - 29981 - 29982 - - uid: 28377 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - - type: DeviceList - devices: - - 27305 - - 4742 - - 4744 - - 9994 - - 4738 - - 9666 - - 2779 - - uid: 28378 - components: - - type: Transform - pos: 25.5,6.5 - parent: 12 - - type: DeviceList - devices: - - 7787 - - 6766 - - 9666 - - 4949 - - 23891 - - 2779 - uid: 28381 components: - type: Transform @@ -12805,11 +13024,6 @@ entities: - 29820 - 29651 - 29784 - - uid: 29868 - components: - - type: Transform - pos: 15.5,20.5 - parent: 12 - uid: 30349 components: - type: Transform @@ -12892,14 +13106,28 @@ entities: devices: - 7357 - 2674 - - 31757 + - 2679 - 31758 - - 31756 + - 19555 - 7806 - 31760 - 31759 - 25681 - 2324 + - 28904 + - uid: 31894 + components: + - type: Transform + pos: 15.5,22.5 + parent: 12 + - type: DeviceList + devices: + - 29872 + - 3954 + - 9560 + - 9488 + - 29869 + - 29870 - proto: AirAlarmVox entities: - uid: 7822 @@ -12954,6 +13182,11 @@ entities: - type: Transform pos: 81.5,-30.5 parent: 12 + - uid: 9787 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 12 - uid: 10982 components: - type: Transform @@ -12989,15 +13222,20 @@ entities: - type: Transform pos: -20.5,61.5 parent: 12 - - uid: 26913 + - uid: 26544 components: - type: Transform - pos: 55.5,-3.5 + pos: 25.5,10.5 parent: 12 - - uid: 28943 + - uid: 26590 components: - type: Transform - pos: 5.5,-18.5 + pos: 2.5,-18.5 + parent: 12 + - uid: 26686 + components: + - type: Transform + pos: 25.5,9.5 parent: 12 - uid: 29112 components: @@ -13084,28 +13322,26 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,52.5 parent: 12 -- proto: AirlockAtmosphericsLocked +- proto: AirlockAtmosphericsGlassLocked entities: - - uid: 5886 - components: - - type: Transform - pos: 56.5,-2.5 - parent: 12 - - uid: 5891 + - uid: 24654 components: - type: Transform - pos: 59.5,-5.5 + rot: 3.141592653589793 rad + pos: 23.5,5.5 parent: 12 - - uid: 5892 + - uid: 25466 components: - type: Transform - pos: 59.5,-4.5 + rot: 3.141592653589793 rad + pos: 23.5,6.5 parent: 12 - - uid: 5921 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 2181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-3.5 + pos: 30.5,1.5 parent: 12 - uid: 7129 components: @@ -13113,11 +13349,32 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-33.5 parent: 12 - - uid: 26623 + - uid: 7224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,3.5 + pos: 20.5,-15.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 22526: + - DoorStatus: DoorBolt + - uid: 22526 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7224: + - DoorStatus: DoorBolt + - uid: 29964 + components: + - type: Transform + pos: 28.5,5.5 parent: 12 - proto: AirlockBarLocked entities: @@ -13381,8 +13638,20 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,29.5 parent: 12 +- proto: AirlockEngineering + entities: + - uid: 26624 + components: + - type: Transform + pos: 17.5,6.5 + parent: 12 - proto: AirlockEngineeringGlassLocked entities: + - uid: 1346 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 12 - uid: 5096 components: - type: Transform @@ -13406,21 +13675,16 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-24.5 parent: 12 - - uid: 5538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 12 - - uid: 9127 + - uid: 11005 components: - type: Transform - pos: 17.5,4.5 + pos: 32.5,-1.5 parent: 12 - - uid: 26162 + - uid: 27383 components: - type: Transform - pos: 17.5,5.5 + rot: -1.5707963267948966 rad + pos: 54.5,3.5 parent: 12 - proto: AirlockEngineeringLocked entities: @@ -13441,12 +13705,6 @@ entities: - type: Transform pos: 32.5,-11.5 parent: 12 - - uid: 2874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 12 - uid: 2891 components: - type: Transform @@ -13470,45 +13728,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 12 - - uid: 4617 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 12 - - uid: 5103 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 2010: - - DoorStatus: DoorBolt - 1700: - - DoorStatus: DoorBolt - - uid: 5104 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 1700: - - DoorStatus: DoorBolt - 2010: - - DoorStatus: DoorBolt - uid: 5253 components: - type: Transform @@ -13557,18 +13776,40 @@ entities: - type: Transform pos: 39.5,-36.5 parent: 12 + - uid: 6707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 12 - uid: 7824 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-9.5 parent: 12 + - uid: 9824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 12 - uid: 10667 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,14.5 parent: 12 + - uid: 11006 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 12 + - uid: 11007 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 12 - uid: 11351 components: - type: Transform @@ -13581,6 +13822,18 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,26.5 parent: 12 + - uid: 13169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 12 + - uid: 15008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,1.5 + parent: 12 - uid: 15705 components: - type: Transform @@ -13613,11 +13866,11 @@ entities: - type: Transform pos: -23.5,58.5 parent: 12 - - uid: 25674 + - uid: 26470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-1.5 + pos: 58.5,7.5 parent: 12 - uid: 27457 components: @@ -13635,6 +13888,12 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 12 + - uid: 29098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 12 - uid: 31074 components: - type: Transform @@ -13661,20 +13920,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 12 -- proto: AirlockExternalAtmosphericsLocked - entities: - - uid: 638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 27153: - - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 1085 @@ -13713,34 +13958,6 @@ entities: linkedPorts: 1537: - DoorStatus: DoorBolt - - uid: 1700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5103: - - DoorStatus: DoorBolt - 5104: - - DoorStatus: DoorBolt - - uid: 2010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5104: - - DoorStatus: DoorBolt - 5103: - - DoorStatus: DoorBolt - uid: 2291 components: - type: Transform @@ -13753,47 +13970,6 @@ entities: linkedPorts: 1085: - DoorStatus: DoorBolt - - uid: 3524 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9176: - - DoorStatus: DoorBolt - 3628: - - DoorStatus: DoorBolt - - uid: 3627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9176: - - DoorStatus: DoorBolt - 3628: - - DoorStatus: DoorBolt - - uid: 3628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 3524: - - DoorStatus: DoorBolt - 3627: - - DoorStatus: DoorBolt - uid: 6350 components: - type: Transform @@ -13818,128 +13994,124 @@ entities: linkedPorts: 6350: - DoorStatus: DoorBolt - - uid: 7889 + - uid: 11322 components: - type: Transform - pos: 12.5,-3.5 + pos: 7.5,20.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10165: + 12687: - DoorStatus: DoorBolt - - uid: 9176 + - uid: 11379 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,1.5 + pos: 63.5,-3.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 8 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 3627: - - DoorStatus: DoorBolt - 9609: + 11390: - DoorStatus: DoorBolt - 3524: - - DoorStatus: DoorBolt - - uid: 9609 + - uid: 11390 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,8.5 + pos: 61.5,-3.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 7 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10657: - - DoorStatus: DoorBolt - 9176: + 11379: - DoorStatus: DoorBolt - - uid: 10165 + - uid: 12687 components: - type: Transform - pos: 14.5,-3.5 + pos: 7.5,22.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7889: + 11322: - DoorStatus: DoorBolt - - uid: 10657 + - uid: 14260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,6.5 + rot: -1.5707963267948966 rad + pos: 31.5,66.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 9609: + 14261: - DoorStatus: DoorBolt - - uid: 11322 + - uid: 14261 components: - type: Transform - pos: 7.5,20.5 + rot: -1.5707963267948966 rad + pos: 31.5,68.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 12687: + 14260: - DoorStatus: DoorBolt - - uid: 12687 + - uid: 19020 components: - type: Transform - pos: 7.5,22.5 + rot: -1.5707963267948966 rad + pos: -53.5,46.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11322: + 19019: - DoorStatus: DoorBolt - - uid: 14260 + - uid: 19663 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,66.5 + pos: 63.5,12.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 14261: + 24445: - DoorStatus: DoorBolt - - uid: 14261 + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,68.5 + pos: 62.5,10.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 14260: + 19663: - DoorStatus: DoorBolt - - uid: 19020 + - uid: 26625 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,46.5 + pos: 15.5,6.5 + parent: 12 + - uid: 26626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19019: - - DoorStatus: DoorBolt - uid: 31108 components: - type: Transform @@ -14108,62 +14280,49 @@ entities: parent: 12 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 4390 + - uid: 4947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,6.5 + pos: 7.5,-1.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10841: + 7250: - DoorStatus: DoorBolt - - uid: 10841 + - uid: 5024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,4.5 + pos: 22.5,-13.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 4390: + 7562: - DoorStatus: DoorBolt - - uid: 26624 + - uid: 7250 components: - type: Transform - pos: 75.5,0.5 + pos: 8.5,-3.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 27137: + 4947: - DoorStatus: DoorBolt - - uid: 27137 + - uid: 7562 components: - type: Transform - pos: 76.5,2.5 + pos: 22.5,-15.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 26624: - - DoorStatus: DoorBolt - - uid: 27153 - components: - - type: Transform - pos: 54.5,-0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 638: + 5024: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: @@ -14244,30 +14403,6 @@ entities: linkedPorts: 11931: - DoorStatus: DoorBolt - - uid: 2676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7322: - - DoorStatus: DoorBolt - - uid: 7322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,4.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2676: - - DoorStatus: DoorBolt - uid: 10785 components: - type: Transform @@ -14718,6 +14853,12 @@ entities: rot: 3.141592653589793 rad pos: -15.5,4.5 parent: 12 + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 12 - uid: 549 components: - type: Transform @@ -14728,6 +14869,12 @@ entities: - type: Transform pos: -13.5,-23.5 parent: 12 + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 12 - uid: 918 components: - type: Transform @@ -14805,11 +14952,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-27.5 parent: 12 - - uid: 7811 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 12 - uid: 7847 components: - type: Transform @@ -14821,11 +14963,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-25.5 parent: 12 - - uid: 12288 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 12 - uid: 13068 components: - type: Transform @@ -15155,12 +15292,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-32.5 parent: 12 - - uid: 2970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-36.5 - parent: 12 - uid: 3037 components: - type: Transform @@ -15217,10 +15348,23 @@ entities: parent: 12 - proto: AirlockMaintAtmoLocked entities: - - uid: 20776 + - uid: 5070 components: - type: Transform - pos: 54.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 12 + - uid: 11016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 12 + - uid: 25481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 12 - proto: AirlockMaintCargoLocked entities: @@ -15241,11 +15385,22 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 12 - - uid: 28529 + - uid: 7829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 + pos: 7.5,-14.5 + parent: 12 + - uid: 27354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,7.5 + parent: 12 + - uid: 27382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,11.5 parent: 12 - proto: AirlockMaintGlassLocked entities: @@ -15629,12 +15784,6 @@ entities: - type: Transform pos: 8.5,60.5 parent: 12 - - uid: 25573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - uid: 25595 components: - type: Transform @@ -16607,15 +16756,24 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 4949 + - uid: 4787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,5.5 + rot: 1.5707963267948966 rad + pos: 35.5,4.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 + - 2682 + - uid: 5011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4906 - uid: 7350 components: - type: Transform @@ -16632,6 +16790,15 @@ entities: - type: DeviceNetwork deviceLists: - 28363 + - uid: 7547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - uid: 7558 components: - type: Transform @@ -16641,6 +16808,24 @@ entities: - type: DeviceNetwork deviceLists: - 70 + - uid: 7789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27312 + - uid: 7807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,11.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 - uid: 8916 components: - type: Transform @@ -16800,35 +16985,12 @@ entities: - type: DeviceNetwork deviceLists: - 1699 - - uid: 9995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - uid: 10000 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-1.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - uid: 10001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - uid: 10002 components: - type: Transform @@ -16837,7 +16999,6 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 - 1288 - uid: 10003 components: @@ -17423,48 +17584,15 @@ entities: - type: DeviceNetwork deviceLists: - 20784 - - uid: 26940 - components: - - type: Transform - pos: 63.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26941 - components: - - type: Transform - pos: 54.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 27003 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - - uid: 27162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26937 - - uid: 27305 + - uid: 26790 components: - type: Transform - pos: 11.5,2.5 + rot: 1.5707963267948966 rad + pos: 54.5,0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 3224 - - 28377 + - 27311 - uid: 27889 components: - type: Transform @@ -17641,6 +17769,15 @@ entities: - type: DeviceNetwork deviceLists: - 28383 + - uid: 28752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 26792 - uid: 29111 components: - type: Transform @@ -17690,6 +17827,9 @@ entities: - type: Transform pos: 10.5,16.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 30446 components: - type: Transform @@ -17716,6 +17856,15 @@ entities: - type: DeviceNetwork deviceLists: - 27296 + - uid: 31517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 - uid: 31759 components: - type: Transform @@ -17777,20 +17926,6 @@ entities: actions: !type:Container ents: - 4142 - - uid: 6212 - components: - - type: Transform - parent: 6209 - - type: GasTank - toggleActionEntity: 6214 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 6214 - uid: 22527 components: - type: Transform @@ -17816,6 +17951,20 @@ entities: - type: Transform pos: 55.478806,-34.59952 parent: 12 + - uid: 28705 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.361034,9.478294 + parent: 12 + - type: GasTank + toggleActionEntity: 28706 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28706 - uid: 30709 components: - type: Transform @@ -17846,11 +17995,11 @@ entities: parent: 12 - proto: AlwaysPoweredLightExterior entities: - - uid: 22155 + - uid: 3205 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,2.5 + pos: 83.5,6.5 parent: 12 - uid: 22157 components: @@ -17858,12 +18007,17 @@ entities: rot: 3.141592653589793 rad pos: 70.5,15.5 parent: 12 + - uid: 31887 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 12 - proto: AmeController entities: - - uid: 2242 + - uid: 4915 components: - type: Transform - pos: 33.5,-2.5 + pos: 36.5,2.5 parent: 12 - proto: AnomalyVesselCircuitboard entities: @@ -17890,6 +18044,12 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 12 - uid: 853 components: - type: Transform @@ -17971,12 +18131,6 @@ entities: - type: Transform pos: 54.5,13.5 parent: 12 - - uid: 4697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 12 - uid: 4868 components: - type: Transform @@ -18001,6 +18155,18 @@ entities: - type: Transform pos: 13.5,-36.5 parent: 12 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,4.5 + parent: 12 + - uid: 7825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 12 - uid: 7899 components: - type: Transform @@ -18033,12 +18199,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 12 - - uid: 9717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,2.5 - parent: 12 - uid: 9899 components: - type: Transform @@ -18328,17 +18488,23 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 12 - - uid: 27295 + - uid: 26652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-36.5 + pos: 51.5,0.5 parent: 12 - - uid: 27326 + - uid: 26780 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,0.5 + pos: 24.5,9.5 + parent: 12 + - uid: 27295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-36.5 parent: 12 - uid: 27355 components: @@ -18352,6 +18518,17 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-52.5 parent: 12 + - uid: 28691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 12 + - uid: 28720 + components: + - type: Transform + pos: 59.5,7.5 + parent: 12 - uid: 28969 components: - type: Transform @@ -18467,6 +18644,14 @@ entities: - type: Transform pos: 41.52228,-39.638065 parent: 12 +- proto: ArtistCircuitBoard + entities: + - uid: 28850 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.622931,-15.409775 + parent: 12 - proto: Ashtray entities: - uid: 6886 @@ -18499,6 +18684,14 @@ entities: - type: Transform pos: 11.456245,57.051254 parent: 12 +- proto: AsimovCircuitBoard + entities: + - uid: 28848 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.6072965,-1.5317864 + parent: 12 - proto: AsteroidRock entities: - uid: 31015 @@ -18981,16 +19174,36 @@ entities: - type: Transform pos: 22.5,23.5 parent: 12 - - uid: 1352 + - uid: 1351 components: - type: Transform - pos: 26.5,-13.5 + pos: 9.5,5.5 + parent: 12 + - uid: 1700 + components: + - type: Transform + pos: 9.5,-0.5 parent: 12 - uid: 2137 components: - type: Transform pos: 21.5,22.5 parent: 12 + - uid: 2160 + components: + - type: Transform + pos: 7.5,3.5 + parent: 12 + - uid: 2162 + components: + - type: Transform + pos: 7.5,2.5 + parent: 12 + - uid: 2163 + components: + - type: Transform + pos: 7.5,1.5 + parent: 12 - uid: 2178 components: - type: Transform @@ -19006,21 +19219,11 @@ entities: - type: Transform pos: 20.5,24.5 parent: 12 - - uid: 2184 - components: - - type: Transform - pos: 21.5,-1.5 - parent: 12 - uid: 2881 components: - type: Transform pos: 19.5,14.5 parent: 12 - - uid: 2928 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 12 - uid: 2992 components: - type: Transform @@ -19031,305 +19234,130 @@ entities: - type: Transform pos: 18.5,16.5 parent: 12 - - uid: 5030 - components: - - type: Transform - pos: 17.5,15.5 - parent: 12 - - uid: 5418 - components: - - type: Transform - pos: 18.5,15.5 - parent: 12 - - uid: 5544 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 12 - - uid: 5996 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 7198 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 7199 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 7200 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 7201 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 7202 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 7203 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 7204 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 7205 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 7206 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 7207 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 7208 + - uid: 4706 components: - type: Transform - pos: 15.5,-9.5 + pos: 8.5,2.5 parent: 12 - - uid: 7209 + - uid: 4722 components: - type: Transform - pos: 15.5,-10.5 + pos: 9.5,3.5 parent: 12 - - uid: 7210 + - uid: 4730 components: - type: Transform - pos: 15.5,-11.5 + pos: 8.5,1.5 parent: 12 - - uid: 7211 + - uid: 4733 components: - type: Transform - pos: 15.5,-12.5 + pos: 24.5,-0.5 parent: 12 - - uid: 7212 + - uid: 4735 components: - type: Transform - pos: 16.5,-12.5 + pos: 9.5,2.5 parent: 12 - - uid: 7213 + - uid: 4737 components: - type: Transform - pos: 17.5,-12.5 + pos: 10.5,3.5 parent: 12 - - uid: 7214 + - uid: 4738 components: - type: Transform - pos: 18.5,-12.5 + pos: 10.5,1.5 parent: 12 - - uid: 7215 + - uid: 4740 components: - type: Transform - pos: 19.5,-12.5 + pos: 10.5,2.5 parent: 12 - - uid: 7216 + - uid: 4741 components: - type: Transform - pos: 20.5,-12.5 + pos: 25.5,1.5 parent: 12 - - uid: 7217 + - uid: 4742 components: - type: Transform - pos: 21.5,-12.5 + pos: 24.5,1.5 parent: 12 - - uid: 7218 + - uid: 4801 components: - type: Transform - pos: 22.5,-12.5 + pos: 25.5,-4.5 parent: 12 - - uid: 7219 + - uid: 4852 components: - type: Transform - pos: 23.5,-12.5 + pos: 25.5,3.5 parent: 12 - - uid: 7220 + - uid: 4853 components: - type: Transform - pos: 24.5,-12.5 + pos: 24.5,3.5 parent: 12 - - uid: 7221 + - uid: 4865 components: - type: Transform pos: 25.5,-12.5 parent: 12 - - uid: 7222 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - - uid: 7223 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 12 - - uid: 7224 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 7225 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 7226 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 7227 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 7228 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 7229 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 7230 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 7231 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 7232 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 7233 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 12 - - uid: 7234 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 7235 - components: - - type: Transform - pos: 27.5,0.5 - parent: 12 - - uid: 7236 + - uid: 4872 components: - type: Transform - pos: 26.5,0.5 + pos: 24.5,-4.5 parent: 12 - - uid: 7237 + - uid: 4873 components: - type: Transform - pos: 25.5,0.5 + pos: 25.5,-2.5 parent: 12 - - uid: 7238 + - uid: 4874 components: - type: Transform - pos: 24.5,0.5 + pos: 24.5,-2.5 parent: 12 - - uid: 7241 + - uid: 4878 components: - type: Transform - pos: 26.5,-0.5 + pos: 8.5,3.5 parent: 12 - - uid: 7242 + - uid: 5026 components: - type: Transform pos: 25.5,-0.5 parent: 12 - - uid: 7243 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - - uid: 7244 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 7245 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 7246 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 12 - - uid: 7247 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 7248 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 7249 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 12 - - uid: 7250 + - uid: 5030 components: - type: Transform - pos: 17.5,-0.5 + pos: 17.5,15.5 parent: 12 - - uid: 7251 + - uid: 5191 components: - type: Transform - pos: 16.5,-0.5 + pos: 24.5,-12.5 parent: 12 - - uid: 7252 + - uid: 5192 components: - type: Transform - pos: 16.5,0.5 + pos: 10.5,5.5 parent: 12 - - uid: 7253 + - uid: 5418 components: - type: Transform - pos: 17.5,0.5 + pos: 18.5,15.5 parent: 12 - - uid: 7254 + - uid: 5812 components: - type: Transform - pos: 18.5,0.5 + pos: 9.5,1.5 parent: 12 - - uid: 7255 + - uid: 5819 components: - type: Transform - pos: 18.5,1.5 + pos: 10.5,-0.5 parent: 12 - uid: 7261 components: @@ -19580,26 +19608,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,16.5 parent: 12 - - uid: 21601 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 12 - - uid: 21616 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 12 - - uid: 23985 - components: - - type: Transform - pos: 67.5,7.5 - parent: 12 - - uid: 24006 - components: - - type: Transform - pos: 67.5,6.5 - parent: 12 - uid: 26206 components: - type: Transform @@ -19610,215 +19618,25 @@ entities: - type: Transform pos: 55.5,19.5 parent: 12 - - uid: 26761 - components: - - type: Transform - pos: 73.5,6.5 - parent: 12 - - uid: 26762 - components: - - type: Transform - pos: 73.5,7.5 - parent: 12 - - uid: 26763 - components: - - type: Transform - pos: 73.5,8.5 - parent: 12 - - uid: 26764 - components: - - type: Transform - pos: 72.5,6.5 - parent: 12 - - uid: 26765 - components: - - type: Transform - pos: 72.5,7.5 - parent: 12 - - uid: 26766 - components: - - type: Transform - pos: 72.5,8.5 - parent: 12 - - uid: 26767 - components: - - type: Transform - pos: 71.5,6.5 - parent: 12 - - uid: 26768 - components: - - type: Transform - pos: 71.5,8.5 - parent: 12 - - uid: 26769 - components: - - type: Transform - pos: 71.5,7.5 - parent: 12 - - uid: 27052 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 12 - - uid: 27177 - components: - - type: Transform - pos: 67.5,8.5 - parent: 12 - - uid: 27178 - components: - - type: Transform - pos: 65.5,6.5 - parent: 12 - - uid: 27179 - components: - - type: Transform - pos: 65.5,7.5 - parent: 12 - - uid: 27180 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 28425 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 12 - - uid: 28903 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 12 - - uid: 28904 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 12 - - uid: 28905 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 12 - - uid: 28906 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 12 - - uid: 28907 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 12 - - uid: 28908 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 12 - - uid: 28909 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 12 - - uid: 28910 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 12 - - uid: 28911 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 12 - - uid: 28912 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 12 - - uid: 28913 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 12 - - uid: 28914 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 12 - - uid: 28915 - components: - - type: Transform - pos: 19.5,-1.5 - parent: 12 - - uid: 28916 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 12 - - uid: 28917 - components: - - type: Transform - pos: 23.5,-1.5 - parent: 12 - - uid: 28918 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 12 - - uid: 28919 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 12 - - uid: 28920 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 12 - - uid: 28921 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 12 - - uid: 28922 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 12 - - uid: 28923 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 12 - - uid: 28924 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 12 - - uid: 28925 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 12 - - uid: 28926 + - uid: 28746 components: - type: Transform - pos: 23.5,-10.5 + pos: 9.5,6.5 parent: 12 - - uid: 28927 + - uid: 28747 components: - type: Transform - pos: 19.5,-10.5 + pos: 10.5,6.5 parent: 12 - - uid: 28928 + - uid: 28748 components: - type: Transform - pos: 18.5,-10.5 + pos: 11.5,6.5 parent: 12 - - uid: 28998 + - uid: 28749 components: - type: Transform - pos: 26.5,-4.5 + pos: 12.5,6.5 parent: 12 - proto: AtmosFixFreezerMarker entities: @@ -19884,54 +19702,39 @@ entities: parent: 12 - proto: AtmosFixNitrogenMarker entities: - - uid: 26956 - components: - - type: Transform - pos: 59.5,7.5 - parent: 12 - - uid: 26959 + - uid: 4881 components: - type: Transform - pos: 59.5,8.5 + pos: 25.5,-8.5 parent: 12 - - uid: 26968 + - uid: 4883 components: - type: Transform - pos: 59.5,6.5 + pos: 24.5,-8.5 parent: 12 - proto: AtmosFixOxygenMarker entities: - - uid: 26960 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - - uid: 26963 + - uid: 4885 components: - type: Transform - pos: 61.5,7.5 + pos: 25.5,-10.5 parent: 12 - - uid: 26975 + - uid: 4888 components: - type: Transform - pos: 61.5,8.5 + pos: 24.5,-10.5 parent: 12 - proto: AtmosFixPlasmaMarker entities: - - uid: 26737 - components: - - type: Transform - pos: 63.5,6.5 - parent: 12 - - uid: 26974 + - uid: 4877 components: - type: Transform - pos: 63.5,7.5 + pos: 24.5,-6.5 parent: 12 - - uid: 27025 + - uid: 4886 components: - type: Transform - pos: 63.5,8.5 + pos: 25.5,-6.5 parent: 12 - proto: AtmosFixVoxMarker entities: @@ -20020,6 +19823,11 @@ entities: - type: Transform pos: 18.5,-25.5 parent: 12 + - uid: 5542 + components: + - type: Transform + pos: 44.5,0.5 + parent: 12 - proto: BannerGreen entities: - uid: 4944 @@ -20186,11 +19994,11 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-50.5 parent: 12 - - uid: 26822 + - uid: 9418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-5.5 + rot: 1.5707963267948966 rad + pos: 19.5,7.5 parent: 12 - proto: BeachBall entities: @@ -20751,25 +20559,15 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 12 - - uid: 5225 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 12 - - uid: 5226 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 12 - - uid: 5238 + - uid: 5199 components: - type: Transform - pos: 9.5,-4.5 + pos: 7.5,1.5 parent: 12 - - uid: 5528 + - uid: 7554 components: - type: Transform - pos: 9.5,-1.5 + pos: 7.5,2.5 parent: 12 - uid: 7778 components: @@ -20816,20 +20614,25 @@ entities: - type: Transform pos: 59.5,-13.5 parent: 12 - - uid: 27214 + - uid: 26072 components: - type: Transform - pos: 73.5,8.5 + pos: 61.5,1.5 parent: 12 - - uid: 27216 + - uid: 26537 components: - type: Transform - pos: 72.5,8.5 + pos: 60.5,1.5 parent: 12 - - uid: 27217 + - uid: 26580 components: - type: Transform - pos: 71.5,8.5 + pos: 7.5,3.5 + parent: 12 + - uid: 26594 + components: + - type: Transform + pos: 62.5,1.5 parent: 12 - proto: BlastDoorOpen entities: @@ -21079,13 +20882,12 @@ entities: parent: 12 - proto: BookAtmosAirAlarms entities: - - uid: 6287 + - uid: 29962 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -2.6867397195928788E-14 rad + pos: 31.427582,-0.63683224 + parent: 12 - uid: 31837 components: - type: Transform @@ -21094,13 +20896,11 @@ entities: canCollide: False - proto: BookAtmosDistro entities: - - uid: 6260 + - uid: 20542 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 29.610678,-2.4266233 + parent: 12 - uid: 31834 components: - type: Transform @@ -21109,13 +20909,11 @@ entities: canCollide: False - proto: BookAtmosVentsMore entities: - - uid: 6259 + - uid: 29961 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 31.687996,-0.33453882 + parent: 12 - uid: 31835 components: - type: Transform @@ -21124,13 +20922,11 @@ entities: canCollide: False - proto: BookAtmosWaste entities: - - uid: 6261 + - uid: 29960 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 29.346788,-2.2505753 + parent: 12 - uid: 31836 components: - type: Transform @@ -21601,16 +21397,6 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 12 - - uid: 21976 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 12 - - uid: 21977 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 12 - uid: 22189 components: - type: Transform @@ -21644,6 +21430,11 @@ entities: - type: Transform pos: 11.5,63.5 parent: 12 + - uid: 28846 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 12 - uid: 29122 components: - type: Transform @@ -21670,8 +21461,8 @@ entities: - uid: 2071 components: - type: Transform - rot: 6.283185307179586 rad - pos: -4.4788017,-12.486532 + rot: -18.84955592153876 rad + pos: -4.4606214,-12.385475 parent: 12 - proto: BorgModuleGPS entities: @@ -21694,6 +21485,12 @@ entities: parent: 12 - proto: BorgModuleRadiationDetection entities: + - uid: 22075 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 58.524303,12.480953 + parent: 12 - uid: 28441 components: - type: Transform @@ -22210,16 +22007,10 @@ entities: - uid: 15386 components: - type: Transform - pos: 42.45081,53.59018 + pos: 41.534676,52.435265 parent: 12 - proto: ButtonFrameCaution entities: - - uid: 2253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,2.5 - parent: 12 - uid: 17549 components: - type: Transform @@ -22248,23 +22039,17 @@ entities: rot: 3.141592653589793 rad pos: -36.5,21.5 parent: 12 - - uid: 27211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,8.5 - parent: 12 - - uid: 27215 + - uid: 27246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,2.5 + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 parent: 12 - - uid: 27246 + - uid: 28721 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-28.5 + pos: 56.5,3.5 parent: 12 - uid: 29835 components: @@ -22362,18 +22147,18 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,54.5 parent: 12 - - uid: 25199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - uid: 26380 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,57.5 parent: 12 + - uid: 26789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 - uid: 28554 components: - type: Transform @@ -22385,6 +22170,17 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-19.5 parent: 12 + - uid: 28722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 12 + - uid: 28740 + components: + - type: Transform + pos: 14.5,6.5 + parent: 12 - uid: 29345 components: - type: Transform @@ -22474,6 +22270,16 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 12 + - uid: 194 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 12 + - uid: 253 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 - uid: 335 components: - type: Transform @@ -22494,6 +22300,21 @@ entities: - type: Transform pos: 9.5,-34.5 parent: 12 + - uid: 356 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 408 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 447 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 - uid: 456 components: - type: Transform @@ -22504,6 +22325,11 @@ entities: - type: Transform pos: -45.5,1.5 parent: 12 + - uid: 501 + components: + - type: Transform + pos: 15.5,21.5 + parent: 12 - uid: 628 components: - type: Transform @@ -22539,6 +22365,11 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 + - uid: 924 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 12 - uid: 961 components: - type: Transform @@ -22549,6 +22380,11 @@ entities: - type: Transform pos: -30.5,-25.5 parent: 12 + - uid: 1074 + components: + - type: Transform + pos: 24.5,11.5 + parent: 12 - uid: 1077 components: - type: Transform @@ -22559,6 +22395,11 @@ entities: - type: Transform pos: 37.5,6.5 parent: 12 + - uid: 1091 + components: + - type: Transform + pos: 24.5,12.5 + parent: 12 - uid: 1315 components: - type: Transform @@ -23679,40 +23520,10 @@ entities: - type: Transform pos: -43.5,-14.5 parent: 12 - - uid: 2034 - components: - - type: Transform - pos: 8.5,4.5 - parent: 12 - - uid: 2039 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 12 - - uid: 2052 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 2053 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 12 - - uid: 2086 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 12 - - uid: 2087 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 2105 + - uid: 2136 components: - type: Transform - pos: 25.5,-12.5 + pos: 24.5,3.5 parent: 12 - uid: 2142 components: @@ -23734,70 +23545,30 @@ entities: - type: Transform pos: -25.5,10.5 parent: 12 - - uid: 2149 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 12 - - uid: 2150 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 2152 - components: - - type: Transform - pos: 78.5,8.5 - parent: 12 - uid: 2153 components: - type: Transform - pos: 78.5,7.5 + pos: 25.5,9.5 parent: 12 - uid: 2155 components: - type: Transform - pos: 78.5,6.5 + pos: 24.5,9.5 parent: 12 - uid: 2156 components: - type: Transform - pos: 78.5,5.5 - parent: 12 - - uid: 2157 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 2158 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 2159 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 2160 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 2162 - components: - - type: Transform - pos: 61.5,12.5 + pos: 24.5,10.5 parent: 12 - - uid: 2163 + - uid: 2170 components: - type: Transform - pos: 62.5,12.5 + pos: 27.5,-0.5 parent: 12 - - uid: 2164 + - uid: 2183 components: - type: Transform - pos: 10.5,-5.5 + pos: 25.5,-12.5 parent: 12 - uid: 2202 components: @@ -23984,6 +23755,16 @@ entities: - type: Transform pos: 67.5,44.5 parent: 12 + - uid: 2338 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 12 + - uid: 2342 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 12 - uid: 2346 components: - type: Transform @@ -23994,6 +23775,11 @@ entities: - type: Transform pos: 39.5,-1.5 parent: 12 + - uid: 2509 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 12 - uid: 2544 components: - type: Transform @@ -24064,6 +23850,11 @@ entities: - type: Transform pos: -4.5,-40.5 parent: 12 + - uid: 2779 + components: + - type: Transform + pos: 23.5,5.5 + parent: 12 - uid: 2796 components: - type: Transform @@ -24109,36 +23900,16 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 12 - - uid: 2981 - components: - - type: Transform - pos: 22.5,4.5 - parent: 12 - uid: 3017 components: - type: Transform pos: 10.5,-38.5 parent: 12 - - uid: 3019 - components: - - type: Transform - pos: 22.5,2.5 - parent: 12 - - uid: 3020 - components: - - type: Transform - pos: 23.5,2.5 - parent: 12 - uid: 3034 components: - type: Transform pos: 10.5,-40.5 parent: 12 - - uid: 3089 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - uid: 3102 components: - type: Transform @@ -24159,10 +23930,15 @@ entities: - type: Transform pos: 54.5,-21.5 parent: 12 - - uid: 3127 + - uid: 3129 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 12 + - uid: 3130 components: - type: Transform - pos: 66.5,2.5 + pos: 11.5,-11.5 parent: 12 - uid: 3157 components: @@ -25129,21 +24905,56 @@ entities: - type: Transform pos: -23.5,-1.5 parent: 12 - - uid: 3690 + - uid: 3524 components: - type: Transform - pos: 16.5,8.5 + pos: 12.5,-11.5 parent: 12 - - uid: 3691 + - uid: 3553 components: - type: Transform - pos: 16.5,7.5 + pos: 9.5,-11.5 + parent: 12 + - uid: 3556 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 12 + - uid: 3626 + components: + - type: Transform + pos: 27.5,0.5 + parent: 12 + - uid: 3627 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 12 + - uid: 3709 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 + - uid: 3713 + components: + - type: Transform + pos: 26.5,6.5 + parent: 12 + - uid: 3777 + components: + - type: Transform + pos: 14.5,5.5 parent: 12 - uid: 3892 components: - type: Transform pos: 51.5,12.5 parent: 12 + - uid: 3895 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 12 - uid: 3901 components: - type: Transform @@ -25154,6 +24965,16 @@ entities: - type: Transform pos: 40.5,3.5 parent: 12 + - uid: 3978 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 12 + - uid: 3980 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 12 - uid: 4000 components: - type: Transform @@ -25164,6 +24985,11 @@ entities: - type: Transform pos: 10.5,-46.5 parent: 12 + - uid: 4064 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 12 - uid: 4119 components: - type: Transform @@ -25484,6 +25310,26 @@ entities: - type: Transform pos: 1.5,-27.5 parent: 12 + - uid: 4388 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 + - uid: 4410 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 12 + - uid: 4411 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 + - uid: 4414 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 12 - uid: 4560 components: - type: Transform @@ -25494,6 +25340,36 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 12 + - uid: 4567 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 12 + - uid: 4569 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 12 + - uid: 4572 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 12 + - uid: 4578 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 12 + - uid: 4583 + components: + - type: Transform + pos: 27.5,3.5 + parent: 12 + - uid: 4586 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 12 - uid: 4587 components: - type: Transform @@ -25504,15 +25380,40 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 4721 + - uid: 4590 components: - type: Transform - pos: 10.5,-37.5 + pos: 26.5,-12.5 parent: 12 - - uid: 4730 + - uid: 4597 components: - type: Transform - pos: 10.5,-1.5 + pos: 21.5,-10.5 + parent: 12 + - uid: 4599 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 12 + - uid: 4603 + components: + - type: Transform + pos: 23.5,3.5 + parent: 12 + - uid: 4612 + components: + - type: Transform + pos: 22.5,3.5 + parent: 12 + - uid: 4619 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 + - uid: 4721 + components: + - type: Transform + pos: 10.5,-37.5 parent: 12 - uid: 4739 components: @@ -25524,40 +25425,55 @@ entities: - type: Transform pos: 6.5,-20.5 parent: 12 - - uid: 4795 + - uid: 4786 components: - type: Transform - pos: 10.5,0.5 + pos: 25.5,3.5 + parent: 12 + - uid: 4788 + components: + - type: Transform + pos: 11.5,1.5 parent: 12 - uid: 4857 components: - type: Transform pos: 57.5,58.5 parent: 12 - - uid: 4865 + - uid: 4903 + components: + - type: Transform + pos: -1.5,2.5 + parent: 12 + - uid: 4908 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 12 + - uid: 5013 components: - type: Transform pos: 11.5,3.5 parent: 12 - - uid: 4886 + - uid: 5014 components: - type: Transform - pos: 11.5,2.5 + pos: 12.5,1.5 parent: 12 - - uid: 4903 + - uid: 5022 components: - type: Transform - pos: -1.5,2.5 + pos: 22.5,-11.5 parent: 12 - - uid: 4908 + - uid: 5029 components: - type: Transform - pos: -23.5,-11.5 + pos: 13.5,0.5 parent: 12 - - uid: 4976 + - uid: 5032 components: - type: Transform - pos: 63.5,-5.5 + pos: 21.5,-9.5 parent: 12 - uid: 5038 components: @@ -25569,15 +25485,35 @@ entities: - type: Transform pos: -28.5,8.5 parent: 12 + - uid: 5080 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 12 + - uid: 5081 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 12 + - uid: 5082 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 12 - uid: 5083 components: - type: Transform - pos: 24.5,4.5 + pos: 11.5,2.5 parent: 12 - - uid: 5109 + - uid: 5091 components: - type: Transform - pos: 10.5,1.5 + pos: 29.5,2.5 + parent: 12 + - uid: 5118 + components: + - type: Transform + pos: 4.5,-19.5 parent: 12 - uid: 5133 components: @@ -25609,15 +25545,25 @@ entities: - type: Transform pos: -8.5,-5.5 parent: 12 - - uid: 5221 + - uid: 5184 components: - type: Transform - pos: 8.5,3.5 + pos: 29.5,5.5 parent: 12 - - uid: 5230 + - uid: 5188 components: - type: Transform - pos: 10.5,2.5 + pos: 21.5,-3.5 + parent: 12 + - uid: 5222 + components: + - type: Transform + pos: 14.5,4.5 + parent: 12 + - uid: 5226 + components: + - type: Transform + pos: 21.5,2.5 parent: 12 - uid: 5249 components: @@ -25629,15 +25575,45 @@ entities: - type: Transform pos: 57.5,59.5 parent: 12 + - uid: 5363 + components: + - type: Transform + pos: 29.5,3.5 + parent: 12 + - uid: 5377 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 12 + - uid: 5404 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 + - uid: 5429 + components: + - type: Transform + pos: 27.5,1.5 + parent: 12 + - uid: 5481 + components: + - type: Transform + pos: 34.5,0.5 + parent: 12 + - uid: 5503 + components: + - type: Transform + pos: 36.5,4.5 + parent: 12 - uid: 5535 components: - type: Transform pos: 40.5,0.5 parent: 12 - - uid: 5547 + - uid: 5544 components: - type: Transform - pos: 27.5,-1.5 + pos: 26.5,3.5 parent: 12 - uid: 5554 components: @@ -25649,6 +25625,36 @@ entities: - type: Transform pos: 51.5,10.5 parent: 12 + - uid: 5598 + components: + - type: Transform + pos: 27.5,2.5 + parent: 12 + - uid: 5601 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 12 + - uid: 5627 + components: + - type: Transform + pos: 12.5,3.5 + parent: 12 + - uid: 5631 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 12 + - uid: 5632 + components: + - type: Transform + pos: 25.5,5.5 + parent: 12 + - uid: 5633 + components: + - type: Transform + pos: 21.5,3.5 + parent: 12 - uid: 5643 components: - type: Transform @@ -25749,95 +25755,35 @@ entities: - type: Transform pos: 35.5,-0.5 parent: 12 - - uid: 5664 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 12 - - uid: 5665 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 5666 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 5667 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 5668 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - uid: 5669 components: - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 5670 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 5671 - components: - - type: Transform - pos: 27.5,-3.5 + pos: 5.5,-19.5 parent: 12 - uid: 5672 components: - type: Transform - pos: 27.5,-4.5 + pos: 10.5,-1.5 parent: 12 - uid: 5673 components: - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 5674 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 5675 - components: - - type: Transform - pos: 27.5,-7.5 + pos: 12.5,-1.5 parent: 12 - uid: 5676 components: - type: Transform - pos: 27.5,-8.5 + pos: 21.5,-7.5 parent: 12 - uid: 5677 components: - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 5678 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 5679 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 5680 - components: - - type: Transform - pos: 27.5,-12.5 + pos: 11.5,-1.5 parent: 12 - uid: 5681 components: - type: Transform - pos: 28.5,-10.5 + pos: 13.5,1.5 parent: 12 - uid: 5683 components: @@ -25960,64 +25906,14 @@ entities: pos: 30.5,-16.5 parent: 12 - uid: 5708 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 12 - - uid: 5710 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 12 - - uid: 5711 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 5712 components: - type: Transform pos: 23.5,-12.5 parent: 12 - - uid: 5713 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 5714 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 5715 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - uid: 5716 components: - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 5717 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 5718 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 12 - - uid: 5719 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - uid: 5720 - components: - - type: Transform - pos: 15.5,-12.5 + pos: 21.5,-6.5 parent: 12 - uid: 5721 components: @@ -26204,11 +26100,6 @@ entities: - type: Transform pos: 6.5,-21.5 parent: 12 - - uid: 5759 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 12 - uid: 5760 components: - type: Transform @@ -26379,120 +26270,15 @@ entities: - type: Transform pos: 21.5,-27.5 parent: 12 - - uid: 5795 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 12 - - uid: 5796 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 12 - - uid: 5797 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 12 - - uid: 5798 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 5799 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 5800 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 5801 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 5802 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 5804 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 5806 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 5808 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 5809 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 5810 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 5811 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 5812 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - uid: 5813 components: - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 5814 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 5815 - components: - - type: Transform - pos: 15.5,0.5 + pos: 28.5,5.5 parent: 12 - uid: 5816 components: - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 5817 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 5818 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 5819 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 5820 - components: - - type: Transform - pos: 15.5,5.5 + pos: 27.5,5.5 parent: 12 - uid: 5821 components: @@ -26524,110 +26310,40 @@ entities: - type: Transform pos: 21.5,5.5 parent: 12 - - uid: 5830 - components: - - type: Transform - pos: 24.5,3.5 - parent: 12 - - uid: 5831 - components: - - type: Transform - pos: 25.5,3.5 - parent: 12 - - uid: 5832 - components: - - type: Transform - pos: 26.5,3.5 - parent: 12 - - uid: 5833 - components: - - type: Transform - pos: 27.5,3.5 - parent: 12 - - uid: 5835 - components: - - type: Transform - pos: 14.5,5.5 - parent: 12 - uid: 5837 components: - type: Transform - pos: 16.5,-0.5 - parent: 12 - - uid: 5838 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 5839 - components: - - type: Transform - pos: 18.5,-0.5 + pos: 21.5,-1.5 parent: 12 - uid: 5840 components: - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 5841 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 12 - - uid: 5842 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - - uid: 5843 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - - uid: 5844 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 12 - - uid: 5845 - components: - - type: Transform - pos: 9.5,-10.5 + pos: 26.5,5.5 parent: 12 - uid: 5846 components: - type: Transform - pos: 9.5,-7.5 - parent: 12 - - uid: 5847 - components: - - type: Transform - pos: 9.5,-6.5 + pos: 21.5,-4.5 parent: 12 - uid: 5849 components: - type: Transform - pos: 9.5,-4.5 - parent: 12 - - uid: 5850 - components: - - type: Transform - pos: 9.5,-3.5 + pos: 21.5,1.5 parent: 12 - - uid: 5851 + - uid: 5855 components: - type: Transform - pos: 9.5,-2.5 + pos: 24.5,-12.5 parent: 12 - - uid: 5852 + - uid: 5859 components: - type: Transform - pos: 9.5,-1.5 + pos: 21.5,-5.5 parent: 12 - - uid: 5922 + - uid: 5860 components: - type: Transform - pos: 67.5,2.5 + pos: 15.5,-3.5 parent: 12 - uid: 5927 components: @@ -26639,30 +26355,20 @@ entities: - type: Transform pos: 39.5,4.5 parent: 12 - - uid: 6006 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - - uid: 6007 - components: - - type: Transform - pos: 21.5,3.5 - parent: 12 - - uid: 6009 + - uid: 6020 components: - type: Transform - pos: 20.5,3.5 + pos: 37.5,1.5 parent: 12 - - uid: 6010 + - uid: 6029 components: - type: Transform - pos: 20.5,1.5 + pos: 37.5,0.5 parent: 12 - - uid: 6011 + - uid: 6033 components: - type: Transform - pos: 21.5,1.5 + pos: 22.5,-12.5 parent: 12 - uid: 6034 components: @@ -26764,10 +26470,10 @@ entities: - type: Transform pos: 14.5,-37.5 parent: 12 - - uid: 6707 + - uid: 6708 components: - type: Transform - pos: 54.5,-5.5 + pos: 35.5,0.5 parent: 12 - uid: 6838 components: @@ -26784,6 +26490,11 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 12 + - uid: 6899 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 12 - uid: 6906 components: - type: Transform @@ -27119,6 +26830,26 @@ entities: - type: Transform pos: 32.5,-38.5 parent: 12 + - uid: 7202 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - uid: 7213 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 12 + - uid: 7217 + components: + - type: Transform + pos: 21.5,0.5 + parent: 12 + - uid: 7223 + components: + - type: Transform + pos: 37.5,3.5 + parent: 12 - uid: 7258 components: - type: Transform @@ -27134,6 +26865,11 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 + - uid: 7354 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 12 - uid: 7355 components: - type: Transform @@ -27174,26 +26910,6 @@ entities: - type: Transform pos: -42.5,52.5 parent: 12 - - uid: 7549 - components: - - type: Transform - pos: 56.5,2.5 - parent: 12 - - uid: 7554 - components: - - type: Transform - pos: 58.5,2.5 - parent: 12 - - uid: 7555 - components: - - type: Transform - pos: 60.5,2.5 - parent: 12 - - uid: 7556 - components: - - type: Transform - pos: 63.5,2.5 - parent: 12 - uid: 7564 components: - type: Transform @@ -27204,21 +26920,6 @@ entities: - type: Transform pos: 5.5,-26.5 parent: 12 - - uid: 7766 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 7767 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - - uid: 7768 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - uid: 7777 components: - type: Transform @@ -27229,20 +26930,15 @@ entities: - type: Transform pos: 54.5,12.5 parent: 12 - - uid: 7782 - components: - - type: Transform - pos: 71.5,12.5 - parent: 12 - - uid: 7783 + - uid: 7827 components: - type: Transform - pos: 72.5,12.5 + pos: 13.5,-3.5 parent: 12 - - uid: 7786 + - uid: 7830 components: - type: Transform - pos: 69.5,12.5 + pos: 12.5,-3.5 parent: 12 - uid: 7902 components: @@ -28449,11 +28145,6 @@ entities: - type: Transform pos: 43.5,-9.5 parent: 12 - - uid: 8439 - components: - - type: Transform - pos: 78.5,10.5 - parent: 12 - uid: 8463 components: - type: Transform @@ -28574,6 +28265,11 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 + - uid: 8979 + components: + - type: Transform + pos: 33.5,0.5 + parent: 12 - uid: 8995 components: - type: Transform @@ -28724,11 +28420,6 @@ entities: - type: Transform pos: 42.5,-35.5 parent: 12 - - uid: 9168 - components: - - type: Transform - pos: 23.5,4.5 - parent: 12 - uid: 9170 components: - type: Transform @@ -28909,6 +28600,16 @@ entities: - type: Transform pos: 36.5,-37.5 parent: 12 + - uid: 9294 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 12 + - uid: 9300 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 12 - uid: 9376 components: - type: Transform @@ -28949,41 +28650,11 @@ entities: - type: Transform pos: 33.5,-34.5 parent: 12 - - uid: 9424 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 9430 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 9432 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 9436 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - uid: 9438 components: - type: Transform pos: 22.5,5.5 parent: 12 - - uid: 9468 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - - uid: 9481 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - uid: 9520 components: - type: Transform @@ -29024,11 +28695,6 @@ entities: - type: Transform pos: 10.5,22.5 parent: 12 - - uid: 9588 - components: - - type: Transform - pos: 28.5,2.5 - parent: 12 - uid: 9616 components: - type: Transform @@ -29044,11 +28710,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 12 - - uid: 9684 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - uid: 9723 components: - type: Transform @@ -29229,16 +28890,6 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 12 - - uid: 10025 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 12 - - uid: 10306 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - uid: 10328 components: - type: Transform @@ -29404,15 +29055,65 @@ entities: - type: Transform pos: -27.5,-0.5 parent: 12 + - uid: 10796 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 12 + - uid: 10797 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 12 + - uid: 10798 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 12 + - uid: 10799 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 12 + - uid: 10800 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 12 + - uid: 10801 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 12 + - uid: 10804 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 12 + - uid: 10805 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 12 + - uid: 10806 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 12 - uid: 10807 components: - type: Transform pos: 13.5,20.5 parent: 12 - - uid: 11016 + - uid: 10809 components: - type: Transform - pos: 8.5,2.5 + pos: 8.5,-7.5 + parent: 12 + - uid: 10824 + components: + - type: Transform + pos: 8.5,-6.5 parent: 12 - uid: 11129 components: @@ -29429,11 +29130,6 @@ entities: - type: Transform pos: 30.5,-34.5 parent: 12 - - uid: 11276 - components: - - type: Transform - pos: 8.5,1.5 - parent: 12 - uid: 11282 components: - type: Transform @@ -29474,6 +29170,11 @@ entities: - type: Transform pos: 43.5,26.5 parent: 12 + - uid: 11388 + components: + - type: Transform + pos: 26.5,8.5 + parent: 12 - uid: 11399 components: - type: Transform @@ -30074,21 +29775,71 @@ entities: - type: Transform pos: 12.5,22.5 parent: 12 + - uid: 12288 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 12 + - uid: 12310 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 12 + - uid: 12315 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 12 + - uid: 12322 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 12 - uid: 12636 components: - type: Transform pos: 52.5,12.5 parent: 12 + - uid: 12646 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 12 + - uid: 12698 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 12 - uid: 12714 components: - type: Transform pos: 3.5,16.5 parent: 12 + - uid: 12722 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 12 + - uid: 12724 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 12 - uid: 12910 components: - type: Transform pos: 30.5,19.5 parent: 12 + - uid: 12912 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 12 + - uid: 12913 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 12 - uid: 12926 components: - type: Transform @@ -30264,11 +30015,6 @@ entities: - type: Transform pos: -14.5,-1.5 parent: 12 - - uid: 13169 - components: - - type: Transform - pos: 56.5,-4.5 - parent: 12 - uid: 13224 components: - type: Transform @@ -33764,11 +33510,6 @@ entities: - type: Transform pos: 4.5,27.5 parent: 12 - - uid: 16415 - components: - - type: Transform - pos: 72.5,8.5 - parent: 12 - uid: 16425 components: - type: Transform @@ -33809,26 +33550,6 @@ entities: - type: Transform pos: -12.5,-5.5 parent: 12 - - uid: 16658 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 16660 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 16663 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - - uid: 16664 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - uid: 16842 components: - type: Transform @@ -34579,10 +34300,10 @@ entities: - type: Transform pos: -28.5,7.5 parent: 12 - - uid: 17772 + - uid: 17843 components: - type: Transform - pos: 11.5,4.5 + pos: 23.5,4.5 parent: 12 - uid: 17934 components: @@ -35119,11 +34840,6 @@ entities: - type: Transform pos: 27.5,-27.5 parent: 12 - - uid: 18304 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - uid: 18305 components: - type: Transform @@ -35564,11 +35280,6 @@ entities: - type: Transform pos: 37.5,-1.5 parent: 12 - - uid: 18758 - components: - - type: Transform - pos: 68.5,2.5 - parent: 12 - uid: 18898 components: - type: Transform @@ -35774,36 +35485,6 @@ entities: - type: Transform pos: -45.5,22.5 parent: 12 - - uid: 19173 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 19175 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 19176 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 19188 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - - uid: 19189 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - - uid: 19195 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - uid: 19556 components: - type: Transform @@ -35899,6 +35580,11 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 + - uid: 20552 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 - uid: 20570 components: - type: Transform @@ -36074,10 +35760,10 @@ entities: - type: Transform pos: -39.5,55.5 parent: 12 - - uid: 20606 + - uid: 20607 components: - type: Transform - pos: 73.5,11.5 + pos: 17.5,-11.5 parent: 12 - uid: 20608 components: @@ -36909,11 +36595,6 @@ entities: - type: Transform pos: 6.5,-22.5 parent: 12 - - uid: 20876 - components: - - type: Transform - pos: 64.5,2.5 - parent: 12 - uid: 20882 components: - type: Transform @@ -37614,21 +37295,6 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 - - uid: 22158 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - - uid: 22160 - components: - - type: Transform - pos: 76.5,0.5 - parent: 12 - - uid: 22163 - components: - - type: Transform - pos: 75.5,0.5 - parent: 12 - uid: 22217 components: - type: Transform @@ -37684,11 +37350,6 @@ entities: - type: Transform pos: 33.5,-6.5 parent: 12 - - uid: 22289 - components: - - type: Transform - pos: 8.5,5.5 - parent: 12 - uid: 22298 components: - type: Transform @@ -37714,10 +37375,10 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 - - uid: 22528 + - uid: 23137 components: - type: Transform - pos: 8.5,6.5 + pos: 21.5,4.5 parent: 12 - uid: 23154 components: @@ -39544,6 +39205,21 @@ entities: - type: Transform pos: -26.5,61.5 parent: 12 + - uid: 25463 + components: + - type: Transform + pos: 30.5,4.5 + parent: 12 + - uid: 25465 + components: + - type: Transform + pos: 33.5,4.5 + parent: 12 + - uid: 25483 + components: + - type: Transform + pos: 26.5,9.5 + parent: 12 - uid: 25514 components: - type: Transform @@ -39694,140 +39370,155 @@ entities: - type: Transform pos: 59.5,-48.5 parent: 12 - - uid: 26442 + - uid: 26425 components: - type: Transform - pos: 55.5,-5.5 + pos: 1.5,-21.5 + parent: 12 + - uid: 26434 + components: + - type: Transform + pos: 51.5,0.5 + parent: 12 + - uid: 26444 + components: + - type: Transform + pos: 17.5,0.5 parent: 12 - uid: 26446 components: - type: Transform pos: 56.5,-2.5 parent: 12 - - uid: 26453 + - uid: 26456 components: - type: Transform - pos: 56.5,-5.5 + pos: 17.5,3.5 parent: 12 - - uid: 26455 + - uid: 26457 components: - type: Transform - pos: 65.5,8.5 + pos: 17.5,1.5 parent: 12 - uid: 26458 components: - type: Transform - pos: 61.5,-5.5 + pos: 17.5,2.5 parent: 12 - uid: 26459 components: - type: Transform - pos: 57.5,-4.5 + pos: 12.5,-10.5 parent: 12 - uid: 26460 components: - type: Transform - pos: 59.5,-5.5 + pos: 12.5,-9.5 parent: 12 - - uid: 26461 + - uid: 26467 components: - type: Transform - pos: 62.5,2.5 + pos: 26.5,10.5 parent: 12 - - uid: 26462 + - uid: 26468 components: - type: Transform - pos: 57.5,2.5 + pos: 55.5,2.5 parent: 12 - - uid: 26463 + - uid: 26500 components: - type: Transform - pos: 59.5,2.5 + pos: 31.5,4.5 parent: 12 - - uid: 26464 + - uid: 26501 components: - type: Transform - pos: 66.5,-5.5 + pos: 26.5,11.5 parent: 12 - - uid: 26468 + - uid: 26502 components: - type: Transform - pos: 55.5,2.5 + pos: 35.5,4.5 parent: 12 - - uid: 26470 + - uid: 26503 components: - type: Transform - pos: 56.5,-3.5 + pos: 34.5,4.5 parent: 12 - - uid: 26551 + - uid: 26505 components: - type: Transform - pos: 65.5,6.5 + pos: 31.5,5.5 parent: 12 - - uid: 26559 + - uid: 26507 components: - type: Transform - pos: 9.5,1.5 + pos: 31.5,6.5 parent: 12 - - uid: 26580 + - uid: 26508 components: - type: Transform - pos: 65.5,7.5 + pos: 31.5,8.5 parent: 12 - - uid: 26698 + - uid: 26509 components: - type: Transform - pos: 65.5,5.5 + pos: 31.5,7.5 parent: 12 - - uid: 26699 + - uid: 26574 components: - type: Transform - pos: 65.5,4.5 + pos: 15.5,7.5 parent: 12 - - uid: 26700 + - uid: 26589 components: - type: Transform - pos: 65.5,3.5 + pos: 3.5,-21.5 parent: 12 - - uid: 26701 + - uid: 26599 components: - type: Transform - pos: 65.5,2.5 + pos: 4.5,-21.5 parent: 12 - - uid: 26702 + - uid: 26600 components: - type: Transform - pos: 61.5,2.5 + pos: 2.5,-21.5 parent: 12 - - uid: 26703 + - uid: 26615 components: - type: Transform - pos: 61.5,3.5 + pos: 17.5,-10.5 parent: 12 - - uid: 26704 + - uid: 26649 components: - type: Transform - pos: 61.5,4.5 + pos: 17.5,6.5 parent: 12 - - uid: 26705 + - uid: 26674 components: - type: Transform - pos: 61.5,5.5 + pos: 26.5,7.5 parent: 12 - - uid: 26706 + - uid: 26766 components: - type: Transform - pos: 61.5,6.5 + pos: 30.5,10.5 parent: 12 - - uid: 26707 + - uid: 26767 components: - type: Transform - pos: 61.5,7.5 + pos: 30.5,8.5 parent: 12 - - uid: 26708 + - uid: 26768 components: - type: Transform - pos: 61.5,8.5 + pos: 27.5,10.5 + parent: 12 + - uid: 26769 + components: + - type: Transform + pos: 30.5,9.5 parent: 12 - uid: 26770 components: @@ -39854,30 +39545,20 @@ entities: - type: Transform pos: 54.5,5.5 parent: 12 - - uid: 26794 - components: - - type: Transform - pos: 74.5,1.5 - parent: 12 - - uid: 26795 - components: - - type: Transform - pos: 74.5,0.5 - parent: 12 - - uid: 26796 + - uid: 26776 components: - type: Transform - pos: 74.5,-0.5 + pos: 29.5,10.5 parent: 12 - - uid: 26797 + - uid: 26777 components: - type: Transform - pos: 72.5,2.5 + pos: 28.5,10.5 parent: 12 - - uid: 26807 + - uid: 26804 components: - type: Transform - pos: 62.5,-5.5 + pos: 16.5,20.5 parent: 12 - uid: 26812 components: @@ -39894,11 +39575,6 @@ entities: - type: Transform pos: 56.5,-1.5 parent: 12 - - uid: 26815 - components: - - type: Transform - pos: 55.5,-1.5 - parent: 12 - uid: 26817 components: - type: Transform @@ -39924,140 +39600,465 @@ entities: - type: Transform pos: 51.5,-0.5 parent: 12 - - uid: 26823 + - uid: 26838 components: - type: Transform - pos: 74.5,-1.5 + pos: -41.5,52.5 parent: 12 - - uid: 26824 + - uid: 26858 components: - type: Transform - pos: 72.5,3.5 + pos: 57.5,-3.5 parent: 12 - - uid: 26825 + - uid: 26859 components: - type: Transform - pos: 72.5,4.5 + pos: 61.5,-3.5 parent: 12 - - uid: 26826 + - uid: 26860 components: - type: Transform - pos: 72.5,5.5 + pos: 62.5,-3.5 parent: 12 - - uid: 26827 + - uid: 26861 components: - type: Transform - pos: 72.5,6.5 + pos: 58.5,-3.5 parent: 12 - - uid: 26828 + - uid: 26862 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 12 + - uid: 26863 components: - type: Transform - pos: 72.5,7.5 + pos: 60.5,-3.5 parent: 12 - - uid: 26838 + - uid: 26864 components: - type: Transform - pos: -41.5,52.5 + pos: 63.5,-3.5 + parent: 12 + - uid: 26865 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 + - uid: 26867 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 12 + - uid: 26868 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 26869 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 12 + - uid: 26870 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 12 + - uid: 26871 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 12 + - uid: 26872 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 12 + - uid: 26873 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 26874 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 12 + - uid: 26875 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 + - uid: 26876 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 26877 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 12 + - uid: 26878 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 12 + - uid: 26880 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 12 + - uid: 26883 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 12 + - uid: 26884 + components: + - type: Transform + pos: 77.5,-2.5 parent: 12 - uid: 26886 components: - type: Transform - pos: 60.5,-5.5 + pos: 78.5,-2.5 parent: 12 - uid: 26887 components: - type: Transform - pos: 73.5,-5.5 + pos: 79.5,-2.5 + parent: 12 + - uid: 26888 + components: + - type: Transform + pos: 79.5,-1.5 parent: 12 - uid: 26889 components: - type: Transform - pos: 74.5,-4.5 + pos: 79.5,-0.5 + parent: 12 + - uid: 26890 + components: + - type: Transform + pos: 79.5,0.5 parent: 12 - uid: 26891 components: - type: Transform - pos: 69.5,-5.5 + pos: 79.5,1.5 parent: 12 - - uid: 27000 + - uid: 26895 components: - type: Transform - pos: 65.5,-5.5 + pos: 79.5,2.5 parent: 12 - - uid: 27046 + - uid: 26896 components: - type: Transform - pos: 9.5,31.5 + pos: 79.5,3.5 parent: 12 - - uid: 27109 + - uid: 26897 components: - type: Transform - pos: 41.5,22.5 + pos: 79.5,4.5 parent: 12 - - uid: 27131 + - uid: 26901 components: - type: Transform - pos: 8.5,31.5 + pos: 79.5,5.5 parent: 12 - - uid: 27134 + - uid: 26902 components: - type: Transform - pos: 70.5,-5.5 + pos: 79.5,6.5 parent: 12 - - uid: 27158 + - uid: 26903 components: - type: Transform - pos: 48.5,-8.5 + pos: 79.5,7.5 parent: 12 - - uid: 27159 + - uid: 26904 components: - type: Transform - pos: 48.5,-7.5 + pos: 79.5,8.5 parent: 12 - - uid: 27181 + - uid: 26905 components: - type: Transform - pos: 74.5,-3.5 + pos: 79.5,9.5 parent: 12 - - uid: 27185 + - uid: 26906 components: - type: Transform - pos: 75.5,-3.5 + pos: 79.5,10.5 parent: 12 - - uid: 27186 + - uid: 26907 components: - type: Transform - pos: 67.5,-5.5 + pos: 14.5,21.5 parent: 12 - - uid: 27204 + - uid: 26908 components: - type: Transform - pos: 74.5,-5.5 + pos: 79.5,11.5 parent: 12 - - uid: 27205 + - uid: 26909 components: - type: Transform - pos: 71.5,-5.5 + pos: 78.5,11.5 parent: 12 - - uid: 27206 + - uid: 26910 components: - type: Transform - pos: 72.5,-5.5 + pos: 77.5,11.5 parent: 12 - - uid: 27240 + - uid: 26911 components: - type: Transform - pos: 58.5,-5.5 + pos: 76.5,11.5 parent: 12 - - uid: 27241 + - uid: 26912 components: - type: Transform - pos: 58.5,-4.5 + pos: 75.5,11.5 parent: 12 - - uid: 27242 + - uid: 26913 components: - type: Transform - pos: 64.5,-5.5 + pos: 74.5,11.5 + parent: 12 + - uid: 26914 + components: + - type: Transform + pos: 73.5,11.5 + parent: 12 + - uid: 26915 + components: + - type: Transform + pos: 72.5,11.5 + parent: 12 + - uid: 26916 + components: + - type: Transform + pos: 71.5,11.5 + parent: 12 + - uid: 26917 + components: + - type: Transform + pos: 70.5,11.5 + parent: 12 + - uid: 26918 + components: + - type: Transform + pos: 69.5,11.5 + parent: 12 + - uid: 26919 + components: + - type: Transform + pos: 67.5,11.5 + parent: 12 + - uid: 26920 + components: + - type: Transform + pos: 68.5,11.5 + parent: 12 + - uid: 26921 + components: + - type: Transform + pos: 66.5,11.5 + parent: 12 + - uid: 26922 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 + - uid: 26924 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 26928 + components: + - type: Transform + pos: 65.5,8.5 + parent: 12 + - uid: 26931 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 26932 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 26933 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 26934 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 + - uid: 26935 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 26936 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 + - uid: 26937 + components: + - type: Transform + pos: 65.5,1.5 + parent: 12 + - uid: 26938 + components: + - type: Transform + pos: 65.5,0.5 + parent: 12 + - uid: 26940 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 + - uid: 26942 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 26943 + components: + - type: Transform + pos: 65.5,12.5 + parent: 12 + - uid: 26945 + components: + - type: Transform + pos: 64.5,12.5 + parent: 12 + - uid: 26950 + components: + - type: Transform + pos: 63.5,12.5 + parent: 12 + - uid: 26951 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 + - uid: 26952 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - uid: 26953 + components: + - type: Transform + pos: 62.5,10.5 + parent: 12 + - uid: 26954 + components: + - type: Transform + pos: 62.5,8.5 + parent: 12 + - uid: 26956 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 26957 + components: + - type: Transform + pos: 62.5,6.5 + parent: 12 + - uid: 26958 + components: + - type: Transform + pos: 62.5,5.5 + parent: 12 + - uid: 26959 + components: + - type: Transform + pos: 62.5,9.5 + parent: 12 + - uid: 26960 + components: + - type: Transform + pos: 62.5,4.5 + parent: 12 + - uid: 26961 + components: + - type: Transform + pos: 61.5,4.5 + parent: 12 + - uid: 26962 + components: + - type: Transform + pos: 59.5,4.5 + parent: 12 + - uid: 26963 + components: + - type: Transform + pos: 58.5,4.5 + parent: 12 + - uid: 26967 + components: + - type: Transform + pos: 60.5,4.5 + parent: 12 + - uid: 26968 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - uid: 26969 + components: + - type: Transform + pos: 58.5,2.5 + parent: 12 + - uid: 26970 + components: + - type: Transform + pos: 58.5,1.5 + parent: 12 + - uid: 26974 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 12 + - uid: 27046 + components: + - type: Transform + pos: 9.5,31.5 + parent: 12 + - uid: 27109 + components: + - type: Transform + pos: 41.5,22.5 + parent: 12 + - uid: 27131 + components: + - type: Transform + pos: 8.5,31.5 + parent: 12 + - uid: 27158 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 12 + - uid: 27159 + components: + - type: Transform + pos: 48.5,-7.5 parent: 12 - uid: 27257 components: @@ -40534,16 +40535,6 @@ entities: - type: Transform pos: -54.5,-16.5 parent: 12 - - uid: 27830 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - - uid: 27836 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 12 - uid: 27848 components: - type: Transform @@ -40839,16 +40830,6 @@ entities: - type: Transform pos: 1.5,-22.5 parent: 12 - - uid: 28493 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28494 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - uid: 28495 components: - type: Transform @@ -40924,11 +40905,6 @@ entities: - type: Transform pos: -5.5,9.5 parent: 12 - - uid: 28535 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - uid: 28556 components: - type: Transform @@ -40999,110 +40975,215 @@ entities: - type: Transform pos: 46.5,8.5 parent: 12 - - uid: 28858 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 28859 - components: - - type: Transform - pos: 69.5,2.5 - parent: 12 - - uid: 28860 - components: - - type: Transform - pos: 70.5,2.5 - parent: 12 - - uid: 28861 + - uid: 28672 components: - type: Transform - pos: 71.5,2.5 + pos: 59.5,7.5 parent: 12 - - uid: 28862 + - uid: 28678 components: - type: Transform - pos: 73.5,2.5 + pos: 56.5,-3.5 parent: 12 - - uid: 28863 + - uid: 28679 components: - type: Transform - pos: 74.5,2.5 + pos: 59.5,5.5 parent: 12 - - uid: 28864 + - uid: 28680 components: - type: Transform - pos: 73.5,-1.5 + pos: 59.5,6.5 parent: 12 - - uid: 28865 + - uid: 28681 components: - type: Transform - pos: 72.5,-1.5 + pos: 59.5,-1.5 parent: 12 - uid: 28866 components: - type: Transform - pos: 71.5,-1.5 + pos: 57.5,-4.5 parent: 12 - uid: 28867 components: - type: Transform - pos: 70.5,-1.5 + pos: 57.5,-5.5 parent: 12 - uid: 28868 components: - type: Transform - pos: 69.5,-1.5 + pos: 57.5,-6.5 parent: 12 - uid: 28869 components: - type: Transform - pos: 68.5,-1.5 + pos: 56.5,-6.5 parent: 12 - uid: 28870 components: - type: Transform - pos: 67.5,-1.5 + pos: 55.5,-6.5 parent: 12 - uid: 28871 components: - type: Transform - pos: 66.5,-1.5 + pos: 54.5,-6.5 parent: 12 - uid: 28872 components: - type: Transform - pos: 64.5,-1.5 + pos: 53.5,-6.5 parent: 12 - uid: 28873 components: - type: Transform - pos: 63.5,-1.5 + pos: 53.5,-5.5 parent: 12 - uid: 28874 components: - type: Transform - pos: 62.5,-1.5 + pos: 53.5,-4.5 parent: 12 - uid: 28875 components: - type: Transform - pos: 61.5,-1.5 + pos: 53.5,-3.5 parent: 12 - uid: 28876 components: - type: Transform - pos: 65.5,-1.5 + pos: 53.5,-2.5 parent: 12 - uid: 28877 components: - type: Transform - pos: 59.5,-1.5 + pos: 53.5,-1.5 parent: 12 - uid: 28878 components: - type: Transform - pos: 60.5,-1.5 + pos: 59.5,2.5 + parent: 12 + - uid: 28879 + components: + - type: Transform + pos: 60.5,2.5 + parent: 12 + - uid: 28880 + components: + - type: Transform + pos: 61.5,2.5 + parent: 12 + - uid: 28881 + components: + - type: Transform + pos: 61.5,1.5 + parent: 12 + - uid: 28882 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 12 + - uid: 28883 + components: + - type: Transform + pos: 61.5,0.5 + parent: 12 + - uid: 28884 + components: + - type: Transform + pos: 54.5,6.5 + parent: 12 + - uid: 28885 + components: + - type: Transform + pos: 53.5,5.5 + parent: 12 + - uid: 28887 + components: + - type: Transform + pos: 55.5,5.5 + parent: 12 + - uid: 28890 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 + - uid: 28903 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 28905 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 28906 + components: + - type: Transform + pos: 58.5,11.5 + parent: 12 + - uid: 28907 + components: + - type: Transform + pos: 58.5,12.5 + parent: 12 + - uid: 28908 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 28909 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 + - uid: 28910 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 + - uid: 28911 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 + - uid: 28912 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 + - uid: 28913 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 28914 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 + - uid: 28915 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 28916 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 12 + - uid: 28917 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 12 + - uid: 28918 + components: + - type: Transform + pos: 3.5,-19.5 parent: 12 - uid: 28949 components: @@ -42999,6 +43080,16 @@ entities: - type: Transform pos: -7.5,-55.5 parent: 12 + - uid: 31893 + components: + - type: Transform + pos: 16.5,21.5 + parent: 12 + - uid: 31909 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 - proto: CableApcStack entities: - uid: 16561 @@ -43021,6 +43112,12 @@ entities: - type: Transform pos: -22.691366,-9.292267 parent: 12 + - uid: 28714 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.502815,-6.30376 + parent: 12 - proto: CableApcStack1 entities: - uid: 340 @@ -43091,6 +43188,11 @@ entities: parent: 12 - proto: CableHV entities: + - uid: 16 + components: + - type: Transform + pos: 54.5,7.5 + parent: 12 - uid: 21 components: - type: Transform @@ -43101,11 +43203,21 @@ entities: - type: Transform pos: -9.5,-0.5 parent: 12 + - uid: 105 + components: + - type: Transform + pos: 53.5,8.5 + parent: 12 - uid: 108 components: - type: Transform pos: 5.5,3.5 parent: 12 + - uid: 153 + components: + - type: Transform + pos: 54.5,6.5 + parent: 12 - uid: 192 components: - type: Transform @@ -43116,11 +43228,36 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 12 + - uid: 254 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 - uid: 355 components: - type: Transform pos: 36.5,-1.5 parent: 12 + - uid: 361 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 + - uid: 384 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 12 + - uid: 405 + components: + - type: Transform + pos: 21.5,5.5 + parent: 12 + - uid: 407 + components: + - type: Transform + pos: 58.5,2.5 + parent: 12 - uid: 759 components: - type: Transform @@ -43164,22 +43301,12 @@ entities: - uid: 896 components: - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 920 - components: - - type: Transform - pos: 17.5,4.5 - parent: 12 - - uid: 923 - components: - - type: Transform - pos: 11.5,-2.5 + pos: 18.5,-12.5 parent: 12 - - uid: 924 + - uid: 899 components: - type: Transform - pos: 16.5,4.5 + pos: 39.5,3.5 parent: 12 - uid: 938 components: @@ -43221,6 +43348,11 @@ entities: - type: Transform pos: 7.5,11.5 parent: 12 + - uid: 1170 + components: + - type: Transform + pos: 58.5,4.5 + parent: 12 - uid: 1283 components: - type: Transform @@ -43366,20 +43498,20 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 12 - - uid: 1346 + - uid: 1348 components: - type: Transform - pos: 22.5,-15.5 + pos: -15.5,-30.5 parent: 12 - - uid: 1348 + - uid: 1350 components: - type: Transform - pos: -15.5,-30.5 + pos: 13.5,-12.5 parent: 12 - uid: 1353 components: - type: Transform - pos: 25.5,-15.5 + pos: 19.5,10.5 parent: 12 - uid: 1358 components: @@ -43406,6 +43538,11 @@ entities: - type: Transform pos: -15.5,-25.5 parent: 12 + - uid: 1482 + components: + - type: Transform + pos: 59.5,4.5 + parent: 12 - uid: 1703 components: - type: Transform @@ -43416,6 +43553,31 @@ entities: - type: Transform pos: -43.5,-13.5 parent: 12 + - uid: 1997 + components: + - type: Transform + pos: 24.5,5.5 + parent: 12 + - uid: 2053 + components: + - type: Transform + pos: 60.5,4.5 + parent: 12 + - uid: 2055 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - uid: 2087 + components: + - type: Transform + pos: 61.5,4.5 + parent: 12 + - uid: 2090 + components: + - type: Transform + pos: 40.5,4.5 + parent: 12 - uid: 2122 components: - type: Transform @@ -43446,25 +43608,30 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 12 - - uid: 2136 + - uid: 2167 components: - type: Transform - pos: 6.5,-6.5 + pos: 48.5,8.5 parent: 12 - - uid: 2181 + - uid: 2176 components: - type: Transform - pos: 33.5,-0.5 + pos: 46.5,8.5 parent: 12 - uid: 2188 components: - type: Transform pos: 2.5,-7.5 parent: 12 - - uid: 2246 + - uid: 2239 components: - type: Transform - pos: 29.5,8.5 + pos: 47.5,8.5 + parent: 12 + - uid: 2255 + components: + - type: Transform + pos: 19.5,-12.5 parent: 12 - uid: 2301 components: @@ -43476,25 +43643,20 @@ entities: - type: Transform pos: 15.5,10.5 parent: 12 - - uid: 2357 - components: - - type: Transform - pos: 37.5,10.5 - parent: 12 - - uid: 2359 + - uid: 2604 components: - type: Transform - pos: 39.5,8.5 + pos: 79.5,0.5 parent: 12 - uid: 2669 components: - type: Transform pos: 39.5,-1.5 parent: 12 - - uid: 2781 + - uid: 2874 components: - type: Transform - pos: 19.5,4.5 + pos: 16.5,-12.5 parent: 12 - uid: 2887 components: @@ -43506,6 +43668,21 @@ entities: - type: Transform pos: -10.5,-23.5 parent: 12 + - uid: 2926 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 12 + - uid: 2927 + components: + - type: Transform + pos: 20.5,5.5 + parent: 12 + - uid: 2968 + components: + - type: Transform + pos: 19.5,5.5 + parent: 12 - uid: 2975 components: - type: Transform @@ -43516,10 +43693,10 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 12 - - uid: 3022 + - uid: 3077 components: - type: Transform - pos: 23.5,4.5 + pos: 37.5,3.5 parent: 12 - uid: 3147 components: @@ -43701,45 +43878,15 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 12 - - uid: 3198 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 - - uid: 3556 - components: - - type: Transform - pos: 12.5,4.5 - parent: 12 - - uid: 3586 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - uid: 3630 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 12 - - uid: 3631 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - uid: 3632 components: - type: Transform pos: 16.5,5.5 parent: 12 - - uid: 3824 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 12 - - uid: 3978 + - uid: 3894 components: - type: Transform - pos: 28.5,8.5 + pos: 54.5,-3.5 parent: 12 - uid: 3985 components: @@ -43749,7 +43896,7 @@ entities: - uid: 4046 components: - type: Transform - pos: 11.5,1.5 + pos: 13.5,-11.5 parent: 12 - uid: 4058 components: @@ -43781,11 +43928,6 @@ entities: - type: Transform pos: -10.5,-27.5 parent: 12 - - uid: 4185 - components: - - type: Transform - pos: 36.5,2.5 - parent: 12 - uid: 4199 components: - type: Transform @@ -43811,11 +43953,6 @@ entities: - type: Transform pos: 12.5,-18.5 parent: 12 - - uid: 4479 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 12 - uid: 4480 components: - type: Transform @@ -44011,11 +44148,6 @@ entities: - type: Transform pos: -9.5,-27.5 parent: 12 - - uid: 4542 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - uid: 4544 components: - type: Transform @@ -44036,345 +44168,135 @@ entities: - type: Transform pos: 14.5,-16.5 parent: 12 - - uid: 4548 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 12 - uid: 4549 components: - type: Transform pos: 12.5,-16.5 parent: 12 - - uid: 4597 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 12 - - uid: 4598 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - - uid: 4599 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 4600 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 4601 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 4603 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 12 - - uid: 4604 + - uid: 4565 components: - type: Transform - pos: 8.5,-6.5 + pos: 53.5,-5.5 parent: 12 - uid: 4605 components: - type: Transform - pos: 9.5,-6.5 - parent: 12 - - uid: 4606 - components: - - type: Transform - pos: 10.5,-6.5 + pos: 53.5,-6.5 parent: 12 - uid: 4607 components: - type: Transform - pos: 11.5,-6.5 - parent: 12 - - uid: 4608 - components: - - type: Transform - pos: 12.5,-6.5 + pos: 6.5,-6.5 parent: 12 - uid: 4609 components: - type: Transform - pos: 13.5,-6.5 - parent: 12 - - uid: 4610 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - - uid: 4611 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 4612 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 4619 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 12 - - uid: 4620 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 4621 - components: - - type: Transform - pos: 15.5,-10.5 + pos: 22.5,5.5 parent: 12 - - uid: 4622 + - uid: 4617 components: - type: Transform - pos: 15.5,-9.5 + pos: 17.5,-12.5 parent: 12 - uid: 4623 components: - type: Transform - pos: 15.5,-8.5 + pos: 16.5,-16.5 parent: 12 - uid: 4624 components: - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 4625 - components: - - type: Transform - pos: 15.5,-6.5 + pos: 15.5,-16.5 parent: 12 - uid: 4626 components: - type: Transform - pos: 15.5,-5.5 + pos: 7.5,-6.5 parent: 12 - uid: 4627 components: - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 4628 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 4629 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 4630 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 4631 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 4633 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 12 - - uid: 4634 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 4635 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 12 - - uid: 4636 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 4637 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 4638 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 12 - - uid: 4639 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 4640 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 4641 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - - uid: 4642 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 4643 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 4644 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 4645 - components: - - type: Transform - pos: 27.5,-1.5 + pos: 8.5,-6.5 parent: 12 - uid: 4646 components: - type: Transform - pos: 27.5,-2.5 + pos: 71.5,9.5 parent: 12 - - uid: 4647 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 4648 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 4649 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 4650 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 4651 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 4652 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 4653 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 4654 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 4655 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 4656 + - uid: 4657 components: - type: Transform - pos: 27.5,-12.5 + pos: 18.5,10.5 parent: 12 - - uid: 4657 + - uid: 4665 components: - type: Transform - pos: 26.5,-12.5 + pos: 21.5,-16.5 parent: 12 - - uid: 4658 + - uid: 4668 components: - type: Transform - pos: 25.5,-12.5 + pos: 74.5,11.5 parent: 12 - - uid: 4659 + - uid: 4679 components: - type: Transform - pos: 24.5,-12.5 + pos: 26.5,5.5 parent: 12 - - uid: 4660 + - uid: 4680 components: - type: Transform - pos: 23.5,-12.5 + pos: 75.5,11.5 parent: 12 - - uid: 4661 + - uid: 4681 components: - type: Transform - pos: 22.5,-12.5 + pos: 77.5,11.5 parent: 12 - - uid: 4662 + - uid: 4691 components: - type: Transform - pos: 21.5,-12.5 + pos: -14.5,-23.5 parent: 12 - - uid: 4663 + - uid: 4692 components: - type: Transform - pos: 20.5,-12.5 + pos: 76.5,11.5 parent: 12 - - uid: 4664 + - uid: 4713 components: - type: Transform - pos: 19.5,-12.5 + pos: -10.5,-22.5 parent: 12 - - uid: 4665 + - uid: 4745 components: - type: Transform - pos: 18.5,-12.5 + pos: 25.5,5.5 parent: 12 - - uid: 4666 + - uid: 4755 components: - type: Transform - pos: 17.5,-12.5 + pos: 79.5,7.5 parent: 12 - - uid: 4667 + - uid: 4756 components: - type: Transform - pos: 16.5,-12.5 + pos: 79.5,4.5 parent: 12 - - uid: 4691 + - uid: 4766 components: - type: Transform - pos: -14.5,-23.5 + pos: 79.5,1.5 parent: 12 - - uid: 4713 + - uid: 4785 components: - type: Transform - pos: -10.5,-22.5 + pos: 14.5,-12.5 parent: 12 - - uid: 4735 + - uid: 4799 components: - type: Transform - pos: 14.5,-7.5 + pos: 25.5,-16.5 parent: 12 - uid: 4858 components: @@ -44406,155 +44328,185 @@ entities: - type: Transform pos: 40.5,0.5 parent: 12 + - uid: 4895 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 + - uid: 4917 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 - uid: 4919 components: - type: Transform pos: 34.5,-1.5 parent: 12 - - uid: 4970 + - uid: 4929 components: - type: Transform - pos: 42.5,-0.5 + pos: 75.5,-2.5 parent: 12 - - uid: 5059 + - uid: 4935 components: - type: Transform - pos: -11.5,-30.5 + pos: 77.5,-2.5 parent: 12 - - uid: 5071 + - uid: 4953 components: - type: Transform - pos: -10.5,-30.5 + pos: 73.5,-2.5 parent: 12 - - uid: 5113 + - uid: 4957 components: - type: Transform - pos: 33.5,-1.5 + pos: 35.5,-0.5 parent: 12 - - uid: 5114 + - uid: 4958 components: - type: Transform - pos: 32.5,-1.5 + pos: 65.5,12.5 parent: 12 - - uid: 5115 + - uid: 4970 components: - type: Transform - pos: 31.5,-1.5 + pos: 42.5,-0.5 parent: 12 - - uid: 5116 + - uid: 4974 components: - type: Transform - pos: 30.5,-1.5 + pos: 64.5,12.5 parent: 12 - - uid: 5129 + - uid: 4976 components: - type: Transform - pos: 76.5,-2.5 + pos: 30.5,4.5 parent: 12 - - uid: 5174 + - uid: 4994 components: - type: Transform - pos: -25.5,-55.5 + pos: 8.5,-8.5 parent: 12 - - uid: 5179 + - uid: 4995 components: - type: Transform - pos: 17.5,-27.5 + pos: 8.5,-9.5 parent: 12 - - uid: 5180 + - uid: 4996 components: - type: Transform - pos: 18.5,-27.5 + pos: 8.5,-10.5 parent: 12 - - uid: 5181 + - uid: 4998 components: - type: Transform - pos: 19.5,-27.5 + pos: 8.5,-11.5 parent: 12 - - uid: 5182 + - uid: 4999 components: - type: Transform - pos: 20.5,-27.5 + pos: 9.5,-11.5 parent: 12 - - uid: 5183 + - uid: 5000 components: - type: Transform - pos: 20.5,-26.5 + pos: 12.5,-11.5 parent: 12 - - uid: 5184 + - uid: 5001 components: - type: Transform - pos: 20.5,-25.5 + pos: 11.5,-11.5 parent: 12 - - uid: 5185 + - uid: 5002 components: - type: Transform - pos: 20.5,-24.5 + pos: 10.5,-11.5 parent: 12 - - uid: 5186 + - uid: 5008 components: - type: Transform - pos: 20.5,-23.5 + pos: 28.5,5.5 parent: 12 - - uid: 5187 + - uid: 5046 components: - type: Transform - pos: 20.5,-22.5 + pos: 20.5,-14.5 parent: 12 - - uid: 5188 + - uid: 5059 components: - type: Transform - pos: 20.5,-21.5 + pos: -11.5,-30.5 parent: 12 - - uid: 5189 + - uid: 5071 components: - type: Transform - pos: 20.5,-20.5 + pos: -10.5,-30.5 parent: 12 - - uid: 5190 + - uid: 5109 components: - type: Transform - pos: 20.5,-19.5 + pos: 63.5,12.5 parent: 12 - - uid: 5191 + - uid: 5113 components: - type: Transform - pos: 20.5,-18.5 + pos: 33.5,-1.5 parent: 12 - - uid: 5192 + - uid: 5114 components: - type: Transform - pos: 20.5,-17.5 + pos: 32.5,-1.5 parent: 12 - - uid: 5193 + - uid: 5115 components: - type: Transform - pos: 20.5,-16.5 + pos: 31.5,-1.5 parent: 12 - - uid: 5195 + - uid: 5116 components: - type: Transform - pos: 22.5,-16.5 + pos: 30.5,-1.5 parent: 12 - - uid: 5196 + - uid: 5174 components: - type: Transform - pos: 23.5,-16.5 + pos: -25.5,-55.5 parent: 12 - - uid: 5197 + - uid: 5179 components: - type: Transform - pos: 24.5,-16.5 + pos: 17.5,-27.5 parent: 12 - - uid: 5198 + - uid: 5180 components: - type: Transform - pos: 43.5,0.5 + pos: 18.5,-27.5 parent: 12 - - uid: 5199 + - uid: 5181 components: - type: Transform - pos: 26.5,-16.5 + pos: 19.5,-27.5 + parent: 12 + - uid: 5182 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 12 + - uid: 5193 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 12 + - uid: 5195 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 12 + - uid: 5196 + components: + - type: Transform + pos: 23.5,-16.5 parent: 12 - uid: 5200 components: @@ -44616,6 +44568,11 @@ entities: - type: Transform pos: 33.5,-11.5 parent: 12 + - uid: 5230 + components: + - type: Transform + pos: 23.5,5.5 + parent: 12 - uid: 5231 components: - type: Transform @@ -44631,36 +44588,66 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 + - uid: 5368 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - uid: 5407 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 - uid: 5421 components: - type: Transform pos: 1.5,15.5 parent: 12 - - uid: 5478 + - uid: 5638 components: - type: Transform - pos: 22.5,-13.5 + pos: 27.5,5.5 parent: 12 - - uid: 5479 + - uid: 5640 components: - type: Transform - pos: 22.5,-14.5 + pos: 18.5,5.5 parent: 12 - - uid: 5487 + - uid: 5667 components: - type: Transform - pos: 26.5,-15.5 + pos: 15.5,-12.5 parent: 12 - - uid: 5923 + - uid: 5671 components: - type: Transform - pos: 66.5,-5.5 + pos: 17.5,-16.5 + parent: 12 + - uid: 5759 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 12 + - uid: 5842 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 12 + - uid: 5868 + components: + - type: Transform + pos: 17.5,7.5 parent: 12 - uid: 5989 components: - type: Transform pos: -0.5,-4.5 parent: 12 + - uid: 6013 + components: + - type: Transform + pos: 17.5,5.5 + parent: 12 - uid: 6414 components: - type: Transform @@ -45336,60 +45323,45 @@ entities: - type: Transform pos: 47.5,-54.5 parent: 12 - - uid: 6704 - components: - - type: Transform - pos: 11.5,5.5 - parent: 12 - - uid: 6708 - components: - - type: Transform - pos: 33.5,2.5 - parent: 12 - - uid: 6709 - components: - - type: Transform - pos: 35.5,2.5 - parent: 12 - uid: 6717 components: - type: Transform pos: -52.5,21.5 parent: 12 - - uid: 6728 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 12 - uid: 6735 components: - type: Transform pos: 1.5,18.5 parent: 12 - - uid: 6748 + - uid: 6741 components: - type: Transform - pos: 14.5,4.5 + pos: 37.5,0.5 parent: 12 - uid: 6768 components: - type: Transform pos: -48.5,25.5 parent: 12 - - uid: 6855 + - uid: 7187 components: - type: Transform - pos: 21.5,4.5 + pos: -0.5,-5.5 parent: 12 - - uid: 7187 + - uid: 7231 components: - type: Transform - pos: -0.5,-5.5 + pos: 29.5,5.5 parent: 12 - - uid: 7262 + - uid: 7233 components: - type: Transform - pos: 11.5,4.5 + pos: 63.5,-3.5 + parent: 12 + - uid: 7278 + components: + - type: Transform + pos: 65.5,-3.5 parent: 12 - uid: 7283 components: @@ -45411,35 +45383,35 @@ entities: - type: Transform pos: 1.5,14.5 parent: 12 - - uid: 7546 + - uid: 7356 components: - type: Transform - pos: 71.5,-5.5 + pos: 60.5,-3.5 parent: 12 - - uid: 7547 + - uid: 7366 components: - type: Transform - pos: 70.5,-5.5 + pos: 62.5,10.5 parent: 12 - - uid: 7548 + - uid: 7546 components: - type: Transform - pos: 60.5,-5.5 + pos: 62.5,8.5 parent: 12 - - uid: 7557 + - uid: 7549 components: - type: Transform - pos: 61.5,-5.5 + pos: 62.5,9.5 parent: 12 - - uid: 7562 + - uid: 7556 components: - type: Transform - pos: 20.5,4.5 + pos: 62.5,-3.5 parent: 12 - - uid: 7580 + - uid: 7557 components: - type: Transform - pos: 13.5,4.5 + pos: 61.5,-3.5 parent: 12 - uid: 7724 components: @@ -45451,61 +45423,6 @@ entities: - type: Transform pos: -38.5,-52.5 parent: 12 - - uid: 7807 - components: - - type: Transform - pos: 40.5,8.5 - parent: 12 - - uid: 7825 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 12 - - uid: 7826 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 12 - - uid: 7827 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 12 - - uid: 7828 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 12 - - uid: 7829 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 12 - - uid: 7830 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - - uid: 7831 - components: - - type: Transform - pos: 37.5,-13.5 - parent: 12 - - uid: 7832 - components: - - type: Transform - pos: 38.5,-13.5 - parent: 12 - - uid: 7833 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 12 - - uid: 7834 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 12 - uid: 7835 components: - type: Transform @@ -45806,110 +45723,60 @@ entities: - type: Transform pos: 30.5,16.5 parent: 12 - - uid: 8494 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 12 - - uid: 8853 - components: - - type: Transform - pos: 10.5,-45.5 - parent: 12 - - uid: 8860 - components: - - type: Transform - pos: 10.5,16.5 - parent: 12 - - uid: 8918 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 8937 - components: - - type: Transform - pos: 73.5,-5.5 - parent: 12 - - uid: 8957 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 12 - - uid: 9003 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 12 - - uid: 9004 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 12 - - uid: 9005 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 12 - - uid: 9006 - components: - - type: Transform - pos: 43.5,-16.5 - parent: 12 - - uid: 9007 + - uid: 8440 components: - type: Transform - pos: 43.5,-17.5 + pos: 73.5,9.5 parent: 12 - - uid: 9008 + - uid: 8441 components: - type: Transform - pos: 43.5,-18.5 + pos: 34.5,0.5 parent: 12 - - uid: 9009 + - uid: 8443 components: - type: Transform - pos: 43.5,-19.5 + pos: 73.5,11.5 parent: 12 - - uid: 9010 + - uid: 8494 components: - type: Transform - pos: 43.5,-20.5 + pos: 10.5,-39.5 parent: 12 - - uid: 9011 + - uid: 8853 components: - type: Transform - pos: 43.5,-21.5 + pos: 10.5,-45.5 parent: 12 - - uid: 9012 + - uid: 8860 components: - type: Transform - pos: 43.5,-22.5 + pos: 10.5,16.5 parent: 12 - - uid: 9013 + - uid: 8910 components: - type: Transform - pos: 43.5,-23.5 + pos: 79.5,3.5 parent: 12 - - uid: 9014 + - uid: 8937 components: - type: Transform - pos: 43.5,-24.5 + pos: 78.5,-2.5 parent: 12 - - uid: 9015 + - uid: 8957 components: - type: Transform - pos: 42.5,-24.5 + pos: 10.5,-46.5 parent: 12 - - uid: 9016 + - uid: 9000 components: - type: Transform - pos: 42.5,-25.5 + pos: 77.5,3.5 parent: 12 - - uid: 9017 + - uid: 9003 components: - type: Transform - pos: 42.5,-26.5 + pos: 76.5,-2.5 parent: 12 - uid: 9018 components: @@ -46021,35 +45888,100 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 + - uid: 9142 + components: + - type: Transform + pos: 71.5,11.5 + parent: 12 - uid: 9328 components: - type: Transform pos: -0.5,-6.5 parent: 12 + - uid: 9407 + components: + - type: Transform + pos: 79.5,5.5 + parent: 12 + - uid: 9408 + components: + - type: Transform + pos: 77.5,5.5 + parent: 12 + - uid: 9410 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 12 + - uid: 9411 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 12 + - uid: 9412 + components: + - type: Transform + pos: 79.5,2.5 + parent: 12 + - uid: 9422 + components: + - type: Transform + pos: 15.5,7.5 + parent: 12 + - uid: 9424 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 + - uid: 9426 + components: + - type: Transform + pos: 15.5,9.5 + parent: 12 + - uid: 9434 + components: + - type: Transform + pos: 79.5,11.5 + parent: 12 + - uid: 9437 + components: + - type: Transform + pos: 78.5,11.5 + parent: 12 - uid: 9449 components: - type: Transform - pos: 16.5,-4.5 + pos: 79.5,6.5 parent: 12 - - uid: 9451 + - uid: 9450 components: - type: Transform - pos: 18.5,4.5 + pos: 79.5,9.5 parent: 12 - uid: 9453 components: - type: Transform - pos: 22.5,4.5 + pos: 79.5,10.5 parent: 12 - - uid: 9456 + - uid: 9457 components: - type: Transform - pos: 24.5,3.5 + pos: 79.5,-2.5 parent: 12 - - uid: 9457 + - uid: 9458 components: - type: Transform - pos: 24.5,2.5 + pos: 73.5,-0.5 + parent: 12 + - uid: 9460 + components: + - type: Transform + pos: 79.5,8.5 + parent: 12 + - uid: 9468 + components: + - type: Transform + pos: 71.5,-0.5 parent: 12 - uid: 9519 components: @@ -46091,40 +46023,55 @@ entities: - type: Transform pos: 1.5,19.5 parent: 12 - - uid: 9612 + - uid: 9631 components: - type: Transform - pos: 24.5,4.5 + pos: 30.5,8.5 parent: 12 - - uid: 9628 + - uid: 9649 components: - type: Transform - pos: 74.5,-5.5 + pos: 9.5,-37.5 parent: 12 - - uid: 9631 + - uid: 9657 components: - type: Transform - pos: 30.5,8.5 + pos: 10.5,-38.5 parent: 12 - - uid: 9649 + - uid: 9658 components: - type: Transform - pos: 9.5,-37.5 + pos: 80.5,2.5 parent: 12 - - uid: 9650 + - uid: 9663 components: - type: Transform - pos: 16.5,10.5 + pos: 72.5,-3.5 parent: 12 - - uid: 9657 + - uid: 9664 components: - type: Transform - pos: 10.5,-38.5 + pos: 74.5,-3.5 parent: 12 - - uid: 9671 + - uid: 9666 components: - type: Transform - pos: 32.5,-0.5 + pos: 70.5,-3.5 + parent: 12 + - uid: 9670 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 9676 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 + - uid: 9785 + components: + - type: Transform + pos: 29.5,10.5 parent: 12 - uid: 9810 components: @@ -46151,31 +46098,11 @@ entities: - type: Transform pos: 10.5,-40.5 parent: 12 - - uid: 9860 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 12 - uid: 9861 components: - type: Transform pos: 10.5,-41.5 parent: 12 - - uid: 9862 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 12 - - uid: 10284 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 12 - - uid: 10305 - components: - - type: Transform - pos: 67.5,-5.5 - parent: 12 - uid: 10319 components: - type: Transform @@ -46476,106 +46403,11 @@ entities: - type: Transform pos: -3.5,13.5 parent: 12 - - uid: 10790 - components: - - type: Transform - pos: 43.5,-12.5 - parent: 12 - - uid: 10791 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 12 - - uid: 10792 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 12 - - uid: 10793 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 12 - - uid: 10794 - components: - - type: Transform - pos: 43.5,-8.5 - parent: 12 - - uid: 10795 - components: - - type: Transform - pos: 43.5,-7.5 - parent: 12 - - uid: 10796 - components: - - type: Transform - pos: 43.5,-6.5 - parent: 12 - - uid: 10797 - components: - - type: Transform - pos: 43.5,-5.5 - parent: 12 - - uid: 10798 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 12 - - uid: 10799 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - - uid: 10800 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 10801 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - uid: 10802 components: - type: Transform pos: 43.5,-0.5 parent: 12 - - uid: 10804 - components: - - type: Transform - pos: 43.5,1.5 - parent: 12 - - uid: 10805 - components: - - type: Transform - pos: 43.5,2.5 - parent: 12 - - uid: 10806 - components: - - type: Transform - pos: 43.5,3.5 - parent: 12 - - uid: 10810 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - - uid: 10811 - components: - - type: Transform - pos: 39.5,4.5 - parent: 12 - - uid: 10812 - components: - - type: Transform - pos: 38.5,4.5 - parent: 12 - - uid: 10813 - components: - - type: Transform - pos: 37.5,4.5 - parent: 12 - uid: 10814 components: - type: Transform @@ -46596,11 +46428,6 @@ entities: - type: Transform pos: 33.5,4.5 parent: 12 - - uid: 10818 - components: - - type: Transform - pos: 32.5,4.5 - parent: 12 - uid: 10819 components: - type: Transform @@ -46626,21 +46453,6 @@ entities: - type: Transform pos: 31.5,8.5 parent: 12 - - uid: 10824 - components: - - type: Transform - pos: 20.5,9.5 - parent: 12 - - uid: 10825 - components: - - type: Transform - pos: 20.5,9.5 - parent: 12 - - uid: 10826 - components: - - type: Transform - pos: 21.5,9.5 - parent: 12 - uid: 10827 components: - type: Transform @@ -46676,11 +46488,6 @@ entities: - type: Transform pos: 5.5,-5.5 parent: 12 - - uid: 10840 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - uid: 10843 components: - type: Transform @@ -46806,16 +46613,6 @@ entities: - type: Transform pos: 27.5,10.5 parent: 12 - - uid: 10869 - components: - - type: Transform - pos: 28.5,10.5 - parent: 12 - - uid: 10870 - components: - - type: Transform - pos: 28.5,9.5 - parent: 12 - uid: 10878 components: - type: Transform @@ -46856,21 +46653,11 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 10900 - components: - - type: Transform - pos: 37.5,9.5 - parent: 12 - uid: 10913 components: - type: Transform pos: 24.5,10.5 parent: 12 - - uid: 10914 - components: - - type: Transform - pos: 25.5,10.5 - parent: 12 - uid: 10928 components: - type: Transform @@ -46901,6 +46688,11 @@ entities: - type: Transform pos: 22.5,17.5 parent: 12 + - uid: 11020 + components: + - type: Transform + pos: 52.5,8.5 + parent: 12 - uid: 11055 components: - type: Transform @@ -47016,6 +46808,16 @@ entities: - type: Transform pos: 21.5,24.5 parent: 12 + - uid: 11376 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 12 + - uid: 11377 + components: + - type: Transform + pos: 35.5,0.5 + parent: 12 - uid: 11395 components: - type: Transform @@ -47061,6 +46863,16 @@ entities: - type: Transform pos: 32.5,17.5 parent: 12 + - uid: 11591 + components: + - type: Transform + pos: 40.5,3.5 + parent: 12 + - uid: 11646 + components: + - type: Transform + pos: 38.5,3.5 + parent: 12 - uid: 11866 components: - type: Transform @@ -47221,36 +47033,11 @@ entities: - type: Transform pos: 36.5,11.5 parent: 12 - - uid: 12224 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 12 - - uid: 12261 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 12 - - uid: 12641 - components: - - type: Transform - pos: 33.5,1.5 - parent: 12 - - uid: 12711 - components: - - type: Transform - pos: 37.5,0.5 - parent: 12 - uid: 12894 components: - type: Transform pos: 41.5,-11.5 parent: 12 - - uid: 12999 - components: - - type: Transform - pos: 34.5,2.5 - parent: 12 - uid: 13080 components: - type: Transform @@ -48161,6 +47948,81 @@ entities: - type: Transform pos: -6.5,36.5 parent: 12 + - uid: 16357 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 16415 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 16420 + components: + - type: Transform + pos: 65.5,8.5 + parent: 12 + - uid: 16421 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 16435 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 16445 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 + - uid: 16446 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 16447 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 + - uid: 16448 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 16449 + components: + - type: Transform + pos: 66.5,11.5 + parent: 12 + - uid: 16450 + components: + - type: Transform + pos: 67.5,11.5 + parent: 12 + - uid: 16493 + components: + - type: Transform + pos: 68.5,11.5 + parent: 12 + - uid: 16520 + components: + - type: Transform + pos: 69.5,11.5 + parent: 12 + - uid: 16521 + components: + - type: Transform + pos: 70.5,11.5 + parent: 12 + - uid: 16533 + components: + - type: Transform + pos: 72.5,11.5 + parent: 12 - uid: 16640 components: - type: Transform @@ -48961,6 +48823,16 @@ entities: - type: Transform pos: -9.5,-10.5 parent: 12 + - uid: 18307 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 12 + - uid: 18315 + components: + - type: Transform + pos: 30.5,9.5 + parent: 12 - uid: 18383 components: - type: Transform @@ -50176,6 +50048,11 @@ entities: - type: Transform pos: -38.5,59.5 parent: 12 + - uid: 19548 + components: + - type: Transform + pos: 25.5,10.5 + parent: 12 - uid: 19617 components: - type: Transform @@ -50191,6 +50068,11 @@ entities: - type: Transform pos: 2.5,22.5 parent: 12 + - uid: 19836 + components: + - type: Transform + pos: 21.5,9.5 + parent: 12 - uid: 19840 components: - type: Transform @@ -50266,15 +50148,25 @@ entities: - type: Transform pos: -49.5,46.5 parent: 12 - - uid: 20607 + - uid: 21077 components: - type: Transform - pos: 76.5,2.5 + pos: 10.5,-44.5 parent: 12 - - uid: 21077 + - uid: 21078 components: - type: Transform - pos: 10.5,-44.5 + pos: 54.5,1.5 + parent: 12 + - uid: 21601 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - uid: 21648 + components: + - type: Transform + pos: 54.5,8.5 parent: 12 - uid: 21859 components: @@ -50346,6 +50238,11 @@ entities: - type: Transform pos: 33.5,-5.5 parent: 12 + - uid: 21925 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 - uid: 21937 components: - type: Transform @@ -50386,20 +50283,60 @@ entities: - type: Transform pos: 31.5,-7.5 parent: 12 - - uid: 22078 + - uid: 22094 components: - type: Transform - pos: 15.5,1.5 + pos: 57.5,11.5 parent: 12 - - uid: 22712 + - uid: 22095 components: - type: Transform - pos: -49.5,25.5 + pos: 54.5,10.5 parent: 12 - - uid: 22857 + - uid: 22109 components: - type: Transform - pos: 40.5,3.5 + pos: 26.5,-16.5 + parent: 12 + - uid: 22126 + components: + - type: Transform + pos: 55.5,11.5 + parent: 12 + - uid: 22136 + components: + - type: Transform + pos: 54.5,5.5 + parent: 12 + - uid: 22140 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 22141 + components: + - type: Transform + pos: 56.5,11.5 + parent: 12 + - uid: 22148 + components: + - type: Transform + pos: 17.5,10.5 + parent: 12 + - uid: 22160 + components: + - type: Transform + pos: 58.5,11.5 + parent: 12 + - uid: 22528 + components: + - type: Transform + pos: 17.5,8.5 + parent: 12 + - uid: 22712 + components: + - type: Transform + pos: -49.5,25.5 parent: 12 - uid: 23101 components: @@ -50411,6 +50348,16 @@ entities: - type: Transform pos: 41.5,-0.5 parent: 12 + - uid: 23127 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 12 + - uid: 23163 + components: + - type: Transform + pos: 17.5,9.5 + parent: 12 - uid: 23265 components: - type: Transform @@ -50896,6 +50843,11 @@ entities: - type: Transform pos: -37.5,-51.5 parent: 12 + - uid: 23984 + components: + - type: Transform + pos: 54.5,9.5 + parent: 12 - uid: 24478 components: - type: Transform @@ -50951,6 +50903,21 @@ entities: - type: Transform pos: 9.5,65.5 parent: 12 + - uid: 25199 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 + - uid: 25200 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 25201 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 - uid: 25305 components: - type: Transform @@ -50961,11 +50928,31 @@ entities: - type: Transform pos: -31.5,59.5 parent: 12 + - uid: 25416 + components: + - type: Transform + pos: 43.5,0.5 + parent: 12 - uid: 25451 components: - type: Transform pos: -22.5,59.5 parent: 12 + - uid: 25460 + components: + - type: Transform + pos: 43.5,6.5 + parent: 12 + - uid: 25461 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 + - uid: 25462 + components: + - type: Transform + pos: 58.5,5.5 + parent: 12 - uid: 25535 components: - type: Transform @@ -51216,6 +51203,11 @@ entities: - type: Transform pos: -25.5,-54.5 parent: 12 + - uid: 25888 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 - uid: 26079 components: - type: Transform @@ -51261,110 +51253,150 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 - - uid: 26131 + - uid: 26101 components: - type: Transform - pos: 11.5,0.5 + pos: 58.5,-2.5 parent: 12 - - uid: 26132 + - uid: 26102 components: - type: Transform - pos: 11.5,2.5 + pos: 59.5,-3.5 parent: 12 - - uid: 26153 + - uid: 26156 components: - type: Transform - pos: 15.5,3.5 + pos: 74.5,12.5 parent: 12 - - uid: 26154 + - uid: 26417 components: - type: Transform - pos: 15.5,4.5 + pos: 30.5,10.5 parent: 12 - - uid: 26155 + - uid: 26441 components: - type: Transform - pos: 11.5,-3.5 + pos: 54.5,0.5 parent: 12 - - uid: 26156 + - uid: 26452 components: - type: Transform - pos: 11.5,-4.5 + pos: 57.5,-3.5 parent: 12 - - uid: 26157 + - uid: 26464 components: - type: Transform - pos: 11.5,-5.5 + pos: 28.5,10.5 parent: 12 - - uid: 26158 + - uid: 26493 components: - type: Transform - pos: 16.5,7.5 + pos: 43.5,4.5 parent: 12 - - uid: 26159 + - uid: 26494 components: - type: Transform - pos: 16.5,9.5 + pos: 43.5,7.5 parent: 12 - - uid: 26160 + - uid: 26495 components: - type: Transform - pos: 16.5,8.5 + pos: 43.5,8.5 parent: 12 - - uid: 26465 + - uid: 26496 components: - type: Transform - pos: 72.5,-5.5 + pos: 43.5,3.5 parent: 12 - - uid: 26467 + - uid: 26497 components: - type: Transform - pos: 62.5,-5.5 + pos: 43.5,1.5 parent: 12 - - uid: 26469 + - uid: 26498 components: - type: Transform - pos: 69.5,-5.5 + pos: 43.5,2.5 + parent: 12 + - uid: 26499 + components: + - type: Transform + pos: 43.5,5.5 + parent: 12 + - uid: 26520 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 + - uid: 26521 + components: + - type: Transform + pos: 58.5,1.5 + parent: 12 + - uid: 26523 + components: + - type: Transform + pos: 80.5,6.5 + parent: 12 + - uid: 26524 + components: + - type: Transform + pos: 70.5,12.5 + parent: 12 + - uid: 26525 + components: + - type: Transform + pos: 72.5,12.5 parent: 12 - uid: 26543 components: - type: Transform pos: -9.5,-19.5 parent: 12 + - uid: 26551 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 - uid: 26561 components: - type: Transform pos: 47.5,3.5 parent: 12 - - uid: 26583 + - uid: 26562 components: - type: Transform - pos: 30.5,-2.5 + pos: 80.5,4.5 parent: 12 - - uid: 26615 + - uid: 26576 components: - type: Transform - pos: 55.5,-1.5 + pos: 54.5,11.5 parent: 12 - - uid: 26633 + - uid: 26583 components: - type: Transform - pos: 74.5,-1.5 + pos: 30.5,-2.5 parent: 12 - - uid: 26634 + - uid: 26606 components: - type: Transform - pos: 74.5,-0.5 + pos: 51.5,8.5 parent: 12 - - uid: 26635 + - uid: 26622 components: - type: Transform - pos: 74.5,0.5 + pos: 74.5,-2.5 parent: 12 - - uid: 26638 + - uid: 26636 components: - type: Transform - pos: 76.5,0.5 + pos: 65.5,1.5 + parent: 12 + - uid: 26643 + components: + - type: Transform + pos: 20.5,9.5 parent: 12 - uid: 26646 components: @@ -51431,15 +51463,125 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 - - uid: 26800 + - uid: 26671 components: - type: Transform - pos: 56.5,-3.5 + pos: 70.5,-2.5 parent: 12 - - uid: 26801 + - uid: 26683 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 12 + - uid: 26684 + components: + - type: Transform + pos: 58.5,-1.5 + parent: 12 + - uid: 26690 + components: + - type: Transform + pos: 36.5,3.5 + parent: 12 + - uid: 26700 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 26701 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 26702 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 + - uid: 26704 + components: + - type: Transform + pos: 65.5,0.5 + parent: 12 + - uid: 26717 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 12 + - uid: 26719 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 + - uid: 26721 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 12 + - uid: 26728 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 12 + - uid: 26731 + components: + - type: Transform + pos: 58.5,0.5 + parent: 12 + - uid: 26732 components: - type: Transform - pos: 56.5,-4.5 + pos: 62.5,4.5 + parent: 12 + - uid: 26735 + components: + - type: Transform + pos: 54.5,4.5 + parent: 12 + - uid: 26736 + components: + - type: Transform + pos: 54.5,3.5 + parent: 12 + - uid: 26737 + components: + - type: Transform + pos: 54.5,2.5 + parent: 12 + - uid: 26742 + components: + - type: Transform + pos: 49.5,8.5 + parent: 12 + - uid: 26743 + components: + - type: Transform + pos: 50.5,8.5 + parent: 12 + - uid: 26744 + components: + - type: Transform + pos: 44.5,8.5 + parent: 12 + - uid: 26745 + components: + - type: Transform + pos: 45.5,8.5 + parent: 12 + - uid: 26756 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 26757 + components: + - type: Transform + pos: 62.5,5.5 + parent: 12 + - uid: 26803 + components: + - type: Transform + pos: 62.5,6.5 parent: 12 - uid: 26805 components: @@ -51461,145 +51603,445 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 12 - - uid: 26897 + - uid: 27028 components: - type: Transform - pos: 63.5,-5.5 + pos: 43.5,-24.5 parent: 12 - - uid: 26906 + - uid: 27029 components: - type: Transform - pos: 75.5,0.5 + pos: 43.5,-25.5 parent: 12 - - uid: 27002 + - uid: 27051 components: - type: Transform - pos: 68.5,-5.5 + pos: 43.5,-26.5 parent: 12 - - uid: 27042 + - uid: 27052 components: - type: Transform - pos: 37.5,1.5 + pos: 43.5,-23.5 + parent: 12 + - uid: 27055 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 12 + - uid: 27057 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 12 + - uid: 27079 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 12 + - uid: 27080 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 12 + - uid: 27081 + components: + - type: Transform + pos: 43.5,-18.5 + parent: 12 + - uid: 27082 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 12 + - uid: 27087 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 12 + - uid: 27088 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 12 + - uid: 27090 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 12 + - uid: 27092 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 12 + - uid: 27105 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 12 + - uid: 27107 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 12 + - uid: 27132 + components: + - type: Transform + pos: 51.5,-40.5 parent: 12 - uid: 27133 components: - type: Transform - pos: 75.5,-3.5 + pos: 52.5,-40.5 parent: 12 - - uid: 27210 + - uid: 27134 components: - type: Transform - pos: 10.5,18.5 + pos: 53.5,-40.5 parent: 12 - - uid: 27235 + - uid: 27135 components: - type: Transform - pos: 56.5,-2.5 + pos: 54.5,-40.5 parent: 12 - - uid: 27250 + - uid: 27136 components: - type: Transform - pos: 74.5,-2.5 + pos: 55.5,-40.5 parent: 12 - - uid: 27339 + - uid: 27137 components: - type: Transform - pos: -29.5,-34.5 + pos: 56.5,-40.5 parent: 12 - - uid: 27340 + - uid: 27138 components: - type: Transform - pos: -29.5,-33.5 + pos: 56.5,-39.5 parent: 12 - - uid: 27342 + - uid: 27139 components: - type: Transform - pos: -29.5,-31.5 + pos: 56.5,-38.5 parent: 12 - - uid: 27343 + - uid: 27140 components: - type: Transform - pos: -29.5,-32.5 + pos: 56.5,-37.5 parent: 12 - - uid: 27344 + - uid: 27141 components: - type: Transform - pos: -29.5,-30.5 + pos: 56.5,-36.5 parent: 12 - - uid: 27345 + - uid: 27142 components: - type: Transform - pos: -29.5,-29.5 + pos: 56.5,-35.5 parent: 12 - - uid: 27346 + - uid: 27143 components: - type: Transform - pos: -29.5,-26.5 + pos: 56.5,-34.5 parent: 12 - - uid: 27347 + - uid: 27144 components: - type: Transform - pos: -29.5,-27.5 + pos: 56.5,-33.5 parent: 12 - - uid: 27348 + - uid: 27145 components: - type: Transform - pos: -29.5,-28.5 + pos: 56.5,-32.5 parent: 12 - - uid: 27349 + - uid: 27146 components: - type: Transform - pos: -30.5,-26.5 + pos: 56.5,-31.5 parent: 12 - - uid: 27353 + - uid: 27149 components: - type: Transform - pos: 26.5,-6.5 + pos: 56.5,-30.5 parent: 12 - - uid: 27354 + - uid: 27151 components: - type: Transform - pos: 16.5,-6.5 + pos: 56.5,-29.5 parent: 12 - - uid: 27376 + - uid: 27153 components: - type: Transform - pos: 13.5,-16.5 + pos: 56.5,-28.5 parent: 12 - - uid: 27382 + - uid: 27160 components: - type: Transform - pos: 12.5,-10.5 + pos: 55.5,-28.5 parent: 12 - - uid: 27383 + - uid: 27162 components: - type: Transform - pos: 11.5,-10.5 + pos: 54.5,-28.5 parent: 12 - - uid: 27384 + - uid: 27163 components: - type: Transform - pos: 10.5,-10.5 + pos: 53.5,-28.5 parent: 12 - - uid: 27385 + - uid: 27164 components: - type: Transform - pos: 9.5,-10.5 + pos: 52.5,-28.5 parent: 12 - - uid: 27386 + - uid: 27165 components: - type: Transform - pos: 8.5,-10.5 + pos: 51.5,-28.5 parent: 12 - - uid: 27387 + - uid: 27166 components: - type: Transform - pos: 9.5,-11.5 + pos: 50.5,-28.5 parent: 12 - - uid: 27388 + - uid: 27167 components: - type: Transform - pos: 8.5,-11.5 + pos: 49.5,-28.5 + parent: 12 + - uid: 27168 + components: + - type: Transform + pos: 48.5,-28.5 + parent: 12 + - uid: 27171 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 12 + - uid: 27177 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 12 + - uid: 27178 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 12 + - uid: 27179 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 12 + - uid: 27180 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 12 + - uid: 27181 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 12 + - uid: 27182 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 12 + - uid: 27183 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 12 + - uid: 27185 + components: + - type: Transform + pos: 58.5,-23.5 + parent: 12 + - uid: 27186 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 12 + - uid: 27190 + components: + - type: Transform + pos: 58.5,-21.5 + parent: 12 + - uid: 27191 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 12 + - uid: 27192 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 12 + - uid: 27193 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 12 + - uid: 27194 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 12 + - uid: 27195 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 12 + - uid: 27196 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 12 + - uid: 27197 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 12 + - uid: 27198 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 12 + - uid: 27199 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 12 + - uid: 27200 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 12 + - uid: 27201 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 12 + - uid: 27202 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 12 + - uid: 27204 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 12 + - uid: 27205 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 12 + - uid: 27206 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 12 + - uid: 27207 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 12 + - uid: 27208 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 12 + - uid: 27210 + components: + - type: Transform + pos: 10.5,18.5 + parent: 12 + - uid: 27211 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 12 + - uid: 27212 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 12 + - uid: 27213 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 12 + - uid: 27214 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 12 + - uid: 27215 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 12 + - uid: 27235 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 12 + - uid: 27339 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 12 + - uid: 27340 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 12 + - uid: 27342 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 12 + - uid: 27343 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 12 + - uid: 27344 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 12 + - uid: 27345 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 12 + - uid: 27346 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 12 + - uid: 27347 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 12 + - uid: 27348 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 12 + - uid: 27349 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 12 + - uid: 27376 + components: + - type: Transform + pos: 13.5,-16.5 parent: 12 - uid: 27459 components: @@ -52371,26 +52813,6 @@ entities: - type: Transform pos: -37.5,-30.5 parent: 12 - - uid: 27893 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 12 - - uid: 27904 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - - uid: 27905 - components: - - type: Transform - pos: 76.5,-4.5 - parent: 12 - - uid: 27907 - components: - - type: Transform - pos: 65.5,-5.5 - parent: 12 - uid: 27923 components: - type: Transform @@ -52731,295 +53153,10 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 12 - - uid: 28648 - components: - - type: Transform - pos: 25.5,3.5 - parent: 12 - - uid: 28649 - components: - - type: Transform - pos: 27.5,3.5 - parent: 12 - - uid: 28650 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - - uid: 28668 - components: - - type: Transform - pos: 76.5,3.5 - parent: 12 - - uid: 28669 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - - uid: 28670 - components: - - type: Transform - pos: 78.5,3.5 - parent: 12 - - uid: 28671 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 28672 - components: - - type: Transform - pos: 78.5,5.5 - parent: 12 - - uid: 28673 - components: - - type: Transform - pos: 78.5,6.5 - parent: 12 - - uid: 28674 - components: - - type: Transform - pos: 78.5,7.5 - parent: 12 - - uid: 28675 - components: - - type: Transform - pos: 78.5,8.5 - parent: 12 - - uid: 28676 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - uid: 28677 components: - type: Transform - pos: 78.5,10.5 - parent: 12 - - uid: 28678 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 28679 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 28680 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 28681 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 28682 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 28683 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 28684 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 28685 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 28686 - components: - - type: Transform - pos: 71.5,12.5 - parent: 12 - - uid: 28687 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 28688 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 28689 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 28690 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - - uid: 28691 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 28692 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 28693 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 28694 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 28695 - components: - - type: Transform - pos: 61.5,12.5 - parent: 12 - - uid: 28696 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 28697 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - - uid: 28698 - components: - - type: Transform - pos: 69.5,12.5 - parent: 12 - - uid: 28699 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - - uid: 28700 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - - uid: 28701 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - - uid: 28702 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 28703 - components: - - type: Transform - pos: 54.5,12.5 - parent: 12 - - uid: 28704 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - - uid: 28705 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - - uid: 28706 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - - uid: 28707 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 28708 - components: - - type: Transform - pos: 53.5,8.5 - parent: 12 - - uid: 28709 - components: - - type: Transform - pos: 52.5,8.5 - parent: 12 - - uid: 28710 - components: - - type: Transform - pos: 51.5,8.5 - parent: 12 - - uid: 28711 - components: - - type: Transform - pos: 50.5,8.5 - parent: 12 - - uid: 28712 - components: - - type: Transform - pos: 49.5,8.5 - parent: 12 - - uid: 28713 - components: - - type: Transform - pos: 48.5,8.5 - parent: 12 - - uid: 28714 - components: - - type: Transform - pos: 47.5,8.5 - parent: 12 - - uid: 28715 - components: - - type: Transform - pos: 46.5,8.5 - parent: 12 - - uid: 28716 - components: - - type: Transform - pos: 45.5,8.5 - parent: 12 - - uid: 28717 - components: - - type: Transform - pos: 44.5,8.5 - parent: 12 - - uid: 28718 - components: - - type: Transform - pos: 43.5,8.5 - parent: 12 - - uid: 28719 - components: - - type: Transform - pos: 43.5,4.5 - parent: 12 - - uid: 28720 - components: - - type: Transform - pos: 43.5,5.5 - parent: 12 - - uid: 28721 - components: - - type: Transform - pos: 43.5,6.5 - parent: 12 - - uid: 28722 - components: - - type: Transform - pos: 43.5,7.5 + pos: 55.5,-3.5 parent: 12 - uid: 28723 components: @@ -53091,66 +53228,11 @@ entities: - type: Transform pos: 41.5,11.5 parent: 12 - - uid: 28737 - components: - - type: Transform - pos: 41.5,10.5 - parent: 12 - - uid: 28738 - components: - - type: Transform - pos: 41.5,8.5 - parent: 12 - - uid: 28739 - components: - - type: Transform - pos: 41.5,9.5 - parent: 12 - - uid: 28740 - components: - - type: Transform - pos: 42.5,8.5 - parent: 12 - - uid: 28784 - components: - - type: Transform - pos: 74.5,-4.5 - parent: 12 - - uid: 28879 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 12 - - uid: 28880 - components: - - type: Transform - pos: 64.5,-5.5 - parent: 12 - - uid: 28881 - components: - - type: Transform - pos: 58.5,-5.5 - parent: 12 - - uid: 28882 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 12 - - uid: 28883 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 12 - uid: 28889 components: - type: Transform pos: 29.5,3.5 parent: 12 - - uid: 28890 - components: - - type: Transform - pos: 26.5,3.5 - parent: 12 - uid: 28891 components: - type: Transform @@ -53209,17 +53291,7 @@ entities: - uid: 29001 components: - type: Transform - pos: 19.5,-11.5 - parent: 12 - - uid: 29002 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 12 - - uid: 29003 - components: - - type: Transform - pos: 21.5,-11.5 + pos: 36.5,2.5 parent: 12 - uid: 29034 components: @@ -53301,6 +53373,11 @@ entities: - type: Transform pos: 18.5,21.5 parent: 12 + - uid: 29087 + components: + - type: Transform + pos: 36.5,1.5 + parent: 12 - uid: 29182 components: - type: Transform @@ -53341,11 +53418,6 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 - - uid: 29819 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 12 - uid: 29873 components: - type: Transform @@ -53661,101 +53733,6 @@ entities: - type: Transform pos: -18.5,69.5 parent: 12 - - uid: 29959 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 12 - - uid: 29960 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 12 - - uid: 29961 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 12 - - uid: 29962 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 12 - - uid: 29963 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 12 - - uid: 29964 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 12 - - uid: 29965 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 12 - - uid: 29966 - components: - - type: Transform - pos: 31.5,-22.5 - parent: 12 - - uid: 29967 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 12 - - uid: 29968 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 12 - - uid: 29969 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 12 - - uid: 29970 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 12 - - uid: 29971 - components: - - type: Transform - pos: 36.5,-22.5 - parent: 12 - - uid: 29972 - components: - - type: Transform - pos: 37.5,-22.5 - parent: 12 - - uid: 29973 - components: - - type: Transform - pos: 38.5,-22.5 - parent: 12 - - uid: 29974 - components: - - type: Transform - pos: 39.5,-22.5 - parent: 12 - - uid: 29975 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 12 - - uid: 29976 - components: - - type: Transform - pos: 41.5,-22.5 - parent: 12 - - uid: 29977 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 12 - uid: 29986 components: - type: Transform @@ -53886,16 +53863,6 @@ entities: - type: Transform pos: -3.5,-0.5 parent: 12 - - uid: 30434 - components: - - type: Transform - pos: 37.5,8.5 - parent: 12 - - uid: 30436 - components: - - type: Transform - pos: 38.5,8.5 - parent: 12 - uid: 30496 components: - type: Transform @@ -54681,6 +54648,51 @@ entities: - type: Transform pos: -49.5,27.5 parent: 12 + - uid: 31880 + components: + - type: Transform + pos: 72.5,9.5 + parent: 12 + - uid: 31881 + components: + - type: Transform + pos: 72.5,10.5 + parent: 12 + - uid: 31883 + components: + - type: Transform + pos: 77.5,4.5 + parent: 12 + - uid: 31884 + components: + - type: Transform + pos: 78.5,4.5 + parent: 12 + - uid: 31885 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 12 + - uid: 31886 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 12 + - uid: 31898 + components: + - type: Transform + pos: 60.5,12.5 + parent: 12 + - uid: 31899 + components: + - type: Transform + pos: 59.5,11.5 + parent: 12 + - uid: 31900 + components: + - type: Transform + pos: 59.5,12.5 + parent: 12 - proto: CableHVStack entities: - uid: 353 @@ -54698,47 +54710,58 @@ entities: - type: Transform pos: 44.585773,52.36379 parent: 12 + - uid: 28713 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.496643,-6.643266 + parent: 12 - proto: CableMV entities: + - uid: 22 + components: + - type: Transform + pos: 62.5,9.5 + parent: 12 - uid: 87 components: - type: Transform pos: 0.5,2.5 parent: 12 - - uid: 392 + - uid: 206 components: - type: Transform - pos: -37.5,-51.5 + pos: 79.5,14.5 parent: 12 - - uid: 465 + - uid: 227 components: - type: Transform - pos: -21.5,-30.5 + pos: 80.5,14.5 parent: 12 - - uid: 498 + - uid: 286 components: - type: Transform - pos: 34.5,3.5 + pos: 65.5,10.5 parent: 12 - - uid: 500 + - uid: 366 components: - type: Transform - pos: 35.5,3.5 + pos: 66.5,11.5 parent: 12 - - uid: 502 + - uid: 392 components: - type: Transform - pos: 33.5,3.5 + pos: -37.5,-51.5 parent: 12 - - uid: 507 + - uid: 465 components: - type: Transform - pos: -25.5,59.5 + pos: -21.5,-30.5 parent: 12 - - uid: 570 + - uid: 507 components: - type: Transform - pos: 67.5,12.5 + pos: -25.5,59.5 parent: 12 - uid: 601 components: @@ -54755,20 +54778,15 @@ entities: - type: Transform pos: -56.5,45.5 parent: 12 - - uid: 904 - components: - - type: Transform - pos: -53.5,43.5 - parent: 12 - - uid: 908 + - uid: 763 components: - type: Transform - pos: 68.5,12.5 + pos: 56.5,4.5 parent: 12 - - uid: 1058 + - uid: 904 components: - type: Transform - pos: 24.5,2.5 + pos: -53.5,43.5 parent: 12 - uid: 1059 components: @@ -54780,15 +54798,20 @@ entities: - type: Transform pos: -31.5,-42.5 parent: 12 - - uid: 1170 + - uid: 1191 components: - type: Transform - pos: 72.5,12.5 + pos: 62.5,4.5 parent: 12 - - uid: 1191 + - uid: 1344 components: - type: Transform - pos: 73.5,12.5 + pos: 64.5,4.5 + parent: 12 + - uid: 1349 + components: + - type: Transform + pos: 57.5,-8.5 parent: 12 - uid: 1437 components: @@ -55250,15 +55273,25 @@ entities: - type: Transform pos: -53.5,40.5 parent: 12 - - uid: 2055 + - uid: 2039 components: - type: Transform - pos: 69.5,12.5 + pos: 62.5,6.5 + parent: 12 + - uid: 2052 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 2105 + components: + - type: Transform + pos: 26.5,5.5 parent: 12 - uid: 2113 components: - type: Transform - pos: 70.5,12.5 + pos: 26.5,6.5 parent: 12 - uid: 2115 components: @@ -55285,20 +55318,45 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 12 + - uid: 2130 + components: + - type: Transform + pos: 26.5,7.5 + parent: 12 - uid: 2139 components: - type: Transform - pos: 73.5,11.5 + pos: 26.5,8.5 parent: 12 - uid: 2140 components: - type: Transform - pos: 71.5,12.5 + pos: 23.5,5.5 parent: 12 - uid: 2141 components: - type: Transform - pos: 63.5,12.5 + pos: 25.5,5.5 + parent: 12 + - uid: 2152 + components: + - type: Transform + pos: 24.5,5.5 + parent: 12 + - uid: 2157 + components: + - type: Transform + pos: 26.5,9.5 + parent: 12 + - uid: 2158 + components: + - type: Transform + pos: 25.5,9.5 + parent: 12 + - uid: 2159 + components: + - type: Transform + pos: 24.5,9.5 parent: 12 - uid: 2177 components: @@ -55365,11 +55423,21 @@ entities: - type: Transform pos: -2.5,-9.5 parent: 12 + - uid: 2246 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 12 - uid: 2249 components: - type: Transform pos: -56.5,40.5 parent: 12 + - uid: 2251 + components: + - type: Transform + pos: 56.5,6.5 + parent: 12 - uid: 2259 components: - type: Transform @@ -55380,16 +55448,31 @@ entities: - type: Transform pos: -23.5,57.5 parent: 12 + - uid: 2287 + components: + - type: Transform + pos: 82.5,5.5 + parent: 12 - uid: 2529 components: - type: Transform pos: 45.5,-20.5 parent: 12 + - uid: 2574 + components: + - type: Transform + pos: 80.5,8.5 + parent: 12 - uid: 2581 components: - type: Transform pos: -56.5,39.5 parent: 12 + - uid: 2676 + components: + - type: Transform + pos: 80.5,9.5 + parent: 12 - uid: 2740 components: - type: Transform @@ -55430,6 +55513,11 @@ entities: - type: Transform pos: -57.5,36.5 parent: 12 + - uid: 2859 + components: + - type: Transform + pos: 60.5,12.5 + parent: 12 - uid: 2860 components: - type: Transform @@ -55445,11 +55533,21 @@ entities: - type: Transform pos: -57.5,39.5 parent: 12 + - uid: 2869 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 12 - uid: 2882 components: - type: Transform pos: 0.5,-40.5 parent: 12 + - uid: 2929 + components: + - type: Transform + pos: 80.5,0.5 + parent: 12 - uid: 2946 components: - type: Transform @@ -55480,6 +55578,11 @@ entities: - type: Transform pos: 0.5,-38.5 parent: 12 + - uid: 3078 + components: + - type: Transform + pos: 14.5,5.5 + parent: 12 - uid: 3080 components: - type: Transform @@ -55850,6 +55953,11 @@ entities: - type: Transform pos: -18.5,-27.5 parent: 12 + - uid: 3470 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 - uid: 3485 components: - type: Transform @@ -55870,6 +55978,16 @@ entities: - type: Transform pos: -24.5,-30.5 parent: 12 + - uid: 3613 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 + - uid: 3625 + components: + - type: Transform + pos: 15.5,7.5 + parent: 12 - uid: 3719 components: - type: Transform @@ -55885,6 +56003,11 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 12 + - uid: 4185 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 12 - uid: 4258 components: - type: Transform @@ -55985,16 +56108,31 @@ entities: - type: Transform pos: 57.5,49.5 parent: 12 + - uid: 4629 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 12 - uid: 4632 components: - type: Transform pos: 56.5,46.5 parent: 12 + - uid: 4663 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 12 - uid: 4683 components: - type: Transform pos: 74.5,14.5 parent: 12 + - uid: 4684 + components: + - type: Transform + pos: 80.5,1.5 + parent: 12 - uid: 4686 components: - type: Transform @@ -56040,325 +56178,195 @@ entities: - type: Transform pos: -20.5,-30.5 parent: 12 - - uid: 4859 - components: - - type: Transform - pos: 57.5,56.5 - parent: 12 - - uid: 4933 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 12 - - uid: 4963 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 12 - - uid: 4969 - components: - - type: Transform - pos: 15.5,11.5 - parent: 12 - - uid: 4975 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 12 - - uid: 4977 - components: - - type: Transform - pos: -27.5,65.5 - parent: 12 - - uid: 4984 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - - uid: 4986 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 4987 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 12 - - uid: 4988 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 4989 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 4990 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - uid: 4991 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 4992 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 4994 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - uid: 4995 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 12 - - uid: 4998 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 4999 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 5000 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 5001 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 5002 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 5003 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 5004 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 5005 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 5006 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 5007 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 5008 + - uid: 4761 components: - type: Transform - pos: 27.5,-1.5 + pos: 79.5,-0.5 parent: 12 - - uid: 5009 + - uid: 4800 components: - type: Transform - pos: 27.5,-0.5 + pos: 40.5,0.5 parent: 12 - - uid: 5010 + - uid: 4859 components: - type: Transform - pos: 26.5,-0.5 + pos: 57.5,56.5 parent: 12 - - uid: 5011 + - uid: 4910 components: - type: Transform - pos: 25.5,-0.5 + pos: 39.5,-1.5 parent: 12 - - uid: 5012 + - uid: 4921 components: - type: Transform - pos: 24.5,-0.5 + pos: 30.5,-0.5 parent: 12 - - uid: 5013 + - uid: 4928 components: - type: Transform - pos: 23.5,-0.5 + pos: 79.5,-1.5 parent: 12 - - uid: 5014 + - uid: 4933 components: - type: Transform - pos: 22.5,-0.5 + pos: -11.5,-30.5 parent: 12 - - uid: 5016 + - uid: 4954 components: - type: Transform - pos: 20.5,-0.5 + pos: 67.5,11.5 parent: 12 - - uid: 5017 + - uid: 4963 components: - type: Transform - pos: 19.5,-0.5 + pos: -11.5,-31.5 parent: 12 - - uid: 5018 + - uid: 4969 components: - type: Transform - pos: 18.5,-0.5 + pos: 15.5,11.5 parent: 12 - - uid: 5019 + - uid: 4977 components: - type: Transform - pos: 17.5,-0.5 + pos: -27.5,65.5 parent: 12 - - uid: 5020 + - uid: 5036 components: - type: Transform - pos: 16.5,-0.5 + pos: 57.5,59.5 parent: 12 - - uid: 5021 + - uid: 5039 components: - type: Transform - pos: 15.5,-0.5 + pos: 30.5,-6.5 parent: 12 - - uid: 5022 + - uid: 5057 components: - type: Transform - pos: 15.5,-1.5 + pos: -23.5,58.5 parent: 12 - - uid: 5023 + - uid: 5060 components: - type: Transform - pos: 15.5,-2.5 + pos: 57.5,58.5 parent: 12 - - uid: 5024 + - uid: 5064 components: - type: Transform - pos: 15.5,-3.5 + pos: 57.5,-4.5 parent: 12 - - uid: 5025 + - uid: 5077 components: - type: Transform - pos: 15.5,-4.5 + pos: 30.5,-9.5 parent: 12 - - uid: 5026 + - uid: 5093 components: - type: Transform - pos: 15.5,-5.5 + pos: 40.5,4.5 parent: 12 - - uid: 5027 + - uid: 5098 components: - type: Transform - pos: 15.5,-6.5 + pos: 59.5,6.5 parent: 12 - - uid: 5029 + - uid: 5102 components: - type: Transform - pos: 15.5,-8.5 + pos: 57.5,57.5 parent: 12 - - uid: 5031 + - uid: 5108 components: - type: Transform - pos: 15.5,-10.5 + pos: 57.5,55.5 parent: 12 - - uid: 5032 + - uid: 5125 components: - type: Transform - pos: 15.5,-11.5 + pos: 82.5,12.5 parent: 12 - - uid: 5033 + - uid: 5127 components: - type: Transform - pos: 17.5,0.5 + pos: 58.5,-8.5 parent: 12 - - uid: 5034 + - uid: 5128 components: - type: Transform - pos: 25.5,0.5 + pos: 65.5,-3.5 parent: 12 - - uid: 5036 + - uid: 5132 components: - type: Transform - pos: 57.5,59.5 + pos: -1.5,1.5 parent: 12 - - uid: 5039 + - uid: 5245 components: - type: Transform - pos: 30.5,-6.5 + pos: -56.5,48.5 parent: 12 - - uid: 5057 + - uid: 5272 components: - type: Transform - pos: -23.5,58.5 + pos: 33.5,-1.5 parent: 12 - - uid: 5060 + - uid: 5290 components: - type: Transform - pos: 57.5,58.5 + pos: 3.5,-5.5 parent: 12 - - uid: 5077 + - uid: 5301 components: - type: Transform - pos: 30.5,-9.5 + pos: 14.5,4.5 parent: 12 - - uid: 5102 + - uid: 5311 components: - type: Transform - pos: 57.5,57.5 + pos: -27.5,66.5 parent: 12 - - uid: 5108 + - uid: 5316 components: - type: Transform - pos: 57.5,55.5 + pos: 77.5,-3.5 parent: 12 - - uid: 5132 + - uid: 5319 components: - type: Transform - pos: -1.5,1.5 + pos: 82.5,10.5 parent: 12 - - uid: 5220 + - uid: 5364 components: - type: Transform - pos: 8.5,-8.5 + pos: 82.5,9.5 parent: 12 - - uid: 5245 + - uid: 5370 components: - type: Transform - pos: -56.5,48.5 + pos: 82.5,8.5 parent: 12 - - uid: 5247 + - uid: 5386 components: - type: Transform - pos: 9.5,-8.5 + pos: 82.5,11.5 parent: 12 - - uid: 5290 + - uid: 5405 components: - type: Transform - pos: 3.5,-5.5 + pos: 35.5,-3.5 parent: 12 - - uid: 5311 + - uid: 5415 components: - type: Transform - pos: -27.5,66.5 + pos: -55.5,46.5 parent: 12 - - uid: 5415 + - uid: 5425 components: - type: Transform - pos: -55.5,46.5 + pos: 33.5,-4.5 parent: 12 - uid: 5431 components: @@ -56415,11 +56423,6 @@ entities: - type: Transform pos: 26.5,-18.5 parent: 12 - - uid: 5595 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 12 - uid: 5603 components: - type: Transform @@ -56495,21 +56498,11 @@ entities: - type: Transform pos: 27.5,-16.5 parent: 12 - - uid: 5618 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 12 - uid: 5619 components: - type: Transform pos: 25.5,-16.5 parent: 12 - - uid: 5620 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 12 - uid: 5621 components: - type: Transform @@ -56540,85 +56533,15 @@ entities: - type: Transform pos: 19.5,-15.5 parent: 12 - - uid: 5627 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 12 - - uid: 5628 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 12 - - uid: 5629 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 12 - - uid: 5630 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 - - uid: 5631 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 12 - - uid: 5632 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 12 - - uid: 5633 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - - uid: 5634 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 12 - - uid: 5635 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - - uid: 5636 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 5637 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 5638 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 5639 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 5640 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 5641 + - uid: 5663 components: - type: Transform - pos: 12.5,-8.5 + pos: -54.5,46.5 parent: 12 - - uid: 5663 + - uid: 5720 components: - type: Transform - pos: -54.5,46.5 + pos: 28.5,-10.5 parent: 12 - uid: 5836 components: @@ -56630,15 +56553,10 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 12 - - uid: 5885 - components: - - type: Transform - pos: 75.5,-3.5 - parent: 12 - - uid: 5888 + - uid: 5850 components: - type: Transform - pos: 74.5,-3.5 + pos: 13.5,-0.5 parent: 12 - uid: 5934 components: @@ -56665,50 +56583,15 @@ entities: - type: Transform pos: 10.5,-40.5 parent: 12 - - uid: 6012 - components: - - type: Transform - pos: -48.5,56.5 - parent: 12 - - uid: 6013 - components: - - type: Transform - pos: 20.5,0.5 - parent: 12 - - uid: 6014 - components: - - type: Transform - pos: 22.5,0.5 - parent: 12 - - uid: 6017 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 6018 - components: - - type: Transform - pos: 21.5,3.5 - parent: 12 - - uid: 6019 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - - uid: 6020 - components: - - type: Transform - pos: 20.5,3.5 - parent: 12 - - uid: 6021 + - uid: 6007 components: - type: Transform - pos: 21.5,5.5 + pos: 29.5,-7.5 parent: 12 - - uid: 6022 + - uid: 6012 components: - type: Transform - pos: 20.5,5.5 + pos: -48.5,56.5 parent: 12 - uid: 6024 components: @@ -56730,36 +56613,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 12 - - uid: 6028 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 6029 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 6030 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 6031 - components: - - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 6032 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 6033 - components: - - type: Transform - pos: 21.5,1.5 - parent: 12 - uid: 6151 components: - type: Transform @@ -56785,11 +56638,6 @@ entities: - type: Transform pos: 10.5,-47.5 parent: 12 - - uid: 6183 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 6184 components: - type: Transform @@ -56815,6 +56663,26 @@ entities: - type: Transform pos: 32.5,16.5 parent: 12 + - uid: 6354 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 6704 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 6711 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 12 + - uid: 6728 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 - uid: 6756 components: - type: Transform @@ -56840,6 +56708,36 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 7124 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 12 + - uid: 7208 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 7209 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 + - uid: 7218 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 + - uid: 7220 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 7237 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 - uid: 7276 components: - type: Transform @@ -56860,26 +56758,11 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 7354 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 7356 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - uid: 7364 components: - type: Transform pos: 30.5,15.5 parent: 12 - - uid: 7366 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - uid: 7381 components: - type: Transform @@ -56900,11 +56783,81 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 12 + - uid: 7555 + components: + - type: Transform + pos: 77.5,14.5 + parent: 12 + - uid: 7563 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 12 + - uid: 7580 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7586 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 12 + - uid: 7766 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 12 + - uid: 7767 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 12 + - uid: 7768 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 12 + - uid: 7782 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 7783 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 12 + - uid: 7786 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 7787 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 12 - uid: 7791 components: - type: Transform pos: -38.5,-52.5 parent: 12 + - uid: 7811 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 12 + - uid: 7828 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 12 + - uid: 7834 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 12 - uid: 7840 components: - type: Transform @@ -57135,6 +57088,11 @@ entities: - type: Transform pos: 59.5,-27.5 parent: 12 + - uid: 7889 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 - uid: 7890 components: - type: Transform @@ -57508,42 +57466,72 @@ entities: - uid: 8198 components: - type: Transform - pos: 74.5,11.5 + pos: 77.5,-2.5 parent: 12 - uid: 8199 components: - type: Transform - pos: 78.5,7.5 + pos: 78.5,-2.5 parent: 12 - uid: 8225 components: - type: Transform pos: -36.5,-35.5 parent: 12 - - uid: 8435 + - uid: 8344 components: - type: Transform - pos: 78.5,5.5 + pos: 68.5,12.5 parent: 12 - uid: 8436 components: - type: Transform - pos: 78.5,10.5 + pos: 69.5,11.5 parent: 12 - - uid: 8440 + - uid: 9002 components: - type: Transform - pos: 59.5,12.5 + pos: 30.5,16.5 parent: 12 - - uid: 8443 + - uid: 9004 components: - type: Transform - pos: 61.5,12.5 + pos: 54.5,9.5 parent: 12 - - uid: 9002 + - uid: 9005 components: - type: Transform - pos: 30.5,16.5 + pos: 73.5,-5.5 + parent: 12 + - uid: 9006 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 12 + - uid: 9007 + components: + - type: Transform + pos: 74.5,-5.5 + parent: 12 + - uid: 9046 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 12 + - uid: 9047 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 12 + - uid: 9052 + components: + - type: Transform + pos: 71.5,-5.5 + parent: 12 + - uid: 9069 + components: + - type: Transform + pos: 40.5,2.5 parent: 12 - uid: 9070 components: @@ -57555,11 +57543,31 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 12 + - uid: 9127 + components: + - type: Transform + pos: 30.5,0.5 + parent: 12 + - uid: 9173 + components: + - type: Transform + pos: 69.5,12.5 + parent: 12 - uid: 9253 components: - type: Transform pos: -39.5,70.5 parent: 12 + - uid: 9298 + components: + - type: Transform + pos: 67.5,12.5 + parent: 12 + - uid: 9306 + components: + - type: Transform + pos: 64.5,7.5 + parent: 12 - uid: 9333 components: - type: Transform @@ -57580,6 +57588,16 @@ entities: - type: Transform pos: -39.5,65.5 parent: 12 + - uid: 9338 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 12 + - uid: 9400 + components: + - type: Transform + pos: 20.5,5.5 + parent: 12 - uid: 9425 components: - type: Transform @@ -57588,37 +57606,37 @@ entities: - uid: 9433 components: - type: Transform - pos: 24.5,0.5 + pos: 40.5,3.5 parent: 12 - - uid: 9434 + - uid: 9444 components: - type: Transform - pos: 24.5,1.5 + pos: 61.5,-23.5 parent: 12 - - uid: 9444 + - uid: 9451 components: - type: Transform - pos: 61.5,-23.5 + pos: 82.5,2.5 parent: 12 - uid: 9455 components: - type: Transform pos: -39.5,66.5 parent: 12 - - uid: 9480 + - uid: 9459 components: - type: Transform - pos: -0.5,-12.5 + pos: 80.5,7.5 parent: 12 - - uid: 9483 + - uid: 9480 components: - type: Transform - pos: 15.5,-9.5 + pos: -0.5,-12.5 parent: 12 - uid: 9484 components: - type: Transform - pos: 15.5,-7.5 + pos: 54.5,8.5 parent: 12 - uid: 9489 components: @@ -57630,11 +57648,26 @@ entities: - type: Transform pos: -0.5,-13.5 parent: 12 + - uid: 9492 + components: + - type: Transform + pos: 30.5,1.5 + parent: 12 + - uid: 9495 + components: + - type: Transform + pos: 30.5,2.5 + parent: 12 - uid: 9497 components: - type: Transform pos: -0.5,-15.5 parent: 12 + - uid: 9499 + components: + - type: Transform + pos: 54.5,11.5 + parent: 12 - uid: 9503 components: - type: Transform @@ -57665,70 +57698,75 @@ entities: - type: Transform pos: -2.5,-13.5 parent: 12 - - uid: 9662 + - uid: 9614 components: - type: Transform - pos: 21.5,6.5 + pos: 76.5,14.5 parent: 12 - - uid: 9663 + - uid: 9629 components: - type: Transform - pos: 21.5,7.5 + pos: 30.5,3.5 parent: 12 - - uid: 9664 + - uid: 9641 components: - type: Transform - pos: 22.5,7.5 + pos: 30.5,4.5 parent: 12 - - uid: 9667 + - uid: 9671 components: - type: Transform - pos: 20.5,7.5 + pos: 37.5,-1.5 parent: 12 - - uid: 9668 + - uid: 9707 components: - type: Transform - pos: 20.5,8.5 + pos: 82.5,1.5 parent: 12 - - uid: 9669 + - uid: 9708 components: - type: Transform - pos: 19.5,8.5 + pos: 82.5,0.5 parent: 12 - - uid: 9670 + - uid: 9711 components: - type: Transform - pos: 18.5,8.5 + pos: 51.5,0.5 parent: 12 - - uid: 9707 + - uid: 9720 components: - type: Transform - pos: 16.5,6.5 + pos: 38.5,-1.5 parent: 12 - - uid: 9708 + - uid: 9820 components: - type: Transform - pos: 16.5,7.5 + pos: 40.5,-1.5 parent: 12 - - uid: 9709 + - uid: 9840 components: - type: Transform - pos: 16.5,8.5 + pos: 38.5,4.5 parent: 12 - - uid: 9710 + - uid: 9865 components: - type: Transform - pos: 16.5,9.5 + pos: 62.5,10.5 parent: 12 - - uid: 9711 + - uid: 9866 components: - type: Transform - pos: 16.5,10.5 + pos: 62.5,11.5 parent: 12 - - uid: 9853 + - uid: 9867 components: - type: Transform - pos: 21.5,0.5 + pos: 62.5,12.5 + parent: 12 + - uid: 9868 + components: + - type: Transform + pos: 64.5,12.5 parent: 12 - uid: 9876 components: @@ -57855,6 +57893,11 @@ entities: - type: Transform pos: -13.5,-47.5 parent: 12 + - uid: 9908 + components: + - type: Transform + pos: 65.5,12.5 + parent: 12 - uid: 9909 components: - type: Transform @@ -57970,6 +58013,11 @@ entities: - type: Transform pos: -0.5,-49.5 parent: 12 + - uid: 9956 + components: + - type: Transform + pos: 63.5,12.5 + parent: 12 - uid: 9965 components: - type: Transform @@ -57985,11 +58033,36 @@ entities: - type: Transform pos: -1.5,-33.5 parent: 12 + - uid: 10001 + components: + - type: Transform + pos: 39.5,4.5 + parent: 12 - uid: 10020 components: - type: Transform pos: -0.5,-16.5 parent: 12 + - uid: 10022 + components: + - type: Transform + pos: 56.5,5.5 + parent: 12 + - uid: 10023 + components: + - type: Transform + pos: 57.5,1.5 + parent: 12 + - uid: 10024 + components: + - type: Transform + pos: 58.5,5.5 + parent: 12 + - uid: 10025 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 - uid: 10074 components: - type: Transform @@ -58000,6 +58073,11 @@ entities: - type: Transform pos: -0.5,-18.5 parent: 12 + - uid: 10165 + components: + - type: Transform + pos: 57.5,7.5 + parent: 12 - uid: 10196 components: - type: Transform @@ -58020,6 +58098,11 @@ entities: - type: Transform pos: -54.5,13.5 parent: 12 + - uid: 10305 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 - uid: 10307 components: - type: Transform @@ -58030,6 +58113,11 @@ entities: - type: Transform pos: -46.5,51.5 parent: 12 + - uid: 10376 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 12 - uid: 10377 components: - type: Transform @@ -58175,6 +58263,21 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 12 + - uid: 10518 + components: + - type: Transform + pos: 82.5,-1.5 + parent: 12 + - uid: 10519 + components: + - type: Transform + pos: 82.5,-2.5 + parent: 12 + - uid: 10549 + components: + - type: Transform + pos: 82.5,-3.5 + parent: 12 - uid: 10550 components: - type: Transform @@ -58200,6 +58303,16 @@ entities: - type: Transform pos: -6.5,30.5 parent: 12 + - uid: 10812 + components: + - type: Transform + pos: 40.5,1.5 + parent: 12 + - uid: 10841 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 12 - uid: 10917 components: - type: Transform @@ -58218,23 +58331,68 @@ entities: - uid: 10940 components: - type: Transform - pos: 8.5,-7.5 + pos: 28.5,5.5 + parent: 12 + - uid: 10952 + components: + - type: Transform + pos: 27.5,5.5 parent: 12 - uid: 10956 components: - type: Transform pos: -0.5,-0.5 parent: 12 + - uid: 10983 + components: + - type: Transform + pos: 29.5,5.5 + parent: 12 + - uid: 10986 + components: + - type: Transform + pos: 30.5,5.5 + parent: 12 + - uid: 10996 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 12 - uid: 11034 components: - type: Transform pos: -47.5,15.5 parent: 12 + - uid: 11203 + components: + - type: Transform + pos: 60.5,6.5 + parent: 12 + - uid: 11331 + components: + - type: Transform + pos: 54.5,10.5 + parent: 12 - uid: 11359 components: - type: Transform pos: 32.5,15.5 parent: 12 + - uid: 11365 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 12 + - uid: 11383 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 12 + - uid: 11387 + components: + - type: Transform + pos: 21.5,4.5 + parent: 12 - uid: 11450 components: - type: Transform @@ -58285,6 +58443,16 @@ entities: - type: Transform pos: 31.5,15.5 parent: 12 + - uid: 12047 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 12 + - uid: 12056 + components: + - type: Transform + pos: 76.5,-5.5 + parent: 12 - uid: 12142 components: - type: Transform @@ -58603,12 +58771,32 @@ entities: - uid: 12916 components: - type: Transform - pos: 23.5,2.5 + pos: 81.5,-5.5 + parent: 12 + - uid: 12917 + components: + - type: Transform + pos: 82.5,-5.5 + parent: 12 + - uid: 12920 + components: + - type: Transform + pos: 77.5,-5.5 + parent: 12 + - uid: 12929 + components: + - type: Transform + pos: 78.5,-5.5 parent: 12 - uid: 12931 components: - type: Transform - pos: 59.5,-4.5 + pos: 79.5,-5.5 + parent: 12 + - uid: 13011 + components: + - type: Transform + pos: 80.5,-5.5 parent: 12 - uid: 13043 components: @@ -60180,6 +60368,11 @@ entities: - type: Transform pos: -1.5,45.5 parent: 12 + - uid: 16356 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 12 - uid: 16377 components: - type: Transform @@ -60235,20 +60428,10 @@ entities: - type: Transform pos: -10.5,23.5 parent: 12 - - uid: 16448 - components: - - type: Transform - pos: 78.5,3.5 - parent: 12 - - uid: 16449 - components: - - type: Transform - pos: 78.5,2.5 - parent: 12 - - uid: 16450 + - uid: 16436 components: - type: Transform - pos: 78.5,-0.5 + pos: 59.5,-5.5 parent: 12 - uid: 16534 components: @@ -60285,20 +60468,15 @@ entities: - type: Transform pos: 0.5,3.5 parent: 12 - - uid: 16659 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 16661 + - uid: 16660 components: - type: Transform - pos: 76.5,11.5 + pos: 65.5,-2.5 parent: 12 - - uid: 16662 + - uid: 16663 components: - type: Transform - pos: 78.5,8.5 + pos: 66.5,-2.5 parent: 12 - uid: 16798 components: @@ -60885,11 +61063,6 @@ entities: - type: Transform pos: -60.5,24.5 parent: 12 - - uid: 17552 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - uid: 17735 components: - type: Transform @@ -61115,11 +61288,6 @@ entities: - type: Transform pos: -59.5,20.5 parent: 12 - - uid: 17948 - components: - - type: Transform - pos: 76.5,2.5 - parent: 12 - uid: 17949 components: - type: Transform @@ -61175,31 +61343,6 @@ entities: - type: Transform pos: -15.5,8.5 parent: 12 - - uid: 18306 - components: - - type: Transform - pos: 78.5,6.5 - parent: 12 - - uid: 18307 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 18312 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 18313 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - - uid: 18315 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - uid: 18337 components: - type: Transform @@ -61305,16 +61448,6 @@ entities: - type: Transform pos: -28.5,-42.5 parent: 12 - - uid: 19168 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 19177 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - uid: 19235 components: - type: Transform @@ -61330,10 +61463,10 @@ entities: - type: Transform pos: -51.5,13.5 parent: 12 - - uid: 19459 + - uid: 19462 components: - type: Transform - pos: 76.5,3.5 + pos: 59.5,7.5 parent: 12 - uid: 19506 components: @@ -61390,10 +61523,10 @@ entities: - type: Transform pos: -35.5,60.5 parent: 12 - - uid: 19540 + - uid: 19538 components: - type: Transform - pos: 22.5,2.5 + pos: 26.5,-16.5 parent: 12 - uid: 19554 components: @@ -61430,11 +61563,6 @@ entities: - type: Transform pos: -47.5,13.5 parent: 12 - - uid: 19816 - components: - - type: Transform - pos: 80.5,-1.5 - parent: 12 - uid: 19817 components: - type: Transform @@ -62475,6 +62603,11 @@ entities: - type: Transform pos: -37.5,51.5 parent: 12 + - uid: 20606 + components: + - type: Transform + pos: 82.5,6.5 + parent: 12 - uid: 20767 components: - type: Transform @@ -62485,11 +62618,6 @@ entities: - type: Transform pos: -24.5,38.5 parent: 12 - - uid: 20782 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - uid: 20783 components: - type: Transform @@ -62690,6 +62818,11 @@ entities: - type: Transform pos: -6.5,32.5 parent: 12 + - uid: 21607 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 12 - uid: 21705 components: - type: Transform @@ -62710,6 +62843,11 @@ entities: - type: Transform pos: 60.5,-23.5 parent: 12 + - uid: 21871 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 21901 components: - type: Transform @@ -62720,11 +62858,6 @@ entities: - type: Transform pos: -39.5,-25.5 parent: 12 - - uid: 22006 - components: - - type: Transform - pos: 80.5,3.5 - parent: 12 - uid: 22007 components: - type: Transform @@ -62735,11 +62868,6 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 12 - - uid: 22024 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - uid: 22027 components: - type: Transform @@ -62755,15 +62883,15 @@ entities: - type: Transform pos: -32.5,70.5 parent: 12 - - uid: 22049 + - uid: 22054 components: - type: Transform - pos: 55.5,12.5 + pos: -0.5,1.5 parent: 12 - - uid: 22054 + - uid: 22073 components: - type: Transform - pos: -0.5,1.5 + pos: 36.5,-3.5 parent: 12 - uid: 22079 components: @@ -62780,31 +62908,6 @@ entities: - type: Transform pos: -41.5,52.5 parent: 12 - - uid: 22108 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - - uid: 22109 - components: - - type: Transform - pos: 78.5,0.5 - parent: 12 - - uid: 22111 - components: - - type: Transform - pos: 78.5,-1.5 - parent: 12 - - uid: 22125 - components: - - type: Transform - pos: 80.5,10.5 - parent: 12 - - uid: 22126 - components: - - type: Transform - pos: 80.5,13.5 - parent: 12 - uid: 22128 components: - type: Transform @@ -62823,12 +62926,7 @@ entities: - uid: 22135 components: - type: Transform - pos: 75.5,13.5 - parent: 12 - - uid: 22136 - components: - - type: Transform - pos: 80.5,9.5 + pos: 62.5,-3.5 parent: 12 - uid: 22137 components: @@ -62845,21 +62943,6 @@ entities: - type: Transform pos: 66.5,14.5 parent: 12 - - uid: 22140 - components: - - type: Transform - pos: 80.5,8.5 - parent: 12 - - uid: 22141 - components: - - type: Transform - pos: 80.5,12.5 - parent: 12 - - uid: 22142 - components: - - type: Transform - pos: 76.5,13.5 - parent: 12 - uid: 22143 components: - type: Transform @@ -62880,6 +62963,11 @@ entities: - type: Transform pos: 61.5,14.5 parent: 12 + - uid: 22163 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 - uid: 22188 components: - type: Transform @@ -62925,11 +63013,6 @@ entities: - type: Transform pos: 37.5,-6.5 parent: 12 - - uid: 22226 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 22227 components: - type: Transform @@ -62970,6 +63053,21 @@ entities: - type: Transform pos: -31.5,70.5 parent: 12 + - uid: 23134 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 12 + - uid: 23174 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 + - uid: 23175 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 12 - uid: 23713 components: - type: Transform @@ -62995,6 +63093,11 @@ entities: - type: Transform pos: -20.5,-29.5 parent: 12 + - uid: 24455 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 12 - uid: 24661 components: - type: Transform @@ -63005,6 +63108,11 @@ entities: - type: Transform pos: -51.5,46.5 parent: 12 + - uid: 24688 + components: + - type: Transform + pos: 81.5,14.5 + parent: 12 - uid: 24714 components: - type: Transform @@ -63580,21 +63688,11 @@ entities: - type: Transform pos: 65.5,44.5 parent: 12 - - uid: 25093 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - uid: 25099 components: - type: Transform pos: 62.5,-23.5 parent: 12 - - uid: 25104 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 12 - uid: 25107 components: - type: Transform @@ -63715,40 +63813,35 @@ entities: - type: Transform pos: 38.5,11.5 parent: 12 - - uid: 25479 - components: - - type: Transform - pos: 80.5,1.5 - parent: 12 - - uid: 25480 + - uid: 25482 components: - type: Transform - pos: 80.5,-2.5 + pos: 37.5,11.5 parent: 12 - - uid: 25481 + - uid: 25484 components: - type: Transform - pos: 80.5,-0.5 + pos: 36.5,11.5 parent: 12 - - uid: 25482 + - uid: 25537 components: - type: Transform - pos: 37.5,11.5 + pos: 58.5,-0.5 parent: 12 - - uid: 25483 + - uid: 25538 components: - type: Transform - pos: 80.5,2.5 + pos: 59.5,-3.5 parent: 12 - - uid: 25484 + - uid: 25539 components: - type: Transform - pos: 36.5,11.5 + pos: 58.5,-2.5 parent: 12 - - uid: 25539 + - uid: 25540 components: - type: Transform - pos: 12.5,-8.5 + pos: 58.5,-1.5 parent: 12 - uid: 25542 components: @@ -63770,6 +63863,11 @@ entities: - type: Transform pos: 33.5,12.5 parent: 12 + - uid: 25598 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 - uid: 25633 components: - type: Transform @@ -63920,45 +64018,35 @@ entities: - type: Transform pos: -20.5,-28.5 parent: 12 - - uid: 26067 - components: - - type: Transform - pos: 80.5,0.5 - parent: 12 - - uid: 26072 - components: - - type: Transform - pos: 80.5,5.5 - parent: 12 - uid: 26073 components: - type: Transform pos: -20.5,-27.5 parent: 12 - - uid: 26101 + - uid: 26132 components: - type: Transform - pos: 16.5,-13.5 + pos: 62.5,-5.5 parent: 12 - - uid: 26102 + - uid: 26133 components: - type: Transform - pos: 80.5,4.5 + pos: 60.5,-5.5 parent: 12 - - uid: 26103 + - uid: 26153 components: - type: Transform - pos: 80.5,6.5 + pos: 64.5,-5.5 parent: 12 - - uid: 26104 + - uid: 26155 components: - type: Transform - pos: 18.5,-13.5 + pos: 66.5,-5.5 parent: 12 - - uid: 26114 + - uid: 26162 components: - type: Transform - pos: 58.5,12.5 + pos: 79.5,2.5 parent: 12 - uid: 26208 components: @@ -63980,410 +64068,435 @@ entities: - type: Transform pos: -27.5,-27.5 parent: 12 + - uid: 26311 + components: + - type: Transform + pos: 79.5,7.5 + parent: 12 + - uid: 26382 + components: + - type: Transform + pos: 79.5,1.5 + parent: 12 - uid: 26389 components: - type: Transform - pos: 57.5,12.5 + pos: 79.5,3.5 parent: 12 - - uid: 26564 + - uid: 26422 components: - type: Transform - pos: 58.5,-7.5 + pos: 82.5,4.5 parent: 12 - - uid: 26584 + - uid: 26432 components: - type: Transform - pos: 78.5,1.5 + pos: 62.5,8.5 parent: 12 - - uid: 26585 + - uid: 26445 components: - type: Transform - pos: 56.5,14.5 + pos: 82.5,13.5 parent: 12 - - uid: 26587 + - uid: 26451 components: - type: Transform - pos: 57.5,14.5 + pos: 57.5,4.5 parent: 12 - - uid: 26621 + - uid: 26455 components: - type: Transform - pos: 58.5,-2.5 + pos: 82.5,3.5 parent: 12 - - uid: 26622 + - uid: 26462 components: - type: Transform - pos: 59.5,-3.5 + pos: 82.5,7.5 parent: 12 - - uid: 26631 + - uid: 26478 components: - type: Transform - pos: 59.5,-2.5 + pos: 17.5,7.5 parent: 12 - - uid: 26636 + - uid: 26488 components: - type: Transform - pos: 57.5,-2.5 + pos: 82.5,14.5 parent: 12 - - uid: 26640 + - uid: 26512 components: - type: Transform - pos: 76.5,0.5 + pos: 58.5,0.5 parent: 12 - - uid: 26642 + - uid: 26513 components: - type: Transform - pos: 75.5,0.5 + pos: 58.5,1.5 parent: 12 - - uid: 26650 + - uid: 26514 components: - type: Transform - pos: 80.5,-5.5 + pos: 58.5,3.5 parent: 12 - - uid: 26829 + - uid: 26515 components: - type: Transform - pos: 51.5,1.5 + pos: 58.5,2.5 parent: 12 - - uid: 26831 + - uid: 26516 components: - type: Transform - pos: 52.5,2.5 + pos: 58.5,4.5 parent: 12 - - uid: 26840 + - uid: 26529 components: - type: Transform - pos: 56.5,6.5 + pos: 79.5,6.5 parent: 12 - - uid: 26841 + - uid: 26530 components: - type: Transform - pos: 56.5,4.5 + pos: 79.5,4.5 parent: 12 - - uid: 26842 + - uid: 26531 components: - type: Transform - pos: 56.5,5.5 + pos: 79.5,5.5 parent: 12 - - uid: 26844 + - uid: 26532 components: - type: Transform - pos: 54.5,5.5 + pos: 63.5,-5.5 parent: 12 - - uid: 26845 + - uid: 26533 components: - type: Transform - pos: 54.5,4.5 + pos: 61.5,-5.5 parent: 12 - - uid: 26846 + - uid: 26534 components: - type: Transform - pos: 54.5,3.5 + pos: 65.5,-5.5 parent: 12 - - uid: 26847 + - uid: 26535 components: - type: Transform - pos: 54.5,2.5 + pos: 67.5,-5.5 parent: 12 - - uid: 26848 + - uid: 26545 components: - type: Transform - pos: 53.5,2.5 + pos: 21.5,5.5 parent: 12 - - uid: 26849 + - uid: 26559 components: - type: Transform - pos: 58.5,3.5 + pos: 79.5,-2.5 parent: 12 - - uid: 26850 + - uid: 26585 components: - type: Transform - pos: 59.5,3.5 + pos: 56.5,14.5 parent: 12 - - uid: 26851 + - uid: 26587 components: - type: Transform - pos: 60.5,3.5 + pos: 57.5,14.5 parent: 12 - - uid: 26852 + - uid: 26597 components: - type: Transform - pos: 61.5,3.5 + pos: 15.5,9.5 parent: 12 - - uid: 26853 + - uid: 26644 components: - type: Transform - pos: 62.5,3.5 + pos: 17.5,6.5 parent: 12 - - uid: 26854 + - uid: 26645 components: - type: Transform - pos: 63.5,3.5 + pos: 78.5,14.5 parent: 12 - - uid: 26855 + - uid: 26654 components: - type: Transform - pos: 64.5,3.5 + pos: 73.5,11.5 parent: 12 - - uid: 26856 + - uid: 26669 components: - type: Transform - pos: 65.5,3.5 + pos: 71.5,11.5 parent: 12 - - uid: 26857 + - uid: 26675 components: - type: Transform - pos: 66.5,3.5 + pos: 72.5,11.5 parent: 12 - - uid: 26858 + - uid: 26677 components: - type: Transform - pos: 67.5,3.5 + pos: 70.5,11.5 parent: 12 - - uid: 26859 + - uid: 26678 components: - type: Transform - pos: 68.5,3.5 + pos: 79.5,11.5 parent: 12 - - uid: 26860 + - uid: 26681 components: - type: Transform - pos: 69.5,3.5 + pos: 64.5,8.5 parent: 12 - - uid: 26861 + - uid: 26688 components: - type: Transform - pos: 71.5,3.5 + pos: 65.5,4.5 parent: 12 - - uid: 26862 + - uid: 26703 components: - type: Transform - pos: 72.5,3.5 + pos: 65.5,1.5 parent: 12 - - uid: 26863 + - uid: 26706 components: - type: Transform - pos: 73.5,3.5 + pos: 77.5,11.5 parent: 12 - - uid: 26864 + - uid: 26707 components: - type: Transform - pos: 74.5,3.5 + pos: 64.5,9.5 parent: 12 - - uid: 26865 + - uid: 26708 components: - type: Transform - pos: 70.5,3.5 + pos: 65.5,2.5 parent: 12 - - uid: 26867 + - uid: 26709 components: - type: Transform - pos: 70.5,8.5 + pos: 65.5,-0.5 parent: 12 - - uid: 26868 + - uid: 26710 components: - type: Transform - pos: 70.5,7.5 + pos: 65.5,-1.5 parent: 12 - - uid: 26869 + - uid: 26711 components: - type: Transform - pos: 70.5,6.5 + pos: 65.5,9.5 parent: 12 - - uid: 26870 + - uid: 26715 components: - type: Transform - pos: 70.5,5.5 + pos: 76.5,12.5 parent: 12 - - uid: 26871 + - uid: 26718 components: - type: Transform - pos: 71.5,5.5 + pos: 64.5,-0.5 parent: 12 - - uid: 26872 + - uid: 26720 components: - type: Transform - pos: 72.5,5.5 + pos: 65.5,7.5 parent: 12 - - uid: 26873 + - uid: 26722 components: - type: Transform - pos: 73.5,5.5 + pos: 65.5,6.5 parent: 12 - - uid: 26874 + - uid: 26723 components: - type: Transform - pos: 74.5,5.5 + pos: 65.5,5.5 parent: 12 - - uid: 26875 + - uid: 26724 components: - type: Transform - pos: 74.5,6.5 + pos: 65.5,11.5 parent: 12 - - uid: 26876 + - uid: 26730 components: - type: Transform - pos: 74.5,7.5 + pos: 65.5,3.5 parent: 12 - - uid: 26877 + - uid: 26733 components: - type: Transform - pos: 74.5,8.5 + pos: 63.5,3.5 parent: 12 - - uid: 26878 + - uid: 26734 components: - type: Transform - pos: 72.5,4.5 + pos: 60.5,4.5 parent: 12 - - uid: 26879 + - uid: 26741 components: - type: Transform - pos: 53.5,-7.5 + pos: 59.5,4.5 parent: 12 - - uid: 26884 + - uid: 26748 components: - type: Transform - pos: 24.5,-13.5 + pos: 77.5,12.5 parent: 12 - - uid: 26885 + - uid: 26749 components: - type: Transform - pos: 57.5,-7.5 + pos: 75.5,12.5 parent: 12 - - uid: 26899 + - uid: 26750 components: - type: Transform - pos: 54.5,-7.5 + pos: 75.5,11.5 parent: 12 - - uid: 26900 + - uid: 26751 components: - type: Transform - pos: 55.5,2.5 + pos: 74.5,11.5 parent: 12 - - uid: 26901 + - uid: 26752 components: - type: Transform - pos: 58.5,2.5 + pos: 79.5,9.5 parent: 12 - - uid: 26902 + - uid: 26753 components: - type: Transform - pos: 57.5,2.5 + pos: 78.5,11.5 parent: 12 - - uid: 26903 + - uid: 26755 components: - type: Transform - pos: 56.5,2.5 + pos: 79.5,10.5 parent: 12 - - uid: 26905 + - uid: 26761 components: - type: Transform - pos: 80.5,-4.5 + pos: 61.5,4.5 parent: 12 - - uid: 26908 + - uid: 26762 components: - type: Transform - pos: 74.5,-0.5 + pos: 63.5,4.5 parent: 12 - - uid: 26914 + - uid: 26779 components: - type: Transform - pos: 80.5,-3.5 + pos: 22.5,5.5 parent: 12 - - uid: 26915 + - uid: 26783 components: - type: Transform - pos: 74.5,0.5 + pos: 64.5,1.5 parent: 12 - - uid: 26916 + - uid: 26785 components: - type: Transform - pos: 74.5,1.5 + pos: 64.5,0.5 parent: 12 - - uid: 26917 + - uid: 26806 components: - type: Transform - pos: 74.5,2.5 + pos: 63.5,5.5 parent: 12 - - uid: 26918 + - uid: 26807 components: - type: Transform - pos: 79.5,-5.5 + pos: 63.5,6.5 parent: 12 - - uid: 26922 + - uid: 26808 components: - type: Transform - pos: 74.5,-1.5 + pos: 63.5,2.5 parent: 12 - - uid: 26943 + - uid: 26829 components: - type: Transform - pos: 25.5,-13.5 + pos: 51.5,1.5 parent: 12 - - uid: 26953 + - uid: 26831 components: - type: Transform - pos: 26.5,-13.5 + pos: 52.5,2.5 parent: 12 - - uid: 26962 + - uid: 26844 components: - type: Transform - pos: 78.5,-3.5 + pos: 54.5,5.5 parent: 12 - - uid: 27019 + - uid: 26845 components: - type: Transform - pos: 54.5,-0.5 + pos: 54.5,4.5 parent: 12 - - uid: 27056 + - uid: 26846 components: - type: Transform - pos: 55.5,-7.5 + pos: 54.5,3.5 parent: 12 - - uid: 27073 + - uid: 26847 components: - type: Transform - pos: 62.5,14.5 + pos: 54.5,2.5 parent: 12 - - uid: 27075 + - uid: 26848 components: - type: Transform - pos: 55.5,14.5 + pos: 53.5,2.5 parent: 12 - - uid: 27077 + - uid: 26879 components: - type: Transform - pos: 67.5,14.5 + pos: 53.5,-7.5 parent: 12 - - uid: 27078 + - uid: 26885 components: - type: Transform - pos: 68.5,14.5 + pos: 57.5,-7.5 parent: 12 - - uid: 27079 + - uid: 26899 components: - type: Transform - pos: 77.5,13.5 + pos: 54.5,-7.5 parent: 12 - - uid: 27080 + - uid: 26900 components: - type: Transform - pos: 78.5,13.5 + pos: 55.5,2.5 parent: 12 - - uid: 27081 + - uid: 27019 components: - type: Transform - pos: 80.5,7.5 + pos: 54.5,-0.5 parent: 12 - - uid: 27087 + - uid: 27056 components: - type: Transform - pos: 80.5,11.5 + pos: 55.5,-7.5 parent: 12 - - uid: 27088 + - uid: 27073 components: - type: Transform - pos: 79.5,13.5 + pos: 62.5,14.5 + parent: 12 + - uid: 27075 + components: + - type: Transform + pos: 55.5,14.5 + parent: 12 + - uid: 27077 + components: + - type: Transform + pos: 67.5,14.5 + parent: 12 + - uid: 27078 + components: + - type: Transform + pos: 68.5,14.5 parent: 12 - uid: 27113 components: @@ -64455,75 +64568,15 @@ entities: - type: Transform pos: 56.5,-7.5 parent: 12 - - uid: 27191 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - - uid: 27192 - components: - - type: Transform - pos: 59.5,5.5 - parent: 12 - - uid: 27193 - components: - - type: Transform - pos: 60.5,5.5 - parent: 12 - - uid: 27194 - components: - - type: Transform - pos: 61.5,5.5 - parent: 12 - - uid: 27195 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - uid: 27196 - components: - - type: Transform - pos: 63.5,5.5 - parent: 12 - - uid: 27197 - components: - - type: Transform - pos: 64.5,5.5 - parent: 12 - - uid: 27198 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 27199 - components: - - type: Transform - pos: 66.5,5.5 - parent: 12 - - uid: 27200 - components: - - type: Transform - pos: 67.5,5.5 - parent: 12 - - uid: 27201 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 27208 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 12 - - uid: 27236 + - uid: 27216 components: - type: Transform - pos: 78.5,-5.5 + pos: 60.5,11.5 parent: 12 - - uid: 27238 + - uid: 27237 components: - type: Transform - pos: 59.5,-5.5 + pos: 57.5,-6.5 parent: 12 - uid: 27253 components: @@ -64940,196 +64993,121 @@ entities: - type: Transform pos: -25.5,67.5 parent: 12 - - uid: 28424 - components: - - type: Transform - pos: -25.5,68.5 - parent: 12 - - uid: 28432 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 12 - - uid: 28433 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 12 - - uid: 28466 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 12 - - uid: 28467 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 12 - - uid: 28468 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 12 - - uid: 28469 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 12 - - uid: 28470 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 12 - - uid: 28471 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 12 - - uid: 28472 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 12 - - uid: 28473 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 12 - - uid: 28474 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 12 - - uid: 28783 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 12 - - uid: 28828 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28833 + - uid: 28220 components: - type: Transform - pos: 59.5,-7.5 + pos: 54.5,6.5 parent: 12 - - uid: 28834 + - uid: 28222 components: - type: Transform - pos: 60.5,-6.5 + pos: 54.5,7.5 parent: 12 - - uid: 28835 + - uid: 28223 components: - type: Transform - pos: 61.5,-6.5 + pos: 55.5,11.5 parent: 12 - - uid: 28836 + - uid: 28224 components: - type: Transform - pos: 62.5,-6.5 + pos: 56.5,11.5 parent: 12 - - uid: 28837 + - uid: 28225 components: - type: Transform - pos: 63.5,-6.5 + pos: 57.5,11.5 parent: 12 - - uid: 28838 + - uid: 28226 components: - type: Transform - pos: 64.5,-6.5 + pos: 58.5,11.5 parent: 12 - - uid: 28839 + - uid: 28227 components: - type: Transform - pos: 65.5,-6.5 + pos: 58.5,10.5 parent: 12 - - uid: 28840 + - uid: 28228 components: - type: Transform - pos: 66.5,-6.5 + pos: 58.5,9.5 parent: 12 - - uid: 28841 + - uid: 28229 components: - type: Transform - pos: 67.5,-6.5 + pos: 58.5,8.5 parent: 12 - - uid: 28842 + - uid: 28424 components: - type: Transform - pos: 68.5,-6.5 + pos: -25.5,68.5 parent: 12 - - uid: 28843 + - uid: 28432 components: - type: Transform - pos: 69.5,-6.5 + pos: 6.5,-48.5 parent: 12 - - uid: 28844 + - uid: 28433 components: - type: Transform - pos: 70.5,-6.5 + pos: 7.5,-48.5 parent: 12 - - uid: 28845 + - uid: 28466 components: - type: Transform - pos: 72.5,-6.5 + pos: -7.5,-22.5 parent: 12 - - uid: 28846 + - uid: 28467 components: - type: Transform - pos: 73.5,-6.5 + pos: -7.5,-21.5 parent: 12 - - uid: 28847 + - uid: 28468 components: - type: Transform - pos: 74.5,-6.5 + pos: -7.5,-20.5 parent: 12 - - uid: 28848 + - uid: 28469 components: - type: Transform - pos: 71.5,-6.5 + pos: -8.5,-20.5 parent: 12 - - uid: 28850 + - uid: 28470 components: - type: Transform - pos: 74.5,-5.5 + pos: -8.5,-19.5 parent: 12 - - uid: 28851 + - uid: 28471 components: - type: Transform - pos: 74.5,-4.5 + pos: -8.5,-18.5 parent: 12 - - uid: 28853 + - uid: 28472 components: - type: Transform - pos: 76.5,-4.5 + pos: -8.5,-17.5 parent: 12 - - uid: 28854 + - uid: 28473 components: - type: Transform - pos: 76.5,-3.5 + pos: -8.5,-16.5 parent: 12 - - uid: 28855 + - uid: 28474 components: - type: Transform - pos: 76.5,-2.5 + pos: -9.5,-16.5 parent: 12 - - uid: 28857 + - uid: 28783 components: - type: Transform - pos: 74.5,-2.5 + pos: 5.5,-47.5 parent: 12 - uid: 28886 components: - type: Transform pos: 50.5,0.5 parent: 12 - - uid: 28887 - components: - - type: Transform - pos: 50.5,1.5 - parent: 12 - uid: 28888 components: - type: Transform @@ -65290,26 +65268,11 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 29086 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 12 - - uid: 29087 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 12 - uid: 29088 components: - type: Transform pos: 30.5,-1.5 parent: 12 - - uid: 29089 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 12 - uid: 29096 components: - type: Transform @@ -65320,35 +65283,30 @@ entities: - type: Transform pos: 32.5,-1.5 parent: 12 - - uid: 29098 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 12 - - uid: 29102 + - uid: 29114 components: - type: Transform - pos: 33.5,-1.5 + pos: 33.5,-0.5 parent: 12 - - uid: 29103 + - uid: 29155 components: - type: Transform - pos: 33.5,-0.5 + pos: 34.5,-0.5 parent: 12 - - uid: 29107 + - uid: 29156 components: - type: Transform - pos: 33.5,0.5 + pos: 35.5,-0.5 parent: 12 - - uid: 29108 + - uid: 29157 components: - type: Transform - pos: 33.5,1.5 + pos: 36.5,-0.5 parent: 12 - - uid: 29114 + - uid: 29158 components: - type: Transform - pos: 33.5,2.5 + pos: 37.5,-0.5 parent: 12 - uid: 29206 components: @@ -66175,11 +66133,6 @@ entities: - type: Transform pos: 47.5,0.5 parent: 12 - - uid: 29992 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 12 - uid: 30246 components: - type: Transform @@ -66470,6 +66423,16 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 12 + - uid: 31904 + components: + - type: Transform + pos: 59.5,11.5 + parent: 12 + - uid: 31905 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 12 - proto: CableMVStack entities: - uid: 5999 @@ -66487,6 +66450,12 @@ entities: - type: Transform pos: 44.46338,52.56763 parent: 12 + - uid: 28716 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.49973,-6.4827724 + parent: 12 - proto: CableMVStack1 entities: - uid: 30733 @@ -66552,12 +66521,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,4.5 parent: 12 - - uid: 29722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 12 - uid: 30247 components: - type: Transform @@ -66570,6 +66533,12 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-47.5 parent: 12 + - uid: 31897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,11.5 + parent: 12 - proto: Candle entities: - uid: 13090 @@ -66732,10 +66701,15 @@ entities: - type: Transform pos: -51.5,-32.5 parent: 12 - - uid: 22148 + - uid: 5635 components: - type: Transform - pos: 55.5,-4.5 + pos: 24.5,-4.5 + parent: 12 + - uid: 26628 + components: + - type: Transform + pos: 27.5,9.5 parent: 12 - proto: Carpet entities: @@ -69356,11 +69330,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,4.5 parent: 12 - - uid: 105 - components: - - type: Transform - pos: 47.5,8.5 - parent: 12 - uid: 107 components: - type: Transform @@ -69372,11 +69341,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 12 - - uid: 153 - components: - - type: Transform - pos: 51.5,8.5 - parent: 12 - uid: 225 components: - type: Transform @@ -69389,47 +69353,17 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 12 - - uid: 249 - components: - - type: Transform - pos: 53.5,8.5 - parent: 12 - - uid: 250 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 252 - components: - - type: Transform - pos: 48.5,8.5 - parent: 12 - - uid: 254 - components: - - type: Transform - pos: 49.5,8.5 - parent: 12 - uid: 269 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-57.5 parent: 12 - - uid: 501 - components: - - type: Transform - pos: 50.5,8.5 - parent: 12 - uid: 506 components: - type: Transform pos: -29.5,-53.5 parent: 12 - - uid: 553 - components: - - type: Transform - pos: 52.5,8.5 - parent: 12 - uid: 555 components: - type: Transform @@ -69440,11 +69374,6 @@ entities: - type: Transform pos: 54.5,10.5 parent: 12 - - uid: 565 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - uid: 566 components: - type: Transform @@ -69466,11 +69395,23 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 12 + - uid: 1555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 12 - uid: 2322 components: - type: Transform pos: 40.5,11.5 parent: 12 + - uid: 2357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 12 - uid: 2487 components: - type: Transform @@ -69491,18 +69432,6 @@ entities: - type: Transform pos: -38.5,-53.5 parent: 12 - - uid: 2682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,0.5 - parent: 12 - - uid: 2684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 12 - uid: 2899 components: - type: Transform @@ -69538,6 +69467,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 12 + - uid: 2988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 - uid: 3086 components: - type: Transform @@ -69747,27 +69682,34 @@ entities: - type: Transform pos: -7.5,-39.5 parent: 12 - - uid: 4410 + - uid: 4593 components: - type: Transform - pos: 59.5,12.5 + pos: -38.5,-51.5 parent: 12 - - uid: 4561 + - uid: 4611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 parent: 12 - - uid: 4586 + - uid: 4644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-0.5 + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 parent: 12 - - uid: 4593 + - uid: 4651 components: - type: Transform - pos: -38.5,-51.5 + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 12 + - uid: 4656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 parent: 12 - uid: 4699 components: @@ -69791,6 +69733,12 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 12 + - uid: 4793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 12 - uid: 4869 components: - type: Transform @@ -69821,41 +69769,35 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,10.5 parent: 12 - - uid: 5105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-34.5 - parent: 12 - - uid: 5323 + - uid: 5023 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-21.5 + pos: 36.5,3.5 parent: 12 - - uid: 5386 + - uid: 5097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-0.5 + pos: 36.5,1.5 parent: 12 - - uid: 5419 + - uid: 5105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,10.5 + rot: 3.141592653589793 rad + pos: -8.5,-34.5 parent: 12 - - uid: 5425 + - uid: 5323 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-0.5 + pos: 6.5,-21.5 parent: 12 - - uid: 5514 + - uid: 5419 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-0.5 + pos: 9.5,10.5 parent: 12 - uid: 5556 components: @@ -69881,6 +69823,12 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,12.5 parent: 12 + - uid: 5795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 - uid: 5805 components: - type: Transform @@ -69893,6 +69841,24 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,10.5 parent: 12 + - uid: 5844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 12 + - uid: 5847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 12 + - uid: 5852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 12 - uid: 5857 components: - type: Transform @@ -69905,6 +69871,12 @@ entities: rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 12 + - uid: 6032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 12 - uid: 6096 components: - type: Transform @@ -70414,11 +70386,23 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-22.5 parent: 12 - - uid: 7285 + - uid: 7215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 12 + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 12 + - uid: 7254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 parent: 12 - uid: 7621 components: @@ -70857,10 +70841,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-9.5 parent: 12 - - uid: 9084 + - uid: 9416 components: - type: Transform - pos: 39.5,-1.5 + rot: -1.5707963267948966 rad + pos: 20.5,10.5 parent: 12 - uid: 9528 components: @@ -70931,10 +70916,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,69.5 parent: 12 - - uid: 10833 + - uid: 10818 components: - type: Transform - pos: 20.5,9.5 + rot: 1.5707963267948966 rad + pos: 37.5,3.5 parent: 12 - uid: 10835 components: @@ -70954,75 +70940,11 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-17.5 parent: 12 - - uid: 10877 - components: - - type: Transform - pos: 21.5,9.5 - parent: 12 - - uid: 10903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 12 - - uid: 10904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - uid: 10905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - uid: 10906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 12 - - uid: 10907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - uid: 10908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,4.5 - parent: 12 - - uid: 10909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 - parent: 12 - - uid: 10910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,6.5 - parent: 12 - - uid: 10911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 12 - uid: 10921 components: - type: Transform pos: 21.5,12.5 parent: 12 - - uid: 10927 - components: - - type: Transform - pos: 20.5,10.5 - parent: 12 - uid: 10929 components: - type: Transform @@ -71062,18 +70984,6 @@ entities: - type: Transform pos: 20.5,11.5 parent: 12 - - uid: 10951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - uid: 10952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - uid: 10977 components: - type: Transform @@ -71084,11 +70994,6 @@ entities: - type: Transform pos: 22.5,11.5 parent: 12 - - uid: 11053 - components: - - type: Transform - pos: 23.5,10.5 - parent: 12 - uid: 11056 components: - type: Transform @@ -71129,6 +71034,12 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,18.5 parent: 12 + - uid: 11214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-2.5 + parent: 12 - uid: 11227 components: - type: Transform @@ -71228,6 +71139,12 @@ entities: - type: Transform pos: -4.5,9.5 parent: 12 + - uid: 11375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,12.5 + parent: 12 - uid: 11385 components: - type: Transform @@ -71238,15 +71155,11 @@ entities: - type: Transform pos: 30.5,8.5 parent: 12 - - uid: 11387 - components: - - type: Transform - pos: 29.5,8.5 - parent: 12 - - uid: 11388 + - uid: 11392 components: - type: Transform - pos: 28.5,8.5 + rot: -1.5707963267948966 rad + pos: 20.5,9.5 parent: 12 - uid: 11398 components: @@ -71268,6 +71181,16 @@ entities: - type: Transform pos: 24.5,17.5 parent: 12 + - uid: 11455 + components: + - type: Transform + pos: 47.5,11.5 + parent: 12 + - uid: 11464 + components: + - type: Transform + pos: 47.5,9.5 + parent: 12 - uid: 11937 components: - type: Transform @@ -71692,31 +71615,28 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 12 - - uid: 16445 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 16493 + - uid: 16639 components: - type: Transform - pos: 58.5,12.5 + rot: 1.5707963267948966 rad + pos: 5.5,6.5 parent: 12 - - uid: 16533 + - uid: 17226 components: - type: Transform - pos: 56.5,12.5 + pos: -6.5,22.5 parent: 12 - - uid: 16639 + - uid: 17552 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,6.5 + pos: 30.5,10.5 parent: 12 - - uid: 17226 + - uid: 17607 components: - type: Transform - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: 30.5,11.5 parent: 12 - uid: 17641 components: @@ -71730,12 +71650,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 12 - - uid: 17843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 12 - uid: 17845 components: - type: Transform @@ -71977,18 +71891,6 @@ entities: - type: Transform pos: -67.5,53.5 parent: 12 - - uid: 19243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 12 - - uid: 19277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 12 - uid: 19864 components: - type: Transform @@ -72321,6 +72223,12 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-41.5 parent: 12 + - uid: 22110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 12 - uid: 22170 components: - type: Transform @@ -73102,6 +73010,12 @@ entities: - type: Transform pos: -44.5,45.5 parent: 12 + - uid: 25194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 12 - uid: 25415 components: - type: Transform @@ -73265,11 +73179,29 @@ entities: rot: 3.141592653589793 rad pos: -20.5,59.5 parent: 12 - - uid: 26550 + - uid: 26447 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,1.5 + pos: 34.5,0.5 + parent: 12 + - uid: 26778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 12 + - uid: 27240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 12 + - uid: 27241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,4.5 parent: 12 - uid: 27319 components: @@ -73748,60 +73680,47 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,18.5 parent: 12 - - uid: 28147 - components: - - type: Transform - pos: 58.5,4.5 - parent: 12 - - uid: 28148 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - - uid: 28149 - components: - - type: Transform - pos: 61.5,4.5 - parent: 12 - - uid: 28150 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - - uid: 28151 + - uid: 28230 components: - type: Transform - pos: 63.5,4.5 + rot: 1.5707963267948966 rad + pos: 54.5,8.5 parent: 12 - - uid: 28152 + - uid: 28231 components: - type: Transform - pos: 64.5,4.5 + rot: 1.5707963267948966 rad + pos: 53.5,8.5 parent: 12 - - uid: 28153 + - uid: 28232 components: - type: Transform - pos: 65.5,4.5 + rot: 1.5707963267948966 rad + pos: 52.5,8.5 parent: 12 - - uid: 28154 + - uid: 28233 components: - type: Transform - pos: 66.5,4.5 + rot: 1.5707963267948966 rad + pos: 51.5,8.5 parent: 12 - - uid: 28155 + - uid: 28238 components: - type: Transform - pos: 67.5,4.5 + rot: 1.5707963267948966 rad + pos: 50.5,8.5 parent: 12 - - uid: 28156 + - uid: 28377 components: - type: Transform - pos: 68.5,4.5 + rot: 1.5707963267948966 rad + pos: 49.5,8.5 parent: 12 - - uid: 28164 + - uid: 28378 components: - type: Transform - pos: 60.5,4.5 + rot: 1.5707963267948966 rad + pos: 47.5,8.5 parent: 12 - uid: 28392 components: @@ -73863,12 +73782,24 @@ entities: - type: Transform pos: -20.5,-17.5 parent: 12 + - uid: 28425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,8.5 + parent: 12 - uid: 28457 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 12 + - uid: 28493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,11.5 + parent: 12 - uid: 28526 components: - type: Transform @@ -74070,125 +74001,22 @@ entities: - type: Transform pos: -4.5,-21.5 parent: 12 - - uid: 28744 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 28745 - components: - - type: Transform - pos: 61.5,12.5 - parent: 12 - - uid: 28746 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 28747 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 28748 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 28749 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 28750 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 28751 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 28752 - components: - - type: Transform - pos: 69.5,12.5 - parent: 12 - - uid: 28753 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 28754 - components: - - type: Transform - pos: 71.5,12.5 - parent: 12 - - uid: 28755 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 28756 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 28757 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - - uid: 28758 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 28759 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 28760 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 28761 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 28762 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 28763 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 28764 - components: - - type: Transform - pos: 78.5,10.5 - parent: 12 - - uid: 28765 + - uid: 28922 components: - type: Transform - pos: 78.5,9.5 + pos: 47.5,10.5 parent: 12 - - uid: 28766 + - uid: 28926 components: - type: Transform - pos: 78.5,8.5 + rot: 3.141592653589793 rad + pos: 65.5,-1.5 parent: 12 - - uid: 28767 + - uid: 28927 components: - type: Transform - pos: 78.5,7.5 + rot: 3.141592653589793 rad + pos: 65.5,-0.5 parent: 12 - uid: 28932 components: @@ -74244,11 +74072,23 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 12 - - uid: 28942 + - uid: 28944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,11.5 + parent: 12 + - uid: 29000 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 34.5,4.5 + parent: 12 + - uid: 29004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,4.5 parent: 12 - uid: 29054 components: @@ -74358,6 +74198,12 @@ entities: rot: 3.141592653589793 rad pos: 6.5,23.5 parent: 12 + - uid: 29086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 12 - uid: 29090 components: - type: Transform @@ -74368,17 +74214,47 @@ entities: - type: Transform pos: 9.5,23.5 parent: 12 - - uid: 29180 + - uid: 29094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,3.5 + rot: 1.5707963267948966 rad + pos: 36.5,4.5 parent: 12 - - uid: 29302 + - uid: 29102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 12 + - uid: 29103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 12 + - uid: 29107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 12 + - uid: 29108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 12 + - uid: 29148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 12 + - uid: 29180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,3.5 parent: 12 - uid: 29418 components: @@ -74714,16 +74590,6 @@ entities: - type: Transform pos: 52.5,68.5 parent: 12 - - uid: 30454 - components: - - type: Transform - pos: 45.5,-0.5 - parent: 12 - - uid: 30457 - components: - - type: Transform - pos: 45.5,0.5 - parent: 12 - uid: 30473 components: - type: Transform @@ -75070,6 +74936,318 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-64.5 parent: 12 + - uid: 31518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,0.5 + parent: 12 + - uid: 31519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,1.5 + parent: 12 + - uid: 31742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,2.5 + parent: 12 + - uid: 31743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,3.5 + parent: 12 + - uid: 31744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,4.5 + parent: 12 + - uid: 31745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,5.5 + parent: 12 + - uid: 31747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,6.5 + parent: 12 + - uid: 31756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,7.5 + parent: 12 + - uid: 31757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,8.5 + parent: 12 + - uid: 31764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,9.5 + parent: 12 + - uid: 31838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,10.5 + parent: 12 + - uid: 31839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,11.5 + parent: 12 + - uid: 31840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,11.5 + parent: 12 + - uid: 31841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,11.5 + parent: 12 + - uid: 31842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,11.5 + parent: 12 + - uid: 31843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,11.5 + parent: 12 + - uid: 31844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,11.5 + parent: 12 + - uid: 31845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,11.5 + parent: 12 + - uid: 31846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,11.5 + parent: 12 + - uid: 31847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,11.5 + parent: 12 + - uid: 31848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,11.5 + parent: 12 + - uid: 31849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,11.5 + parent: 12 + - uid: 31850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,11.5 + parent: 12 + - uid: 31851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,11.5 + parent: 12 + - uid: 31852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,11.5 + parent: 12 + - uid: 31853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,10.5 + parent: 12 + - uid: 31854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,8.5 + parent: 12 + - uid: 31855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,7.5 + parent: 12 + - uid: 31856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,6.5 + parent: 12 + - uid: 31857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,5.5 + parent: 12 + - uid: 31858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,9.5 + parent: 12 + - uid: 31859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,4.5 + parent: 12 + - uid: 31860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,3.5 + parent: 12 + - uid: 31861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,2.5 + parent: 12 + - uid: 31862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,0.5 + parent: 12 + - uid: 31863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-0.5 + parent: 12 + - uid: 31864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-1.5 + parent: 12 + - uid: 31865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-2.5 + parent: 12 + - uid: 31866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,1.5 + parent: 12 + - uid: 31867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-2.5 + parent: 12 + - uid: 31868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-2.5 + parent: 12 + - uid: 31869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-2.5 + parent: 12 + - uid: 31870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-2.5 + parent: 12 + - uid: 31871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-2.5 + parent: 12 + - uid: 31872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-2.5 + parent: 12 + - uid: 31873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-2.5 + parent: 12 + - uid: 31874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-2.5 + parent: 12 + - uid: 31875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-2.5 + parent: 12 + - uid: 31876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-2.5 + parent: 12 + - uid: 31877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-2.5 + parent: 12 + - uid: 31878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-2.5 + parent: 12 + - uid: 31879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 12 - proto: Cautery entities: - uid: 9752 @@ -75101,12 +75279,6 @@ entities: canCollide: False - proto: Chair entities: - - uid: 408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 12 - uid: 907 components: - type: Transform @@ -75365,12 +75537,6 @@ entities: - type: Transform pos: -23.5,-2.5 parent: 12 - - uid: 10938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 12 - uid: 11124 components: - type: Transform @@ -75389,24 +75555,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,42.5 parent: 12 - - uid: 11942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 12 - uid: 12020 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,10.5 parent: 12 - - uid: 12056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 12 - uid: 12281 components: - type: Transform @@ -75509,12 +75663,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,19.5 parent: 12 - - uid: 16357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,5.5 - parent: 12 - uid: 16767 components: - type: Transform @@ -75600,12 +75748,6 @@ entities: - type: Transform pos: -42.5,62.5 parent: 12 - - uid: 19436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-9.5 - parent: 12 - uid: 20875 components: - type: Transform @@ -75990,21 +76132,6 @@ entities: - type: Transform pos: 3.5,65.5 parent: 12 - - uid: 25192 - components: - - type: Transform - pos: 12.5,0.5 - parent: 12 - - uid: 25193 - components: - - type: Transform - pos: 13.5,0.5 - parent: 12 - - uid: 25194 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - uid: 25365 components: - type: Transform @@ -76422,12 +76549,58 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,70.5 parent: 12 + - uid: 26592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 12 + - uid: 27042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,10.5 + parent: 12 - uid: 28251 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 12 + - uid: 28529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,6.5 + parent: 12 + - uid: 28673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,5.5 + parent: 12 + - uid: 28675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,5.5 + parent: 12 + - uid: 28676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 12 + - uid: 28757 + components: + - type: Transform + pos: 55.5,0.5 + parent: 12 + - uid: 28758 + components: + - type: Transform + pos: 56.5,0.5 + parent: 12 - uid: 29349 components: - type: Transform @@ -76455,6 +76628,24 @@ entities: - type: Transform pos: -38.5,60.5 parent: 12 + - uid: 29972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 12 + - uid: 29973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 12 + - uid: 29974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 12 - uid: 30342 components: - type: Transform @@ -76579,12 +76770,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,12.5 parent: 12 - - uid: 30483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 12 - uid: 30484 components: - type: Transform @@ -76764,6 +76949,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,78.5 parent: 12 + - uid: 21313 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 12 - uid: 22348 components: - type: Transform @@ -76794,6 +76984,11 @@ entities: rot: -1.5707963267948966 rad pos: 58.720875,57.492115 parent: 12 + - uid: 26552 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 12 - uid: 27066 components: - type: Transform @@ -76895,6 +77090,11 @@ entities: rot: 1.5707963267948966 rad pos: -19.470709,-20.484278 parent: 12 + - uid: 29971 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 12 - uid: 31486 components: - type: Transform @@ -77334,21 +77534,11 @@ entities: parent: 12 - proto: ClosetEmergencyFilledRandom entities: - - uid: 149 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - uid: 1276 components: - type: Transform pos: 35.5,-43.5 parent: 12 - - uid: 3078 - components: - - type: Transform - pos: 39.5,3.5 - parent: 12 - uid: 4140 components: - type: Transform @@ -77524,30 +77714,40 @@ entities: - type: Transform pos: -45.5,31.5 parent: 12 - - uid: 27228 + - uid: 26682 components: - type: Transform - pos: -29.5,60.5 + pos: 14.5,7.5 parent: 12 - - uid: 27311 + - uid: 26693 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 27016 components: - type: Transform - pos: 9.5,-7.5 + pos: 7.5,-4.5 + parent: 12 + - uid: 27228 + components: + - type: Transform + pos: -29.5,60.5 parent: 12 - uid: 27862 components: - type: Transform pos: 27.5,16.5 parent: 12 - - uid: 28533 + - uid: 28751 components: - type: Transform - pos: 15.5,7.5 + pos: 62.5,-2.5 parent: 12 - - uid: 28534 + - uid: 28840 components: - type: Transform - pos: 13.5,-4.5 + pos: 29.5,9.5 parent: 12 - uid: 29230 components: @@ -77587,13 +77787,13 @@ entities: - type: Transform pos: -61.5,-18.5 parent: 12 - - uid: 31764 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 5121 components: - type: Transform - pos: 53.5,-1.5 + pos: 61.5,9.5 parent: 12 -- proto: ClosetEmergencyN2FilledRandom - entities: - uid: 6198 components: - type: Transform @@ -77661,11 +77861,6 @@ entities: parent: 12 - proto: ClosetFireFilled entities: - - uid: 253 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - uid: 913 components: - type: Transform @@ -77816,16 +78011,6 @@ entities: - type: Transform pos: -45.5,30.5 parent: 12 - - uid: 27190 - components: - - type: Transform - pos: 55.5,-1.5 - parent: 12 - - uid: 27304 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - uid: 27833 components: - type: Transform @@ -77953,43 +78138,6 @@ entities: parent: 12 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 102 - components: - - type: Transform - pos: 74.5,12.5 - parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6287 - - 6261 - - 6260 - - 6259 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 894 components: - type: Transform @@ -78059,11 +78207,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 8293 - components: - - type: Transform - pos: 39.5,-0.5 - parent: 12 - uid: 8982 components: - type: Transform @@ -78074,6 +78217,11 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 12 + - uid: 11472 + components: + - type: Transform + pos: 55.5,12.5 + parent: 12 - uid: 12021 components: - type: Transform @@ -78104,6 +78252,11 @@ entities: - type: Transform pos: -7.5,15.5 parent: 12 + - uid: 17584 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 12 - uid: 18105 components: - type: Transform @@ -78164,11 +78317,6 @@ entities: - type: Transform pos: 0.5,54.5 parent: 12 - - uid: 24655 - components: - - type: Transform - pos: 30.5,10.5 - parent: 12 - uid: 24994 components: - type: Transform @@ -78240,10 +78388,10 @@ entities: - type: Transform pos: -7.5,3.5 parent: 12 - - uid: 28946 + - uid: 28839 components: - type: Transform - pos: 5.5,-16.5 + pos: 29.5,8.5 parent: 12 - uid: 29165 components: @@ -78277,20 +78425,15 @@ entities: parent: 12 - proto: ClosetRadiationSuitFilled entities: - - uid: 1354 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 12 - uid: 2315 components: - type: Transform pos: -33.5,-39.5 parent: 12 - - uid: 4874 + - uid: 6259 components: - type: Transform - pos: 10.5,-11.5 + pos: 57.5,2.5 parent: 12 - uid: 6771 components: @@ -78302,11 +78445,6 @@ entities: - type: Transform pos: 14.5,-14.5 parent: 12 - - uid: 10981 - components: - - type: Transform - pos: 19.5,7.5 - parent: 12 - uid: 17199 components: - type: Transform @@ -78322,6 +78460,26 @@ entities: - type: Transform pos: -47.5,-38.5 parent: 12 + - uid: 27218 + components: + - type: Transform + pos: 59.5,8.5 + parent: 12 + - uid: 28692 + components: + - type: Transform + pos: 52.5,0.5 + parent: 12 + - uid: 28693 + components: + - type: Transform + pos: 52.5,1.5 + parent: 12 + - uid: 28694 + components: + - type: Transform + pos: 52.5,2.5 + parent: 12 - proto: ClosetSteelBase entities: - uid: 16506 @@ -78368,23 +78526,11 @@ entities: parent: 12 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 6741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 12 - uid: 8883 components: - type: Transform pos: 39.5,-20.5 parent: 12 - - uid: 9641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 12 - uid: 21377 components: - type: Transform @@ -78401,13 +78547,14 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,40.5 parent: 12 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 9461 + - uid: 28494 components: - type: Transform - pos: 14.5,6.5 + rot: 3.141592653589793 rad + pos: 45.5,-2.5 parent: 12 +- proto: ClosetWallFireFilledRandom + entities: - uid: 21378 components: - type: Transform @@ -78429,6 +78576,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,39.5 parent: 12 + - uid: 28744 + components: + - type: Transform + pos: 20.5,8.5 + parent: 12 - proto: ClothingBackpackSatchelGenetics entities: - uid: 2696 @@ -78487,6 +78639,14 @@ entities: - type: Transform pos: 11.527891,-16.45502 parent: 12 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 28711 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 57.532898,-6.47126 + parent: 12 - proto: ClothingEyesBlindfold entities: - uid: 17606 @@ -78655,7 +78815,7 @@ entities: - uid: 23561 components: - type: Transform - pos: 39.49916,53.57387 + pos: 42.446712,53.64907 parent: 12 - uid: 28501 components: @@ -78887,14 +79047,6 @@ entities: - type: Transform pos: -21.667349,-7.343448 parent: 12 -- proto: ClothingHeadHelmetEVA - entities: - - uid: 2021 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingHeadHelmetRiot entities: - uid: 20866 @@ -78959,14 +79111,6 @@ entities: - type: Transform pos: 0.50635767,25.52865 parent: 12 -- proto: ClothingMaskBreath - entities: - - uid: 6220 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingMaskBreathMedical entities: - uid: 2924 @@ -79006,8 +79150,8 @@ entities: - uid: 27188 components: - type: Transform - rot: -6.283185307179586 rad - pos: 55.727516,2.346661 + rot: -25.132741228718352 rad + pos: 17.825888,-13.641907 parent: 12 - uid: 29095 components: @@ -79271,14 +79415,6 @@ entities: - type: Transform pos: -11.945792,60.527626 parent: 12 -- proto: ClothingOuterHardsuitEVA - entities: - - uid: 2020 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingOuterHoodieBlack entities: - uid: 25982 @@ -79357,6 +79493,18 @@ entities: - type: Transform pos: -7.747349,-54.783165 parent: 12 +- proto: ClothingOuterVestHazard + entities: + - uid: 28761 + components: + - type: Transform + pos: 53.333237,-3.3827062 + parent: 12 + - uid: 28762 + components: + - type: Transform + pos: 53.708237,-3.6222892 + parent: 12 - proto: ClothingOuterWinterChef entities: - uid: 24081 @@ -79466,12 +79614,19 @@ entities: - type: Transform pos: -2.539668,30.440784 parent: 12 +- proto: ClothingUnderSocksCoder + entities: + - uid: 4527 + components: + - type: Transform + pos: -0.50228786,-20.693401 + parent: 12 - proto: ClothingUniformColorRainbow entities: - uid: 29984 components: - type: Transform - pos: 47.602154,-2.6595716 + pos: 47.687027,-3.4254918 parent: 12 - proto: ClothingUniformJumpskirtBlueElegantDress entities: @@ -79576,17 +79731,17 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-38.5 parent: 12 - - uid: 12321 + - uid: 9862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,6.5 + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 parent: 12 - - uid: 12322 + - uid: 12321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,10.5 + pos: 33.5,6.5 parent: 12 - uid: 12327 components: @@ -79988,6 +80143,19 @@ entities: - type: Transform pos: -51.5,30.5 parent: 12 +- proto: CommandmentCircuitBoard + entities: + - uid: 28530 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.5673757,-15.712456 + parent: 12 + - uid: 28856 + components: + - type: Transform + pos: -0.5296287,-15.396446 + parent: 12 - proto: CommsComputerCircuitboard entities: - uid: 31351 @@ -79997,12 +80165,6 @@ entities: parent: 12 - proto: ComputerAlert entities: - - uid: 3470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,1.5 - parent: 12 - uid: 3911 components: - type: Transform @@ -80020,6 +80182,12 @@ entities: - type: Transform pos: 17.5,-15.5 parent: 12 + - uid: 29966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 12 - proto: ComputerAnalysisConsole entities: - uid: 4892 @@ -80145,12 +80313,6 @@ entities: - type: Transform pos: -12.5,-37.5 parent: 12 - - uid: 8740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 12 - uid: 17580 components: - type: Transform @@ -80296,16 +80458,16 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,27.5 parent: 12 - - uid: 4732 + - uid: 4387 components: - type: Transform - pos: 18.5,-15.5 + rot: 3.141592653589793 rad + pos: 53.5,-6.5 parent: 12 - - uid: 4911 + - uid: 4732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 + pos: 18.5,-15.5 parent: 12 - uid: 5474 components: @@ -80449,6 +80611,12 @@ entities: - type: Transform pos: 34.5,67.5 parent: 12 + - uid: 15446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-6.5 + parent: 12 - uid: 18157 components: - type: Transform @@ -80500,12 +80668,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,36.5 parent: 12 - - uid: 8885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 12 - uid: 11470 components: - type: Transform @@ -80631,29 +80793,43 @@ entities: parent: 12 - proto: ContainmentFieldGenerator entities: - - uid: 4741 + - uid: 4631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-10.5 + pos: 68.5,8.5 parent: 12 - - uid: 4960 + - uid: 4633 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-2.5 + pos: 76.5,8.5 parent: 12 - - uid: 4961 + - uid: 4716 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-2.5 + pos: 76.5,0.5 parent: 12 - - uid: 4962 + - uid: 11469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-10.5 + pos: 68.5,0.5 + parent: 12 +- proto: ContainmentFieldGeneratorFlatpack + entities: + - uid: 9978 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 62.353416,-0.30162263 + parent: 12 + - uid: 10284 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 62.62883,-0.55167043 parent: 12 - proto: ConveyorBelt entities: @@ -81194,6 +81370,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: CorporateCircuitBoard + entities: + - uid: 28851 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.5230923,-11.528757 + parent: 12 - proto: CrateAirlockKit entities: - uid: 1042 @@ -81416,29 +81600,17 @@ entities: ent: null - proto: CrateEngineeringAMEJar entities: - - uid: 3205 + - uid: 29395 components: - type: Transform - pos: 35.5,-2.5 + pos: 33.5,4.5 parent: 12 - proto: CrateEngineeringAMEShielding entities: - - uid: 28391 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 12 -- proto: CrateEngineeringCableBulk - entities: - - uid: 5028 - components: - - type: Transform - pos: 27.5,2.5 - parent: 12 - - uid: 25201 + - uid: 29355 components: - type: Transform - pos: 26.5,-15.5 + pos: 33.5,0.5 parent: 12 - proto: CrateEngineeringElectricalSupplies entities: @@ -81735,10 +81907,10 @@ entities: parent: 12 - proto: CrateRadiation entities: - - uid: 9338 + - uid: 11553 components: - type: Transform - pos: 26.5,2.5 + pos: 57.5,12.5 parent: 12 - proto: CrateSecure entities: @@ -81907,7 +82079,7 @@ entities: - uid: 29985 components: - type: Transform - pos: 47.341232,-2.7166476 + pos: 47.436977,-3.6918468 parent: 12 - proto: Crematorium entities: @@ -81918,10 +82090,10 @@ entities: parent: 12 - proto: CrewMonitoringServer entities: - - uid: 7281 + - uid: 26979 components: - type: Transform - pos: -0.5,-11.5 + pos: -41.5,-20.5 parent: 12 - type: SingletonDeviceNetServer active: False @@ -82230,10 +82402,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAME entities: - - uid: 5110 + - uid: 5966 components: - type: Transform - pos: 35.5,-0.5 + pos: 36.5,2.5 parent: 12 - proto: DefaultStationBeaconAnomalyGenerator entities: @@ -82265,10 +82437,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 26883 + - uid: 7235 components: - type: Transform - pos: 64.5,-1.5 + pos: 15.5,-4.5 parent: 12 - proto: DefaultStationBeaconBar entities: @@ -82606,10 +82778,10 @@ entities: parent: 12 - proto: DefaultStationBeaconSingularity entities: - - uid: 21607 + - uid: 26754 components: - type: Transform - pos: 20.5,5.5 + pos: 59.5,4.5 parent: 12 - proto: DefaultStationBeaconSolars entities: @@ -82833,12 +83005,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 12 - - uid: 2252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 12 - uid: 3620 components: - type: Transform @@ -82956,6 +83122,11 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 12 + - uid: 4661 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 - uid: 4674 components: - type: Transform @@ -82990,6 +83161,17 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-17.5 parent: 12 + - uid: 5682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 12 + - uid: 5892 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 12 - uid: 6161 components: - type: Transform @@ -83048,11 +83230,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-28.5 parent: 12 - - uid: 8420 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 12 - uid: 8421 components: - type: Transform @@ -83086,61 +83263,22 @@ entities: - type: Transform pos: 49.5,-17.5 parent: 12 - - uid: 8979 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - - uid: 9000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - uid: 9001 components: - type: Transform pos: 30.5,17.5 parent: 12 - - uid: 9053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-24.5 - parent: 12 - - uid: 9054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 12 - - uid: 9069 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 12 - uid: 9071 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,21.5 parent: 12 - - uid: 9300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 12 - - uid: 9426 + - uid: 9084 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 12 - - uid: 9427 - components: - - type: Transform - pos: 20.5,-12.5 + pos: 40.5,-0.5 parent: 12 - uid: 9798 components: @@ -83170,11 +83308,11 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-16.5 parent: 12 - - uid: 9840 + - uid: 10201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 parent: 12 - uid: 10320 components: @@ -83205,35 +83343,12 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 12 - - uid: 10867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,10.5 - parent: 12 - - uid: 10916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 12 - uid: 10924 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,11.5 parent: 12 - - uid: 11031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 12 - - uid: 11035 - components: - - type: Transform - pos: 28.5,10.5 - parent: 12 - uid: 11036 components: - type: Transform @@ -83246,17 +83361,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 12 - - uid: 11050 - components: - - type: Transform - pos: 20.5,10.5 - parent: 12 - - uid: 11051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 12 - uid: 11052 components: - type: Transform @@ -83268,16 +83372,15 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,11.5 parent: 12 - - uid: 11383 + - uid: 11384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,8.5 + pos: 31.5,8.5 parent: 12 - - uid: 11384 + - uid: 11446 components: - type: Transform - pos: 31.5,8.5 + pos: 20.5,10.5 parent: 12 - uid: 11965 components: @@ -83526,6 +83629,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 12 + - uid: 18671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 12 - uid: 19249 components: - type: Transform @@ -83544,6 +83653,12 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-11.5 parent: 12 + - uid: 19545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,9.5 + parent: 12 - uid: 20076 components: - type: Transform @@ -83681,6 +83796,24 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-0.5 parent: 12 + - uid: 21324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,51.5 + parent: 12 + - uid: 22104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 12 + - uid: 22125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,8.5 + parent: 12 - uid: 22441 components: - type: Transform @@ -83826,18 +83959,80 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 12 + - uid: 25464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 12 + - uid: 25470 + components: + - type: Transform + pos: 31.5,0.5 + parent: 12 - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-47.5 parent: 12 + - uid: 26511 + components: + - type: Transform + pos: 23.5,11.5 + parent: 12 + - uid: 26729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 12 + - uid: 26791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 12 + - uid: 26802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 12 + - uid: 26811 + components: + - type: Transform + pos: 30.5,10.5 + parent: 12 + - uid: 26815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 12 + - uid: 27308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 12 - uid: 27317 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-22.5 parent: 12 + - uid: 27387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 12 + - uid: 27604 + components: + - type: Transform + pos: 54.5,8.5 + parent: 12 - uid: 27984 components: - type: Transform @@ -83904,12 +84099,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,9.5 parent: 12 - - uid: 28055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 12 - uid: 28056 components: - type: Transform @@ -83980,6 +84169,23 @@ entities: - type: Transform pos: 60.5,45.5 parent: 12 + - uid: 28148 + components: + - type: Transform + pos: 38.5,12.5 + parent: 12 + - uid: 28149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,8.5 + parent: 12 + - uid: 28150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,12.5 + parent: 12 - uid: 28214 components: - type: Transform @@ -83992,6 +84198,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-26.5 parent: 12 + - uid: 28998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-1.5 + parent: 12 - uid: 29031 components: - type: Transform @@ -84146,16 +84358,16 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-27.5 parent: 12 - - uid: 5377 + - uid: 5054 components: - type: Transform pos: 23.5,-17.5 parent: 12 - - uid: 8344 + - uid: 5810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 + rot: 1.5707963267948966 rad + pos: 33.5,23.5 parent: 12 - uid: 8392 components: @@ -84169,23 +84381,12 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-35.5 parent: 12 - - uid: 9046 - components: - - type: Transform - pos: 43.5,-18.5 - parent: 12 - uid: 10925 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,12.5 parent: 12 - - uid: 10986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,10.5 - parent: 12 - uid: 10994 components: - type: Transform @@ -84497,11 +84698,11 @@ entities: parent: 12 - proto: DisposalPipe entities: - - uid: 23 + - uid: 404 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,8.5 + pos: 17.5,-12.5 parent: 12 - uid: 637 components: @@ -84884,11 +85085,11 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 12 - - uid: 2130 + - uid: 2166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 parent: 12 - uid: 2185 components: @@ -84902,6 +85103,12 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,45.5 parent: 12 + - uid: 2876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,3.5 + parent: 12 - uid: 3115 components: - type: Transform @@ -85314,12 +85521,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-25.5 parent: 12 - - uid: 3980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 12 - uid: 3989 components: - type: Transform @@ -85511,6 +85712,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-40.5 parent: 12 + - uid: 5072 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 - uid: 5240 components: - type: Transform @@ -85523,23 +85729,107 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-14.5 parent: 12 + - uid: 5409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 12 - uid: 5412 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 12 + - uid: 5514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 12 - uid: 5551 components: - type: Transform pos: 7.5,-48.5 parent: 12 + - uid: 5800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 12 + - uid: 5921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 12 + - uid: 5922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-14.5 + parent: 12 + - uid: 5923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-15.5 + parent: 12 + - uid: 5959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-17.5 + parent: 12 + - uid: 5964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-20.5 + parent: 12 + - uid: 5965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 12 + - uid: 5991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-24.5 + parent: 12 + - uid: 5995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-22.5 + parent: 12 + - uid: 6021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 12 - uid: 6206 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-51.5 parent: 12 + - uid: 6719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 12 + - uid: 6765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 12 - uid: 6843 components: - type: Transform @@ -85666,11 +85956,17 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-28.5 parent: 12 - - uid: 7086 + - uid: 7219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 12 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 parent: 12 - uid: 7305 components: @@ -86199,90 +86495,12 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 12 - - uid: 8977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 12 - uid: 9041 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-4.5 parent: 12 - - uid: 9047 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 12 - - uid: 9048 - components: - - type: Transform - pos: 43.5,-20.5 - parent: 12 - - uid: 9049 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 12 - - uid: 9050 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 12 - - uid: 9051 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 12 - - uid: 9052 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 12 - - uid: 9055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-25.5 - parent: 12 - - uid: 9056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 12 - - uid: 9057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-16.5 - parent: 12 - - uid: 9058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-15.5 - parent: 12 - - uid: 9059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-14.5 - parent: 12 - - uid: 9060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-13.5 - parent: 12 - - uid: 9061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-12.5 - parent: 12 - uid: 9062 components: - type: Transform @@ -86469,133 +86687,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-27.5 parent: 12 - - uid: 9399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 12 - - uid: 9400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 12 - - uid: 9401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 12 - - uid: 9402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 12 - - uid: 9403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - - uid: 9404 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 9405 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 9406 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - - uid: 9407 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 9408 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 9409 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 9410 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 9411 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 9412 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 9413 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 9414 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 9415 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 9416 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 9417 - components: - - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 9418 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 9419 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 9420 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 9421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 12 - - uid: 9422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 12 - uid: 9552 components: - type: Transform @@ -86672,24 +86763,6 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 12 - - uid: 9785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 12 - - uid: 9786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 12 - - uid: 9787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 12 - uid: 9789 components: - type: Transform @@ -86917,12 +86990,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 12 - - uid: 10701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 12 - uid: 10871 components: - type: Transform @@ -86935,12 +87002,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,10.5 parent: 12 - - uid: 10873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 12 - uid: 10874 components: - type: Transform @@ -86958,12 +87019,6 @@ entities: - type: Transform pos: 22.5,11.5 parent: 12 - - uid: 10923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,9.5 - parent: 12 - uid: 10926 components: - type: Transform @@ -87114,12 +87169,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,10.5 parent: 12 - - uid: 10996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - uid: 10998 components: - type: Transform @@ -87144,81 +87193,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,5.5 parent: 12 - - uid: 11005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - uid: 11006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 12 - - uid: 11007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - uid: 11008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - uid: 11009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 12 - - uid: 11010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 12 - - uid: 11011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,4.5 - parent: 12 - - uid: 11012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,4.5 - parent: 12 - - uid: 11019 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - - uid: 11020 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 11021 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - uid: 11042 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-16.5 parent: 12 - - uid: 11048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 12 - uid: 11123 components: - type: Transform @@ -87547,12 +87527,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,23.5 parent: 12 - - uid: 13009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,23.5 - parent: 12 - uid: 13188 components: - type: Transform @@ -88758,6 +88732,24 @@ entities: rot: 3.141592653589793 rad pos: -47.5,29.5 parent: 12 + - uid: 17844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-27.5 + parent: 12 + - uid: 18304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-25.5 + parent: 12 + - uid: 18306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-19.5 + parent: 12 - uid: 18563 components: - type: Transform @@ -88782,6 +88774,18 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-40.5 parent: 12 + - uid: 18756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,10.5 + parent: 12 + - uid: 18758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 12 - uid: 18894 components: - type: Transform @@ -88794,12 +88798,54 @@ entities: rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 12 + - uid: 19177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 12 + - uid: 19189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-18.5 + parent: 12 + - uid: 19195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 12 - uid: 19238 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-42.5 parent: 12 + - uid: 19243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-16.5 + parent: 12 + - uid: 19245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-21.5 + parent: 12 + - uid: 19277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-23.5 + parent: 12 + - uid: 19539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 12 - uid: 19843 components: - type: Transform @@ -89601,6 +89647,29 @@ entities: - type: Transform pos: -25.5,27.5 parent: 12 + - uid: 22107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 12 + - uid: 22108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 12 + - uid: 22121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 12 + - uid: 22122 + components: + - type: Transform + pos: 30.5,9.5 + parent: 12 - uid: 22275 components: - type: Transform @@ -90716,6 +90785,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,15.5 parent: 12 + - uid: 25331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 12 - uid: 25371 components: - type: Transform @@ -90728,18 +90803,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-41.5 parent: 12 - - uid: 25567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 12 - - uid: 25682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 12 - uid: 25992 components: - type: Transform @@ -90813,11 +90876,152 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 12 + - uid: 26801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 12 + - uid: 27305 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 12 + - uid: 27306 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 12 + - uid: 27307 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 12 - uid: 27318 components: - type: Transform pos: 6.5,-20.5 parent: 12 + - uid: 27388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,7.5 + parent: 12 + - uid: 27830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,8.5 + parent: 12 + - uid: 27835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,8.5 + parent: 12 + - uid: 27836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,8.5 + parent: 12 + - uid: 27891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 12 + - uid: 27892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 12 + - uid: 27893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,8.5 + parent: 12 + - uid: 27894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 12 + - uid: 27895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,8.5 + parent: 12 + - uid: 27896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,8.5 + parent: 12 + - uid: 27897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 12 + - uid: 27898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 12 + - uid: 27899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 12 + - uid: 27900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 12 + - uid: 27902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 12 + - uid: 27903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 12 + - uid: 27904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 12 + - uid: 27905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,10.5 + parent: 12 + - uid: 27906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,11.5 + parent: 12 + - uid: 27907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 12 - uid: 27953 components: - type: Transform @@ -91224,6 +91428,12 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 12 + - uid: 28055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,12.5 + parent: 12 - uid: 28059 components: - type: Transform @@ -91640,11 +91850,83 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,50.5 parent: 12 + - uid: 28139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,12.5 + parent: 12 - uid: 28145 components: - type: Transform pos: 69.5,49.5 parent: 12 + - uid: 28147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 12 + - uid: 28151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,13.5 + parent: 12 + - uid: 28152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 12 + - uid: 28153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 12 + - uid: 28154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 12 + - uid: 28155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 12 + - uid: 28156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 12 + - uid: 28164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 12 + - uid: 28217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,14.5 + parent: 12 + - uid: 28218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 12 + - uid: 28219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 12 - uid: 28443 components: - type: Transform @@ -91705,6 +91987,12 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-26.5 parent: 12 + - uid: 28847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,52.5 + parent: 12 - uid: 28896 components: - type: Transform @@ -91715,6 +92003,30 @@ entities: - type: Transform pos: 6.5,-18.5 parent: 12 + - uid: 28945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 12 + - uid: 28946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 12 + - uid: 28948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 12 + - uid: 28999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 12 - uid: 29016 components: - type: Transform @@ -92254,11 +92566,6 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 - - uid: 2255 - components: - - type: Transform - pos: 18.5,7.5 - parent: 12 - uid: 3387 components: - type: Transform @@ -92513,8 +92820,7 @@ entities: - uid: 15398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,51.5 + pos: 39.5,53.5 parent: 12 - uid: 15631 components: @@ -92682,6 +92988,18 @@ entities: - type: Transform pos: 53.5,49.5 parent: 12 + - uid: 25567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 12 + - uid: 27386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,6.5 + parent: 12 - uid: 27512 components: - type: Transform @@ -92784,11 +93102,6 @@ entities: - type: Transform pos: -28.5,38.5 parent: 12 - - uid: 2186 - components: - - type: Transform - pos: 18.5,7.5 - parent: 12 - uid: 2938 components: - type: Transform @@ -92859,6 +93172,11 @@ entities: - type: Transform pos: 18.5,-36.5 parent: 12 + - uid: 7221 + components: + - type: Transform + pos: 55.5,6.5 + parent: 12 - uid: 7794 components: - type: Transform @@ -92894,6 +93212,11 @@ entities: - type: Transform pos: 54.5,-29.5 parent: 12 + - uid: 10017 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 12 - uid: 11239 components: - type: Transform @@ -92961,20 +93284,6 @@ entities: - type: Transform pos: 31.5,53.5 parent: 12 - - uid: 15130 - components: - - type: MetaData - name: disposal unit to security - - type: Transform - pos: 25.5,55.5 - parent: 12 - - uid: 15131 - components: - - type: MetaData - name: disposal unit to freezer - - type: Transform - pos: 25.5,56.5 - parent: 12 - uid: 16709 components: - type: Transform @@ -93065,13 +93374,6 @@ entities: - type: Transform pos: 13.5,59.5 parent: 12 - - uid: 23589 - components: - - type: MetaData - name: disposal unit to freezer - - type: Transform - pos: 67.5,50.5 - parent: 12 - uid: 23686 components: - type: Transform @@ -93104,13 +93406,6 @@ entities: - type: Transform pos: -38.5,50.5 parent: 12 - - uid: 28139 - components: - - type: MetaData - name: disposal unit to chemistry - - type: Transform - pos: 66.5,50.5 - parent: 12 - uid: 29391 components: - type: Transform @@ -93161,6 +93456,12 @@ entities: - type: Transform pos: 35.5,54.5 parent: 12 + - uid: 18312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,10.5 + parent: 12 - uid: 22801 components: - type: Transform @@ -93172,6 +93473,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 12 + - uid: 24006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-27.5 + parent: 12 - proto: DogBed entities: - uid: 18310 @@ -93313,11 +93620,6 @@ entities: parent: 12 - proto: DrinkBeerBottleFull entities: - - uid: 16520 - components: - - type: Transform - pos: 8.0309305,6.6569676 - parent: 12 - uid: 21456 components: - type: Transform @@ -93330,6 +93632,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 28683 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 52.62303,6.1613517 + parent: 12 + - uid: 28684 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 52.37303,6.5919075 + parent: 12 - proto: DrinkBeerCan entities: - uid: 13717 @@ -93817,6 +94131,14 @@ entities: - type: Transform pos: 77.61463,48.901142 parent: 12 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 28852 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.3420668,-15.542583 + parent: 12 - proto: ElectricGuitarInstrument entities: - uid: 13481 @@ -93847,10 +94169,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-47.5 parent: 12 - - uid: 899 + - uid: 1363 components: - type: Transform - pos: 14.5,5.5 + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 parent: 12 - uid: 3900 components: @@ -93864,17 +94187,11 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-7.5 parent: 12 - - uid: 5642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 12 - - uid: 6711 + - uid: 5982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,0.5 + pos: 33.5,2.5 parent: 12 - uid: 8887 components: @@ -93918,18 +94235,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-47.5 parent: 12 - - uid: 10518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 12 - - uid: 10519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 12 - uid: 10520 components: - type: Transform @@ -94070,11 +94375,6 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 12 - - uid: 10549 - components: - - type: Transform - pos: 20.5,6.5 - parent: 12 - uid: 10552 components: - type: Transform @@ -94155,6 +94455,12 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,24.5 parent: 12 + - uid: 12999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 12 - uid: 13527 components: - type: Transform @@ -94249,12 +94555,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-0.5 parent: 12 - - uid: 17773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 12 - uid: 17797 components: - type: Transform @@ -94634,6 +94934,75 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,50.5 parent: 12 + - uid: 29975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 12 + - uid: 29976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 12 + - uid: 29977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 + - uid: 29992 + components: + - type: Transform + pos: 18.5,5.5 + parent: 12 + - uid: 30434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 12 + - uid: 30436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 12 + - uid: 30454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-1.5 + parent: 12 + - uid: 30457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-6.5 + parent: 12 + - uid: 30468 + components: + - type: Transform + pos: 56.5,0.5 + parent: 12 + - uid: 30483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,4.5 + parent: 12 + - uid: 30489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,10.5 + parent: 12 + - uid: 30491 + components: + - type: Transform + pos: 72.5,12.5 + parent: 12 - uid: 30988 components: - type: Transform @@ -94658,12 +95027,41 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 12 + - uid: 31511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,4.5 + parent: 12 + - uid: 31512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-3.5 + parent: 12 + - uid: 31513 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 + - uid: 31514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-16.5 + parent: 12 - uid: 31568 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 12 + - uid: 31890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 12 - proto: EmergencyNitrogenTankFilled entities: - uid: 31675 @@ -94685,27 +95083,65 @@ entities: parent: 12 - proto: Emitter entities: - - uid: 361 + - uid: 3019 components: - type: Transform - pos: 17.5,0.5 + rot: -1.5707963267948966 rad + pos: 80.5,8.5 parent: 12 - - uid: 23983 + - uid: 8420 components: - type: Transform - pos: 25.5,0.5 + rot: -1.5707963267948966 rad + pos: 80.5,0.5 parent: 12 - - uid: 26896 + - uid: 8435 + components: + - type: Transform + pos: 68.5,12.5 + parent: 12 + - uid: 8972 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-13.5 + pos: 68.5,-3.5 parent: 12 - - uid: 27051 + - uid: 9169 + components: + - type: Transform + pos: 76.5,12.5 + parent: 12 + - uid: 9174 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-13.5 + pos: 76.5,-3.5 + parent: 12 + - uid: 9222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,0.5 + parent: 12 + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 +- proto: EmitterFlatpack + entities: + - uid: 9994 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.784466,-0.28712702 + parent: 12 + - uid: 9995 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.991028,-0.5770376 parent: 12 - proto: EncryptionKeyCommon entities: @@ -94807,6 +95243,11 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,31.5 parent: 12 + - uid: 7229 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 12 - uid: 9238 components: - type: Transform @@ -94829,10 +95270,10 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 12 - - uid: 25959 + - uid: 21932 components: - type: Transform - pos: 12.5,-12.5 + pos: 39.5,12.5 parent: 12 - uid: 26003 components: @@ -94939,16 +95380,6 @@ entities: - type: Transform pos: -36.5,0.5 parent: 12 - - uid: 26026 - components: - - type: Transform - pos: 6.5,0.5 - parent: 12 - - uid: 26027 - components: - - type: Transform - pos: 26.5,6.5 - parent: 12 - uid: 26028 components: - type: Transform @@ -95039,15 +95470,15 @@ entities: - type: Transform pos: 58.5,44.5 parent: 12 - - uid: 30467 + - uid: 29963 components: - type: Transform - pos: 41.5,-4.5 + pos: 32.5,6.5 parent: 12 - - uid: 30468 + - uid: 30467 components: - type: Transform - pos: 37.5,13.5 + pos: 41.5,-4.5 parent: 12 - proto: FaxMachineBase entities: @@ -95516,16 +95947,16 @@ entities: parent: 12 - proto: FireAxeCabinetFilled entities: - - uid: 25973 + - uid: 5710 components: - type: Transform - pos: -54.5,35.5 + rot: 1.5707963267948966 rad + pos: 8.5,-5.5 parent: 12 - - uid: 26920 + - uid: 25973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-1.5 + pos: -54.5,35.5 parent: 12 - proto: FireExtinguisher entities: @@ -95635,15 +96066,6 @@ entities: - type: Transform pos: -63.5,-27.5 parent: 12 - - uid: 31757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - proto: FirelockEdge entities: - uid: 2114 @@ -95828,51 +96250,6 @@ entities: deviceLists: - 28373 - 8504 - - uid: 26931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - uid: 27065 components: - type: Transform @@ -95939,6 +96316,15 @@ entities: - type: DeviceNetwork deviceLists: - 10018 + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 - uid: 610 components: - type: Transform @@ -95962,6 +96348,34 @@ entities: deviceLists: - 6833 - 8504 + - uid: 2020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - 27314 + - uid: 2021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - uid: 2034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 - uid: 2073 components: - type: Transform @@ -96095,6 +96509,16 @@ entities: - type: DeviceNetwork deviceLists: - 7342 + - uid: 2359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 + - 27313 - uid: 2613 components: - type: Transform @@ -96113,15 +96537,16 @@ entities: deviceLists: - 7342 - 31755 - - uid: 2779 + - uid: 2679 components: - type: Transform - pos: 17.5,5.5 + rot: 1.5707963267948966 rad + pos: 41.5,-1.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 - - 28377 + - 4906 + - 31755 - uid: 2824 components: - type: Transform @@ -96150,6 +96575,9 @@ entities: - type: Transform pos: 6.5,12.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 3986 components: - type: Transform @@ -96359,35 +96787,6 @@ entities: deviceLists: - 2614 - 28360 - - uid: 4738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - 28377 - - uid: 4786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 447 - - uid: 5128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - uid: 5232 components: - type: Transform @@ -96812,15 +97211,6 @@ entities: - type: Transform pos: 48.5,-42.5 parent: 12 - - uid: 9294 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4887 - - 447 - uid: 9302 components: - type: Transform @@ -96838,6 +97228,7 @@ entities: - type: DeviceNetwork deviceLists: - 448 + - 4906 - uid: 9304 components: - type: Transform @@ -96925,15 +97316,6 @@ entities: - type: DeviceNetwork deviceLists: - 10019 - - uid: 9319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - uid: 9320 components: - type: Transform @@ -97046,26 +97428,6 @@ entities: - type: DeviceNetwork deviceLists: - 449 - - uid: 9666 - components: - - type: Transform - pos: 17.5,4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28378 - - 28377 - - uid: 9994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - 28377 - uid: 10287 components: - type: Transform @@ -97106,6 +97468,16 @@ entities: - type: DeviceNetwork deviceLists: - 9702 + - uid: 10811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 448 + - 4906 - uid: 11460 components: - type: Transform @@ -98729,8 +99101,8 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 28378 - 448 + - 11505 - uid: 23906 components: - type: Transform @@ -99041,32 +99413,16 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 26457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - - uid: 26637 + - uid: 26593 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - - uid: 26639 - components: - - type: Transform - pos: 75.5,0.5 + pos: 38.5,3.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 4906 + - 2682 - uid: 26923 components: - type: Transform @@ -99075,16 +99431,17 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 - - uid: 26924 + - 27311 + - 27312 + - uid: 27005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 + rot: 3.141592653589793 rad + pos: 54.5,7.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27312 - uid: 27108 components: - type: Transform @@ -99103,6 +99460,24 @@ entities: - type: DeviceNetwork deviceLists: - 27296 + - uid: 27309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,11.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - uid: 27310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - uid: 27449 components: - type: Transform @@ -99142,6 +99517,16 @@ entities: deviceLists: - 10019 - 4887 + - uid: 28904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4906 + - 31755 - uid: 29100 components: - type: Transform @@ -99213,11 +99598,17 @@ entities: - type: Transform pos: 7.5,20.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 29872 components: - type: Transform pos: 15.5,13.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 29981 components: - type: Transform @@ -99274,6 +99665,24 @@ entities: deviceLists: - 30450 - 30452 + - uid: 31515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - uid: 31516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 - uid: 31553 components: - type: Transform @@ -99882,18 +100291,6 @@ entities: - type: Transform pos: 57.376583,58.4156 parent: 12 -- proto: FoodBagel - entities: - - uid: 12226 - components: - - type: Transform - pos: 9.246578,6.7106547 - parent: 12 - - uid: 12646 - components: - - type: Transform - pos: 9.502062,6.357326 - parent: 12 - proto: FoodBanana entities: - uid: 4201 @@ -99998,8 +100395,8 @@ entities: - uid: 24446 components: - type: Transform - rot: -18.84955592153876 rad - pos: 55.66475,5.299775 + rot: -12.566370614359172 rad + pos: 55.57415,5.497829 parent: 12 - proto: FoodBoxDonkpocketStonk entities: @@ -100051,10 +100448,10 @@ entities: parent: 12 - proto: FoodBurgerMcguffin entities: - - uid: 9813 + - uid: 28686 components: - type: Transform - pos: 7.485814,6.5965023 + pos: 52.626194,5.4898076 parent: 12 - proto: FoodBurgerMime entities: @@ -100341,6 +100738,11 @@ entities: - type: Transform pos: 20.5,50.5 parent: 12 + - uid: 28687 + components: + - type: Transform + pos: 52.619247,5.510641 + parent: 12 - uid: 31122 components: - type: Transform @@ -100348,11 +100750,6 @@ entities: parent: 12 - proto: FoodPlateSmallPlastic entities: - - uid: 384 - components: - - type: Transform - pos: 7.4795074,6.619267 - parent: 12 - uid: 21382 components: - type: Transform @@ -100434,13 +100831,6 @@ entities: - type: Transform pos: 49.52798,18.523731 parent: 12 -- proto: FoodSoupElectron - entities: - - uid: 922 - components: - - type: Transform - pos: 13.508775,-8.440525 - parent: 12 - proto: FoodSoupMiso entities: - uid: 2685 @@ -100526,13 +100916,14 @@ entities: - type: Transform pos: 37.254433,53.9859 parent: 12 -- proto: ForkPlastic - entities: - - uid: 401 + - uid: 28685 components: - type: Transform - pos: 8.336695,6.534662 + rot: -6.283185307179586 rad + pos: 52.27581,5.7932963 parent: 12 +- proto: ForkPlastic + entities: - uid: 21385 components: - type: Transform @@ -100580,19 +100971,33 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 5478 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 12 - proto: GasMinerNitrogenStationLarge entities: - - uid: 26957 + - uid: 7198 components: - type: Transform - pos: 59.5,7.5 + pos: 25.5,-8.5 parent: 12 - proto: GasMinerOxygenStationLarge entities: - - uid: 26942 + - uid: 4876 components: - type: Transform - pos: 61.5,7.5 + pos: 25.5,-10.5 + parent: 12 +- proto: GasMinerWaterVapor + entities: + - uid: 4625 + components: + - type: Transform + pos: 25.5,-2.5 parent: 12 - proto: GasMixer entities: @@ -100602,6 +101007,12 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-31.5 parent: 12 + - uid: 9826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 12 - uid: 19563 components: - type: Transform @@ -100618,15 +101029,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 12 - - uid: 26685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-0.5 - parent: 12 - - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - proto: GasMixerFlipped entities: - uid: 7150 @@ -100677,126 +101079,159 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-62.5 parent: 12 - - uid: 12686 + - uid: 4576 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,15.5 + pos: 24.5,-4.5 parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 19263 + - uid: 4636 components: - type: Transform - pos: -24.5,54.5 + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 parent: 12 - - uid: 26744 + - uid: 4640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,1.5 parent: 12 - - uid: 26745 + - uid: 4896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,-0.5 parent: 12 - - uid: 26746 + - uid: 4961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,-8.5 parent: 12 - - uid: 26747 + - uid: 5362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 parent: 12 - - uid: 26748 + - uid: 5843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 12 + - uid: 7227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,8.5 + pos: 9.5,3.5 parent: 12 - - uid: 26781 + - uid: 12686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 19263 components: - type: Transform - pos: 71.5,7.5 + pos: -24.5,54.5 parent: 12 - proto: GasPassiveVent entities: - - uid: 4763 + - uid: 2257 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,54.5 + pos: 25.5,-8.5 parent: 12 - - uid: 6732 + - uid: 2258 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-61.5 + pos: 25.5,-10.5 parent: 12 - - uid: 15414 + - uid: 4637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,52.5 + rot: 3.141592653589793 rad + pos: 25.5,-4.5 parent: 12 - - uid: 15415 + - uid: 4641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,52.5 + rot: 3.141592653589793 rad + pos: 25.5,1.5 parent: 12 - - uid: 15787 + - uid: 4763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,31.5 + rot: 3.141592653589793 rad + pos: -25.5,54.5 parent: 12 - - uid: 15788 + - uid: 4962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 12 + - uid: 5869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 12 + - uid: 6214 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,31.5 + pos: 26.5,-12.5 parent: 12 - - uid: 22005 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6732 components: - type: Transform - pos: -25.5,56.5 + rot: 3.141592653589793 rad + pos: -5.5,-61.5 parent: 12 - - uid: 26749 + - uid: 7255 components: - type: Transform - pos: 59.5,6.5 + rot: 3.141592653589793 rad + pos: 25.5,-0.5 parent: 12 - - uid: 26750 + - uid: 15414 components: - type: Transform - pos: 61.5,6.5 + rot: 1.5707963267948966 rad + pos: 39.5,52.5 parent: 12 - - uid: 26751 + - uid: 15415 components: - type: Transform - pos: 63.5,6.5 + rot: -1.5707963267948966 rad + pos: 41.5,52.5 parent: 12 - - uid: 26752 + - uid: 15787 components: - type: Transform - pos: 65.5,6.5 + rot: 1.5707963267948966 rad + pos: 7.5,31.5 parent: 12 - - uid: 26753 + - uid: 15788 components: - type: Transform - pos: 67.5,6.5 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 parent: 12 - - uid: 27024 + - uid: 22005 components: - type: Transform - pos: 75.5,6.5 + pos: -25.5,56.5 parent: 12 - uid: 30331 components: @@ -100993,35 +101428,32 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1349 + - uid: 1752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + rot: 3.141592653589793 rad + pos: 8.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2124 + color: '#0055CCFF' + - uid: 2086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-1.5 + pos: 29.5,5.5 parent: 12 - - uid: 2183 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2124 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-12.5 + pos: -2.5,-1.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2251 + - uid: 2168 components: - type: Transform - pos: 22.5,-12.5 + pos: 25.5,0.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2341 components: - type: Transform @@ -101052,6 +101484,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2807 components: - type: Transform @@ -101247,6 +101687,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3720 components: - type: Transform @@ -101358,6 +101814,19 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 4528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4589 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 12 - uid: 4694 components: - type: Transform @@ -101395,27 +101864,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4930 + - uid: 4850 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,2.5 + pos: 13.5,-12.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 4951 components: - type: Transform pos: 0.5,-46.5 parent: 12 - - uid: 4974 + - uid: 4984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + pos: 25.5,-7.5 + parent: 12 + - uid: 4986 + components: + - type: Transform + pos: 25.5,-1.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5149 components: - type: Transform @@ -101437,14 +101908,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5295 components: - type: Transform @@ -101453,13 +101916,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5301 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5346 components: - type: Transform @@ -101522,6 +101978,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5487 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5504 components: - type: Transform @@ -101536,61 +101999,48 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5592 + - uid: 5549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 + pos: 8.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5860 + - uid: 5592 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,2.5 + pos: 23.5,-22.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5961 + - uid: 5630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 + pos: 25.5,-5.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5964 + - uid: 5804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-4.5 + pos: 20.5,-12.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 5965 + color: '#0055CCFF' + - uid: 6220 components: - type: Transform - pos: 44.5,-0.5 + pos: 22.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 5995 + color: '#990000FF' + - uid: 6243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 + pos: 40.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 6900 components: - type: Transform @@ -101677,6 +102127,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 12 + - uid: 7205 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 12 - uid: 7303 components: - type: Transform @@ -101710,6 +102165,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8531 components: - type: Transform @@ -101850,6 +102313,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 9073 + components: + - type: Transform + pos: 25.5,2.5 + parent: 12 - uid: 9128 components: - type: Transform @@ -101866,13 +102334,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9492 - components: - - type: Transform - pos: 30.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9509 components: - type: Transform @@ -101889,14 +102350,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9529 components: - type: Transform @@ -101976,19 +102429,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9863 + - uid: 9860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + pos: 2.5,-19.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10022 + - uid: 9863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -102031,13 +102481,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10809 + - uid: 10873 components: - type: Transform - pos: 40.5,4.5 + pos: 22.5,-14.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 10890 components: - type: Transform @@ -102046,13 +102496,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 10932 + - uid: 10900 components: - type: Transform - pos: 16.5,10.5 + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11119 components: - type: Transform @@ -102091,6 +102566,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 11473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11611 components: - type: Transform @@ -102536,13 +103019,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,43.5 parent: 12 - - uid: 18671 - components: - - type: Transform - pos: 28.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18723 components: - type: Transform @@ -102669,13 +103145,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19245 - components: - - type: Transform - pos: 28.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19250 components: - type: Transform @@ -102684,6 +103153,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19560 components: - type: Transform @@ -102841,6 +103318,53 @@ entities: - type: Transform pos: -22.5,53.5 parent: 12 + - uid: 22072 + components: + - type: Transform + pos: 53.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22243 components: - type: Transform @@ -102849,6 +103373,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22289 + components: + - type: Transform + pos: 1.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22316 components: - type: Transform @@ -102905,11 +103444,10 @@ entities: - uid: 22877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + pos: -5.5,16.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 22886 components: - type: Transform @@ -103097,29 +103635,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23141 + - uid: 23125 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,4.5 + pos: 57.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23142 + color: '#990000FF' + - uid: 23133 components: - type: Transform - pos: 31.5,8.5 + pos: 61.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23143 + color: '#990000FF' + - uid: 23135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,8.5 + rot: -1.5707963267948966 rad + pos: 30.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 23170 components: - type: Transform @@ -103458,63 +103996,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26435 + - uid: 26436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,1.5 + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26654 + - uid: 26438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 26715 - components: - - type: Transform - pos: 60.5,8.5 - parent: 12 - - uid: 26716 - components: - - type: Transform - pos: 68.5,8.5 - parent: 12 - - uid: 26717 - components: - - type: Transform - pos: 66.5,8.5 - parent: 12 - - uid: 26718 - components: - - type: Transform - pos: 64.5,8.5 - parent: 12 - - uid: 26719 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - uid: 26755 + - uid: 26442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,2.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26757 + - uid: 26784 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,1.5 + pos: 62.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 26810 components: - type: Transform @@ -103531,14 +104044,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26985 components: - type: Transform @@ -103569,32 +104074,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 27018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,2.5 - parent: 12 - - uid: 27021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,4.5 - parent: 12 - - uid: 27022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,4.5 - parent: 12 - - uid: 27163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27219 components: - type: Transform @@ -103653,22 +104132,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 28292 components: - type: Transform @@ -103689,21 +104152,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 28884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28885 + - uid: 28828 components: - type: Transform - pos: 53.5,-4.5 + pos: 57.5,-6.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 29052 components: - type: Transform @@ -104115,13 +104570,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26981 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 27778 components: - type: Transform @@ -104147,11 +104595,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 286 + - uid: 102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,4.5 + pos: 2.5,8.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -104228,14 +104676,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 901 + - uid: 897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 909 components: - type: Transform @@ -104251,6 +104697,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 990 components: - type: Transform @@ -104261,13 +104723,6 @@ entities: - type: Transform pos: -42.5,-45.5 parent: 12 - - uid: 1091 - components: - - type: Transform - pos: 40.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 1093 components: - type: Transform @@ -105420,29 +105875,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1549 - components: - - type: Transform - pos: 11.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1554 components: - type: Transform @@ -105459,29 +105891,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 1966 + - uid: 2072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1997 - components: - - type: Transform - pos: 22.5,-13.5 + pos: 43.5,12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2072 + - uid: 2091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,12.5 + rot: -1.5707963267948966 rad + pos: 25.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2110 components: - type: Transform @@ -105498,78 +105923,26 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2169 + - uid: 2149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-9.5 + pos: 11.5,-11.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2175 + - uid: 2150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-2.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2176 + - uid: 2164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-10.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2254 components: - type: Transform @@ -105577,29 +105950,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2257 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2311 components: - type: Transform @@ -105637,21 +105987,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 2528 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 2610 components: - type: Transform @@ -105675,14 +106010,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2806 components: - type: Transform @@ -105720,13 +106047,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2869 - components: - - type: Transform - pos: 40.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 2885 components: - type: Transform @@ -106483,14 +106803,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3637 components: - type: Transform @@ -106956,6 +107268,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3714 components: - type: Transform @@ -107337,6 +107657,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3955 components: - type: Transform @@ -107345,6 +107673,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4074 components: - type: Transform @@ -107409,6 +107745,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 4390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4402 components: - type: Transform @@ -107432,14 +107784,18 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4528 + - uid: 4479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 12 + - uid: 4537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4539 components: - type: Transform @@ -107448,229 +107804,318 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4719 + - uid: 4542 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-34.5 + pos: 23.5,-3.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4727 + - uid: 4548 components: - type: Transform - pos: 44.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 12 + - uid: 4561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 4737 + - uid: 4563 components: - type: Transform - pos: 11.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4740 + color: '#0055CCFF' + - uid: 4564 components: - type: Transform - pos: 11.5,0.5 + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4743 + color: '#0055CCFF' + - uid: 4579 components: - type: Transform - pos: 11.5,-3.5 + rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 12 + - uid: 4580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 12 + - uid: 4591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 12 + - uid: 4604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 12 + - uid: 4610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 4620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-14.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4745 + color: '#0055CCFF' + - uid: 4621 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-4.5 + pos: 20.5,-13.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4746 + - uid: 4622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 19.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4762 + - uid: 4628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 + pos: 8.5,-10.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4764 + - uid: 4634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-6.5 + pos: 23.5,1.5 + parent: 12 + - uid: 4635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 12 + - uid: 4638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 12 + - uid: 4639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 12 + - uid: 4642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 12 + - uid: 4648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4774 + color: '#990000FF' + - uid: 4655 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-26.5 + pos: 34.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4775 + - uid: 4659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 + rot: 3.141592653589793 rad + pos: 20.5,-16.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4776 + - uid: 4660 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-26.5 + pos: 21.5,-17.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4777 + - uid: 4662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4778 + - uid: 4676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 12 + - uid: 4678 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-26.5 + pos: 40.5,8.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4779 + - uid: 4697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4781 + - uid: 4719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-26.5 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4782 + - uid: 4744 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-26.5 + pos: 26.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4784 + - uid: 4762 components: - type: Transform - pos: 11.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-7.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4785 + color: '#0055CCFF' + - uid: 4764 components: - type: Transform - pos: 11.5,-0.5 + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4790 + color: '#0055CCFF' + - uid: 4774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + pos: -0.5,-26.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4791 + - uid: 4775 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-6.5 + pos: -1.5,-26.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4792 + - uid: 4776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-6.5 + pos: -2.5,-26.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4793 + - uid: 4777 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-6.5 + pos: -3.5,-26.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4796 + - uid: 4778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-9.5 + rot: -1.5707963267948966 rad + pos: -4.5,-26.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4797 + color: '#0055CCFF' + - uid: 4779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 + rot: -1.5707963267948966 rad + pos: -5.5,-26.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4798 + color: '#0055CCFF' + - uid: 4781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-11.5 + rot: -1.5707963267948966 rad + pos: -7.5,-26.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4799 + color: '#0055CCFF' + - uid: 4782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 + rot: -1.5707963267948966 rad + pos: -8.5,-26.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4800 + color: '#0055CCFF' + - uid: 4790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 + rot: 1.5707963267948966 rad + pos: 24.5,-5.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4801 + - uid: 4791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -108004,44 +108449,26 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4852 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4853 + - uid: 4889 components: - type: Transform - pos: 11.5,-2.5 + rot: 1.5707963267948966 rad + pos: 21.5,0.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4856 + - uid: 4894 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,5.5 + pos: 29.5,3.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-3.5 + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4939 components: - type: Transform @@ -108056,11 +108483,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4948 + - uid: 4941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,4.5 + pos: 28.5,5.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -108072,69 +108499,171 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5082 + - uid: 4975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 12 + - uid: 4978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 12 + - uid: 4990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5111 + - uid: 4991 components: - type: Transform - pos: 44.5,-1.5 + rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 12 + - uid: 5004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 12 + - uid: 5006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 12 + - uid: 5010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 12 + - uid: 5012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 12 + - uid: 5016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 12 + - uid: 5017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 12 + - uid: 5018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 12 + - uid: 5019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 + - uid: 5020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 5136 + color: '#0055CCFF' + - uid: 5031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-15.5 + rot: 1.5707963267948966 rad + pos: 12.5,10.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5213 + - uid: 5043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-14.5 + pos: 8.5,-9.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5217 + - uid: 5047 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-6.5 + pos: 24.5,-9.5 + parent: 12 + - uid: 5053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5222 + color: '#990000FF' + - uid: 5079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,10.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5223 + - uid: 5089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 12 + - uid: 5101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5224 + color: '#990000FF' + - uid: 5103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5136 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-1.5 + pos: 30.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5229 components: - type: Transform @@ -108146,11 +108675,15 @@ entities: - uid: 5239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 12 + - uid: 5241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5252 components: - type: Transform @@ -108207,14 +108740,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5271 components: - type: Transform @@ -108223,30 +108748,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5275 components: - type: Transform @@ -108351,6 +108852,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5296 components: - type: Transform @@ -108397,14 +108906,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5319 + - uid: 5310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,1.5 + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 5329 components: - type: Transform @@ -108600,83 +109109,21 @@ entities: - uid: 5361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5375 components: - type: Transform @@ -108731,14 +109178,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5402 components: - type: Transform @@ -108747,30 +109186,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5408 components: - type: Transform @@ -108904,29 +109319,102 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5598 + - uid: 5634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 5642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,2.5 + pos: 21.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5670 + components: + - type: Transform + pos: 8.5,-8.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5856 + - uid: 5674 components: - type: Transform - pos: 13.5,4.5 + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 12 + - uid: 5679 + components: + - type: Transform + pos: 8.5,-7.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5859 + - uid: 5712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5801 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,2.5 + pos: 27.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 + - uid: 5883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,9.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5937 components: - type: Transform @@ -109007,10 +109495,9 @@ entities: - uid: 5952 components: - type: Transform - pos: 13.5,3.5 + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5954 components: - type: Transform @@ -109033,13 +109520,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5959 - components: - - type: Transform - pos: 44.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 5960 components: - type: Transform @@ -109047,6 +109527,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 12 - uid: 5962 components: - type: Transform @@ -109063,6 +109549,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 12 - uid: 6015 components: - type: Transform @@ -109125,16 +109617,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6279 + - uid: 6260 components: - type: Transform - pos: 61.5,4.5 + rot: 1.5707963267948966 rad + pos: 54.5,0.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6705 components: - type: Transform - pos: 67.5,5.5 + rot: 3.141592653589793 rad + pos: 57.5,1.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6715 components: - type: Transform @@ -109151,6 +109657,32 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6772 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 12 + - uid: 6780 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 12 - uid: 6799 components: - type: Transform @@ -109159,6 +109691,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6842 components: - type: Transform @@ -109175,19 +109715,17 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6897 + - uid: 6855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-43.5 + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6899 + - uid: 6897 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,4.5 + pos: 10.5,-43.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -109207,6 +109745,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6985 components: - type: Transform @@ -110151,6 +110697,40 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 12 + - uid: 7210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 12 + - uid: 7214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 12 - uid: 7239 components: - type: Transform @@ -110159,11 +110739,48 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7308 + - uid: 7242 components: - type: Transform - pos: 59.5,3.5 + rot: -1.5707963267948966 rad + pos: 11.5,3.5 parent: 12 + - uid: 7248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 12 + - uid: 7249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 12 + - uid: 7253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7314 components: - type: Transform @@ -110289,13 +110906,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7563 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7566 components: - type: Transform @@ -110343,6 +110953,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 12 - uid: 8241 components: - type: Transform @@ -110351,14 +110967,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 8492 components: - type: Transform @@ -111514,67 +112122,94 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 8972 + - uid: 8981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 8974 + color: '#990000FF' + - uid: 9048 components: - type: Transform - pos: 40.5,2.5 + rot: -1.5707963267948966 rad + pos: 7.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 8976 + color: '#990000FF' + - uid: 9088 components: - type: Transform - pos: 40.5,0.5 + pos: 33.5,15.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 8981 + color: '#990000FF' + - uid: 9168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 12 + - uid: 9176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 12 + - uid: 9417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9088 + - uid: 9419 components: - type: Transform - pos: 33.5,15.5 + pos: -5.5,14.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9454 + - uid: 9420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 + pos: -5.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 9459 + color: '#990000FF' + - uid: 9421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 + pos: -5.5,15.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9460 + color: '#990000FF' + - uid: 9427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,5.5 + pos: 5.5,19.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#00FFFFFF' - uid: 9463 components: - type: Transform @@ -111704,14 +112339,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9496 components: - type: Transform @@ -111726,14 +112353,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9501 components: - type: Transform @@ -111825,27 +112444,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 9679 - components: - - type: Transform - pos: 16.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9680 - components: - - type: Transform - pos: 16.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9681 - components: - - type: Transform - pos: 16.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9685 components: - type: Transform @@ -111990,25 +112588,25 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9820 + - uid: 9831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 + pos: 10.5,-39.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9831 + - uid: 9838 components: - type: Transform - pos: 10.5,-39.5 + pos: -1.5,-54.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9838 + - uid: 9848 components: - type: Transform - pos: -1.5,-54.5 + rot: 3.141592653589793 rad + pos: 54.5,0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -112120,22 +112718,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10028 components: - type: Transform @@ -112491,6 +113073,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10314 components: - type: Transform @@ -112608,6 +113198,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10984 components: - type: Transform @@ -112616,6 +113222,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11008 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11009 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11022 components: - type: Transform @@ -112624,6 +113244,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11040 components: - type: Transform @@ -113114,6 +113742,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11372 components: - type: Transform @@ -113121,6 +113757,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11426 components: - type: Transform @@ -113145,6 +113805,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11592 components: - type: Transform @@ -113217,22 +113885,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11934 components: - type: Transform @@ -113336,6 +113988,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12276 components: - type: Transform @@ -114248,38 +114916,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12935 components: - type: Transform @@ -115102,6 +115738,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 15007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15407 components: - type: Transform @@ -115758,14 +116402,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 16586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16587 components: - type: Transform @@ -116042,6 +116678,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 16658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 16675 components: - type: Transform @@ -116976,14 +117628,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17844 + - uid: 17772 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,9.5 + pos: -1.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' + - uid: 17948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18256 components: - type: Transform @@ -117010,6 +117670,14 @@ entities: - type: Transform pos: -46.5,45.5 parent: 12 + - uid: 18313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18684 components: - type: Transform @@ -117834,6 +118502,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19196 components: - type: Transform @@ -117849,14 +118533,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19292 + - uid: 19311 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,9.5 + pos: 60.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 19380 components: - type: Transform @@ -118077,38 +118761,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19462 + - uid: 19436 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,4.5 + pos: 59.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 19538 + color: '#0055CCFF' + - uid: 19459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 + rot: 3.141592653589793 rad + pos: 58.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 19544 + color: '#0055CCFF' + - uid: 19541 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-42.5 + pos: -15.5,16.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19545 + color: '#990000FF' + - uid: 19544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 + rot: 1.5707963267948966 rad + pos: 4.5,-42.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 19562 components: - type: Transform @@ -118117,6 +118801,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19823 components: - type: Transform @@ -120834,6 +121526,114 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21911 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22066 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22093 + components: + - type: Transform + pos: 29.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22101 + components: + - type: Transform + pos: 30.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22234 components: - type: Transform @@ -120912,6 +121712,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 22339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 22555 components: - type: Transform @@ -122594,123 +123402,46 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23125 + - uid: 23131 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,8.5 + pos: 55.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23126 + color: '#0055CCFF' + - uid: 23138 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23127 - components: - - type: Transform - pos: 31.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23128 - components: - - type: Transform - pos: 31.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23129 - components: - - type: Transform - pos: 31.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,4.5 + pos: 29.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23135 + color: '#0055CCFF' + - uid: 23141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,4.5 + pos: 59.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23137 + color: '#990000FF' + - uid: 23142 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,4.5 + pos: 58.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23138 + color: '#990000FF' + - uid: 23143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,4.5 + rot: 1.5707963267948966 rad + pos: 57.5,-3.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 23146 components: - type: Transform @@ -122760,6 +123491,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23162 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23168 components: - type: Transform @@ -122776,6 +123522,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 23178 components: - type: Transform @@ -123394,6 +124148,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 23589 + components: + - type: Transform + pos: 22.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23662 components: - type: Transform @@ -123621,14 +124382,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23991 components: - type: Transform @@ -123761,6 +124514,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#5D782EFF' + - uid: 24566 + components: + - type: Transform + pos: -5.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24567 + components: + - type: Transform + pos: -5.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24634 components: - type: Transform @@ -123808,6 +124575,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25195 components: - type: Transform @@ -123816,6 +124591,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25437 components: - type: Transform @@ -123832,14 +124615,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 25540 + - uid: 25532 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,5.5 + pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FFA500FF' + - uid: 25534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 25569 components: - type: Transform @@ -123855,6 +124646,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 25573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25575 components: - type: Transform @@ -123863,6 +124662,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 25615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25659 components: - type: Transform @@ -123919,6 +124726,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26052 components: - type: Transform @@ -123927,6 +124750,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26121 + components: + - type: Transform + pos: 21.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26126 components: - type: Transform @@ -124165,36 +124995,53 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26431 + - uid: 26453 components: - type: Transform - pos: 73.5,6.5 + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 parent: 12 - - uid: 26433 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26474 components: - type: Transform - pos: 73.5,3.5 + pos: -5.5,11.5 parent: 12 - - uid: 26437 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26477 components: - type: Transform - pos: 73.5,4.5 + rot: -1.5707963267948966 rad + pos: -4.5,9.5 parent: 12 - - uid: 26439 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26517 components: - type: Transform - pos: 71.5,5.5 + rot: 3.141592653589793 rad + pos: 58.5,0.5 parent: 12 - - uid: 26444 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26518 components: - type: Transform - pos: 73.5,5.5 + rot: 1.5707963267948966 rad + pos: 59.5,2.5 parent: 12 - - uid: 26445 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26519 components: - type: Transform - pos: 71.5,6.5 + rot: 1.5707963267948966 rad + pos: 61.5,2.5 parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26539 components: - type: Transform @@ -124216,75 +125063,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26606 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 26607 - components: - - type: Transform - pos: 63.5,4.5 - parent: 12 - - uid: 26608 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26611 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26612 - components: - - type: Transform - pos: 65.5,4.5 - parent: 12 - - uid: 26613 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 26618 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26619 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26620 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - uid: 26629 components: - type: Transform @@ -124299,113 +125077,84 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26653 + - uid: 26642 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-5.5 + pos: 12.5,0.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 26669 + - uid: 26647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,1.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 26671 + - uid: 26650 components: - type: Transform - pos: 63.5,5.5 + rot: 1.5707963267948966 rad + pos: -14.5,16.5 parent: 12 - - uid: 26672 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26656 components: - type: Transform - pos: 61.5,5.5 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26673 components: - type: Transform - pos: 59.5,5.5 - parent: 12 - - uid: 26691 - components: - - type: Transform - pos: 71.5,4.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 12 - - uid: 26692 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26679 components: - type: Transform - pos: 71.5,3.5 + rot: 1.5707963267948966 rad + pos: -13.5,16.5 parent: 12 - - uid: 26697 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-5.5 + pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26710 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26711 + color: '#990000FF' + - uid: 26699 components: - type: Transform - pos: 60.5,4.5 + rot: -1.5707963267948966 rad + pos: -0.5,9.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26712 - components: - - type: Transform - pos: 60.5,5.5 - parent: 12 - - uid: 26713 - components: - - type: Transform - pos: 60.5,6.5 - parent: 12 - - uid: 26714 - components: - - type: Transform - pos: 60.5,7.5 - parent: 12 - - uid: 26720 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - - uid: 26721 - components: - - type: Transform - pos: 62.5,6.5 - parent: 12 - - uid: 26722 components: - type: Transform pos: 62.5,5.5 parent: 12 - - uid: 26723 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - - uid: 26724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26713 components: - type: Transform pos: 62.5,3.5 parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26726 components: - type: Transform @@ -124414,150 +125163,46 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26727 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26728 - components: - - type: Transform - pos: 64.5,4.5 - parent: 12 - - uid: 26729 - components: - - type: Transform - pos: 64.5,5.5 - parent: 12 - - uid: 26730 - components: - - type: Transform - pos: 64.5,6.5 - parent: 12 - - uid: 26731 - components: - - type: Transform - pos: 64.5,7.5 - parent: 12 - - uid: 26732 - components: - - type: Transform - pos: 66.5,7.5 - parent: 12 - - uid: 26733 - components: - - type: Transform - pos: 66.5,6.5 - parent: 12 - - uid: 26734 - components: - - type: Transform - pos: 66.5,5.5 - parent: 12 - - uid: 26735 - components: - - type: Transform - pos: 66.5,4.5 - parent: 12 - - uid: 26736 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - uid: 26739 components: - type: Transform - pos: 68.5,3.5 - parent: 12 - - uid: 26740 - components: - - type: Transform - pos: 68.5,4.5 - parent: 12 - - uid: 26741 - components: - - type: Transform - pos: 68.5,5.5 - parent: 12 - - uid: 26742 - components: - - type: Transform - pos: 68.5,6.5 - parent: 12 - - uid: 26743 - components: - - type: Transform - pos: 68.5,7.5 - parent: 12 - - uid: 26754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-1.5 + pos: 62.5,9.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26779 + - uid: 26763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-5.5 + pos: 62.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26783 + color: '#0055CCFF' + - uid: 26781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-7.5 + pos: 62.5,4.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26799 + color: '#0055CCFF' + - uid: 26794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-6.5 + pos: 62.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26806 + color: '#0055CCFF' + - uid: 26795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-5.5 + pos: 62.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26880 + color: '#0055CCFF' + - uid: 26849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-6.5 + pos: -8.5,16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -124569,22 +125214,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26929 components: - type: Transform @@ -124601,14 +125230,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26946 components: - type: Transform @@ -124624,22 +125245,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26955 components: - type: Transform @@ -124648,14 +125253,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26966 components: - type: Transform @@ -124680,22 +125277,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26984 components: - type: Transform @@ -124787,14 +125368,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27008 components: - type: Transform @@ -124841,20 +125414,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 27016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,3.5 - parent: 12 - uid: 27034 components: - type: Transform @@ -124924,6 +125483,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FFA500FF' + - uid: 27256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27265 components: - type: Transform @@ -125042,70 +125609,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 27917 components: - type: Transform @@ -125114,126 +125617,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 28234 components: - type: Transform @@ -125392,16 +125775,32 @@ entities: - uid: 28829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-6.5 + rot: -1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - uid: 28831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-6.5 + rot: -1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -125608,38 +126007,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29159 components: - type: Transform @@ -126265,6 +126632,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 29959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 30008 components: - type: Transform @@ -127158,14 +127533,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2288 components: - type: Transform @@ -127530,29 +127897,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4788 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4811 components: - type: Transform @@ -127568,14 +127912,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4871 components: - type: Transform @@ -127584,22 +127920,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4904 components: - type: Transform @@ -127632,6 +127952,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5003 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5035 components: - type: Transform @@ -127639,6 +127966,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5144 components: - type: Transform @@ -127694,6 +128029,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5312 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5315 components: - type: Transform @@ -127762,11 +128104,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5403 + - uid: 5401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -127777,14 +128119,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5869 + - uid: 5711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 + rot: 3.141592653589793 rad + pos: 24.5,-16.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 5940 components: - type: Transform @@ -127808,59 +128150,58 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6751 + - uid: 6183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,2.5 + rot: 1.5707963267948966 rad + pos: 57.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6837 + color: '#990000FF' + - uid: 6261 components: - type: Transform - pos: -10.5,-47.5 + pos: 56.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6840 + - uid: 6751 components: - type: Transform - pos: 6.5,-39.5 + rot: 3.141592653589793 rad + pos: -26.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6889 + color: '#0055CCFF' + - uid: 6794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,4.5 + pos: 20.5,5.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6893 + - uid: 6837 components: - type: Transform - pos: 15.5,5.5 + pos: -10.5,-47.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6894 + - uid: 6840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 + pos: 6.5,-39.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6898 + color: '#990000FF' + - uid: 6894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,4.5 + rot: -1.5707963267948966 rad + pos: -10.5,-49.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 6903 components: - type: Transform @@ -127967,6 +128308,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7277 components: - type: Transform @@ -128253,6 +128602,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9462 components: - type: Transform @@ -128386,11 +128751,27 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10876 + - uid: 10813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10840 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,12.5 + pos: 36.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -128409,6 +128790,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11013 components: - type: Transform @@ -128582,13 +128979,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12698 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12699 components: - type: Transform @@ -128847,6 +129237,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15252 components: - type: Transform @@ -129372,6 +129770,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19822 components: - type: Transform @@ -129794,6 +130200,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 22078 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22233 components: - type: Transform @@ -129825,6 +130246,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22910 components: - type: Transform @@ -129841,6 +130270,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 23155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23185 components: - type: Transform @@ -129939,39 +130376,34 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26944 + - uid: 26727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 + rot: -1.5707963267948966 rad + pos: 62.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26951 + color: '#0055CCFF' + - uid: 26944 components: - type: Transform - pos: 56.5,2.5 + rot: 3.141592653589793 rad + pos: 52.5,1.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26958 - components: - - type: Transform - pos: 55.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26965 + - uid: 27292 components: - type: Transform - pos: 52.5,-0.5 + pos: 1.5,-36.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27292 + color: '#990000FF' + - uid: 27303 components: - type: Transform - pos: 1.5,-36.5 + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -129998,13 +130430,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28830 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 28930 components: - type: Transform @@ -130201,6 +130626,12 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-62.5 parent: 12 + - uid: 4630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 12 - uid: 4938 components: - type: Transform @@ -130263,11 +130694,34 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,18.5 parent: 12 + - uid: 9059 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 9617 components: - type: Transform pos: 13.5,21.5 parent: 12 + - uid: 9813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 12 + - uid: 9856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 12 + - uid: 9858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 12 - uid: 10980 components: - type: Transform @@ -130276,6 +130730,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FFA500FF' + - uid: 11018 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 12 - uid: 11280 components: - type: Transform @@ -130370,12 +130829,36 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 12 - - uid: 26648 + - uid: 25469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-5.5 + rot: -1.5707963267948966 rad + pos: 20.5,7.5 + parent: 12 + - uid: 25666 + components: + - type: Transform + pos: 21.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26471 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 12 + - uid: 26591 + components: + - type: Transform + pos: 1.5,-18.5 parent: 12 + - uid: 28755 + components: + - type: Transform + pos: 22.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 30340 components: - type: Transform @@ -130431,6 +130914,12 @@ entities: - type: Transform pos: -41.5,-42.5 parent: 12 + - uid: 2186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 12 - uid: 2786 components: - type: Transform @@ -130447,36 +130936,63 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3129 + - uid: 4092 components: + - type: MetaData + name: distro pump - type: Transform - pos: 63.5,2.5 + rot: -1.5707963267948966 rad + pos: 14.5,-11.5 parent: 12 - - uid: 3130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4577 components: - type: Transform - pos: 61.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 parent: 12 - - uid: 3945 + - uid: 4650 components: - type: Transform - pos: 67.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 parent: 12 - - uid: 3948 + - uid: 4696 components: - type: Transform - pos: 65.5,2.5 + rot: -1.5707963267948966 rad + pos: -23.5,53.5 parent: 12 - - uid: 4064 + - uid: 4743 components: - type: Transform - pos: 59.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 parent: 12 - - uid: 4696 + - uid: 4948 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,53.5 + pos: 20.5,2.5 + parent: 12 + - uid: 5090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 12 + - uid: 5717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 12 + - uid: 6235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 parent: 12 - uid: 7147 components: @@ -130521,6 +131037,26 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 12 + - uid: 7212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 12 + - uid: 9060 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9061 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10978 components: - type: Transform @@ -130558,48 +131094,29 @@ entities: - type: Transform pos: -47.5,46.5 parent: 12 - - uid: 26693 + - uid: 23126 components: + - type: MetaData + name: waste pump - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,2.5 + pos: 20.5,4.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26776 + - uid: 23130 components: - type: MetaData - name: gas pump to TEG - - type: Transform - pos: 61.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26808 - components: - - type: Transform - pos: 73.5,2.5 - parent: 12 - - uid: 26809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,2.5 - parent: 12 - - uid: 26978 - components: + name: TEG pump - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-0.5 + pos: 14.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27146 + color: '#FFA500FF' + - uid: 26418 components: - - type: MetaData - name: gas pump to waste - type: Transform - pos: 62.5,-4.5 + pos: 26.5,-15.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -130645,24 +131162,16 @@ entities: - type: Transform pos: -46.5,47.5 parent: 12 - - uid: 26645 + - uid: 23982 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 67.5,-5.5 + pos: 9.5,-2.5 parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 26647 + - uid: 23983 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 68.5,-5.5 + pos: 10.5,-2.5 parent: 12 - - type: Physics - bodyType: Dynamic - proto: GasThermoMachineFreezerEnabled entities: - uid: 15405 @@ -130675,6 +131184,16 @@ entities: targetTemperature: 243.15 - proto: GasThermoMachineHeater entities: + - uid: 3979 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 12 + - uid: 4575 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 12 - uid: 9732 components: - type: Transform @@ -130696,24 +131215,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26643 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 26644 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 12 - - type: Physics - bodyType: Dynamic - proto: GasValve entities: - uid: 4780 @@ -130749,11 +131250,16 @@ entities: - type: Transform pos: -46.5,44.5 parent: 12 - - uid: 27023 + - uid: 28754 components: - type: Transform - pos: 75.5,5.5 + rot: -1.5707963267948966 rad + pos: 23.5,-12.5 parent: 12 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#990000FF' - uid: 31768 components: - type: Transform @@ -130781,6 +131287,13 @@ entities: - 28343 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1058 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1134 components: - type: Transform @@ -130962,14 +131475,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3519 components: - type: Transform @@ -131010,18 +131515,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 28377 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4855 components: - type: Transform @@ -131032,18 +131525,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5305 components: - type: Transform @@ -131065,18 +131546,6 @@ entities: - 28376 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5328 components: - type: Transform @@ -131099,17 +131568,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5409 - components: - - type: Transform - pos: 29.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5585 components: - type: Transform @@ -131147,15 +131605,15 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6766 + - uid: 6709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 + rot: 3.141592653589793 rad + pos: 35.5,-1.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 + - 4906 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6973 @@ -131303,6 +131761,19 @@ entities: - type: Transform pos: 6.5,13.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9717 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10005 @@ -131384,6 +131855,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11462 components: - type: Transform @@ -131403,6 +131882,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12232 + components: + - type: Transform + pos: 29.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12735 components: - type: Transform @@ -131572,6 +132061,17 @@ entities: - 23643 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15806 components: - type: Transform @@ -131797,6 +132297,16 @@ entities: - 23804 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 19188 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19393 components: - type: Transform @@ -131966,7 +132476,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27312 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20983 @@ -132085,6 +132595,14 @@ entities: - 9702 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22245 components: - type: Transform @@ -132490,34 +133008,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26979 + - uid: 26415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-1.5 + pos: 35.5,0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 2682 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26994 @@ -132852,6 +133350,16 @@ entities: - 30453 - type: AtmosPipeColor color: '#990000FF' + - uid: 2684 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 2682 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2755 components: - type: Transform @@ -132932,17 +133440,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' - - uid: 4685 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4723 components: - type: Transform @@ -132954,18 +133451,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' - - uid: 4742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 28377 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5254 components: - type: Transform @@ -133007,7 +133492,6 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 - 1288 - type: AtmosPipeColor color: '#990000FF' @@ -133019,7 +133503,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 + - 4906 - 448 - type: AtmosPipeColor color: '#990000FF' @@ -133038,6 +133522,17 @@ entities: - 28366 - type: AtmosPipeColor color: '#990000FF' + - uid: 5887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6083 components: - type: Transform @@ -133054,6 +133549,15 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 26792 - uid: 6979 components: - type: Transform @@ -133107,16 +133611,6 @@ entities: - 8971 - type: AtmosPipeColor color: '#990000FF' - - uid: 7787 - components: - - type: Transform - pos: 19.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28378 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8536 components: - type: Transform @@ -133225,6 +133719,9 @@ entities: - type: Transform pos: 15.5,14.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - type: AtmosPipeColor color: '#990000FF' - uid: 10006 @@ -133297,6 +133794,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 12231 + components: + - type: Transform + pos: 30.5,3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12730 components: - type: Transform @@ -133609,6 +134116,26 @@ entities: - 18887 - type: AtmosPipeColor color: '#990000FF' + - uid: 19173 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4418 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19292 + components: + - type: Transform + pos: 57.5,10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19392 components: - type: Transform @@ -133657,6 +134184,17 @@ entities: - 23791 - type: AtmosPipeColor color: '#990000FF' + - uid: 19555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 31755 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20008 components: - type: Transform @@ -134096,16 +134634,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26311 - components: - - type: Transform - pos: 42.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4418 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26328 components: - type: Transform @@ -134164,25 +134692,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26441 + - uid: 26689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,0.5 + rot: 1.5707963267948966 rad + pos: 20.5,-14.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - type: AtmosPipeColor color: '#990000FF' - - uid: 26780 - components: - - type: Transform - pos: 73.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26937 - uid: 26949 components: - type: Transform @@ -134190,7 +134707,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27311 - type: AtmosPipeColor color: '#990000FF' - uid: 27249 @@ -134282,17 +134799,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 31756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasVentScrubberVox entities: - uid: 9429 @@ -134348,11 +134854,6 @@ entities: - type: Transform pos: 44.5,-5.5 parent: 12 - - uid: 11391 - components: - - type: Transform - pos: 28.5,13.5 - parent: 12 - uid: 11535 components: - type: Transform @@ -134381,12 +134882,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,22.5 parent: 12 - - uid: 16356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 12 - uid: 21532 components: - type: Transform @@ -134403,6 +134898,12 @@ entities: - type: Transform pos: 38.5,45.5 parent: 12 + - uid: 26705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 12 - uid: 27148 components: - type: Transform @@ -134421,6 +134922,11 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-17.5 parent: 12 + - uid: 28923 + components: + - type: Transform + pos: 48.5,9.5 + parent: 12 - uid: 30737 components: - type: Transform @@ -134732,6 +135238,12 @@ entities: - type: Transform pos: -60.5,31.5 parent: 12 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,6.5 + parent: 12 - uid: 255 components: - type: Transform @@ -134890,11 +135402,6 @@ entities: - type: Transform pos: -29.5,-3.5 parent: 12 - - uid: 403 - components: - - type: Transform - pos: 9.5,0.5 - parent: 12 - uid: 409 components: - type: Transform @@ -135067,6 +135574,12 @@ entities: - type: Transform pos: -38.5,-28.5 parent: 12 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-2.5 + parent: 12 - uid: 652 components: - type: Transform @@ -135400,15 +135913,17 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-42.5 parent: 12 - - uid: 1356 + - uid: 1352 components: - type: Transform - pos: 7.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-10.5 parent: 12 - - uid: 1363 + - uid: 1354 components: - type: Transform - pos: 8.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-6.5 parent: 12 - uid: 1453 components: @@ -135421,6 +135936,11 @@ entities: rot: 3.141592653589793 rad pos: -40.5,75.5 parent: 12 + - uid: 1550 + components: + - type: Transform + pos: 11.5,3.5 + parent: 12 - uid: 1611 components: - type: Transform @@ -135450,15 +135970,10 @@ entities: - type: Transform pos: 35.5,8.5 parent: 12 - - uid: 2090 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 12 - - uid: 2091 + - uid: 2066 components: - type: Transform - pos: 28.5,-0.5 + pos: 11.5,1.5 parent: 12 - uid: 2172 components: @@ -135466,12 +135981,33 @@ entities: rot: 3.141592653589793 rad pos: 71.5,14.5 parent: 12 + - uid: 2174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 12 + - uid: 2175 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 - uid: 2179 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-40.5 parent: 12 + - uid: 2252 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 2253 + components: + - type: Transform + pos: 11.5,2.5 + parent: 12 - uid: 2331 components: - type: Transform @@ -136020,6 +136556,11 @@ entities: - type: Transform pos: -18.5,-30.5 parent: 12 + - uid: 3198 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 12 - uid: 3468 components: - type: Transform @@ -136046,10 +136587,10 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-53.5 parent: 12 - - uid: 3613 + - uid: 3630 components: - type: Transform - pos: 50.5,-1.5 + pos: 11.5,-1.5 parent: 12 - uid: 4104 components: @@ -136205,26 +136746,31 @@ entities: - type: Transform pos: 7.5,-16.5 parent: 12 - - uid: 4677 + - uid: 4598 components: - type: Transform - pos: 20.5,0.5 + pos: 13.5,-0.5 parent: 12 - - uid: 4678 + - uid: 4600 components: - type: Transform - pos: 21.5,0.5 + pos: 57.5,7.5 parent: 12 - - uid: 4679 + - uid: 4666 components: - type: Transform - pos: 22.5,0.5 + pos: 36.5,-0.5 parent: 12 - - uid: 4766 + - uid: 4671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + pos: 21.5,3.5 + parent: 12 + - uid: 4758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 parent: 12 - uid: 4772 components: @@ -136232,31 +136778,33 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 - - uid: 4794 + - uid: 4784 components: - type: Transform - pos: 47.5,0.5 + pos: 21.5,-11.5 parent: 12 - - uid: 4870 + - uid: 4794 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-57.5 + pos: 47.5,0.5 parent: 12 - - uid: 4894 + - uid: 4796 components: - type: Transform - pos: 14.5,-6.5 + rot: 3.141592653589793 rad + pos: 21.5,-1.5 parent: 12 - - uid: 4895 + - uid: 4798 components: - type: Transform - pos: 14.5,-7.5 + rot: 3.141592653589793 rad + pos: 21.5,-2.5 parent: 12 - - uid: 4896 + - uid: 4870 components: - type: Transform - pos: 14.5,-8.5 + rot: 3.141592653589793 rad + pos: -4.5,-57.5 parent: 12 - uid: 4912 components: @@ -136264,40 +136812,39 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 12 - - uid: 4928 - components: - - type: Transform - pos: 18.5,8.5 - parent: 12 - - uid: 4929 + - uid: 4920 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: 21.5,-7.5 parent: 12 - - uid: 4954 + - uid: 4972 components: - type: Transform - pos: 21.5,7.5 + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 parent: 12 - - uid: 4955 + - uid: 4987 components: - type: Transform - pos: 22.5,7.5 + rot: 1.5707963267948966 rad + pos: 82.5,3.5 parent: 12 - - uid: 5079 + - uid: 4989 components: - type: Transform - pos: 28.5,-8.5 + rot: 1.5707963267948966 rad + pos: 82.5,4.5 parent: 12 - - uid: 5080 + - uid: 5028 components: - type: Transform - pos: 28.5,-7.5 + pos: 12.5,-1.5 parent: 12 - - uid: 5081 + - uid: 5050 components: - type: Transform - pos: 28.5,-6.5 + pos: 37.5,-0.5 parent: 12 - uid: 5085 components: @@ -136309,10 +136856,11 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 5097 + - uid: 5197 components: - type: Transform - pos: 32.5,-0.5 + rot: 1.5707963267948966 rad + pos: 82.5,9.5 parent: 12 - uid: 5269 components: @@ -136409,18 +136957,118 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,2.5 parent: 12 + - uid: 5538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-1.5 + parent: 12 + - uid: 5550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,0.5 + parent: 12 + - uid: 5552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-0.5 + parent: 12 + - uid: 5595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,2.5 + parent: 12 + - uid: 5618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,5.5 + parent: 12 + - uid: 5620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,7.5 + parent: 12 + - uid: 5715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 12 + - uid: 5718 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 5798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 12 + - uid: 5806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 12 + - uid: 5808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 12 + - uid: 5809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 5811 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 5817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,12.5 + parent: 12 + - uid: 5818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 12 - uid: 5829 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,64.5 parent: 12 + - uid: 5832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 12 - uid: 5834 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,65.5 parent: 12 + - uid: 5845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,8.5 + parent: 12 - uid: 5878 components: - type: Transform @@ -136433,15 +137081,10 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-21.5 parent: 12 - - uid: 5883 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - - uid: 5887 + - uid: 5967 components: - type: Transform - pos: 58.5,-2.5 + pos: 10.5,-1.5 parent: 12 - uid: 5974 components: @@ -136466,10 +137109,28 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,52.5 parent: 12 + - uid: 6009 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 - uid: 6016 components: - type: Transform - pos: 28.5,-10.5 + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 12 + - uid: 6017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 6022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,14.5 parent: 12 - uid: 6055 components: @@ -136808,11 +137469,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-44.5 parent: 12 - - uid: 6270 - components: - - type: Transform - pos: 13.5,6.5 - parent: 12 - uid: 6284 components: - type: Transform @@ -136935,7 +137591,17 @@ entities: - uid: 6737 components: - type: Transform - pos: 28.5,-2.5 + pos: 28.5,-9.5 + parent: 12 + - uid: 6748 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 + - uid: 6764 + components: + - type: Transform + pos: 28.5,-8.5 parent: 12 - uid: 6798 components: @@ -136957,16 +137623,65 @@ entities: - type: Transform pos: 34.5,-24.5 parent: 12 + - uid: 6898 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 - uid: 6941 components: - type: Transform pos: -60.5,30.5 parent: 12 + - uid: 7199 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 + - uid: 7238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 12 + - uid: 7241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 12 + - uid: 7245 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 + - uid: 7247 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 12 + - uid: 7262 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 - uid: 7300 components: - type: Transform pos: 29.5,-54.5 parent: 12 + - uid: 7322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,14.5 + parent: 12 - uid: 7379 components: - type: Transform @@ -137129,6 +137844,12 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-6.5 parent: 12 + - uid: 7548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,14.5 + parent: 12 - uid: 7551 components: - type: Transform @@ -137333,6 +138054,17 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-14.5 parent: 12 + - uid: 7826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 12 + - uid: 7832 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 - uid: 8028 components: - type: Transform @@ -137413,15 +138145,37 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-50.5 parent: 12 + - uid: 9053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,10.5 + parent: 12 + - uid: 9054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,14.5 + parent: 12 - uid: 9068 components: - type: Transform pos: -58.5,36.5 parent: 12 - - uid: 9308 + - uid: 9402 components: - type: Transform - pos: 78.5,13.5 + pos: 10.5,0.5 + parent: 12 + - uid: 9403 + components: + - type: Transform + pos: 22.5,8.5 + parent: 12 + - uid: 9404 + components: + - type: Transform + pos: 21.5,8.5 parent: 12 - uid: 9428 components: @@ -137439,6 +138193,18 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,1.5 parent: 12 + - uid: 9483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,16.5 + parent: 12 + - uid: 9491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,11.5 + parent: 12 - uid: 9504 components: - type: Transform @@ -137457,11 +138223,52 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-32.5 parent: 12 + - uid: 9609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,1.5 + parent: 12 + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-5.5 + parent: 12 + - uid: 9618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,16.5 + parent: 12 - uid: 9619 components: - type: Transform pos: -0.5,-40.5 parent: 12 + - uid: 9621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,16.5 + parent: 12 + - uid: 9628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,16.5 + parent: 12 + - uid: 9669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-5.5 + parent: 12 + - uid: 9709 + components: + - type: Transform + pos: 63.5,6.5 + parent: 12 - uid: 9719 components: - type: Transform @@ -137893,7 +138700,12 @@ entities: - uid: 10347 components: - type: Transform - pos: 24.5,1.5 + pos: 57.5,1.5 + parent: 12 + - uid: 10368 + components: + - type: Transform + pos: 63.5,5.5 parent: 12 - uid: 10569 components: @@ -137967,6 +138779,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,22.5 parent: 12 + - uid: 10657 + components: + - type: Transform + pos: 11.5,0.5 + parent: 12 - uid: 10675 components: - type: Transform @@ -138039,6 +138856,66 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,16.5 + parent: 12 + - uid: 10869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-4.5 + parent: 12 + - uid: 10876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-5.5 + parent: 12 + - uid: 10877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-5.5 + parent: 12 + - uid: 10887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-5.5 + parent: 12 + - uid: 10914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-5.5 + parent: 12 + - uid: 10915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-5.5 + parent: 12 + - uid: 10916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-5.5 + parent: 12 + - uid: 10923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-5.5 + parent: 12 + - uid: 10927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 12 - uid: 10934 components: - type: Transform @@ -138205,36 +139082,32 @@ entities: - type: Transform pos: -5.5,-62.5 parent: 12 - - uid: 11446 - components: - - type: Transform - pos: 9.5,7.5 - parent: 12 - - uid: 11455 + - uid: 11448 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,11.5 + pos: 24.5,11.5 parent: 12 - uid: 11459 components: - type: Transform pos: 51.5,11.5 parent: 12 - - uid: 11472 + - uid: 11465 components: - type: Transform - pos: 45.5,9.5 + pos: 48.5,10.5 parent: 12 - - uid: 11473 + - uid: 11481 components: - type: Transform - pos: 44.5,9.5 + pos: -4.5,-62.5 parent: 12 - - uid: 11481 + - uid: 11486 components: - type: Transform - pos: -4.5,-62.5 + rot: 3.141592653589793 rad + pos: 21.5,-14.5 parent: 12 - uid: 11501 components: @@ -138639,23 +139512,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-45.5 parent: 12 - - uid: 12231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,10.5 - parent: 12 - - uid: 12232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,12.5 - parent: 12 - - uid: 12310 - components: - - type: Transform - pos: 27.5,12.5 - parent: 12 - uid: 12311 components: - type: Transform @@ -140176,6 +141032,12 @@ entities: rot: 3.141592653589793 rad pos: -11.5,79.5 parent: 12 + - uid: 16662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 12 - uid: 16801 components: - type: Transform @@ -140414,7 +141276,8 @@ entities: - uid: 17599 components: - type: Transform - pos: 14.5,-10.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 12 - uid: 17832 components: @@ -140760,6 +141623,12 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,46.5 parent: 12 + - uid: 19455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 12 - uid: 19458 components: - type: Transform @@ -140918,6 +141787,12 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 + - uid: 21065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,14.5 + parent: 12 - uid: 21074 components: - type: Transform @@ -140928,7 +141803,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-14.5 + pos: 82.5,13.5 parent: 12 - uid: 21530 components: @@ -140945,6 +141820,12 @@ entities: - type: Transform pos: 42.5,-40.5 parent: 12 + - uid: 21703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-5.5 + parent: 12 - uid: 21706 components: - type: Transform @@ -140970,11 +141851,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 12 - - uid: 21911 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 21968 components: - type: Transform @@ -141073,65 +141949,16 @@ entities: - type: Transform pos: 67.5,14.5 parent: 12 - - uid: 22102 - components: - - type: Transform - pos: 48.5,9.5 - parent: 12 - - uid: 22110 - components: - - type: Transform - pos: 80.5,5.5 - parent: 12 - - uid: 22112 - components: - - type: Transform - pos: 80.5,4.5 - parent: 12 - - uid: 22113 - components: - - type: Transform - pos: 80.5,-0.5 - parent: 12 - - uid: 22114 - components: - - type: Transform - pos: 80.5,9.5 - parent: 12 - - uid: 22115 - components: - - type: Transform - pos: 80.5,10.5 - parent: 12 - - uid: 22116 - components: - - type: Transform - pos: 80.5,1.5 - parent: 12 - - uid: 22117 - components: - - type: Transform - pos: 80.5,6.5 - parent: 12 - - uid: 22120 - components: - - type: Transform - pos: 80.5,0.5 - parent: 12 - - uid: 22121 - components: - - type: Transform - pos: 79.5,13.5 - parent: 12 - uid: 22133 components: - type: Transform pos: 62.5,14.5 parent: 12 - - uid: 22151 + - uid: 22158 components: - type: Transform - pos: 80.5,11.5 + rot: 1.5707963267948966 rad + pos: 81.5,14.5 parent: 12 - uid: 22193 components: @@ -141229,58 +142056,78 @@ entities: rot: 3.141592653589793 rad pos: -30.5,75.5 parent: 12 - - uid: 23759 + - uid: 23165 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,61.5 + pos: 17.5,8.5 parent: 12 - - uid: 23887 + - uid: 23412 components: - type: Transform - pos: 49.5,9.5 + pos: 9.5,0.5 parent: 12 - - uid: 23924 + - uid: 23759 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-34.5 + pos: -55.5,61.5 parent: 12 - - uid: 24452 + - uid: 23924 components: - type: Transform - pos: 9.5,2.5 + rot: -1.5707963267948966 rad + pos: 1.5,-34.5 parent: 12 - uid: 24649 components: - type: Transform pos: -19.5,-62.5 parent: 12 - - uid: 24654 + - uid: 24664 components: - type: Transform - pos: 30.5,11.5 + rot: 1.5707963267948966 rad + pos: -28.5,73.5 parent: 12 - - uid: 24664 + - uid: 25061 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,73.5 + pos: 65.5,-5.5 + parent: 12 + - uid: 25089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,12.5 + parent: 12 + - uid: 25102 + components: + - type: Transform + pos: 63.5,2.5 parent: 12 - uid: 25103 components: - type: Transform pos: 60.5,-22.5 parent: 12 - - uid: 25191 + - uid: 25192 components: - type: Transform - pos: 14.5,-9.5 + rot: 1.5707963267948966 rad + pos: 78.5,-5.5 parent: 12 - - uid: 25331 + - uid: 25193 components: - type: Transform - pos: 47.5,9.5 + rot: 1.5707963267948966 rad + pos: 84.5,-3.5 + parent: 12 + - uid: 25196 + components: + - type: Transform + pos: 33.5,-3.5 parent: 12 - uid: 25389 components: @@ -141346,16 +142193,6 @@ entities: - type: Transform pos: 3.5,16.5 parent: 12 - - uid: 25537 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - - uid: 25538 - components: - - type: Transform - pos: 11.5,6.5 - parent: 12 - uid: 25546 components: - type: Transform @@ -141522,11 +142359,29 @@ entities: - type: Transform pos: -56.5,-15.5 parent: 12 + - uid: 26027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 + parent: 12 + - uid: 26064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-5.5 + parent: 12 - uid: 26068 components: - type: Transform pos: -31.5,-60.5 parent: 12 + - uid: 26103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 12 - uid: 26106 components: - type: Transform @@ -141555,6 +142410,12 @@ entities: - type: Transform pos: -40.5,57.5 parent: 12 + - uid: 26154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-5.5 + parent: 12 - uid: 26171 components: - type: Transform @@ -141803,160 +142664,58 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,67.5 parent: 12 - - uid: 26450 - components: - - type: Transform - pos: 25.5,89.5 - parent: 12 - - uid: 26471 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 12 - - uid: 26499 - components: - - type: Transform - pos: 70.5,6.5 - parent: 12 - - uid: 26500 - components: - - type: Transform - pos: 70.5,7.5 - parent: 12 - - uid: 26501 - components: - - type: Transform - pos: 71.5,5.5 - parent: 12 - - uid: 26502 - components: - - type: Transform - pos: 72.5,5.5 - parent: 12 - - uid: 26503 - components: - - type: Transform - pos: 73.5,5.5 - parent: 12 - - uid: 26504 - components: - - type: Transform - pos: 74.5,6.5 - parent: 12 - - uid: 26505 - components: - - type: Transform - pos: 74.5,7.5 - parent: 12 - - uid: 26523 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26524 - components: - - type: Transform - pos: 59.5,3.5 - parent: 12 - - uid: 26525 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26526 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26527 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - uid: 26528 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26529 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26530 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26531 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - - uid: 26532 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26533 + - uid: 26420 components: - type: Transform - pos: 68.5,3.5 + pos: 63.5,4.5 parent: 12 - - uid: 26534 + - uid: 26421 components: - type: Transform - pos: 70.5,3.5 + rot: 1.5707963267948966 rad + pos: 84.5,6.5 parent: 12 - - uid: 26535 + - uid: 26450 components: - type: Transform - pos: 71.5,3.5 + pos: 25.5,89.5 parent: 12 - uid: 26536 components: - type: Transform - pos: 72.5,3.5 - parent: 12 - - uid: 26537 - components: - - type: Transform - pos: 73.5,3.5 - parent: 12 - - uid: 26538 - components: - - type: Transform - pos: 74.5,3.5 + rot: 1.5707963267948966 rad + pos: 62.5,-5.5 parent: 12 - uid: 26542 components: - type: Transform pos: 26.5,89.5 parent: 12 - - uid: 26563 + - uid: 26546 components: - type: Transform - pos: 6.5,7.5 + rot: 3.141592653589793 rad + pos: 23.5,7.5 parent: 12 - - uid: 26566 + - uid: 26550 components: - type: Transform - pos: -22.5,-8.5 + pos: 36.5,-3.5 parent: 12 - - uid: 26572 + - uid: 26564 components: - type: Transform - pos: 56.5,4.5 + pos: 34.5,-3.5 parent: 12 - - uid: 26573 + - uid: 26566 components: - type: Transform - pos: 56.5,5.5 + pos: -22.5,-8.5 parent: 12 - - uid: 26574 + - uid: 26575 components: - type: Transform - pos: 56.5,6.5 + pos: 35.5,-3.5 parent: 12 - uid: 26581 components: @@ -141973,21 +142732,6 @@ entities: - type: Transform pos: 27.5,89.5 parent: 12 - - uid: 26589 - components: - - type: Transform - pos: 76.5,13.5 - parent: 12 - - uid: 26591 - components: - - type: Transform - pos: 77.5,13.5 - parent: 12 - - uid: 26596 - components: - - type: Transform - pos: 80.5,3.5 - parent: 12 - uid: 26598 components: - type: Transform @@ -142010,35 +142754,68 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,70.5 parent: 12 - - uid: 26651 + - uid: 26620 components: - type: Transform - pos: 80.5,-3.5 + rot: -1.5707963267948966 rad + pos: 24.5,4.5 parent: 12 - - uid: 26686 + - uid: 26621 components: - type: Transform - pos: 59.5,5.5 + rot: -1.5707963267948966 rad + pos: 22.5,4.5 parent: 12 - - uid: 26687 + - uid: 26627 components: - type: Transform - pos: 61.5,5.5 + rot: -1.5707963267948966 rad + pos: 24.5,10.5 parent: 12 - - uid: 26688 + - uid: 26632 components: - type: Transform - pos: 63.5,5.5 + pos: 4.5,-21.5 parent: 12 - - uid: 26689 + - uid: 26633 components: - type: Transform - pos: 65.5,5.5 + pos: 3.5,-21.5 parent: 12 - - uid: 26690 + - uid: 26653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 12 + - uid: 26676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 12 + - uid: 26692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 12 + - uid: 26696 components: - type: Transform - pos: 67.5,5.5 + rot: 3.141592653589793 rad + pos: 28.5,6.5 + parent: 12 + - uid: 26716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-5.5 + parent: 12 + - uid: 26747 + components: + - type: Transform + pos: 63.5,3.5 parent: 12 - uid: 26758 components: @@ -142069,16 +142846,11 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-9.5 parent: 12 - - uid: 26816 + - uid: 26799 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-2.5 - parent: 12 - - uid: 26832 - components: - - type: Transform - pos: 6.5,6.5 + pos: 77.5,-5.5 parent: 12 - uid: 26866 components: @@ -142092,26 +142864,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 12 - - uid: 26904 - components: - - type: Transform - pos: 70.5,-6.5 - parent: 12 - - uid: 26910 - components: - - type: Transform - pos: 75.5,1.5 - parent: 12 - - uid: 26911 - components: - - type: Transform - pos: 75.5,-0.5 - parent: 12 - - uid: 26967 - components: - - type: Transform - pos: 80.5,-4.5 - parent: 12 - uid: 26973 components: - type: Transform @@ -142123,6 +142875,12 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 12 + - uid: 27018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-3.5 + parent: 12 - uid: 27040 components: - type: Transform @@ -142249,12 +143007,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-22.5 parent: 12 - - uid: 27136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - uid: 27161 components: - type: Transform @@ -142282,11 +143034,21 @@ entities: - type: Transform pos: 11.5,12.5 parent: 12 + - uid: 27244 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 27248 components: - type: Transform pos: 29.5,76.5 parent: 12 + - uid: 27250 + components: + - type: Transform + pos: 41.5,3.5 + parent: 12 - uid: 27262 components: - type: Transform @@ -142397,12 +143159,6 @@ entities: - type: Transform pos: -49.5,-18.5 parent: 12 - - uid: 27604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 12 - uid: 27629 components: - type: Transform @@ -142435,17 +143191,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-9.5 parent: 12 - - uid: 27891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 12 - - uid: 27903 - components: - - type: Transform - pos: 6.5,5.5 - parent: 12 - uid: 27910 components: - type: Transform @@ -142780,12 +143525,6 @@ entities: - type: Transform pos: 2.5,-21.5 parent: 12 - - uid: 28523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 12 - uid: 28558 components: - type: Transform @@ -142797,80 +143536,11 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-7.5 parent: 12 - - uid: 28790 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 28791 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28792 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 12 - - uid: 28793 - components: - - type: Transform - pos: 62.5,-6.5 - parent: 12 - - uid: 28794 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - uid: 28795 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 12 - - uid: 28796 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 12 - - uid: 28797 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 12 - - uid: 28798 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 12 - - uid: 28799 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 12 - - uid: 28800 - components: - - type: Transform - pos: 71.5,-6.5 - parent: 12 - - uid: 28801 - components: - - type: Transform - pos: 72.5,-6.5 - parent: 12 - - uid: 28802 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 12 - - uid: 28803 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - - uid: 29148 + - uid: 29089 components: - type: Transform - pos: 49.5,-1.5 + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 parent: 12 - uid: 29210 components: @@ -144336,26 +145006,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-62.5 parent: 12 - - uid: 31512 - components: - - type: Transform - pos: 33.5,3.5 - parent: 12 - - uid: 31513 - components: - - type: Transform - pos: 34.5,3.5 - parent: 12 - - uid: 31514 - components: - - type: Transform - pos: 35.5,3.5 - parent: 12 - - uid: 31515 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 31603 components: - type: Transform @@ -144433,45 +145083,30 @@ entities: - type: Transform pos: 46.5,13.5 parent: 12 - - uid: 12315 - components: - - type: Transform - pos: 29.5,12.5 - parent: 12 - uid: 21531 components: - type: Transform pos: -1.5,16.5 parent: 12 - - uid: 22147 - components: - - type: Transform - pos: 80.5,-1.5 - parent: 12 - - uid: 26594 - components: - - type: Transform - pos: 80.5,8.5 - parent: 12 - uid: 27103 components: - type: Transform pos: 56.5,14.5 parent: 12 - - uid: 30489 + - uid: 28674 components: - type: Transform - pos: 33.5,10.5 + pos: 44.5,-2.5 parent: 12 - - uid: 30490 + - uid: 28921 components: - type: Transform - pos: 44.5,-4.5 + pos: 32.5,10.5 parent: 12 - - uid: 30491 + - uid: 30490 components: - type: Transform - pos: 44.5,-2.5 + pos: 44.5,-4.5 parent: 12 - uid: 30492 components: @@ -145223,6 +145858,20 @@ entities: - type: Transform pos: 12.6497135,57.214436 parent: 12 +- proto: Intellicard + entities: + - uid: 28861 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.43437,-0.48939347 + parent: 12 + - uid: 28862 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -2.5072865,-0.47896957 + parent: 12 - proto: IntercomCommon entities: - uid: 8792 @@ -145280,6 +145929,12 @@ entities: parent: 12 - proto: IntercomEngineering entities: + - uid: 2894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,0.5 + parent: 12 - uid: 5594 components: - type: Transform @@ -145313,11 +145968,22 @@ entities: - type: Transform pos: 43.5,46.5 parent: 12 - - uid: 26064 + - uid: 27326 + components: + - type: Transform + pos: 46.5,0.5 + parent: 12 + - uid: 27352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 12 + - uid: 28770 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,-2.5 + pos: 59.5,-0.5 parent: 12 - proto: IntercomMedical entities: @@ -145523,6 +146189,25 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,17.5 parent: 12 +- proto: JetpackBlueFilled + entities: + - uid: 28698 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 57.52248,-5.5233436 + parent: 12 + - type: GasTank + toggleActionEntity: 28700 + - type: Jetpack + toggleActionEntity: 28699 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28699 + - 28700 - proto: JetpackMiniFilled entities: - uid: 16458 @@ -145616,11 +146301,6 @@ entities: - type: Transform pos: 28.5,22.5 parent: 12 - - uid: 405 - components: - - type: Transform - pos: 9.5,5.5 - parent: 12 - uid: 3808 components: - type: Transform @@ -145732,11 +146412,6 @@ entities: parent: 12 - proto: KnifePlastic entities: - - uid: 11469 - components: - - type: Transform - pos: 8.559147,6.580246 - parent: 12 - uid: 21386 components: - type: Transform @@ -145924,7 +146599,7 @@ entities: - uid: 11014 components: - type: Transform - pos: 47.496155,-2.439421 + pos: 47.426105,-3.4417992 parent: 12 - proto: LightBulbOld entities: @@ -145948,22 +146623,30 @@ entities: - type: Transform pos: -19.24069,2.5948265 parent: 12 -- proto: LockerAtmosphericsFilled +- proto: LiveLetLiveCircuitBoard entities: - - uid: 2929 + - uid: 28853 components: - type: Transform - pos: 52.5,6.5 + rot: -12.566370614359172 rad + pos: 2.6437569,-15.31712 parent: 12 - - uid: 25089 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 3021 components: - type: Transform - pos: 51.5,6.5 + pos: 31.5,4.5 parent: 12 - - uid: 26553 + - uid: 7831 components: - type: Transform - pos: 53.5,6.5 + pos: 31.5,2.5 + parent: 12 + - uid: 28844 + components: + - type: Transform + pos: 31.5,3.5 parent: 12 - proto: LockerBooze entities: @@ -146705,11 +147388,6 @@ entities: - type: Transform pos: 2.5,65.5 parent: 12 - - uid: 27312 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - proto: LootSpawnerIndustrial entities: - uid: 21945 @@ -146799,11 +147477,6 @@ entities: - type: Transform pos: 31.5,0.5 parent: 12 - - uid: 28849 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 12 - proto: LootSpawnerMaterialsSupplementary entities: - uid: 5980 @@ -146988,11 +147661,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-53.5 parent: 12 - - uid: 5429 - components: - - type: Transform - pos: 18.5,1.5 - parent: 12 - uid: 15384 components: - type: Transform @@ -147043,6 +147711,68 @@ entities: - type: Transform pos: -42.535183,36.7932 parent: 12 +- proto: MailingUnit + entities: + - uid: 5831 + components: + - type: Transform + pos: 25.5,55.5 + parent: 12 + - type: MailingUnit + tag: Kitchen + target: Kitchen + - uid: 5979 + components: + - type: Transform + pos: 39.5,53.5 + parent: 12 + - type: MailingUnit + tag: Freezer + target: Freezer + - uid: 6019 + components: + - type: MetaData + name: mailing unit to chemistry + - type: Transform + pos: 66.5,50.5 + parent: 12 + - type: MailingUnit + tag: Botany + target: Botany + - uid: 6209 + components: + - type: MetaData + name: mailing unit to freezer + - type: Transform + pos: 67.5,50.5 + parent: 12 + - type: MailingUnit + tag: Botany + target: Botany + - uid: 27002 + components: + - type: Transform + pos: 25.5,56.5 + parent: 12 + - type: MailingUnit + tag: Kitchen + target: Kitchen + - uid: 28826 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 12 + - type: MailingUnit + tag: Chemistry + target: Chemistry + - uid: 28827 + components: + - type: Transform + pos: -33.5,50.5 + parent: 12 + - type: MailingUnit + tag: Security + target: Security - proto: MaintenanceFluffSpawner entities: - uid: 1079 @@ -147157,11 +147887,6 @@ entities: - type: Transform pos: -3.5,17.5 parent: 12 - - uid: 13011 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - uid: 24498 components: - type: Transform @@ -147229,11 +147954,6 @@ entities: - type: Transform pos: 37.5,25.5 parent: 12 - - uid: 2342 - components: - - type: Transform - pos: 28.5,12.5 - parent: 12 - uid: 6296 components: - type: Transform @@ -147324,6 +148044,11 @@ entities: - type: Transform pos: -7.5,21.5 parent: 12 + - uid: 26584 + components: + - type: Transform + pos: 28.5,14.5 + parent: 12 - uid: 28274 components: - type: Transform @@ -147371,47 +148096,6 @@ entities: - type: Transform pos: -28.5,-56.5 parent: 12 -- proto: Mannequin - entities: - - uid: 6209 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 12 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 2020 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 6220 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 2021 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: 6212 - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - proto: Matchbox entities: - uid: 6885 @@ -147621,17 +148305,19 @@ entities: rot: 6.283185307179586 rad pos: 2.7264805,-34.64928 parent: 12 -- proto: MedkitRadiationFilled +- proto: MedkitRadiation entities: - - uid: 2915 + - uid: 8293 components: - type: Transform - pos: 3.3725653,-32.354176 + pos: 59.512062,9.509785 parent: 12 - - uid: 5050 +- proto: MedkitRadiationFilled + entities: + - uid: 2915 components: - type: Transform - pos: 18.32129,3.6110866 + pos: 3.3725653,-32.354176 parent: 12 - uid: 6777 components: @@ -147641,7 +148327,7 @@ entities: - uid: 6778 components: - type: Transform - pos: 11.465142,-19.498817 + pos: 13.616542,-24.438873 parent: 12 - proto: MedkitToxinFilled entities: @@ -147890,10 +148576,10 @@ entities: - type: Transform pos: -32.59243,-21.422949 parent: 12 - - uid: 2247 + - uid: 5247 components: - type: Transform - pos: -0.46108937,-15.409082 + pos: 37.682983,4.6129007 parent: 12 - uid: 5914 components: @@ -147920,6 +148606,11 @@ entities: - type: Transform pos: -51.23872,29.37216 parent: 12 + - uid: 22142 + components: + - type: Transform + pos: 60.1837,-0.4900638 + parent: 12 - uid: 23674 components: - type: Transform @@ -147986,6 +148677,11 @@ entities: - type: Transform pos: -54.5,-32.5 parent: 12 + - uid: 5639 + components: + - type: Transform + pos: 26.5,11.5 + parent: 12 - uid: 6197 components: - type: Transform @@ -148001,10 +148697,10 @@ entities: - type: Transform pos: 81.5,-31.5 parent: 12 - - uid: 12011 + - uid: 9319 components: - type: Transform - pos: 39.5,0.5 + pos: 25.5,12.5 parent: 12 - uid: 12122 components: @@ -148026,11 +148722,21 @@ entities: - type: Transform pos: -3.5,11.5 parent: 12 + - uid: 21616 + components: + - type: Transform + pos: 25.5,11.5 + parent: 12 - uid: 22708 components: - type: Transform pos: -55.5,-35.5 parent: 12 + - uid: 23132 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 12 - uid: 23699 components: - type: Transform @@ -148051,25 +148757,15 @@ entities: - type: Transform pos: -2.5,36.5 parent: 12 - - uid: 26576 - components: - - type: Transform - pos: 53.5,-3.5 - parent: 12 - - uid: 26890 - components: - - type: Transform - pos: 53.5,-4.5 - parent: 12 - - uid: 27307 + - uid: 26423 components: - type: Transform - pos: 59.5,6.5 + pos: 3.5,-20.5 parent: 12 - - uid: 28945 + - uid: 26429 components: - type: Transform - pos: 5.5,-19.5 + pos: 4.5,-20.5 parent: 12 - uid: 29291 components: @@ -148111,6 +148807,34 @@ entities: - type: Transform pos: 29.894995,45.5396 parent: 12 + - uid: 25104 + components: + - type: Transform + parent: 28689 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25191 + components: + - type: Transform + parent: 28690 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28707 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.708927,9.40214 + parent: 12 + - type: GasTank + toggleActionEntity: 28708 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28708 - uid: 30711 components: - type: Transform @@ -148127,10 +148851,10 @@ entities: - 30712 - proto: NitrousOxideCanister entities: - - uid: 26811 + - uid: 26685 components: - type: Transform - pos: 57.5,-3.5 + pos: 24.5,8.5 parent: 12 - proto: NitrousOxideTankFilled entities: @@ -148209,6 +148933,14 @@ entities: - type: Transform pos: 57.5,46.5 parent: 12 +- proto: NTDefaultCircuitBoard + entities: + - uid: 28854 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.3989635,-1.1252534 + parent: 12 - proto: NuclearBomb entities: - uid: 21066 @@ -148224,6 +148956,14 @@ entities: - type: Transform pos: -48.5,69.5 parent: 12 +- proto: NutimovCircuitBoard + entities: + - uid: 28855 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.6622753,-15.619799 + parent: 12 - proto: OperatingTable entities: - uid: 1812 @@ -148282,10 +149022,10 @@ entities: - type: Transform pos: -54.5,-29.5 parent: 12 - - uid: 2859 + - uid: 3690 components: - type: Transform - pos: 39.5,1.5 + pos: 27.5,11.5 parent: 12 - uid: 6679 components: @@ -148302,6 +149042,11 @@ entities: - type: Transform pos: 35.5,-30.5 parent: 12 + - uid: 7236 + components: + - type: Transform + pos: 26.5,12.5 + parent: 12 - uid: 7334 components: - type: Transform @@ -148337,6 +149082,11 @@ entities: - type: Transform pos: -2.5,11.5 parent: 12 + - uid: 23361 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 12 - uid: 23698 components: - type: Transform @@ -148357,31 +149107,26 @@ entities: - type: Transform pos: -2.5,37.5 parent: 12 - - uid: 27057 + - uid: 26424 components: - type: Transform - pos: 54.5,-4.5 + pos: 2.5,-20.5 parent: 12 - - uid: 27140 + - uid: 26431 components: - type: Transform - pos: 54.5,-3.5 + pos: 1.5,-20.5 parent: 12 - - uid: 27306 + - uid: 26623 components: - type: Transform - pos: 61.5,6.5 + pos: 27.5,12.5 parent: 12 - uid: 27448 components: - type: Transform pos: -56.5,-35.5 parent: 12 - - uid: 28944 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 12 - uid: 29073 components: - type: Transform @@ -148427,6 +149172,20 @@ entities: actions: !type:Container ents: - 12128 + - uid: 28709 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.55129,9.456535 + parent: 12 + - type: GasTank + toggleActionEntity: 28710 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28710 - uid: 30713 components: - type: Transform @@ -148546,6 +149305,58 @@ entities: - type: Transform pos: 54.333927,24.618994 parent: 12 + - uid: 29970 + components: + - type: Transform + pos: 29.532839,4.411601 + parent: 12 + - type: Paper + content: >+ + [head=2]Standard output pressures for different tanks:[/head] + + ───────────────────────────────────────── + + [color=blue]Oxygen tank[/color] - 21.3 kPA + + [color=red]Nitrogen tank[/color] - 21.3 kPA + + Air tank - 101.3 kPA + + Nitrous oxide tank - 30.4 kPA + + [color=orange]Plasma tank[/color] - 101.3 kPA + + [color=red]Fun[/color][color=orange]ny e[/color][color=yellow]merg[/color][color=green]ency[/color][color=blue] oxy[/color][color=purple]gen [/color][color=pink]tank[/color] - 22.4 kPA + + + + [color=#AAAAAA]Note: The output pressures for the emergency, double, and extended-capacity versions of tanks are the same as their counterparts, with the exception of the funny emergency oxygen tank.[/color] + + + + + + + + + + + + + + + + + + + + + + + + + + - uid: 31763 components: - type: Transform @@ -148581,8 +149392,7 @@ entities: - uid: 31769 components: - type: Transform - rot: -18.84955592153876 rad - pos: 55.729565,5.748849 + pos: 8.563417,-10.653862 parent: 12 - type: Paper content: >+ @@ -148628,6 +149438,7 @@ entities: + - proto: PaperBin10 @@ -148863,56 +149674,60 @@ entities: - type: Transform pos: -6.698526,77.58844 parent: 12 -- proto: ParticleAcceleratorControlBox +- proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 4668 + - uid: 26740 components: - type: Transform - pos: 20.5,3.5 + pos: 59.5,3.5 parent: 12 - - type: ApcPowerReceiver - needsPower: False -- proto: ParticleAcceleratorEmitterFore +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 4591 + - uid: 24689 components: - type: Transform - pos: 21.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,4.5 parent: 12 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 4589 + - uid: 26074 components: - type: Transform - pos: 22.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,5.5 parent: 12 -- proto: ParticleAcceleratorEmitterStarboard +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 4590 + - uid: 26491 components: - type: Transform - pos: 20.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,3.5 parent: 12 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 8958 + - uid: 9680 components: - type: Transform - pos: 21.5,6.5 + rot: 1.5707963267948966 rad + pos: 58.5,4.5 parent: 12 - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 4671 + - uid: 9703 components: - type: Transform - pos: 21.5,3.5 + rot: 1.5707963267948966 rad + pos: 59.5,4.5 parent: 12 -- proto: ParticleAcceleratorPowerBox +- proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 8959 + - uid: 26487 components: - type: Transform - pos: 20.5,2.5 + rot: 1.5707963267948966 rad + pos: 60.5,4.5 parent: 12 - proto: PartRodMetal entities: @@ -149337,10 +150152,11 @@ entities: parent: 12 - proto: PlaqueAtmos entities: - - uid: 26895 + - uid: 26842 components: - type: Transform - pos: 59.5,-2.5 + rot: 1.5707963267948966 rad + pos: 18.5,6.5 parent: 12 - proto: PlasmaCanister entities: @@ -149354,25 +150170,25 @@ entities: - type: Transform pos: -50.5,-34.5 parent: 12 - - uid: 9741 + - uid: 5636 components: - type: Transform - pos: 10.5,13.5 + pos: 24.5,-6.5 parent: 12 - - uid: 26578 + - uid: 9741 components: - type: Transform - pos: 58.5,-6.5 + pos: 10.5,13.5 parent: 12 - - uid: 27001 + - uid: 25479 components: - type: Transform - pos: 57.5,-6.5 + pos: 27.5,7.5 parent: 12 - - uid: 27308 + - uid: 26426 components: - type: Transform - pos: 63.5,6.5 + pos: 27.5,6.5 parent: 12 - uid: 29074 components: @@ -149478,6 +150294,12 @@ entities: - type: Transform pos: 38.555447,-30.430433 parent: 12 + - uid: 25661 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 10.447776,2.5438957 + parent: 12 - uid: 27187 components: - type: Transform @@ -149493,7 +150315,7 @@ entities: - uid: 4062 components: - type: Transform - pos: -42.541058,-20.577986 + pos: -42.47864,-19.642271 parent: 12 - uid: 22198 components: @@ -149595,6 +150417,11 @@ entities: parent: 12 - proto: PortableGeneratorJrPacman entities: + - uid: 149 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 12 - uid: 2978 components: - type: Transform @@ -149640,11 +150467,6 @@ entities: - type: Transform pos: -35.5,-10.5 parent: 12 - - uid: 27835 - components: - - type: Transform - pos: 27.5,5.5 - parent: 12 - uid: 27837 components: - type: Transform @@ -149658,11 +150480,6 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 28948 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 12 - uid: 31448 components: - type: Transform @@ -149677,37 +150494,29 @@ entities: parent: 12 - proto: PortableGeneratorPacman entities: - - uid: 1555 + - uid: 2116 components: - type: Transform anchored: True - pos: 8.5,-11.5 + pos: -2.5,-2.5 parent: 12 - type: Physics bodyType: Static - - uid: 2116 + - uid: 8799 components: - type: Transform anchored: True - pos: -2.5,-2.5 + pos: 40.5,4.5 parent: 12 - type: Physics bodyType: Static - - uid: 27309 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - proto: PortableGeneratorSuperPacman entities: - - uid: 1557 + - uid: 10701 components: - type: Transform - anchored: True - pos: 9.5,-11.5 + pos: 37.5,0.5 parent: 12 - - type: Physics - bodyType: Static - proto: PortableScrubber entities: - uid: 1760 @@ -149725,11 +150534,21 @@ entities: - type: Transform pos: -39.5,-30.5 parent: 12 + - uid: 5274 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 12 - uid: 7161 components: - type: Transform pos: 34.5,-30.5 parent: 12 + - uid: 11929 + components: + - type: Transform + pos: 21.5,7.5 + parent: 12 - uid: 12631 components: - type: Transform @@ -149740,6 +150559,11 @@ entities: - type: Transform pos: -11.5,24.5 parent: 12 + - uid: 16586 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 18161 components: - type: Transform @@ -149760,15 +150584,20 @@ entities: - type: Transform pos: -18.5,59.5 parent: 12 - - uid: 26784 + - uid: 25480 components: - type: Transform - pos: 76.5,-0.5 + pos: 22.5,7.5 parent: 12 - - uid: 26786 + - uid: 26548 components: - type: Transform - pos: 56.5,2.5 + pos: 25.5,-14.5 + parent: 12 + - uid: 26635 + components: + - type: Transform + pos: 24.5,-14.5 parent: 12 - proto: PosterBroken entities: @@ -149807,11 +150636,10 @@ entities: parent: 12 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 26696 + - uid: 23 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,3.5 + pos: 25.5,4.5 parent: 12 - proto: PosterContrabandC20r entities: @@ -149841,19 +150669,27 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-58.5 parent: 12 -- proto: PosterContrabandEAT +- proto: PosterContrabandEnlistGorlex entities: - - uid: 366 + - uid: 28268 components: - type: Transform - pos: 10.5,4.5 + pos: -51.5,-14.5 parent: 12 -- proto: PosterContrabandEnlistGorlex +- proto: PosterContrabandHackingGuide entities: - - uid: 28268 + - uid: 28717 components: - type: Transform - pos: -51.5,-14.5 + pos: 59.5,0.5 + parent: 12 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 6287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,12.5 parent: 12 - proto: PosterContrabandInterdyne entities: @@ -149956,6 +150792,13 @@ entities: - type: Transform pos: -2.5,57.5 parent: 12 +- proto: PosterLegitFruitBowl + entities: + - uid: 28712 + components: + - type: Transform + pos: 51.5,7.5 + parent: 12 - proto: PosterLegitIan entities: - uid: 30229 @@ -149998,11 +150841,22 @@ entities: parent: 12 - proto: PosterLegitSafetyEyeProtection entities: + - uid: 2970 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 12 - uid: 11334 components: - type: Transform pos: 28.5,1.5 parent: 12 + - uid: 31910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 12 - proto: PosterLegitSafetyInternals entities: - uid: 11337 @@ -150010,12 +150864,10 @@ entities: - type: Transform pos: -20.5,-1.5 parent: 12 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 21703 + - uid: 28719 components: - type: Transform - pos: 17.5,7.5 + pos: 63.5,7.5 parent: 12 - proto: PosterLegitSafetyMothHardhat entities: @@ -150029,6 +150881,11 @@ entities: - type: Transform pos: 29.5,-15.5 parent: 12 + - uid: 28718 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 12 - proto: PosterLegitSafetyMothMeth entities: - uid: 30887 @@ -150038,10 +150895,11 @@ entities: parent: 12 - proto: PosterLegitSafetyMothPiping entities: - - uid: 2604 + - uid: 26648 components: - type: Transform - pos: 53.5,0.5 + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 parent: 12 - proto: PosterLegitScience entities: @@ -150162,11 +151020,6 @@ entities: parent: 12 - proto: PottedPlantRandom entities: - - uid: 2066 - components: - - type: Transform - pos: 10.5,2.5 - parent: 12 - uid: 8484 components: - type: Transform @@ -150432,11 +151285,6 @@ entities: - type: Transform pos: 53.5,-29.5 parent: 12 - - uid: 27303 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 12 - proto: PottedPlantRandomPlastic entities: - uid: 26226 @@ -150497,6 +151345,16 @@ entities: - type: Transform pos: 49.463097,47.95464 parent: 12 + - uid: 27238 + components: + - type: Transform + pos: 8.669416,-11.102629 + parent: 12 + - uid: 28864 + components: + - type: Transform + pos: 2.6072974,-0.46769977 + parent: 12 - proto: PowerCellRecharger entities: - uid: 358 @@ -150674,6 +151532,17 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-49.5 parent: 12 + - uid: 28833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 12 + - uid: 28863 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 12 - proto: PowerCellSmall entities: - uid: 4196 @@ -150731,12 +151600,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 12 - - uid: 630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 12 - uid: 1961 components: - type: Transform @@ -150994,11 +151857,16 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-48.5 parent: 12 - - uid: 3553 + - uid: 3628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 + pos: 13.5,-2.5 + parent: 12 + - uid: 3629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 parent: 12 - uid: 3776 components: @@ -151047,6 +151915,12 @@ entities: rot: 3.141592653589793 rad pos: -36.5,26.5 parent: 12 + - uid: 5186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 12 - uid: 5216 components: - type: Transform @@ -151065,17 +151939,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,22.5 parent: 12 - - uid: 5312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 12 - - uid: 5324 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 12 - uid: 5325 components: - type: Transform @@ -151111,51 +151974,11 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-17.5 parent: 12 - - uid: 5542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 12 - - uid: 5543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 12 - - uid: 5546 + - uid: 5853 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 12 - - uid: 5548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-12.5 - parent: 12 - - uid: 5549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-12.5 - parent: 12 - - uid: 5550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 12 - - uid: 5552 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 5553 - components: - - type: Transform - pos: 23.5,-0.5 + pos: 10.5,2.5 parent: 12 - uid: 5928 components: @@ -151195,12 +152018,6 @@ entities: - type: Transform pos: 28.5,-30.5 parent: 12 - - uid: 6235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 12 - uid: 6310 components: - type: Transform @@ -151437,12 +152254,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-47.5 parent: 12 - - uid: 9135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 12 - uid: 9299 components: - type: Transform @@ -151504,6 +152315,18 @@ entities: - type: Transform pos: -27.5,34.5 parent: 12 + - uid: 9398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 12 + - uid: 9413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 12 - uid: 9544 components: - type: Transform @@ -151533,11 +152356,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 12 - - uid: 9618 - components: - - type: Transform - pos: 27.5,5.5 - parent: 12 - uid: 9714 components: - type: Transform @@ -151699,6 +152517,11 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,33.5 parent: 12 + - uid: 10908 + components: + - type: Transform + pos: 35.5,4.5 + parent: 12 - uid: 11125 components: - type: Transform @@ -151711,6 +152534,11 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-50.5 parent: 12 + - uid: 11360 + components: + - type: Transform + pos: 59.5,6.5 + parent: 12 - uid: 12016 components: - type: Transform @@ -151747,6 +152575,18 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,29.5 parent: 12 + - uid: 12261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 12 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 12 - uid: 12715 components: - type: Transform @@ -152672,12 +153512,6 @@ entities: - type: Transform pos: 9.5,28.5 parent: 12 - - uid: 19541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 12 - uid: 19549 components: - type: Transform @@ -152700,6 +153534,12 @@ entities: - type: Transform pos: 52.5,-13.5 parent: 12 + - uid: 20161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 12 - uid: 20906 components: - type: Transform @@ -152793,11 +153633,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,39.5 parent: 12 - - uid: 22526 - components: - - type: Transform - pos: 34.5,2.5 - parent: 12 - uid: 24103 components: - type: Transform @@ -152842,49 +153677,91 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-35.5 parent: 12 - - uid: 26547 + - uid: 26437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-5.5 + pos: 27.5,12.5 parent: 12 - - uid: 26548 + - uid: 26577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 + - uid: 26579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-2.5 + pos: 29.5,-11.5 parent: 12 - - uid: 26549 + - uid: 26746 components: - type: Transform - pos: 55.5,-3.5 + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 parent: 12 - - uid: 26632 + - uid: 26855 components: - type: Transform - pos: 62.5,4.5 + rot: 3.141592653589793 rad + pos: 59.5,2.5 parent: 12 - - uid: 27132 + - uid: 26857 components: - type: Transform - pos: 55.5,2.5 + pos: 58.5,12.5 parent: 12 - - uid: 27135 + - uid: 26975 components: - type: Transform - pos: 69.5,2.5 + pos: 68.5,12.5 parent: 12 - - uid: 27209 + - uid: 26976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,21.5 + pos: 64.5,0.5 parent: 12 - - uid: 27892 + - uid: 26978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 + - uid: 26980 + components: + - type: Transform + pos: 76.5,12.5 + parent: 12 + - uid: 26981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,8.5 + parent: 12 + - uid: 26982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,0.5 + parent: 12 + - uid: 26983 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-5.5 + pos: 76.5,-3.5 + parent: 12 + - uid: 26999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-3.5 + parent: 12 + - uid: 27209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,21.5 parent: 12 - uid: 28240 components: @@ -152892,6 +153769,34 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,19.5 parent: 12 + - uid: 28650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 12 + - uid: 28668 + components: + - type: Transform + pos: 53.5,2.5 + parent: 12 + - uid: 28669 + components: + - type: Transform + pos: 29.5,0.5 + parent: 12 + - uid: 28670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 12 + - uid: 28671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 - uid: 29077 components: - type: Transform @@ -153073,6 +153978,12 @@ entities: - type: Transform pos: -26.5,-33.5 parent: 12 + - uid: 2138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 12 - uid: 2264 components: - type: Transform @@ -153103,12 +154014,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-33.5 parent: 12 - - uid: 3626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 12 - uid: 4210 components: - type: Transform @@ -153121,11 +154026,23 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-33.5 parent: 12 - - uid: 4947 + - uid: 4645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,2.5 + rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 12 + - uid: 4677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,4.5 + parent: 12 + - uid: 4792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 parent: 12 - uid: 4980 components: @@ -153133,11 +154050,11 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 12 - - uid: 5118 + - uid: 5045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 parent: 12 - uid: 5124 components: @@ -153174,40 +154091,41 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-51.5 parent: 12 - - uid: 5407 + - uid: 5183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,7.5 + pos: 25.5,-2.5 parent: 12 - - uid: 5417 + - uid: 5185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 parent: 12 - - uid: 5881 + - uid: 5417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-15.5 + rot: 3.141592653589793 rad + pos: 9.5,13.5 parent: 12 - - uid: 5982 + - uid: 5543 components: - type: Transform - pos: 35.5,-4.5 + rot: 3.141592653589793 rad + pos: 49.5,-1.5 parent: 12 - - uid: 6199 + - uid: 5833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 parent: 12 - - uid: 6354 + - uid: 5881 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,3.5 + pos: -28.5,-15.5 parent: 12 - uid: 6758 components: @@ -153219,12 +154137,6 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 6764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-15.5 - parent: 12 - uid: 6834 components: - type: Transform @@ -153253,6 +154165,12 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,56.5 parent: 12 + - uid: 7285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 12 - uid: 7329 components: - type: Transform @@ -153425,6 +154343,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,68.5 parent: 12 + - uid: 9452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 12 - uid: 9548 components: - type: Transform @@ -153436,11 +154360,11 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,11.5 parent: 12 - - uid: 9629 + - uid: 9853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,0.5 + pos: 1.5,-19.5 parent: 12 - uid: 9907 components: @@ -153453,54 +154377,24 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-19.5 parent: 12 - - uid: 10376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 12 - - uid: 10381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 12 - uid: 10403 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-10.5 parent: 12 - - uid: 10656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-4.5 - parent: 12 - uid: 10803 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 12 - - uid: 10842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 12 - uid: 10886 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,38.5 parent: 12 - - uid: 10887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 12 - uid: 11062 components: - type: Transform @@ -153535,6 +154429,11 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,9.5 parent: 12 + - uid: 12711 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 12 - uid: 12922 components: - type: Transform @@ -153606,6 +154505,12 @@ entities: - type: Transform pos: 57.5,-13.5 parent: 12 + - uid: 16365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,9.5 + parent: 12 - uid: 16554 components: - type: Transform @@ -153842,24 +154747,12 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,47.5 parent: 12 - - uid: 25413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,13.5 - parent: 12 - uid: 25586 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-24.5 parent: 12 - - uid: 25666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,18.5 - parent: 12 - uid: 26109 components: - type: Transform @@ -153877,71 +154770,38 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-49.5 parent: 12 - - uid: 26484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-3.5 - parent: 12 - uid: 26560 components: - type: Transform pos: 53.5,6.5 parent: 12 - - uid: 27005 + - uid: 26851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,6.5 + pos: 62.5,-2.5 parent: 12 - - uid: 27067 + - uid: 26852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 12 - - uid: 27138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-1.5 - parent: 12 - - uid: 27139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,0.5 - parent: 12 - - uid: 27141 - components: - - type: Transform - pos: 67.5,8.5 - parent: 12 - - uid: 27142 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 27143 - components: - - type: Transform - pos: 63.5,8.5 + pos: 7.5,-3.5 parent: 12 - - uid: 27144 + - uid: 26853 components: - type: Transform - pos: 61.5,8.5 + pos: 16.5,10.5 parent: 12 - - uid: 27145 + - uid: 27030 components: - type: Transform - pos: 59.5,8.5 + rot: 3.141592653589793 rad + pos: 61.5,-0.5 parent: 12 - - uid: 27151 + - uid: 27067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,0.5 + pos: 46.5,-11.5 parent: 12 - uid: 27156 components: @@ -153949,12 +154809,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-7.5 parent: 12 - - uid: 27160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,3.5 - parent: 12 - uid: 27170 components: - type: Transform @@ -153967,6 +154821,12 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,21.5 parent: 12 + - uid: 27315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,0.5 + parent: 12 - uid: 27852 components: - type: Transform @@ -153996,11 +154856,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 12 - - uid: 28530 + - uid: 28523 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-20.5 + pos: 42.5,-7.5 parent: 12 - uid: 28531 components: @@ -154012,11 +154872,27 @@ entities: - type: Transform pos: -0.5,-22.5 parent: 12 - - uid: 29094 + - uid: 28682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-1.5 + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 12 + - uid: 28745 + components: + - type: Transform + pos: 19.5,7.5 + parent: 12 + - uid: 28753 + components: + - type: Transform + pos: 16.5,5.5 + parent: 12 + - uid: 28920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,1.5 parent: 12 - uid: 29285 components: @@ -154182,12 +155058,6 @@ entities: - type: Transform pos: -35.5,-37.5 parent: 12 - - uid: 2338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,12.5 - parent: 12 - uid: 2645 components: - type: Transform @@ -154240,6 +155110,11 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 12 + - uid: 4608 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 12 - uid: 4707 components: - type: Transform @@ -154251,15 +155126,15 @@ entities: - type: Transform pos: 5.5,61.5 parent: 12 - - uid: 5054 + - uid: 5129 components: - type: Transform - pos: 18.5,3.5 + pos: 61.5,-0.5 parent: 12 - - uid: 5601 + - uid: 5270 components: - type: Transform - pos: 8.5,-8.5 + pos: 37.5,4.5 parent: 12 - uid: 5873 components: @@ -154333,11 +155208,6 @@ entities: - type: Transform pos: 41.5,-39.5 parent: 12 - - uid: 9491 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - uid: 9599 components: - type: Transform @@ -154489,12 +155359,28 @@ entities: - type: Transform pos: -50.5,38.5 parent: 12 + - uid: 21933 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 12 + - uid: 21976 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 12 - uid: 22018 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 12 + - uid: 22102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,4.5 + parent: 12 - uid: 22406 components: - type: Transform @@ -154533,6 +155419,11 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,46.5 parent: 12 + - uid: 24333 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 12 - uid: 24477 components: - type: Transform @@ -154550,21 +155441,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-34.5 parent: 12 - - uid: 25196 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - uid: 25327 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 12 - - uid: 25532 + - uid: 25682 components: - type: Transform - pos: 7.5,-3.5 + pos: 57.5,9.5 parent: 12 - uid: 25684 components: @@ -154737,6 +155623,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,38.5 parent: 12 + - uid: 26419 + components: + - type: Transform + pos: 28.5,14.5 + parent: 12 + - uid: 26549 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 12 - uid: 26571 components: - type: Transform @@ -154749,10 +155645,10 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,64.5 parent: 12 - - uid: 27244 + - uid: 27000 components: - type: Transform - pos: 55.5,2.5 + pos: 54.5,-6.5 parent: 12 - uid: 27397 components: @@ -154777,6 +155673,21 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-16.5 parent: 12 + - uid: 28704 + components: + - type: Transform + pos: 58.5,12.5 + parent: 12 + - uid: 28759 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 + - uid: 28760 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 12 - uid: 29596 components: - type: Transform @@ -154819,52 +155730,60 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,0.5 parent: 12 +- proto: RadiationCollectorFlatpack + entities: + - uid: 4727 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.41483,-0.5951568 + parent: 12 - proto: RadiationCollectorFullTank entities: - - uid: 3823 + - uid: 26077 components: - type: Transform - pos: 16.5,-4.5 + pos: 72.5,12.5 parent: 12 - - uid: 9450 + - uid: 26157 components: - type: Transform - pos: 26.5,-4.5 + pos: 70.5,12.5 parent: 12 - - uid: 9856 + - uid: 26158 components: - type: Transform - pos: 16.5,-8.5 + pos: 80.5,4.5 parent: 12 - - uid: 9858 + - uid: 26159 components: - type: Transform - pos: 26.5,-8.5 + pos: 74.5,12.5 parent: 12 - - uid: 27256 + - uid: 26160 components: - type: Transform - pos: 16.5,-6.5 + pos: 80.5,2.5 parent: 12 - - uid: 27352 + - uid: 26522 components: - type: Transform - pos: 26.5,-6.5 + pos: 74.5,-3.5 parent: 12 - - uid: 28999 + - uid: 26526 components: - type: Transform - pos: 19.5,-11.5 + pos: 70.5,-3.5 parent: 12 - - uid: 29000 + - uid: 26796 components: - type: Transform - pos: 23.5,-11.5 + pos: 80.5,6.5 parent: 12 - - uid: 29004 + - uid: 26797 components: - type: Transform - pos: 21.5,-11.5 + pos: 72.5,-3.5 parent: 12 - proto: RadioHandheld entities: @@ -154970,39 +155889,11 @@ entities: - type: Transform pos: -31.5,-9.5 parent: 12 - - uid: 2968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,3.5 - parent: 12 - uid: 4065 components: - type: Transform pos: -14.5,-45.5 parent: 12 - - uid: 4876 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 12 - - uid: 4877 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 12 - - uid: 4885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 12 - - uid: 4902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 12 - uid: 6079 components: - type: Transform @@ -155216,6 +156107,28 @@ entities: - type: Transform pos: 63.5,56.5 parent: 12 + - uid: 28688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 12 + - uid: 28695 + components: + - type: Transform + pos: 52.5,0.5 + parent: 12 + - uid: 28756 + components: + - type: Transform + pos: 55.5,1.5 + parent: 12 + - uid: 28765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-2.5 + parent: 12 - uid: 29605 components: - type: Transform @@ -155381,12 +156294,6 @@ entities: parent: 12 - proto: RailingCornerSmall entities: - - uid: 4854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 12 - uid: 6053 components: - type: Transform @@ -155504,11 +156411,6 @@ entities: parent: 12 - proto: RandomDrinkGlass entities: - - uid: 397 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 12 - uid: 15069 components: - type: Transform @@ -155539,11 +156441,6 @@ entities: - type: Transform pos: -55.5,-14.5 parent: 12 - - uid: 29347 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 12 - uid: 29353 components: - type: Transform @@ -155551,11 +156448,6 @@ entities: parent: 12 - proto: RandomFoodMeal entities: - - uid: 2138 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 12 - uid: 23547 components: - type: Transform @@ -155573,11 +156465,6 @@ entities: parent: 12 - proto: RandomFoodSingle entities: - - uid: 407 - components: - - type: Transform - pos: 7.5,0.5 - parent: 12 - uid: 15419 components: - type: Transform @@ -155622,11 +156509,6 @@ entities: - type: Transform pos: 38.5,-9.5 parent: 12 - - uid: 11338 - components: - - type: Transform - pos: 41.5,3.5 - parent: 12 - uid: 19860 components: - type: Transform @@ -155707,6 +156589,11 @@ entities: - type: Transform pos: 34.5,21.5 parent: 12 + - uid: 31888 + components: + - type: Transform + pos: 41.5,4.5 + parent: 12 - proto: RandomPosterContraband entities: - uid: 2344 @@ -155714,11 +156601,6 @@ entities: - type: Transform pos: 41.5,-19.5 parent: 12 - - uid: 2509 - components: - - type: Transform - pos: 29.5,13.5 - parent: 12 - uid: 8334 components: - type: Transform @@ -155734,12 +156616,6 @@ entities: - type: Transform pos: 34.5,14.5 parent: 12 - - uid: 15007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-1.5 - parent: 12 - uid: 15181 components: - type: Transform @@ -155816,6 +156692,17 @@ entities: - type: Transform pos: -10.5,-31.5 parent: 12 + - uid: 26824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,15.5 + parent: 12 + - uid: 26825 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 12 - uid: 29354 components: - type: Transform @@ -156121,12 +157008,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-18.5 parent: 12 - - uid: 24333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 12 - uid: 24339 components: - type: Transform @@ -156256,21 +157137,11 @@ entities: - type: Transform pos: 4.5,-23.5 parent: 12 - - uid: 697 - components: - - type: Transform - pos: 31.5,10.5 - parent: 12 - uid: 5858 components: - type: Transform pos: 36.5,14.5 parent: 12 - - uid: 5967 - components: - - type: Transform - pos: 7.5,4.5 - parent: 12 - uid: 6153 components: - type: Transform @@ -156291,11 +157162,6 @@ entities: - type: Transform pos: 40.5,16.5 parent: 12 - - uid: 9452 - components: - - type: Transform - pos: 16.5,0.5 - parent: 12 - uid: 12045 components: - type: Transform @@ -156337,11 +157203,6 @@ entities: - type: Transform pos: -52.5,60.5 parent: 12 - - uid: 23982 - components: - - type: Transform - pos: 12.5,4.5 - parent: 12 - uid: 24221 components: - type: Transform @@ -156807,11 +157668,6 @@ entities: - type: Transform pos: -26.5,-6.5 parent: 12 - - uid: 24455 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 12 - uid: 24457 components: - type: Transform @@ -156927,11 +157783,6 @@ entities: - type: Transform pos: -38.5,30.5 parent: 12 - - uid: 26074 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 12 - uid: 31146 components: - type: Transform @@ -157034,11 +157885,6 @@ entities: - type: Transform pos: -13.5,23.5 parent: 12 - - uid: 19311 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 12 - uid: 22401 components: - type: Transform @@ -157079,11 +157925,6 @@ entities: - type: Transform pos: -6.5,43.5 parent: 12 - - uid: 27313 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 12 - proto: RandomVendingDrinks entities: - uid: 4172 @@ -157153,11 +157994,6 @@ entities: parent: 12 - proto: RandomVendingSnacks entities: - - uid: 404 - components: - - type: Transform - pos: 9.5,4.5 - parent: 12 - uid: 4173 components: - type: Transform @@ -157317,149 +158153,237 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-21.5 parent: 12 + - uid: 2266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-0.5 + parent: 12 + - uid: 2573 + components: + - type: Transform + pos: 11.5,1.5 + parent: 12 - uid: 2872 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,16.5 parent: 12 - - uid: 9721 + - uid: 4606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,14.5 + rot: 3.141592653589793 rad + pos: 23.5,-4.5 parent: 12 - - uid: 23155 + - uid: 4647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 + pos: 11.5,3.5 parent: 12 - - uid: 23156 + - uid: 4653 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,0.5 + pos: 23.5,1.5 parent: 12 - - uid: 23157 + - uid: 4672 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,0.5 + pos: 23.5,-2.5 parent: 12 - - uid: 23161 + - uid: 4795 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-7.5 + pos: 23.5,-10.5 parent: 12 - - uid: 23162 + - uid: 7086 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-7.5 + pos: 23.5,-8.5 parent: 12 - - uid: 23163 + - uid: 7203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-8.5 + pos: 11.5,2.5 parent: 12 - - uid: 23164 + - uid: 7225 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-9.5 + pos: 23.5,-6.5 parent: 12 - - uid: 23165 + - uid: 7228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 parent: 12 - - uid: 23166 + - uid: 7310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 parent: 12 - - uid: 23167 + - uid: 9436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-0.5 + rot: 1.5707963267948966 rad + pos: 63.5,3.5 parent: 12 - - uid: 23173 + - uid: 9588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-1.5 + rot: 1.5707963267948966 rad + pos: 63.5,5.5 parent: 12 - - uid: 23174 + - uid: 9721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 + rot: -1.5707963267948966 rad + pos: 16.5,14.5 parent: 12 - - uid: 23175 + - uid: 10346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 + pos: 57.5,7.5 parent: 12 - - uid: 24565 + - uid: 10656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-10.5 + rot: 1.5707963267948966 rad + pos: 63.5,4.5 parent: 12 - - uid: 24566 + - uid: 23116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-6.5 + pos: 57.5,1.5 parent: 12 - - uid: 24567 + - uid: 26553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-10.5 + rot: -1.5707963267948966 rad + pos: 56.5,4.5 parent: 12 - - uid: 25416 + - uid: 26572 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 + rot: 1.5707963267948966 rad + pos: 63.5,6.5 parent: 12 - - uid: 26709 + - uid: 26573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,5.5 + rot: 1.5707963267948966 rad + pos: 63.5,2.5 parent: 12 - - uid: 26969 + - uid: 26613 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,5.5 + pos: 56.5,5.5 parent: 12 - - uid: 26970 + - uid: 26639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,5.5 + pos: 9.5,0.5 parent: 12 - - uid: 26971 + - uid: 26640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,5.5 + pos: 10.5,0.5 parent: 12 - - uid: 26976 + - uid: 26672 + components: + - type: Transform + pos: 11.5,0.5 + parent: 12 + - uid: 26738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,5.5 + pos: 56.5,6.5 + parent: 12 + - uid: 26800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,1.5 + parent: 12 + - uid: 26834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 12 + - uid: 26841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-7.5 + parent: 12 + - uid: 26854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-7.5 + parent: 12 + - uid: 26856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-7.5 + parent: 12 + - uid: 26926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 12 + - uid: 26927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-5.5 + parent: 12 + - uid: 26941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 12 + - uid: 26964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 12 + - uid: 26965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-7.5 + parent: 12 + - uid: 29002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 12 + - uid: 29003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 12 + - uid: 29149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-0.5 parent: 12 - proto: ReinforcedWindow entities: @@ -157869,11 +158793,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-34.5 parent: 12 - - uid: 897 - components: - - type: Transform - pos: 6.5,7.5 - parent: 12 - uid: 900 components: - type: Transform @@ -158022,20 +158941,16 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-42.5 parent: 12 - - uid: 1344 - components: - - type: Transform - pos: 7.5,7.5 - parent: 12 - - uid: 1350 + - uid: 1962 components: - type: Transform - pos: 8.5,7.5 + pos: -22.5,63.5 parent: 12 - - uid: 1962 + - uid: 2242 components: - type: Transform - pos: -22.5,63.5 + rot: 3.141592653589793 rad + pos: 28.5,6.5 parent: 12 - uid: 2454 components: @@ -158219,6 +159134,12 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-27.5 parent: 12 + - uid: 2981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 12 - uid: 3068 components: - type: Transform @@ -158265,6 +159186,18 @@ entities: - type: Transform pos: -47.5,3.5 parent: 12 + - uid: 4175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 12 + - uid: 4314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 12 - uid: 4399 components: - type: Transform @@ -158360,37 +159293,21 @@ entities: - type: Transform pos: 15.5,-17.5 parent: 12 - - uid: 4761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 12 - - uid: 4765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 12 - - uid: 4935 - components: - - type: Transform - pos: 18.5,8.5 - parent: 12 - - uid: 4936 + - uid: 4581 components: - type: Transform - pos: 19.5,8.5 + pos: 21.5,-11.5 parent: 12 - - uid: 4957 + - uid: 4582 components: - type: Transform - pos: 21.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-5.5 parent: 12 - - uid: 4958 + - uid: 5049 components: - type: Transform - pos: 22.5,7.5 + pos: 10.5,-1.5 parent: 12 - uid: 5084 components: @@ -158408,27 +159325,12 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 5098 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 12 - uid: 5120 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,3.5 parent: 12 - - uid: 5121 - components: - - type: Transform - pos: 58.5,-2.5 - parent: 12 - - uid: 5126 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - uid: 5135 components: - type: Transform @@ -158441,11 +159343,43 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-38.5 parent: 12 + - uid: 5223 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 12 + - uid: 5224 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 5225 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 - uid: 5321 components: - type: Transform pos: -31.5,-45.5 parent: 12 + - uid: 5324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 12 + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-7.5 + parent: 12 + - uid: 5406 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 12 - uid: 5439 components: - type: Transform @@ -158482,15 +159416,86 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 12 - - uid: 5853 + - uid: 5477 components: - type: Transform - pos: 13.5,6.5 + pos: 36.5,-3.5 parent: 12 - - uid: 5855 + - uid: 5479 components: - type: Transform - pos: 11.5,6.5 + pos: 34.5,-3.5 + parent: 12 + - uid: 5546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-2.5 + parent: 12 + - uid: 5547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 12 + - uid: 5548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 12 + - uid: 5665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 5666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 5713 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 5714 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 + - uid: 5719 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 5797 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 5799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 12 + - uid: 5841 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 + - uid: 5851 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 5856 + components: + - type: Transform + pos: 13.5,-0.5 parent: 12 - uid: 5880 components: @@ -158503,6 +159508,16 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 12 + - uid: 5992 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 + - uid: 5996 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 - uid: 5998 components: - type: Transform @@ -158520,6 +159535,33 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-3.5 parent: 12 + - uid: 6010 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 + - uid: 6011 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 + - uid: 6018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 12 + - uid: 6028 + components: + - type: Transform + pos: 21.5,3.5 + parent: 12 + - uid: 6030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 12 - uid: 6052 components: - type: Transform @@ -158934,6 +159976,21 @@ entities: - type: Transform pos: -46.5,3.5 parent: 12 + - uid: 7201 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 + - uid: 7244 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7246 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 12 - uid: 7313 components: - type: Transform @@ -159150,12 +160207,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-14.5 parent: 12 - - uid: 7789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 12 - uid: 8017 components: - type: Transform @@ -159303,6 +160354,24 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-50.5 parent: 12 + - uid: 9049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 12 + - uid: 9050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 12 + - uid: 9051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,4.5 + parent: 12 - uid: 9172 components: - type: Transform @@ -159355,6 +160424,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-59.5 parent: 12 + - uid: 9415 + components: + - type: Transform + pos: 21.5,8.5 + parent: 12 - uid: 9532 components: - type: Transform @@ -159383,12 +160457,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 12 - - uid: 9676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - uid: 9678 components: - type: Transform @@ -159401,12 +160469,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-13.5 parent: 12 - - uid: 9956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 12 - uid: 10014 components: - type: Transform @@ -159831,11 +160893,6 @@ entities: - type: Transform pos: 29.5,-54.5 parent: 12 - - uid: 10346 - components: - - type: Transform - pos: 57.5,-2.5 - parent: 12 - uid: 10572 components: - type: Transform @@ -159926,6 +160983,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 12 - uid: 10896 components: - type: Transform @@ -159936,11 +160999,6 @@ entities: - type: Transform pos: 0.5,1.5 parent: 12 - - uid: 11018 - components: - - type: Transform - pos: 6.5,5.5 - parent: 12 - uid: 11029 components: - type: Transform @@ -160036,11 +161094,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,30.5 parent: 12 - - uid: 11209 - components: - - type: Transform - pos: 6.5,6.5 - parent: 12 - uid: 11251 components: - type: Transform @@ -160431,11 +161484,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-44.5 parent: 12 - - uid: 12312 - components: - - type: Transform - pos: 27.5,12.5 - parent: 12 - uid: 12313 components: - type: Transform @@ -161630,6 +162678,12 @@ entities: rot: 3.141592653589793 rad pos: 48.5,60.5 parent: 12 + - uid: 17773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 12 - uid: 17839 components: - type: Transform @@ -161991,11 +163045,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-50.5 parent: 12 - - uid: 19886 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - uid: 20089 components: - type: Transform @@ -162006,6 +163055,11 @@ entities: - type: Transform pos: -50.5,47.5 parent: 12 + - uid: 20543 + components: + - type: Transform + pos: 41.5,3.5 + parent: 12 - uid: 20778 components: - type: Transform @@ -162027,11 +163081,6 @@ entities: - type: Transform pos: 37.5,-6.5 parent: 12 - - uid: 21871 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 21888 components: - type: Transform @@ -162101,6 +163150,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 12 + - uid: 22106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,10.5 + parent: 12 - uid: 22314 components: - type: Transform @@ -162140,6 +163195,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,22.5 parent: 12 + - uid: 23164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 12 - uid: 23710 components: - type: Transform @@ -162225,10 +163286,15 @@ entities: - type: Transform pos: -1.5,-29.5 parent: 12 - - uid: 24453 + - uid: 24565 components: - type: Transform - pos: 9.5,7.5 + pos: 3.5,-21.5 + parent: 12 + - uid: 24655 + components: + - type: Transform + pos: 22.5,8.5 parent: 12 - uid: 25384 components: @@ -162371,135 +163437,28 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 12 - - uid: 26415 - components: - - type: Transform - pos: 74.5,6.5 - parent: 12 - - uid: 26492 - components: - - type: Transform - pos: 73.5,5.5 - parent: 12 - - uid: 26493 - components: - - type: Transform - pos: 72.5,5.5 - parent: 12 - - uid: 26494 - components: - - type: Transform - pos: 71.5,5.5 - parent: 12 - - uid: 26496 - components: - - type: Transform - pos: 70.5,7.5 - parent: 12 - - uid: 26497 - components: - - type: Transform - pos: 70.5,6.5 - parent: 12 - - uid: 26498 - components: - - type: Transform - pos: 74.5,7.5 - parent: 12 - - uid: 26507 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26508 - components: - - type: Transform - pos: 59.5,3.5 - parent: 12 - - uid: 26509 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26510 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26511 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - uid: 26512 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26513 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26514 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - - uid: 26515 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26516 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26517 - components: - - type: Transform - pos: 68.5,3.5 - parent: 12 - - uid: 26518 - components: - - type: Transform - pos: 70.5,3.5 - parent: 12 - - uid: 26519 - components: - - type: Transform - pos: 71.5,3.5 - parent: 12 - - uid: 26520 - components: - - type: Transform - pos: 72.5,3.5 - parent: 12 - - uid: 26521 - components: - - type: Transform - pos: 73.5,3.5 - parent: 12 - - uid: 26522 + - uid: 26463 components: - type: Transform - pos: 74.5,3.5 + rot: -1.5707963267948966 rad + pos: 24.5,12.5 parent: 12 - - uid: 26544 + - uid: 26466 components: - type: Transform - pos: 56.5,4.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 12 - - uid: 26545 + - uid: 26484 components: - type: Transform - pos: 56.5,5.5 + rot: 3.141592653589793 rad + pos: 23.5,7.5 parent: 12 - - uid: 26546 + - uid: 26504 components: - type: Transform - pos: 56.5,6.5 + pos: 33.5,-3.5 parent: 12 - uid: 26556 components: @@ -162513,6 +163472,11 @@ entities: rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 12 + - uid: 26619 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 12 - uid: 26641 components: - type: Transform @@ -162525,45 +163489,17 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-9.5 parent: 12 - - uid: 26789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 12 - - uid: 26790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 12 - - uid: 26791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 12 - - uid: 26792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 12 - uid: 26798 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-9.5 parent: 12 - - uid: 26909 - components: - - type: Transform - pos: 75.5,-0.5 - parent: 12 - - uid: 26936 + - uid: 26809 components: - type: Transform - pos: 75.5,1.5 + rot: -1.5707963267948966 rad + pos: 24.5,11.5 parent: 12 - uid: 27007 components: @@ -162582,6 +163518,11 @@ entities: - type: Transform pos: 4.5,20.5 parent: 12 + - uid: 27243 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 27289 components: - type: Transform @@ -162777,107 +163718,6 @@ entities: - type: Transform pos: -4.5,-62.5 parent: 12 - - uid: 28785 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 12 - - uid: 28786 - components: - - type: Transform - pos: 52.5,-5.5 - parent: 12 - - uid: 28787 - components: - - type: Transform - pos: 52.5,-4.5 - parent: 12 - - uid: 28788 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 12 - - uid: 28813 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 12 - - uid: 28814 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 12 - - uid: 28815 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 12 - - uid: 28816 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 12 - - uid: 28817 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 12 - - uid: 28818 - components: - - type: Transform - pos: 70.5,-6.5 - parent: 12 - - uid: 28819 - components: - - type: Transform - pos: 71.5,-6.5 - parent: 12 - - uid: 28820 - components: - - type: Transform - pos: 72.5,-6.5 - parent: 12 - - uid: 28821 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 12 - - uid: 28822 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - - uid: 28823 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 28824 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28825 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 12 - - uid: 28826 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - uid: 28827 - components: - - type: Transform - pos: 62.5,-6.5 - parent: 12 - - uid: 28832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 12 - uid: 29069 components: - type: Transform @@ -162902,17 +163742,6 @@ entities: rot: 3.141592653589793 rad pos: 50.5,0.5 parent: 12 - - uid: 29092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-1.5 - parent: 12 - - uid: 29149 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 12 - uid: 29176 components: - type: Transform @@ -163093,6 +163922,12 @@ entities: rot: 3.141592653589793 rad pos: -43.5,73.5 parent: 12 + - uid: 29722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 12 - uid: 29863 components: - type: Transform @@ -163426,26 +164261,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-62.5 parent: 12 - - uid: 31516 - components: - - type: Transform - pos: 33.5,3.5 - parent: 12 - - uid: 31517 - components: - - type: Transform - pos: 34.5,3.5 - parent: 12 - - uid: 31518 - components: - - type: Transform - pos: 35.5,3.5 - parent: 12 - - uid: 31519 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 31628 components: - type: Transform @@ -163621,6 +164436,14 @@ entities: actions: !type:Container ents: - 19882 +- proto: RobocopCircuitBoard + entities: + - uid: 28858 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.3752384,-15.493168 + parent: 12 - proto: RollerBedSpawnFolded entities: - uid: 3815 @@ -163819,6 +164642,11 @@ entities: - type: Transform pos: -20.5,-48.5 parent: 12 + - uid: 2928 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 12 - uid: 3223 components: - type: Transform @@ -163839,6 +164667,12 @@ entities: - type: Transform pos: -36.5,-43.5 parent: 12 + - uid: 5814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-14.5 + parent: 12 - uid: 8444 components: - type: Transform @@ -163854,11 +164688,6 @@ entities: - type: Transform pos: -11.5,-57.5 parent: 12 - - uid: 10368 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 12 - uid: 16494 components: - type: Transform @@ -163975,11 +164804,6 @@ entities: - type: Transform pos: 52.5,60.5 parent: 12 - - uid: 24445 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 12 - uid: 25289 components: - type: Transform @@ -164032,12 +164856,6 @@ entities: parent: 12 - proto: Screwdriver entities: - - uid: 7310 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 18.692007,3.512633 - parent: 12 - uid: 9237 components: - type: Transform @@ -164134,13 +164952,6 @@ entities: - type: Transform pos: 49.417187,48.49522 parent: 12 -- proto: SheetPlasma - entities: - - uid: 5503 - components: - - type: Transform - pos: 8.360869,-8.424053 - parent: 12 - proto: SheetPlasma1 entities: - uid: 22020 @@ -164150,13 +164961,6 @@ entities: parent: 12 - type: Stack count: 5 - - uid: 27218 - components: - - type: Transform - pos: 72.55791,-5.408911 - parent: 12 - - type: Stack - count: 5 - proto: SheetPlasma10 entities: - uid: 28215 @@ -164164,6 +164968,14 @@ entities: - type: Transform pos: -35.41417,-37.542362 parent: 12 + - uid: 29092 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 39.49274,4.534418 + parent: 12 + - type: Stack + count: 20 - proto: SheetPlasteel entities: - uid: 7311 @@ -164208,6 +165020,12 @@ entities: - type: Transform pos: -31.500504,-18.592041 parent: 12 + - uid: 4475 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 29.48155,2.7698662 + parent: 12 - uid: 4725 components: - type: Transform @@ -164258,28 +165076,28 @@ entities: - uid: 24481 components: - type: Transform - pos: 71.28976,-5.302378 + rot: -18.84955592153876 rad + pos: 29.572147,2.9947028 parent: 12 - - uid: 25105 + - uid: 26547 components: - type: Transform - rot: -6.283185307179586 rad - pos: 52.553905,2.5134444 + pos: 11.470082,-2.5260608 parent: 12 - - uid: 26921 + - uid: 29969 components: - type: Transform - pos: 71.74288,-5.443003 + pos: 8.556273,-9.731031 parent: 12 - proto: SheetUranium1 entities: - - uid: 27316 + - uid: 9481 components: - type: Transform - pos: 8.673369,-8.642803 + pos: 37.50514,4.4669657 parent: 12 - type: Stack - count: 10 + count: 5 - proto: ShelfBar entities: - uid: 22816 @@ -164726,119 +165544,64 @@ entities: parent: 12 - proto: ShuttersRadiationOpen entities: - - uid: 1556 + - uid: 249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-10.5 + pos: 57.5,1.5 parent: 12 - - uid: 4996 + - uid: 5027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 + pos: 56.5,6.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5045 + - uid: 11019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 + rot: 1.5707963267948966 rad + pos: 63.5,4.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5046 + - uid: 22100 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-7.5 + pos: 56.5,5.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5047 + - uid: 23161 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 56.5,4.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 9865 + - uid: 26414 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-2.5 + pos: 63.5,5.5 parent: 12 - - uid: 9866 + - uid: 26461 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-1.5 + pos: 63.5,6.5 parent: 12 - - uid: 9867 + - uid: 26490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-0.5 + pos: 63.5,3.5 parent: 12 - - uid: 9868 + - uid: 26578 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-10.5 + pos: 63.5,2.5 parent: 12 - - uid: 10915 + - uid: 26596 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 12 - - uid: 22288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 + pos: 57.5,7.5 parent: 12 - proto: ShuttersWindow entities: @@ -164949,6 +165712,20 @@ entities: linkedPorts: 16503: - Pressed: Toggle + - uid: 28739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 5199: + - Pressed: Toggle + 7554: + - Pressed: Toggle + 26580: + - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 574 @@ -165006,48 +165783,6 @@ entities: - Pressed: Open 2550: - Pressed: Open - - uid: 5049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,2.5 - parent: 12 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 5043: - - Pressed: Toggle - 5044: - - Pressed: Toggle - 5045: - - Pressed: Toggle - 4996: - - Pressed: Toggle - 5046: - - Pressed: Toggle - 5047: - - Pressed: Toggle - 5089: - - Pressed: Toggle - 5090: - - Pressed: Toggle - 5091: - - Pressed: Toggle - 9868: - - Pressed: Toggle - 9865: - - Pressed: Toggle - 9866: - - Pressed: Toggle - 9867: - - Pressed: Toggle - 1556: - - Pressed: Toggle - 22288: - - Pressed: Toggle - 10915: - - Pressed: Toggle - uid: 5541 components: - type: Transform @@ -165074,6 +165809,19 @@ entities: - Pressed: Toggle 24309: - Pressed: Toggle + - uid: 5629 + components: + - type: Transform + pos: 14.5,6.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 5199: + - Pressed: Toggle + 7554: + - Pressed: Toggle + 26580: + - Pressed: Toggle - uid: 5976 components: - type: Transform @@ -165282,22 +166030,6 @@ entities: - Pressed: Toggle 18857: - Pressed: Toggle - - uid: 19185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 5528: - - Pressed: Toggle - 5226: - - Pressed: Toggle - 5225: - - Pressed: Toggle - 5238: - - Pressed: Toggle - uid: 23446 components: - type: Transform @@ -165368,34 +166100,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,57.5 parent: 12 - - uid: 27212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,8.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 27214: - - Pressed: Toggle - 27216: - - Pressed: Toggle - 27217: - - Pressed: Toggle - - uid: 27213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,2.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 27214: - - Pressed: Toggle - 27216: - - Pressed: Toggle - 27217: - - Pressed: Toggle - uid: 27247 components: - type: Transform @@ -165435,6 +166139,48 @@ entities: - Pressed: Open 2548: - Pressed: Open + - uid: 28737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 26537: + - Pressed: Toggle + 26072: + - Pressed: Toggle + 26594: + - Pressed: Toggle + - uid: 28738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 249: + - Pressed: Toggle + 23161: + - Pressed: Toggle + 22100: + - Pressed: Toggle + 5027: + - Pressed: Toggle + 26596: + - Pressed: Toggle + 26461: + - Pressed: Toggle + 26414: + - Pressed: Toggle + 11019: + - Pressed: Toggle + 26490: + - Pressed: Toggle + 26578: + - Pressed: Toggle - uid: 29344 components: - type: Transform @@ -165523,11 +166269,21 @@ entities: parent: 12 - proto: SignAtmos entities: - - uid: 23412 + - uid: 16661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,0.5 + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 12 + - uid: 26433 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 12 + - uid: 26465 + components: + - type: Transform + pos: 21.5,-15.5 parent: 12 - proto: SignBar entities: @@ -165594,12 +166350,32 @@ entities: parent: 12 - proto: SignCans entities: - - uid: 21313 + - uid: 7234 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 12 + - uid: 26631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 12 +- proto: SignCansScience + entities: + - uid: 26971 + components: + - type: Transform + rot: 3.141592653589793 rad pos: -47.5,-30.5 parent: 12 + - uid: 28806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-33.5 + parent: 12 - proto: SignCargo entities: - uid: 21316 @@ -165650,11 +166426,6 @@ entities: - type: Transform pos: -5.5,46.5 parent: 12 - - uid: 21648 - components: - - type: Transform - pos: -7.5,52.5 - parent: 12 - proto: SignCryogenics entities: - uid: 2800 @@ -165669,11 +166440,13 @@ entities: - type: Transform pos: -49.5,-36.5 parent: 12 - - uid: 26121 +- proto: SignDirectionalAtmos + entities: + - uid: 29965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,12.5 + rot: -1.5707963267948966 rad + pos: 28.5,4.5 parent: 12 - proto: SignDirectionalBar entities: @@ -165890,32 +166663,46 @@ entities: parent: 12 - proto: SignElectricalMed entities: - - uid: 763 + - uid: 2261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,75.5 + parent: 12 + - uid: 8977 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,-6.5 + pos: 41.5,0.5 parent: 12 - - uid: 2261 + - uid: 9016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,75.5 + rot: 1.5707963267948966 rad + pos: 74.5,-5.5 parent: 12 - - uid: 11451 + - uid: 9017 components: - type: Transform - pos: -55.5,39.5 + rot: 1.5707963267948966 rad + pos: 64.5,-5.5 parent: 12 - - uid: 16447 + - uid: 9667 components: - type: Transform - pos: 80.5,13.5 + rot: 1.5707963267948966 rad + pos: 80.5,14.5 parent: 12 - - uid: 19555 + - uid: 9668 components: - type: Transform - pos: 80.5,2.5 + rot: 1.5707963267948966 rad + pos: 82.5,1.5 + parent: 12 + - uid: 11451 + components: + - type: Transform + pos: -55.5,39.5 parent: 12 - uid: 19815 components: @@ -165950,12 +166737,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,75.5 parent: 12 - - uid: 26802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-6.5 - parent: 12 - uid: 27097 components: - type: Transform @@ -165969,30 +166750,24 @@ entities: parent: 12 - proto: SignEngine entities: - - uid: 4715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 12 - uid: 18712 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-14.5 parent: 12 - - uid: 19836 + - uid: 27242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,2.5 + pos: 32.5,-0.5 parent: 12 - proto: SignEngineering entities: - - uid: 3709 + - uid: 500 components: - type: Transform - pos: 15.5,8.5 + pos: 41.5,-2.5 parent: 12 - uid: 21084 components: @@ -166000,6 +166775,12 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-25.5 parent: 12 + - uid: 28649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 12 - proto: SignEscapePods entities: - uid: 6282 @@ -166043,17 +166824,23 @@ entities: parent: 12 - proto: SignFlammable entities: - - uid: 16521 + - uid: 16699 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,5.5 + pos: 16.5,17.5 parent: 12 - - uid: 16699 + - uid: 26428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 12 + - uid: 26430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 parent: 12 - proto: SignGravity entities: @@ -166147,6 +166934,32 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,55.5 parent: 12 +- proto: SignLaserMed + entities: + - uid: 28533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,13.5 + parent: 12 + - uid: 28534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,13.5 + parent: 12 + - uid: 28535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-4.5 + parent: 12 + - uid: 28648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-4.5 + parent: 12 - proto: SignLawyer entities: - uid: 18903 @@ -166235,45 +167048,22 @@ entities: - type: Transform pos: -20.5,-57.5 parent: 12 -- proto: SignRadiation - entities: - - uid: 6836 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 12 - - uid: 10201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 12 - - uid: 10249 - components: - - type: Transform - pos: 23.5,6.5 - parent: 12 - - uid: 26133 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 12 - proto: SignRadiationMed entities: - - uid: 6779 + - uid: 9710 components: - type: Transform - pos: 28.5,-3.5 + pos: 56.5,1.5 parent: 12 - - uid: 6780 + - uid: 11338 components: - type: Transform - pos: 28.5,-11.5 + pos: 61.5,-2.5 parent: 12 - - uid: 6781 + - uid: 28925 components: - type: Transform - pos: 14.5,-11.5 + pos: 63.5,9.5 parent: 12 - proto: SignReception entities: @@ -166306,6 +167096,20 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,60.5 parent: 12 +- proto: SignRestroom + entities: + - uid: 26554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 12 + - uid: 26651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,52.5 + parent: 12 - proto: SignRND entities: - uid: 2049 @@ -166356,11 +167160,6 @@ entities: parent: 12 - proto: SignSecurearea entities: - - uid: 4716 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 12 - uid: 13533 components: - type: Transform @@ -166486,10 +167285,10 @@ entities: parent: 12 - proto: SingularityGenerator entities: - - uid: 4722 + - uid: 5130 components: - type: Transform - pos: 7.5,-4.5 + pos: 62.5,0.5 parent: 12 - proto: Sink entities: @@ -166692,10 +167491,10 @@ entities: - type: Transform pos: 46.5,5.5 parent: 12 - - uid: 29395 + - uid: 31901 components: - type: Transform - pos: 25.5,-15.5 + pos: 59.5,12.5 parent: 12 - proto: SMESBasicEmpty entities: @@ -166704,13 +167503,6 @@ entities: - type: Transform pos: -53.5,-46.5 parent: 12 -- proto: SMESMachineCircuitboard - entities: - - uid: 26077 - components: - - type: Transform - pos: 9.36832,-8.361483 - parent: 12 - proto: SmokingPipe entities: - uid: 17417 @@ -168320,10 +169112,10 @@ entities: parent: 12 - proto: SpawnMobCrabAtmos entities: - - uid: 27029 + - uid: 25674 components: - type: Transform - pos: 70.5,-0.5 + pos: 16.5,-6.5 parent: 12 - proto: SpawnMobFoxRenault entities: @@ -168435,11 +169227,6 @@ entities: parent: 12 - proto: SpawnMobMouse entities: - - uid: 12047 - components: - - type: Transform - pos: 29.5,12.5 - parent: 12 - uid: 12317 components: - type: Transform @@ -168460,6 +169247,11 @@ entities: - type: Transform pos: 6.5,-36.5 parent: 12 + - uid: 26607 + components: + - type: Transform + pos: 30.5,11.5 + parent: 12 - uid: 28557 components: - type: Transform @@ -168534,20 +169326,20 @@ entities: parent: 12 - proto: SpawnPointAtmos entities: - - uid: 9978 + - uid: 22226 components: - type: Transform - pos: 52.5,5.5 + pos: 30.5,2.5 parent: 12 - - uid: 10983 + - uid: 29819 components: - type: Transform - pos: 51.5,5.5 + pos: 30.5,3.5 parent: 12 - - uid: 12722 + - uid: 29868 components: - type: Transform - pos: 53.5,5.5 + pos: 30.5,4.5 parent: 12 - proto: SpawnPointBartender entities: @@ -169113,7 +169905,7 @@ entities: parent: 12 - proto: SpawnPointTechnicalAssistant entities: - - uid: 9073 + - uid: 4856 components: - type: Transform pos: 30.5,-22.5 @@ -169187,11 +169979,6 @@ entities: rot: -12.566370614359172 rad pos: 30.459148,25.541853 parent: 12 - - uid: 11332 - components: - - type: Transform - pos: 8.764766,6.5591226 - parent: 12 - uid: 21387 components: - type: Transform @@ -169226,7 +170013,7 @@ entities: - uid: 23562 components: - type: Transform - pos: 39.4747,53.492332 + pos: 42.576344,53.246014 parent: 12 - uid: 31143 components: @@ -169436,35 +170223,29 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-10.5 parent: 12 - - uid: 27164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 12 - - uid: 27165 + - uid: 28766 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-0.5 + pos: 52.5,-1.5 parent: 12 - - uid: 27166 + - uid: 28767 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,0.5 + pos: 52.5,-0.5 parent: 12 - - uid: 27167 + - uid: 29347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,1.5 + rot: 3.141592653589793 rad + pos: 39.5,1.5 parent: 12 - - uid: 27168 + - uid: 29348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 + rot: 3.141592653589793 rad + pos: 40.5,1.5 parent: 12 - proto: Stairs entities: @@ -169495,54 +170276,18 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-21.5 parent: 12 - - uid: 2988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,4.5 - parent: 12 - uid: 4734 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-20.5 parent: 12 - - uid: 4878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 12 - - uid: 4881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 12 - - uid: 4889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 12 - - uid: 4920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 12 - uid: 5378 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-21.5 parent: 12 - - uid: 19461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 12 - uid: 19537 components: - type: Transform @@ -169720,6 +170465,14 @@ entities: - type: Transform pos: 48.5,5.5 parent: 12 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 28857 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 3.511601,-12.378527 + parent: 12 - proto: StationMap entities: - uid: 372 @@ -170318,6 +171071,11 @@ entities: parent: 12 - proto: StorageCanister entities: + - uid: 397 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 12 - uid: 690 components: - type: Transform @@ -170328,6 +171086,11 @@ entities: - type: Transform pos: -49.5,-29.5 parent: 12 + - uid: 4854 + components: + - type: Transform + pos: 24.5,1.5 + parent: 12 - uid: 7171 components: - type: Transform @@ -170343,35 +171106,30 @@ entities: bodyType: Static - type: Lock locked: True - - uid: 26652 + - uid: 20776 components: - type: Transform - pos: 65.5,6.5 + pos: 10.5,-11.5 parent: 12 - - uid: 26785 + - uid: 20782 components: - type: Transform - pos: 53.5,-6.5 + pos: 11.5,-11.5 parent: 12 - - uid: 26804 + - uid: 20876 components: - type: Transform - pos: 54.5,-6.5 + pos: 12.5,-11.5 parent: 12 - - uid: 26888 + - uid: 23167 components: - type: Transform - pos: 55.5,-6.5 + pos: 27.5,8.5 parent: 12 - - uid: 27149 - components: - - type: Transform - pos: 56.5,-6.5 - parent: 12 - - uid: 27310 + - uid: 26601 components: - type: Transform - pos: 67.5,6.5 + pos: 3.5,-18.5 parent: 12 - proto: StrangePill entities: @@ -170428,11 +171186,6 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 - - uid: 5127 - components: - - type: Transform - pos: 76.5,-4.5 - parent: 12 - uid: 5177 components: - type: Transform @@ -170493,15 +171246,15 @@ entities: - type: Transform pos: 58.5,60.5 parent: 12 - - uid: 21910 + - uid: 19168 components: - type: Transform - pos: 39.5,-6.5 + pos: 17.5,7.5 parent: 12 - - uid: 24688 + - uid: 21910 components: - type: Transform - pos: 24.5,2.5 + pos: 39.5,-6.5 parent: 12 - uid: 24704 components: @@ -170518,22 +171271,10 @@ entities: - type: Transform pos: -36.5,-50.5 parent: 12 -- proto: SuitStorageAtmos - entities: - - uid: 3625 - components: - - type: Transform - pos: 51.5,4.5 - parent: 12 - - uid: 3777 - components: - - type: Transform - pos: 52.5,4.5 - parent: 12 - - uid: 26456 + - uid: 31896 components: - type: Transform - pos: 53.5,4.5 + pos: 60.5,12.5 parent: 12 - proto: SuitStorageCaptain entities: @@ -170559,6 +171300,66 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 12 + - uid: 28689 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25104 + - uid: 28690 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25191 - proto: SuitStorageEVA entities: - uid: 22129 @@ -170617,10 +171418,10 @@ entities: parent: 12 - proto: SuitStorageRD entities: - - uid: 609 + - uid: 498 components: - type: Transform - pos: -41.5,-20.5 + pos: -40.5,-22.5 parent: 12 - proto: SuitStorageSalv entities: @@ -170715,6 +171516,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: RD's room + - uid: 4765 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecomms - uid: 5146 components: - type: Transform @@ -170758,17 +171569,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: CE's room - - uid: 9848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-8.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: QM's room - uid: 16483 components: - type: Transform @@ -170888,27 +171688,27 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI core - - uid: 31743 + - uid: 28804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 + rot: 3.141592653589793 rad + pos: -42.5,-19.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Telecomms - - uid: 31747 + id: Server room + - uid: 28865 components: - type: Transform - pos: 3.5,-7.5 + pos: -0.5,-15.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI core power + id: AI upload 2 - uid: 31748 components: - type: Transform @@ -170922,17 +171722,6 @@ entities: id: AI core entrance - proto: SurveillanceCameraEngineering entities: - - uid: 2258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: External AI catwalk - uid: 4167 components: - type: Transform @@ -170943,49 +171732,28 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Secure techvault - - uid: 4755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - - uid: 4756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-3.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Canister storage - - uid: 4888 + - uid: 4667 components: - type: Transform - pos: 24.5,-17.5 + rot: -1.5707963267948966 rad + pos: 29.5,-1.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering south - - uid: 5158 + id: Atmos lockers/engi hallway + - uid: 4715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,2.5 + rot: -1.5707963267948966 rad + pos: 39.5,1.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Atmos east + id: Engi hallway AME - uid: 8416 components: - type: Transform @@ -171018,134 +171786,317 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering front - - uid: 9824 + - uid: 12289 components: - type: Transform - pos: 11.5,-16.5 + pos: 11.5,13.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: SMES - - uid: 9826 + id: TEG + - uid: 24215 components: - type: Transform - pos: 21.5,-12.5 + rot: -1.5707963267948966 rad + pos: 20.5,-21.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: South singularity - - uid: 12289 + id: Engineering entrance + - uid: 27001 components: - type: Transform - pos: 11.5,13.5 + rot: 3.141592653589793 rad + pos: 23.5,-16.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: TEG - - uid: 19663 + id: Atmos entrance + - uid: 27916 + components: + - type: Transform + pos: 55.5,60.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gravity generator + - uid: 28784 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,0.5 + pos: 80.5,4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering rest area - - uid: 21925 + id: Containment east + - uid: 28785 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,5.5 + pos: 72.5,12.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment north + - uid: 28786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: PA room - - uid: 24215 + - uid: 28787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 + pos: 72.5,-3.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering entrance - - uid: 27314 + id: Containment south + - uid: 28788 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + pos: 53.5,-2.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Singularity/Tesla storage - - uid: 27315 + id: Containment monitoring room + - uid: 28790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-9.5 + rot: 3.141592653589793 rad + pos: 52.5,6.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Generator storage - - uid: 27916 + id: Break room + - uid: 28791 components: - type: Transform - pos: 55.5,60.5 + rot: 3.141592653589793 rad + pos: 57.5,12.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Gravity generator - - uid: 31742 + id: Containment internals room + - uid: 28792 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment storage + - uid: 28793 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment entrance + - uid: 28794 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-2.5 + pos: 45.5,4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Containment North - - uid: 31744 + id: Station anchor + - uid: 28795 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos south + - uid: 28796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos north + - uid: 28797 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,0.5 + pos: 20.5,-4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: AME - - uid: 31745 + id: Atmos east + - uid: 28798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Burn chamber + - uid: 28799 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-4.5 + pos: 9.5,-5.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos west + - uid: 28800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos canister storage + - uid: 28801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,28.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG exterior + - uid: 28807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,47.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northeast solars + - uid: 28808 + components: + - type: Transform + pos: 32.5,69.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northwest solars + - uid: 28809 + components: + - type: Transform + pos: 53.5,68.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northwest solars 2 + - uid: 28810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-14.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: East Engineering hallway + id: Engi hallway southeast + - uid: 28822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-44.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southeast solars + - uid: 28823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southeast solars 2 + - uid: 28825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-47.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southwest solars + - uid: 31882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME - proto: SurveillanceCameraGeneral entities: - uid: 3 @@ -171255,27 +172206,27 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway west B - - uid: 6752 + - uid: 5664 components: - type: Transform - pos: 49.5,55.5 + rot: 3.141592653589793 rad + pos: 2.5,-25.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Hallway Northeast - - uid: 8305 + id: Medical-engineering hallway + - uid: 6752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 + pos: 49.5,55.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Maintenance East + id: Hallway Northeast - uid: 9632 components: - type: Transform @@ -171501,6 +172452,50 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Court + - uid: 28802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-26.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tri-department hallway + - uid: 28813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Northeast evac + - uid: 28815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cat zoo + - uid: 28821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cryosleep - uid: 31500 components: - type: Transform @@ -171744,10 +172739,10 @@ entities: parent: 12 - proto: SurveillanceCameraRouterConstructed entities: - - uid: 21932 + - uid: 8740 components: - type: Transform - pos: 2.5,-15.5 + pos: 0.5,-15.5 parent: 12 - proto: SurveillanceCameraRouterEngineering entities: @@ -171758,10 +172753,10 @@ entities: parent: 12 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 21933 + - uid: 5678 components: - type: Transform - pos: -3.5,-15.5 + pos: -1.5,-15.5 parent: 12 - proto: SurveillanceCameraRouterMedical entities: @@ -171888,6 +172883,28 @@ entities: - SurveillanceCameraScience nameSet: True id: Science entrance airlock + - uid: 28803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-23.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science entrance and robotics + - uid: 28805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-29.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science canister room - proto: SurveillanceCameraSecurity entities: - uid: 2165 @@ -172358,6 +173375,71 @@ entities: - SurveillanceCameraService nameSet: True id: Bartender's room + - uid: 28814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Parrot zoo + - uid: 28816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Zookeeper's room + - uid: 28817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Penguin zoo + - uid: 28818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Gorilla zoo + - uid: 28819 + components: + - type: Transform + pos: -10.5,19.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Monkey zoo + - uid: 28820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,21.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Lizard zoo - uid: 30394 components: - type: Transform @@ -172457,6 +173539,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo break room + - uid: 28824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-36.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage airlock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 21981 @@ -172562,11 +173655,6 @@ entities: parent: 12 - proto: Table entities: - - uid: 406 - components: - - type: Transform - pos: 9.5,6.5 - parent: 12 - uid: 508 components: - type: Transform @@ -172693,6 +173781,11 @@ entities: - type: Transform pos: -43.5,72.5 parent: 12 + - uid: 2118 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 12 - uid: 2235 components: - type: Transform @@ -172717,6 +173810,11 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-11.5 parent: 12 + - uid: 2247 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 12 - uid: 2272 components: - type: Transform @@ -172764,11 +173862,6 @@ entities: - type: Transform pos: -5.5,-48.5 parent: 12 - - uid: 2927 - components: - - type: Transform - pos: 7.5,0.5 - parent: 12 - uid: 2951 components: - type: Transform @@ -172902,15 +173995,10 @@ entities: - type: Transform pos: 29.5,53.5 parent: 12 - - uid: 4758 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 12 - uid: 4789 components: - type: Transform - pos: 12.5,-0.5 + pos: 8.5,-11.5 parent: 12 - uid: 4851 components: @@ -172934,12 +174022,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 12 - - uid: 5130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-5.5 - parent: 12 - uid: 5242 components: - type: Transform @@ -172991,11 +174073,6 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 12 - - uid: 5868 - components: - - type: Transform - pos: 8.5,6.5 - parent: 12 - uid: 5897 components: - type: Transform @@ -173031,6 +174108,12 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 12 + - uid: 6279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,5.5 + parent: 12 - uid: 6690 components: - type: Transform @@ -173051,6 +174134,12 @@ entities: - type: Transform pos: -15.5,-51.5 parent: 12 + - uid: 8468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 12 - uid: 8499 components: - type: Transform @@ -173081,6 +174170,12 @@ entities: - type: Transform pos: -13.5,-50.5 parent: 12 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 12 - uid: 9524 components: - type: Transform @@ -173091,6 +174186,11 @@ entities: - type: Transform pos: -17.5,-43.5 parent: 12 + - uid: 9786 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 12 - uid: 9855 components: - type: Transform @@ -173109,6 +174209,11 @@ entities: rot: 3.141592653589793 rad pos: 44.5,64.5 parent: 12 + - uid: 10306 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 12 - uid: 10330 components: - type: Transform @@ -173158,6 +174263,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 12 + - uid: 10905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 12 - uid: 10985 components: - type: Transform @@ -173170,11 +174281,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,24.5 parent: 12 - - uid: 11365 - components: - - type: Transform - pos: 9.5,5.5 - parent: 12 - uid: 11437 components: - type: Transform @@ -173192,11 +174298,6 @@ entities: - type: Transform pos: -10.5,-45.5 parent: 12 - - uid: 12110 - components: - - type: Transform - pos: 7.5,6.5 - parent: 12 - uid: 12120 components: - type: Transform @@ -173444,11 +174545,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,47.5 parent: 12 - - uid: 15446 - components: - - type: Transform - pos: 39.5,53.5 - parent: 12 - uid: 15447 components: - type: Transform @@ -173541,6 +174637,12 @@ entities: - type: Transform pos: -12.5,13.5 parent: 12 + - uid: 16664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,6.5 + parent: 12 - uid: 16690 components: - type: Transform @@ -173872,6 +174974,11 @@ entities: rot: 3.141592653589793 rad pos: -15.5,51.5 parent: 12 + - uid: 21977 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 12 - uid: 22096 components: - type: Transform @@ -174151,11 +175258,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,58.5 parent: 12 - - uid: 25200 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - uid: 25491 components: - type: Transform @@ -174313,11 +175415,6 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 12 - - uid: 27243 - components: - - type: Transform - pos: 71.5,-5.5 - parent: 12 - uid: 27252 components: - type: Transform @@ -174344,16 +175441,33 @@ entities: - type: Transform pos: -9.5,-45.5 parent: 12 - - uid: 29348 + - uid: 28859 components: - type: Transform - pos: 29.5,-2.5 + pos: -3.5,-0.5 + parent: 12 + - uid: 28860 + components: + - type: Transform + pos: -2.5,-0.5 parent: 12 - uid: 29597 components: - type: Transform pos: -43.5,71.5 parent: 12 + - uid: 29967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 + - uid: 29968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 12 - uid: 30341 components: - type: Transform @@ -174426,6 +175540,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,71.5 parent: 12 + - uid: 31903 + components: + - type: Transform + pos: 59.5,9.5 + parent: 12 - proto: TableCarpet entities: - uid: 22653 @@ -174480,11 +175599,6 @@ entities: - type: Transform pos: -46.5,-47.5 parent: 12 - - uid: 2118 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 12 - uid: 11041 components: - type: Transform @@ -174924,12 +176038,22 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,65.5 parent: 12 + - uid: 12011 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 12 - uid: 12114 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-45.5 parent: 12 + - uid: 13009 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 12 - uid: 13789 components: - type: Transform @@ -175296,6 +176420,12 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-49.5 parent: 12 + - uid: 27353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 12 - uid: 28260 components: - type: Transform @@ -176077,11 +177207,6 @@ entities: - type: Transform pos: 33.433434,-6.6018057 parent: 12 - - uid: 21324 - components: - - type: Transform - pos: 2.5385756,-1.5661206 - parent: 12 - uid: 30021 components: - type: Transform @@ -176143,61 +177268,121 @@ entities: - type: Transform pos: 36.5,-7.5 parent: 12 -- proto: TeslaCoilFlatpack +- proto: TeslaCoil entities: - - uid: 12912 + - uid: 3020 components: - type: Transform - pos: 7.6397057,-3.6464586 + rot: 1.5707963267948966 rad + pos: 71.5,-0.5 parent: 12 - - uid: 25061 + - uid: 3089 components: - type: Transform - pos: 7.7022057,-3.3409033 + rot: 1.5707963267948966 rad + pos: 71.5,9.5 parent: 12 - - uid: 25102 + - uid: 8439 components: - type: Transform - pos: 7.2855387,-3.6117368 + rot: 1.5707963267948966 rad + pos: 77.5,5.5 parent: 12 - - uid: 25534 + - uid: 8709 components: - type: Transform - pos: 7.3688717,-3.2992368 + rot: 1.5707963267948966 rad + pos: 73.5,-0.5 + parent: 12 + - uid: 9308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,3.5 + parent: 12 + - uid: 9414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,9.5 + parent: 12 +- proto: TeslaCoilFlatpack + entities: + - uid: 5187 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.233635,-0.31611788 parent: 12 - proto: TeslaGenerator entities: - - uid: 23361 + - uid: 5158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-4.5 + pos: 60.5,0.5 parent: 12 - proto: TeslaGroundingRod entities: - - uid: 4314 + - uid: 3127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 + rot: 1.5707963267948966 rad + pos: 75.5,10.5 parent: 12 - - uid: 5992 + - uid: 8846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + rot: 1.5707963267948966 rad + pos: 78.5,7.5 parent: 12 - - uid: 19539 + - uid: 8856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 + rot: 1.5707963267948966 rad + pos: 69.5,10.5 parent: 12 - - uid: 19548 + - uid: 8857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 + rot: 1.5707963267948966 rad + pos: 69.5,-1.5 + parent: 12 + - uid: 9406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,1.5 + parent: 12 + - uid: 9456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-1.5 + parent: 12 + - uid: 26527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 12 + - uid: 26528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,7.5 + parent: 12 +- proto: TeslaGroundingRodFlatpack + entities: + - uid: 21621 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 60.604073,-0.31611776 + parent: 12 + - uid: 27003 + components: + - type: Transform + pos: 60.715595,-0.57507586 parent: 12 - proto: ThermomachineFreezerMachineCircuitBoard entities: @@ -176358,6 +177543,11 @@ entities: parent: 12 - proto: ToolboxElectricalFilled entities: + - uid: 3586 + components: + - type: Transform + pos: 3.5046568,-11.922848 + parent: 12 - uid: 5910 components: - type: Transform @@ -176393,6 +177583,12 @@ entities: - type: Transform pos: 44.683693,53.537926 parent: 12 + - uid: 28763 + components: + - type: Transform + rot: -56.54866776461632 rad + pos: 53.41125,-2.412424 + parent: 12 - proto: ToolboxEmergencyFilled entities: - uid: 6826 @@ -176515,6 +177711,12 @@ entities: - type: Transform pos: -12.50413,2.5674837 parent: 12 + - uid: 28764 + components: + - type: Transform + rot: -56.54866776461632 rad + pos: 53.68279,-2.6386967 + parent: 12 - uid: 29211 components: - type: Transform @@ -176526,7 +177728,7 @@ entities: components: - type: Transform rot: -18.84955592153876 rad - pos: -0.5040951,-20.382685 + pos: -0.5161767,-20.22085 parent: 12 - proto: ToyAmongPequeno entities: @@ -176546,11 +177748,11 @@ entities: parent: 12 - proto: ToyFigurineAtmosTech entities: - - uid: 3894 + - uid: 20884 components: - type: Transform rot: -18.84955592153876 rad - pos: 55.368454,5.6192193 + pos: 29.576431,3.8167615 parent: 12 - proto: ToyFigurineBartender entities: @@ -176711,7 +177913,8 @@ entities: - uid: 23532 components: - type: Transform - pos: 28.465582,12.573898 + rot: -18.84955592153876 rad + pos: 30.535233,18.578392 parent: 12 - proto: ToyFigurineParamedic entities: @@ -176879,6 +178082,14 @@ entities: rot: -6.283185307179586 rad pos: -19.50675,-15.356455 parent: 12 +- proto: trayScanner + entities: + - uid: 28715 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 56.595398,-6.4191794 + parent: 12 - proto: TrumpetInstrument entities: - uid: 26216 @@ -177518,10 +178729,10 @@ entities: parent: 12 - proto: VendingMachineAtmosDrobe entities: - - uid: 27171 + - uid: 23887 components: - type: Transform - pos: 55.5,6.5 + pos: 29.5,6.5 parent: 12 - proto: VendingMachineBooze entities: @@ -177815,6 +179026,11 @@ entities: - type: Transform pos: 32.5,-23.5 parent: 12 + - uid: 28697 + components: + - type: Transform + pos: 55.5,2.5 + parent: 12 - proto: VendingMachineGames entities: - uid: 2035 @@ -178072,18 +179288,28 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: + - uid: 570 + components: + - type: Transform + pos: 57.5,8.5 + parent: 12 - uid: 16777 components: - type: Transform pos: 10.5,-13.5 parent: 12 - - uid: 24689 + - uid: 27384 components: - type: Transform - pos: 25.5,2.5 + pos: 58.5,-4.5 parent: 12 - proto: VendingMachineTankDispenserEVA entities: + - uid: 565 + components: + - type: Transform + pos: 24.5,7.5 + parent: 12 - uid: 12059 components: - type: Transform @@ -178099,10 +179325,10 @@ entities: - type: Transform pos: -44.5,50.5 parent: 12 - - uid: 26738 + - uid: 27024 components: - type: Transform - pos: 52.5,-1.5 + pos: 8.5,-8.5 parent: 12 - proto: VendingMachineTheater entities: @@ -178186,6 +179412,11 @@ entities: - type: Transform pos: 43.5,49.5 parent: 12 + - uid: 28696 + components: + - type: Transform + pos: 55.5,1.5 + parent: 12 - proto: ViolaInstrument entities: - uid: 30418 @@ -178212,6 +179443,11 @@ entities: - type: Transform pos: -8.5,-25.5 parent: 12 + - uid: 8885 + components: + - type: Transform + pos: 37.5,13.5 + parent: 12 - uid: 17664 components: - type: Transform @@ -178224,16 +179460,6 @@ entities: - type: Transform pos: -4.5,0.5 parent: 12 - - uid: 16 - components: - - type: Transform - pos: 30.5,9.5 - parent: 12 - - uid: 22 - components: - - type: Transform - pos: 31.5,9.5 - parent: 12 - uid: 27 components: - type: Transform @@ -178709,11 +179935,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-14.5 parent: 12 - - uid: 194 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 12 - uid: 196 components: - type: Transform @@ -178768,12 +179989,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-17.5 parent: 12 - - uid: 206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 12 - uid: 211 components: - type: Transform @@ -178822,12 +180037,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-21.5 parent: 12 - - uid: 227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 12 - uid: 232 components: - type: Transform @@ -179069,6 +180278,22 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-11.5 parent: 12 + - uid: 401 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 12 + - uid: 403 + components: + - type: Transform + pos: 9.5,4.5 + parent: 12 + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 12 - uid: 411 components: - type: Transform @@ -179349,6 +180574,12 @@ entities: - type: Transform pos: -40.5,-18.5 parent: 12 + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 12 - uid: 633 components: - type: Transform @@ -179461,6 +180692,12 @@ entities: - type: Transform pos: -48.5,-28.5 parent: 12 + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-3.5 + parent: 12 - uid: 703 components: - type: Transform @@ -179656,12 +180893,28 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-40.5 parent: 12 + - uid: 901 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 12 - uid: 903 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 12 + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 12 + - uid: 923 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 12 - uid: 945 components: - type: Transform @@ -179719,7 +180972,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: 19.5,8.5 parent: 12 - uid: 1017 components: @@ -179781,12 +181034,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-51.5 parent: 12 - - uid: 1074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 12 - uid: 1075 components: - type: Transform @@ -179828,10 +181075,10 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-36.5 parent: 12 - - uid: 1351 + - uid: 1356 components: - type: Transform - pos: 23.5,-14.5 + pos: 25.5,-11.5 parent: 12 - uid: 1357 components: @@ -179867,21 +181114,32 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,50.5 parent: 12 + - uid: 1549 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 12 - uid: 1551 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-18.5 parent: 12 - - uid: 1612 + - uid: 1556 components: - type: Transform - pos: -38.5,61.5 + pos: 26.5,-10.5 parent: 12 - - uid: 1752 + - uid: 1557 components: - type: Transform - pos: 24.5,-14.5 + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 12 + - uid: 1612 + components: + - type: Transform + pos: -38.5,61.5 parent: 12 - uid: 1755 components: @@ -179900,11 +181158,22 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,73.5 parent: 12 + - uid: 1966 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 12 - uid: 1991 components: - type: Transform pos: -54.5,-42.5 parent: 12 + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 12 - uid: 2031 components: - type: Transform @@ -179946,17 +181215,32 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 12 + - uid: 2169 + components: + - type: Transform + pos: 26.5,1.5 + parent: 12 - uid: 2171 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 12 - - uid: 2239 + - uid: 2173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + pos: 16.5,-14.5 + parent: 12 + - uid: 2184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 12 + - uid: 2256 + components: + - type: Transform + pos: 24.5,-11.5 parent: 12 - uid: 2260 components: @@ -179964,6 +181248,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 12 + - uid: 2267 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 12 - uid: 2271 components: - type: Transform @@ -179994,11 +181283,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 12 - - uid: 2287 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - uid: 2305 components: - type: Transform @@ -180029,6 +181313,11 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-37.5 parent: 12 + - uid: 2528 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 12 - uid: 2556 components: - type: Transform @@ -180088,11 +181377,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-40.5 parent: 12 - - uid: 2573 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 12 - uid: 2647 components: - type: Transform @@ -180138,11 +181422,21 @@ entities: - type: Transform pos: -7.5,-60.5 parent: 12 + - uid: 2781 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 12 - uid: 2797 components: - type: Transform pos: 65.5,54.5 parent: 12 + - uid: 2808 + components: + - type: Transform + pos: 26.5,0.5 + parent: 12 - uid: 2863 components: - type: Transform @@ -180169,24 +181463,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 12 - - uid: 2876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 12 - uid: 2883 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 12 - - uid: 2894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 12 - uid: 2935 components: - type: Transform @@ -180255,16 +181537,10 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 12 - - uid: 3021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 12 - - uid: 3077 + - uid: 3022 components: - type: Transform - pos: 38.5,3.5 + pos: 18.5,-14.5 parent: 12 - uid: 3079 components: @@ -180306,30 +181582,27 @@ entities: - type: Transform pos: -10.5,3.5 parent: 12 - - uid: 3702 - components: - - type: Transform - pos: 17.5,6.5 - parent: 12 - - uid: 3710 + - uid: 3631 components: - type: Transform - pos: 15.5,6.5 + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 12 - - uid: 3713 + - uid: 3778 components: - type: Transform - pos: 15.5,8.5 + pos: -48.5,-52.5 parent: 12 - - uid: 3778 + - uid: 3823 components: - type: Transform - pos: -48.5,-52.5 + pos: 13.5,-1.5 parent: 12 - - uid: 3895 + - uid: 3824 components: - type: Transform - pos: 26.5,-14.5 + rot: 3.141592653589793 rad + pos: 24.5,-7.5 parent: 12 - uid: 3941 components: @@ -180337,20 +181610,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 12 - - uid: 3979 - components: - - type: Transform - pos: 27.5,11.5 - parent: 12 - - uid: 3982 - components: - - type: Transform - pos: 29.5,10.5 - parent: 12 - - uid: 3983 + - uid: 3945 components: - type: Transform - pos: 28.5,11.5 + rot: 1.5707963267948966 rad + pos: 81.5,5.5 parent: 12 - uid: 4013 components: @@ -180364,12 +181628,6 @@ entities: rot: 3.141592653589793 rad pos: 71.5,13.5 parent: 12 - - uid: 4092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 12 - uid: 4103 components: - type: Transform @@ -180386,25 +181644,10 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-40.5 parent: 12 - - uid: 4386 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 12 - - uid: 4387 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 12 - - uid: 4388 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 12 - uid: 4389 components: - type: Transform - pos: 4.5,-19.5 + pos: 5.5,-17.5 parent: 12 - uid: 4392 components: @@ -180434,34 +181677,16 @@ entities: rot: 3.141592653589793 rad pos: 53.5,7.5 parent: 12 - - uid: 4411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,11.5 - parent: 12 - uid: 4412 components: - type: Transform pos: -51.5,-49.5 parent: 12 - - uid: 4414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,11.5 - parent: 12 - uid: 4416 components: - type: Transform pos: -41.5,-54.5 parent: 12 - - uid: 4475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,11.5 - parent: 12 - uid: 4478 components: - type: Transform @@ -180473,11 +181698,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,48.5 parent: 12 - - uid: 4527 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 12 - uid: 4529 components: - type: Transform @@ -180509,260 +181729,228 @@ entities: - type: Transform pos: 10.5,-12.5 parent: 12 - - uid: 4537 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 12 - uid: 4538 components: - type: Transform pos: 15.5,-13.5 parent: 12 - - uid: 4563 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 12 - - uid: 4564 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 12 - - uid: 4565 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 12 - - uid: 4567 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 12 - - uid: 4569 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 12 - - uid: 4572 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 12 - uid: 4573 components: - type: Transform - pos: 14.5,-1.5 + pos: 21.5,4.5 parent: 12 - uid: 4574 components: - type: Transform - pos: 14.5,-0.5 - parent: 12 - - uid: 4575 - components: - - type: Transform - pos: 14.5,0.5 + pos: 21.5,-12.5 parent: 12 - - uid: 4576 + - uid: 4592 components: - type: Transform - pos: 14.5,1.5 + pos: 7.5,-11.5 parent: 12 - - uid: 4577 + - uid: 4594 components: - type: Transform - pos: 17.5,1.5 + pos: 7.5,-9.5 parent: 12 - - uid: 4578 + - uid: 4595 components: - type: Transform - pos: 17.5,2.5 + pos: 7.5,-8.5 parent: 12 - - uid: 4579 + - uid: 4596 components: - type: Transform - pos: 18.5,2.5 + pos: 7.5,-7.5 parent: 12 - - uid: 4580 + - uid: 4601 components: - type: Transform - pos: 19.5,2.5 + rot: 3.141592653589793 rad + pos: 23.5,-3.5 parent: 12 - - uid: 4581 + - uid: 4643 components: - type: Transform - pos: 19.5,1.5 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 12 - - uid: 4582 + - uid: 4649 components: - type: Transform - pos: 23.5,2.5 + pos: 26.5,-2.5 parent: 12 - - uid: 4583 + - uid: 4652 components: - type: Transform - pos: 23.5,1.5 + pos: 24.5,-13.5 parent: 12 - - uid: 4592 + - uid: 4654 components: - type: Transform - pos: 7.5,-11.5 + pos: 8.5,4.5 parent: 12 - - uid: 4594 + - uid: 4664 components: - type: Transform - pos: 7.5,-9.5 + rot: 1.5707963267948966 rad + pos: 17.5,21.5 parent: 12 - - uid: 4595 + - uid: 4682 components: - type: Transform - pos: 7.5,-8.5 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 parent: 12 - - uid: 4596 + - uid: 4685 components: - type: Transform - pos: 7.5,-7.5 + pos: 10.5,4.5 parent: 12 - - uid: 4672 + - uid: 4693 components: - type: Transform - pos: 23.5,0.5 + rot: 3.141592653589793 rad + pos: 72.5,13.5 parent: 12 - - uid: 4676 + - uid: 4714 components: - type: Transform - pos: 19.5,0.5 + pos: -24.5,56.5 parent: 12 - - uid: 4680 + - uid: 4768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 + pos: 6.5,-5.5 parent: 12 - - uid: 4681 + - uid: 4773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,1.5 + pos: 11.5,-48.5 parent: 12 - - uid: 4682 + - uid: 4783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + rot: 3.141592653589793 rad + pos: 24.5,-9.5 parent: 12 - - uid: 4684 + - uid: 4797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,2.5 + pos: 28.5,3.5 parent: 12 - - uid: 4692 + - uid: 4882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: -27.5,6.5 parent: 12 - - uid: 4693 + - uid: 4900 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,13.5 + pos: 25.5,2.5 parent: 12 - - uid: 4706 + - uid: 4902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,3.5 + pos: 26.5,-7.5 parent: 12 - - uid: 4714 + - uid: 4905 components: - type: Transform - pos: -24.5,56.5 + pos: 37.5,-3.5 parent: 12 - - uid: 4733 + - uid: 4909 components: - type: Transform - pos: 8.5,-7.5 + rot: 3.141592653589793 rad + pos: 24.5,2.5 parent: 12 - - uid: 4768 + - uid: 4911 components: - type: Transform - pos: 6.5,-5.5 + pos: 26.5,-3.5 parent: 12 - - uid: 4773 + - uid: 4930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-48.5 + pos: 26.5,-8.5 parent: 12 - - uid: 4882 + - uid: 4936 components: - type: Transform - pos: -27.5,6.5 + rot: 1.5707963267948966 rad + pos: 80.5,-4.5 parent: 12 - - uid: 4883 + - uid: 4949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 + rot: 3.141592653589793 rad + pos: 25.5,-9.5 parent: 12 - - uid: 4905 + - uid: 4952 components: - type: Transform - pos: 37.5,-3.5 + rot: 1.5707963267948966 rad + pos: 56.5,12.5 parent: 12 - - uid: 4906 + - uid: 4955 components: - type: Transform - pos: 33.5,-3.5 + rot: 3.141592653589793 rad + pos: 23.5,8.5 parent: 12 - - uid: 4909 + - uid: 4960 components: - type: Transform - pos: 17.5,-14.5 + rot: 3.141592653589793 rad + pos: 24.5,-1.5 parent: 12 - - uid: 4910 + - uid: 4988 components: - type: Transform - pos: 34.5,-3.5 + rot: 1.5707963267948966 rad + pos: 81.5,-0.5 parent: 12 - - uid: 4915 + - uid: 4992 components: - type: Transform - pos: 35.5,-3.5 + pos: 11.5,-12.5 parent: 12 - - uid: 4921 + - uid: 5005 components: - type: Transform - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: 23.5,-9.5 parent: 12 - - uid: 4941 + - uid: 5007 components: - type: Transform - pos: 29.5,5.5 + pos: 11.5,4.5 parent: 12 - - uid: 4952 + - uid: 5009 components: - type: Transform - pos: 20.5,7.5 + pos: 8.5,-2.5 parent: 12 - - uid: 4953 + - uid: 5021 components: - type: Transform - pos: 23.5,7.5 + rot: 3.141592653589793 rad + pos: 24.5,-5.5 parent: 12 - - uid: 4972 + - uid: 5025 components: - type: Transform - pos: 25.5,-14.5 + pos: 23.5,-11.5 parent: 12 - - uid: 4978 + - uid: 5033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 + rot: 1.5707963267948966 rad + pos: 81.5,13.5 parent: 12 - uid: 5040 components: @@ -180770,6 +181958,12 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,53.5 parent: 12 + - uid: 5044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 12 - uid: 5056 components: - type: Transform @@ -180790,11 +181984,6 @@ entities: - type: Transform pos: 32.5,0.5 parent: 12 - - uid: 5064 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 12 - uid: 5065 components: - type: Transform @@ -180815,16 +182004,6 @@ entities: - type: Transform pos: 28.5,-4.5 parent: 12 - - uid: 5070 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 12 - - uid: 5072 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 12 - uid: 5073 components: - type: Transform @@ -180862,10 +182041,15 @@ entities: - type: Transform pos: 19.5,-15.5 parent: 12 - - uid: 5101 + - uid: 5107 components: - type: Transform - pos: 23.5,-15.5 + pos: 37.5,-4.5 + parent: 12 + - uid: 5111 + components: + - type: Transform + pos: 60.5,9.5 parent: 12 - uid: 5112 components: @@ -180883,10 +182067,11 @@ entities: - type: Transform pos: -27.5,8.5 parent: 12 - - uid: 5125 + - uid: 5126 components: - type: Transform - pos: 59.5,-2.5 + rot: 1.5707963267948966 rad + pos: 82.5,6.5 parent: 12 - uid: 5139 components: @@ -180965,11 +182150,34 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-12.5 parent: 12 - - uid: 5214 + - uid: 5189 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,5.5 + pos: 23.5,-5.5 + parent: 12 + - uid: 5190 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 12 + - uid: 5198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,1.5 + parent: 12 + - uid: 5214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,11.5 + parent: 12 + - uid: 5217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-1.5 parent: 12 - uid: 5218 components: @@ -180977,6 +182185,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 12 + - uid: 5220 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 12 + - uid: 5238 + components: + - type: Transform + pos: 28.5,4.5 + parent: 12 - uid: 5246 components: - type: Transform @@ -181025,17 +182243,22 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-16.5 parent: 12 + - uid: 5273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 12 - uid: 5313 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-50.5 parent: 12 - - uid: 5316 + - uid: 5365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,6.5 + pos: 13.5,-13.5 parent: 12 - uid: 5391 components: @@ -181043,6 +182266,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,27.5 parent: 12 + - uid: 5403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 12 - uid: 5443 components: - type: Transform @@ -181121,15 +182350,22 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 12 - - uid: 5477 + - uid: 5527 components: - type: Transform - pos: 53.5,0.5 + pos: 48.5,-3.5 parent: 12 - - uid: 5527 + - uid: 5528 components: - type: Transform - pos: 48.5,-3.5 + rot: 1.5707963267948966 rad + pos: 81.5,12.5 + parent: 12 + - uid: 5553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,10.5 parent: 12 - uid: 5562 components: @@ -181166,11 +182402,66 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 12 - - uid: 5682 + - uid: 5628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 12 + - uid: 5637 + components: + - type: Transform + pos: 28.5,2.5 + parent: 12 + - uid: 5641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 12 + - uid: 5668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 12 + - uid: 5680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 12 + - uid: 5802 + components: + - type: Transform + pos: 13.5,6.5 + parent: 12 + - uid: 5815 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,8.5 + pos: 80.5,14.5 + parent: 12 + - uid: 5820 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 + - uid: 5830 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 12 + - uid: 5838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 12 + - uid: 5839 + components: + - type: Transform + pos: 27.5,4.5 parent: 12 - uid: 5904 components: @@ -181190,12 +182481,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,64.5 parent: 12 - - uid: 5966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 12 - uid: 5971 components: - type: Transform @@ -181229,10 +182514,21 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,64.5 parent: 12 - - uid: 5991 + - uid: 6014 components: - type: Transform - pos: 52.5,0.5 + pos: 21.5,-13.5 + parent: 12 + - uid: 6023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 12 + - uid: 6031 + components: + - type: Transform + pos: 8.5,-4.5 parent: 12 - uid: 6080 components: @@ -181254,16 +182550,16 @@ entities: - type: Transform pos: 24.5,-39.5 parent: 12 - - uid: 6207 + - uid: 6199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 + pos: 26.5,2.5 parent: 12 - - uid: 6243 + - uid: 6207 components: - type: Transform - pos: 54.5,0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 parent: 12 - uid: 6263 components: @@ -181378,10 +182674,10 @@ entities: - type: Transform pos: 44.5,-9.5 parent: 12 - - uid: 6772 + - uid: 6766 components: - type: Transform - pos: 48.5,-1.5 + pos: 26.5,-0.5 parent: 12 - uid: 6773 components: @@ -181389,10 +182685,41 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-15.5 parent: 12 - - uid: 6942 + - uid: 6889 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 12 + - uid: 6893 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 12 + - uid: 7200 components: - type: Transform - pos: 71.5,10.5 + pos: 8.5,0.5 + parent: 12 + - uid: 7216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 12 + - uid: 7232 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 12 + - uid: 7243 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 12 + - uid: 7252 + components: + - type: Transform + pos: 26.5,-13.5 parent: 12 - uid: 7263 components: @@ -181405,20 +182732,16 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 12 - - uid: 7278 - components: - - type: Transform - pos: 70.5,10.5 - parent: 12 - uid: 7286 components: - type: Transform pos: 44.5,2.5 parent: 12 - - uid: 7309 + - uid: 7308 components: - type: Transform - pos: 67.5,11.5 + rot: -1.5707963267948966 rad + pos: 16.5,8.5 parent: 12 - uid: 7316 components: @@ -182050,12 +183373,6 @@ entities: - type: Transform pos: -9.5,-8.5 parent: 12 - - uid: 8441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,14.5 - parent: 12 - uid: 8442 components: - type: Transform @@ -182082,11 +183399,6 @@ entities: - type: Transform pos: -7.5,-11.5 parent: 12 - - uid: 8709 - components: - - type: Transform - pos: 73.5,10.5 - parent: 12 - uid: 8767 components: - type: Transform @@ -182133,109 +183445,161 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 12 - - uid: 8846 + - uid: 8852 components: - type: Transform - pos: 12.5,-2.5 + pos: 25.5,4.5 parent: 12 - - uid: 8852 + - uid: 8918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-4.5 + pos: 26.5,4.5 parent: 12 - - uid: 8856 + - uid: 8958 components: - type: Transform - pos: 75.5,10.5 + rot: 3.141592653589793 rad + pos: 24.5,-3.5 parent: 12 - - uid: 8857 + - uid: 8959 components: - type: Transform - pos: 79.5,7.5 + pos: 31.5,1.5 parent: 12 - - uid: 9067 + - uid: 8974 components: - type: Transform - pos: -59.5,36.5 + rot: 1.5707963267948966 rad + pos: 78.5,-4.5 parent: 12 - - uid: 9072 + - uid: 8976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-17.5 + rot: 1.5707963267948966 rad + pos: 76.5,-4.5 parent: 12 - - uid: 9120 + - uid: 9008 components: - type: Transform - pos: -9.5,-9.5 + rot: 1.5707963267948966 rad + pos: 73.5,-4.5 parent: 12 - - uid: 9121 + - uid: 9009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 + rot: 1.5707963267948966 rad + pos: 72.5,-4.5 parent: 12 - - uid: 9138 + - uid: 9010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-43.5 + rot: 1.5707963267948966 rad + pos: 70.5,-4.5 parent: 12 - - uid: 9142 + - uid: 9011 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,7.5 + pos: 67.5,-4.5 parent: 12 - - uid: 9169 + - uid: 9012 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,6.5 + rot: 1.5707963267948966 rad + pos: 66.5,-4.5 parent: 12 - - uid: 9173 + - uid: 9013 components: - type: Transform - pos: 77.5,10.5 + rot: 1.5707963267948966 rad + pos: 61.5,-4.5 parent: 12 - - uid: 9174 + - uid: 9014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,7.5 + pos: 77.5,-4.5 parent: 12 - - uid: 9175 + - uid: 9015 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,6.5 + pos: 60.5,-4.5 parent: 12 - - uid: 9222 + - uid: 9055 components: - type: Transform - pos: 66.5,11.5 + rot: 1.5707963267948966 rad + pos: 81.5,1.5 parent: 12 - - uid: 9230 + - uid: 9056 components: - type: Transform - pos: 37.5,-40.5 + rot: 1.5707963267948966 rad + pos: 81.5,2.5 parent: 12 - - uid: 9297 + - uid: 9057 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,8.5 + pos: 81.5,-2.5 parent: 12 - - uid: 9298 + - uid: 9058 components: - type: Transform - pos: 76.5,-1.5 + rot: -1.5707963267948966 rad + pos: 18.5,7.5 parent: 12 - - uid: 9306 + - uid: 9067 components: - type: Transform - pos: 12.5,-12.5 + pos: -59.5,36.5 + parent: 12 + - uid: 9072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-17.5 + parent: 12 + - uid: 9120 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 12 + - uid: 9121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 12 + - uid: 9135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 12 + - uid: 9138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-43.5 + parent: 12 + - uid: 9175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 12 + - uid: 9230 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 12 + - uid: 9297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,8.5 parent: 12 - uid: 9379 components: @@ -182258,6 +183622,18 @@ entities: - type: Transform pos: -12.5,23.5 parent: 12 + - uid: 9401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 + - uid: 9432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,9.5 + parent: 12 - uid: 9443 components: - type: Transform @@ -182299,6 +183675,12 @@ entities: rot: 3.141592653589793 rad pos: -51.5,56.5 parent: 12 + - uid: 9526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,10.5 + parent: 12 - uid: 9527 components: - type: Transform @@ -182314,8 +183696,8 @@ entities: - uid: 9540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,6.5 + rot: 1.5707963267948966 rad + pos: 63.5,11.5 parent: 12 - uid: 9542 components: @@ -182353,18 +183735,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,13.5 parent: 12 - - uid: 9614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 12 - - uid: 9621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 12 - uid: 9622 components: - type: Transform @@ -182401,16 +183771,23 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,11.5 parent: 12 + - uid: 9650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,13.5 + parent: 12 - uid: 9652 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,65.5 parent: 12 - - uid: 9658 + - uid: 9662 components: - type: Transform - pos: 13.5,-2.5 + rot: 3.141592653589793 rad + pos: 61.5,-2.5 parent: 12 - uid: 9674 components: @@ -182422,17 +183799,29 @@ entities: - type: Transform pos: 48.5,7.5 parent: 12 - - uid: 9701 + - uid: 9679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 + rot: 1.5707963267948966 rad + pos: 63.5,-2.5 parent: 12 - - uid: 9703 + - uid: 9681 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,4.5 + pos: 81.5,8.5 + parent: 12 + - uid: 9684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,7.5 + parent: 12 + - uid: 9701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 parent: 12 - uid: 9704 components: @@ -182451,12 +183840,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 12 - - uid: 9720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,6.5 - parent: 12 - uid: 9726 components: - type: Transform @@ -182714,6 +184097,12 @@ entities: - type: Transform pos: -56.5,20.5 parent: 12 + - uid: 10381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-1.5 + parent: 12 - uid: 10396 components: - type: Transform @@ -183172,16 +184561,116 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,33.5 parent: 12 + - uid: 10790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,12.5 + parent: 12 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,13.5 + parent: 12 + - uid: 10792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,13.5 + parent: 12 + - uid: 10793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-4.5 + parent: 12 + - uid: 10795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,13.5 + parent: 12 + - uid: 10825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,11.5 + parent: 12 + - uid: 10826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,10.5 + parent: 12 + - uid: 10833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,6.5 + parent: 12 + - uid: 10842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 12 + - uid: 10867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 12 + - uid: 10870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-5.5 + parent: 12 + - uid: 10909 + components: + - type: Transform + pos: 37.5,5.5 + parent: 12 + - uid: 10910 + components: + - type: Transform + pos: 38.5,5.5 + parent: 12 + - uid: 10911 + components: + - type: Transform + pos: 38.5,4.5 + parent: 12 + - uid: 10932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-5.5 + parent: 12 - uid: 10937 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,13.5 parent: 12 + - uid: 10938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 + parent: 12 - uid: 10939 components: - type: Transform - pos: 70.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 12 + - uid: 10951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 parent: 12 - uid: 10953 components: @@ -183218,6 +184707,18 @@ entities: - type: Transform pos: -29.5,-9.5 parent: 12 + - uid: 11021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-4.5 + parent: 12 + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-4.5 + parent: 12 - uid: 11038 components: - type: Transform @@ -183230,6 +184731,30 @@ entities: rot: 3.141592653589793 rad pos: 3.5,20.5 parent: 12 + - uid: 11048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-4.5 + parent: 12 + - uid: 11050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-4.5 + parent: 12 + - uid: 11051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 12 + - uid: 11053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 12 - uid: 11128 components: - type: Transform @@ -183457,17 +184982,17 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,29.5 parent: 12 - - uid: 11213 + - uid: 11209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 + rot: 1.5707963267948966 rad + pos: 65.5,-4.5 parent: 12 - - uid: 11214 + - uid: 11213 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,21.5 + pos: 8.5,22.5 parent: 12 - uid: 11217 components: @@ -183605,6 +185130,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,22.5 parent: 12 + - uid: 11276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 + parent: 12 - uid: 11283 components: - type: Transform @@ -183627,59 +185158,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 12 - - uid: 11331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 12 - - uid: 11364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,3.5 - parent: 12 - - uid: 11371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,2.5 - parent: 12 - - uid: 11373 - components: - - type: Transform - pos: 37.5,5.5 - parent: 12 - - uid: 11375 - components: - - type: Transform - pos: 35.5,5.5 - parent: 12 - - uid: 11376 - components: - - type: Transform - pos: 34.5,5.5 - parent: 12 - - uid: 11377 - components: - - type: Transform - pos: 33.5,5.5 - parent: 12 - - uid: 11379 - components: - - type: Transform - pos: 32.5,6.5 - parent: 12 - - uid: 11380 - components: - - type: Transform - pos: 32.5,7.5 - parent: 12 - - uid: 11382 - components: - - type: Transform - pos: 32.5,9.5 - parent: 12 - uid: 11389 components: - type: Transform @@ -184148,6 +185626,18 @@ entities: - type: Transform pos: 59.5,37.5 parent: 12 + - uid: 11928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 12 + - uid: 11942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,13.5 + parent: 12 - uid: 12009 components: - type: Transform @@ -184163,6 +185653,18 @@ entities: - type: Transform pos: 43.5,13.5 parent: 12 + - uid: 12110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-4.5 + parent: 12 + - uid: 12217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 12 - uid: 12392 components: - type: Transform @@ -184253,11 +185755,10 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,28.5 parent: 12 - - uid: 12724 + - uid: 12641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,6.5 + pos: 35.5,5.5 parent: 12 - uid: 12810 components: @@ -184661,11 +186162,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,76.5 parent: 12 - - uid: 15008 - components: - - type: Transform - pos: 46.5,-3.5 - parent: 12 - uid: 15016 components: - type: Transform @@ -185078,37 +186574,6 @@ entities: - type: Transform pos: 50.5,4.5 parent: 12 - - uid: 16365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 12 - - uid: 16420 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 16421 - components: - - type: Transform - pos: 60.5,11.5 - parent: 12 - - uid: 16435 - components: - - type: Transform - pos: 58.5,11.5 - parent: 12 - - uid: 16436 - components: - - type: Transform - pos: 76.5,10.5 - parent: 12 - - uid: 16446 - components: - - type: Transform - pos: 59.5,11.5 - parent: 12 - uid: 16646 components: - type: Transform @@ -185333,12 +186798,6 @@ entities: - type: Transform pos: 57.5,59.5 parent: 12 - - uid: 17607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,7.5 - parent: 12 - uid: 17624 components: - type: Transform @@ -185640,12 +187099,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,43.5 parent: 12 - - uid: 18756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 12 - uid: 18845 components: - type: Transform @@ -185943,6 +187396,12 @@ entities: rot: 3.141592653589793 rad pos: -41.5,54.5 parent: 12 + - uid: 19176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 12 - uid: 19179 components: - type: Transform @@ -186322,12 +187781,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,50.5 parent: 12 - - uid: 19455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,20.5 - parent: 12 - uid: 19507 components: - type: Transform @@ -186622,16 +188075,17 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,1.5 parent: 12 - - uid: 20097 + - uid: 19886 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,75.5 + pos: 59.5,-0.5 parent: 12 - - uid: 20161 + - uid: 20097 components: - type: Transform - pos: 10.5,6.5 + rot: 3.141592653589793 rad + pos: -25.5,75.5 parent: 12 - uid: 20268 components: @@ -186662,17 +188116,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-8.5 parent: 12 - - uid: 21065 - components: - - type: Transform - pos: 47.5,-3.5 - parent: 12 - - uid: 21078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 12 - uid: 21527 components: - type: Transform @@ -186833,11 +188276,6 @@ entities: - type: Transform pos: 64.5,13.5 parent: 12 - - uid: 22090 - components: - - type: Transform - pos: 70.5,13.5 - parent: 12 - uid: 22091 components: - type: Transform @@ -186848,61 +188286,6 @@ entities: - type: Transform pos: 60.5,14.5 parent: 12 - - uid: 22093 - components: - - type: Transform - pos: 79.5,12.5 - parent: 12 - - uid: 22094 - components: - - type: Transform - pos: 78.5,12.5 - parent: 12 - - uid: 22095 - components: - - type: Transform - pos: 75.5,12.5 - parent: 12 - - uid: 22100 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 22101 - components: - - type: Transform - pos: 77.5,12.5 - parent: 12 - - uid: 22104 - components: - - type: Transform - pos: 77.5,7.5 - parent: 12 - - uid: 22105 - components: - - type: Transform - pos: 79.5,1.5 - parent: 12 - - uid: 22106 - components: - - type: Transform - pos: 79.5,0.5 - parent: 12 - - uid: 22107 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 12 - - uid: 22119 - components: - - type: Transform - pos: 79.5,9.5 - parent: 12 - - uid: 22122 - components: - - type: Transform - pos: 80.5,13.5 - parent: 12 - uid: 22124 components: - type: Transform @@ -187032,11 +188415,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,55.5 parent: 12 - - uid: 22339 - components: - - type: Transform - pos: 63.5,11.5 - parent: 12 - uid: 22532 components: - type: Transform @@ -187064,18 +188442,42 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-6.5 parent: 12 + - uid: 23117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-6.5 + parent: 12 - uid: 23124 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,74.5 parent: 12 + - uid: 23128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 12 + - uid: 23129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,2.5 + parent: 12 - uid: 23144 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,74.5 parent: 12 + - uid: 23157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-1.5 + parent: 12 - uid: 23159 components: - type: Transform @@ -187088,6 +188490,12 @@ entities: rot: 3.141592653589793 rad pos: 14.5,22.5 parent: 12 + - uid: 23166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 12 - uid: 23177 components: - type: Transform @@ -187141,6 +188549,11 @@ entities: - type: Transform pos: 48.5,66.5 parent: 12 + - uid: 23985 + components: + - type: Transform + pos: 60.5,8.5 + parent: 12 - uid: 24226 components: - type: Transform @@ -187180,7 +188593,8 @@ entities: - uid: 24280 components: - type: Transform - pos: 77.5,8.5 + rot: 1.5707963267948966 rad + pos: 56.5,1.5 parent: 12 - uid: 24302 components: @@ -187203,6 +188617,12 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 12 + - uid: 24453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 12 - uid: 24460 components: - type: Transform @@ -187236,6 +188656,11 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-17.5 parent: 12 + - uid: 25093 + components: + - type: Transform + pos: 63.5,7.5 + parent: 12 - uid: 25094 components: - type: Transform @@ -187251,14 +188676,12 @@ entities: - uid: 25101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-5.5 + pos: 63.5,0.5 parent: 12 - uid: 25135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,5.5 + pos: 63.5,8.5 parent: 12 - uid: 25275 components: @@ -187413,46 +188836,6 @@ entities: - type: Transform pos: -50.5,45.5 parent: 12 - - uid: 25460 - components: - - type: Transform - pos: 61.5,11.5 - parent: 12 - - uid: 25461 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 25462 - components: - - type: Transform - pos: 64.5,11.5 - parent: 12 - - uid: 25463 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - - uid: 25464 - components: - - type: Transform - pos: 72.5,10.5 - parent: 12 - - uid: 25465 - components: - - type: Transform - pos: 77.5,6.5 - parent: 12 - - uid: 25466 - components: - - type: Transform - pos: 79.5,2.5 - parent: 12 - - uid: 25469 - components: - - type: Transform - pos: 65.5,11.5 - parent: 12 - uid: 25527 components: - type: Transform @@ -187522,11 +188905,6 @@ entities: - type: Transform pos: 7.5,-13.5 parent: 12 - - uid: 25598 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 12 - uid: 25599 components: - type: Transform @@ -187543,22 +188921,11 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,66.5 parent: 12 - - uid: 25615 - components: - - type: Transform - pos: 32.5,5.5 - parent: 12 - uid: 25835 components: - type: Transform pos: 3.5,12.5 parent: 12 - - uid: 25888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-2.5 - parent: 12 - uid: 25889 components: - type: Transform @@ -187589,12 +188956,34 @@ entities: - type: Transform pos: -18.5,-31.5 parent: 12 + - uid: 26067 + components: + - type: Transform + pos: 63.5,1.5 + parent: 12 - uid: 26096 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-27.5 parent: 12 + - uid: 26104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 12 + - uid: 26114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 12 + - uid: 26131 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 12 - uid: 26167 components: - type: Transform @@ -187628,177 +189017,57 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 12 - - uid: 26382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,11.5 - parent: 12 - - uid: 26414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - uid: 26416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,7.5 - parent: 12 - - uid: 26417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,6.5 - parent: 12 - - uid: 26418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,6.5 - parent: 12 - - uid: 26419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,7.5 - parent: 12 - - uid: 26420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,5.5 - parent: 12 - - uid: 26421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,5.5 - parent: 12 - - uid: 26422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,6.5 - parent: 12 - - uid: 26423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,7.5 - parent: 12 - - uid: 26424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,7.5 - parent: 12 - - uid: 26425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,6.5 - parent: 12 - - uid: 26426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,5.5 + rot: 1.5707963267948966 rad + pos: 24.5,9.5 parent: 12 - uid: 26427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,6.5 - parent: 12 - - uid: 26428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,5.5 - parent: 12 - - uid: 26429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,7.5 - parent: 12 - - uid: 26430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 12 - - uid: 26432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,8.5 - parent: 12 - - uid: 26434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,8.5 + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 parent: 12 - - uid: 26436 + - uid: 26435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,8.5 + rot: -1.5707963267948966 rad + pos: 28.5,11.5 parent: 12 - - uid: 26438 + - uid: 26439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,8.5 + rot: 1.5707963267948966 rad + pos: 81.5,3.5 parent: 12 - uid: 26440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,8.5 - parent: 12 - - uid: 26447 - components: - - type: Transform - pos: 75.5,-1.5 + rot: 1.5707963267948966 rad + pos: 81.5,4.5 parent: 12 - uid: 26448 components: - type: Transform - pos: 77.5,0.5 - parent: 12 - - uid: 26451 - components: - - type: Transform - pos: 77.5,-1.5 - parent: 12 - - uid: 26452 - components: - - type: Transform - pos: 75.5,3.5 + rot: -1.5707963267948966 rad + pos: 16.5,6.5 parent: 12 - - uid: 26466 + - uid: 26469 components: - type: Transform - pos: 16.5,-14.5 + rot: 3.141592653589793 rad + pos: 59.5,-1.5 parent: 12 - uid: 26472 components: - type: Transform - pos: 55.5,-2.5 + pos: 3.5,-17.5 parent: 12 - uid: 26473 components: - type: Transform - pos: 54.5,-2.5 - parent: 12 - - uid: 26474 - components: - - type: Transform - pos: 53.5,-2.5 + pos: 5.5,-18.5 parent: 12 - uid: 26475 components: @@ -187810,16 +189079,6 @@ entities: - type: Transform pos: 51.5,-2.5 parent: 12 - - uid: 26477 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 12 - - uid: 26478 - components: - - type: Transform - pos: 79.5,-4.5 - parent: 12 - uid: 26482 components: - type: Transform @@ -187840,40 +189099,35 @@ entities: - type: Transform pos: 56.5,3.5 parent: 12 - - uid: 26487 - components: - - type: Transform - pos: 57.5,3.5 - parent: 12 - - uid: 26488 - components: - - type: Transform - pos: 69.5,3.5 - parent: 12 - uid: 26489 components: - type: Transform - pos: 70.5,8.5 + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 parent: 12 - - uid: 26490 + - uid: 26492 components: - type: Transform - pos: 74.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 12 - - uid: 26491 + - uid: 26510 components: - type: Transform - pos: 70.5,5.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 12 - - uid: 26495 + - uid: 26538 components: - type: Transform - pos: 74.5,5.5 + rot: 3.141592653589793 rad + pos: 59.5,0.5 parent: 12 - - uid: 26554 + - uid: 26563 components: - type: Transform - pos: 54.5,-1.5 + rot: 1.5707963267948966 rad + pos: 80.5,13.5 parent: 12 - uid: 26567 components: @@ -187885,46 +189139,6 @@ entities: - type: Transform pos: -25.5,-11.5 parent: 12 - - uid: 26590 - components: - - type: Transform - pos: 80.5,7.5 - parent: 12 - - uid: 26592 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 26593 - components: - - type: Transform - pos: 79.5,10.5 - parent: 12 - - uid: 26595 - components: - - type: Transform - pos: 79.5,8.5 - parent: 12 - - uid: 26597 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 26599 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 26600 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 26601 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - uid: 26603 components: - type: Transform @@ -187935,133 +189149,94 @@ entities: - type: Transform pos: 70.5,14.5 parent: 12 - - uid: 26614 + - uid: 26611 components: - type: Transform - pos: 40.5,-9.5 + rot: -1.5707963267948966 rad + pos: 18.5,6.5 parent: 12 - - uid: 26625 + - uid: 26612 components: - type: Transform - pos: 77.5,2.5 + rot: 1.5707963267948966 rad + pos: 61.5,7.5 parent: 12 - - uid: 26626 + - uid: 26614 components: - type: Transform - pos: 77.5,1.5 + pos: 40.5,-9.5 parent: 12 - - uid: 26627 + - uid: 26634 components: - type: Transform - pos: 75.5,2.5 + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 parent: 12 - - uid: 26628 + - uid: 26637 components: - type: Transform - pos: 77.5,-0.5 + rot: -1.5707963267948966 rad + pos: 59.5,7.5 parent: 12 - - uid: 26649 + - uid: 26638 components: - type: Transform - pos: 79.5,-2.5 + rot: 1.5707963267948966 rad + pos: 79.5,-4.5 parent: 12 - uid: 26670 components: - type: Transform pos: 66.5,13.5 parent: 12 - - uid: 26674 - components: - - type: Transform - pos: 68.5,9.5 - parent: 12 - - uid: 26675 - components: - - type: Transform - pos: 67.5,9.5 - parent: 12 - - uid: 26676 - components: - - type: Transform - pos: 66.5,9.5 - parent: 12 - - uid: 26677 - components: - - type: Transform - pos: 65.5,9.5 - parent: 12 - - uid: 26678 - components: - - type: Transform - pos: 64.5,9.5 - parent: 12 - - uid: 26679 - components: - - type: Transform - pos: 63.5,9.5 - parent: 12 - - uid: 26680 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - - uid: 26681 + - uid: 26695 components: - type: Transform - pos: 61.5,9.5 + pos: -25.5,-10.5 parent: 12 - - uid: 26682 + - uid: 26725 components: - type: Transform - pos: 59.5,9.5 + pos: -25.5,-9.5 parent: 12 - - uid: 26683 + - uid: 26786 components: - type: Transform - pos: 58.5,9.5 + pos: 63.5,-0.5 parent: 12 - - uid: 26684 + - uid: 26822 components: - type: Transform - pos: 60.5,9.5 + rot: -1.5707963267948966 rad + pos: 13.5,7.5 parent: 12 - - uid: 26695 + - uid: 26823 components: - type: Transform - pos: -25.5,-10.5 + rot: -1.5707963267948966 rad + pos: 28.5,13.5 parent: 12 - - uid: 26725 + - uid: 26850 components: - type: Transform - pos: -25.5,-9.5 + pos: 5.5,-21.5 parent: 12 - uid: 26882 components: - type: Transform pos: 56.5,-9.5 parent: 12 - - uid: 26892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-7.5 - parent: 12 - uid: 26898 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 12 - - uid: 26912 - components: - - type: Transform - pos: 80.5,-2.5 - parent: 12 - - uid: 26954 + - uid: 27021 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,1.5 + pos: 46.5,0.5 parent: 12 - uid: 27038 components: @@ -188075,64 +189250,27 @@ entities: rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 12 - - uid: 27044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,18.5 - parent: 12 - uid: 27050 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-13.5 parent: 12 - - uid: 27055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-1.5 - parent: 12 - uid: 27076 components: - type: Transform pos: 67.5,13.5 parent: 12 - - uid: 27082 - components: - - type: Transform - pos: 77.5,9.5 - parent: 12 - - uid: 27090 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - uid: 27091 components: - type: Transform pos: 68.5,13.5 parent: 12 - - uid: 27092 - components: - - type: Transform - pos: 74.5,10.5 - parent: 12 - - uid: 27105 - components: - - type: Transform - pos: 80.5,12.5 - parent: 12 - uid: 27106 components: - type: Transform pos: 55.5,13.5 parent: 12 - - uid: 27107 - components: - - type: Transform - pos: 80.5,2.5 - parent: 12 - uid: 27147 components: - type: Transform @@ -188157,11 +189295,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,61.5 parent: 12 - - uid: 27237 - components: - - type: Transform - pos: 79.5,-3.5 - parent: 12 - uid: 27334 components: - type: Transform @@ -188462,62 +189595,45 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,10.5 parent: 12 - - uid: 28804 - components: - - type: Transform - pos: 63.5,-6.5 - parent: 12 - - uid: 28805 - components: - - type: Transform - pos: 69.5,-6.5 - parent: 12 - - uid: 28806 - components: - - type: Transform - pos: 75.5,-6.5 - parent: 12 - - uid: 28807 + - uid: 28834 components: - type: Transform - pos: 75.5,-5.5 + pos: 32.5,3.5 parent: 12 - - uid: 28808 + - uid: 28835 components: - type: Transform - pos: 76.5,-5.5 + pos: 32.5,4.5 parent: 12 - - uid: 28809 + - uid: 28836 components: - type: Transform - pos: 77.5,-5.5 + pos: 33.5,5.5 parent: 12 - - uid: 28810 + - uid: 28837 components: - type: Transform - pos: 77.5,-4.5 + pos: 32.5,7.5 parent: 12 - - uid: 28811 + - uid: 28838 components: - type: Transform - pos: 77.5,-3.5 + pos: 30.5,7.5 parent: 12 - - uid: 28812 + - uid: 28843 components: - type: Transform - pos: 77.5,-2.5 + pos: 34.5,5.5 parent: 12 - - uid: 28852 + - uid: 28849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + pos: 32.5,2.5 parent: 12 - - uid: 28856 + - uid: 28943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-2.5 + pos: 19.5,-13.5 parent: 12 - uid: 29163 components: @@ -188554,12 +189670,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,64.5 parent: 12 - - uid: 29355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,1.5 - parent: 12 - uid: 29657 components: - type: Transform @@ -188784,11 +189894,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-63.5 parent: 12 - - uid: 31511 - components: - - type: Transform - pos: 32.5,3.5 - parent: 12 - uid: 31604 components: - type: Transform @@ -188819,37 +189924,34 @@ entities: - type: Transform pos: -64.5,-30.5 parent: 12 -- proto: WallReinforcedDiagonal - entities: - - uid: 21621 + - uid: 31891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,5.5 + rot: 1.5707963267948966 rad + pos: 17.5,22.5 parent: 12 - - uid: 22066 + - uid: 31892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,6.5 + rot: 1.5707963267948966 rad + pos: 16.5,22.5 parent: 12 - - uid: 22072 + - uid: 31895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,4.5 + pos: 17.5,18.5 parent: 12 - - uid: 22073 + - uid: 31902 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: 60.5,7.5 parent: 12 - - uid: 22075 + - uid: 31906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 + pos: 60.5,10.5 parent: 12 - proto: WallReinforcedRust entities: @@ -188870,12 +189972,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,30.5 parent: 12 - - uid: 2679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 12 - uid: 3624 components: - type: Transform @@ -188903,16 +189999,16 @@ entities: - type: Transform pos: -37.5,73.5 parent: 12 - - uid: 5794 + - uid: 5110 components: - type: Transform - pos: 41.5,-3.5 + rot: -1.5707963267948966 rad + pos: 58.5,-7.5 parent: 12 - - uid: 6765 + - uid: 5794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-2.5 + pos: 41.5,-3.5 parent: 12 - uid: 7802 components: @@ -188925,12 +190021,6 @@ entities: - type: Transform pos: 44.5,-39.5 parent: 12 - - uid: 9437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,11.5 - parent: 12 - uid: 9531 components: - type: Transform @@ -188985,12 +190075,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 12 - - uid: 9908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 12 - uid: 10166 components: - type: Transform @@ -189245,11 +190329,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,69.5 parent: 12 - - uid: 12217 - components: - - type: Transform - pos: 36.5,5.5 - parent: 12 - uid: 12308 components: - type: Transform @@ -189302,12 +190381,6 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 12 - - uid: 17584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 12 - uid: 18709 components: - type: Transform @@ -189458,11 +190531,47 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,70.5 parent: 12 - - uid: 26834 + - uid: 26595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 + rot: 3.141592653589793 rad + pos: 81.5,0.5 + parent: 12 + - uid: 26608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-3.5 + parent: 12 + - uid: 26680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,11.5 + parent: 12 + - uid: 26691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,14.5 + parent: 12 + - uid: 26697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-5.5 + parent: 12 + - uid: 26714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-5.5 + parent: 12 + - uid: 27020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,13.5 parent: 12 - uid: 27035 components: @@ -189470,6 +190579,12 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 12 + - uid: 27044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,9.5 + parent: 12 - uid: 27054 components: - type: Transform @@ -189520,6 +190635,26 @@ entities: - type: Transform pos: 42.5,65.5 parent: 12 + - uid: 28811 + components: + - type: Transform + pos: 36.5,5.5 + parent: 12 + - uid: 28812 + components: + - type: Transform + pos: 32.5,5.5 + parent: 12 + - uid: 28845 + components: + - type: Transform + pos: 29.5,7.5 + parent: 12 + - uid: 28919 + components: + - type: Transform + pos: 32.5,6.5 + parent: 12 - uid: 29123 components: - type: Transform @@ -190738,11 +191873,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-36.5 parent: 12 - - uid: 2808 - components: - - type: Transform - pos: 10.5,4.5 - parent: 12 - uid: 2823 components: - type: Transform @@ -191081,12 +192211,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-14.5 parent: 12 - - uid: 4175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 12 - uid: 4177 components: - type: Transform @@ -191239,11 +192363,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-35.5 parent: 12 - - uid: 4917 - components: - - type: Transform - pos: 10.5,5.5 - parent: 12 - uid: 4959 components: - type: Transform @@ -191260,12 +192379,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-40.5 parent: 12 - - uid: 5107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 12 - uid: 5178 components: - type: Transform @@ -191312,12 +192425,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-25.5 parent: 12 - - uid: 5481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 12 - uid: 5498 components: - type: Transform @@ -191354,6 +192461,12 @@ entities: - type: Transform pos: -25.5,-17.5 parent: 12 + - uid: 5796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 12 - uid: 5827 components: - type: Transform @@ -191576,12 +192689,6 @@ entities: - type: Transform pos: 6.5,76.5 parent: 12 - - uid: 6719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,2.5 - parent: 12 - uid: 6742 components: - type: Transform @@ -191999,12 +193106,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-32.5 parent: 12 - - uid: 7586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 12 - uid: 7603 components: - type: Transform @@ -192131,12 +193232,6 @@ entities: - type: Transform pos: 46.5,9.5 parent: 12 - - uid: 9458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,10.5 - parent: 12 - uid: 9594 components: - type: Transform @@ -192486,12 +193581,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 12 - - uid: 11203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,32.5 - parent: 12 - uid: 11208 components: - type: Transform @@ -192525,26 +193614,11 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,20.5 parent: 12 - - uid: 11360 - components: - - type: Transform - pos: 9.5,3.5 - parent: 12 - uid: 11363 components: - type: Transform pos: 40.5,14.5 parent: 12 - - uid: 11390 - components: - - type: Transform - pos: 27.5,13.5 - parent: 12 - - uid: 11392 - components: - - type: Transform - pos: 29.5,13.5 - parent: 12 - uid: 11393 components: - type: Transform @@ -192587,21 +193661,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,26.5 parent: 12 - - uid: 11448 - components: - - type: Transform - pos: 10.5,3.5 - parent: 12 - - uid: 11464 - components: - - type: Transform - pos: 50.5,13.5 - parent: 12 - - uid: 11465 - components: - - type: Transform - pos: 49.5,13.5 - parent: 12 - uid: 11466 components: - type: Transform @@ -192627,11 +193686,6 @@ entities: - type: Transform pos: 34.5,13.5 parent: 12 - - uid: 11505 - components: - - type: Transform - pos: 35.5,13.5 - parent: 12 - uid: 11506 components: - type: Transform @@ -192697,11 +193751,6 @@ entities: - type: Transform pos: 47.5,18.5 parent: 12 - - uid: 11553 - components: - - type: Transform - pos: 46.5,22.5 - parent: 12 - uid: 11554 components: - type: Transform @@ -192748,11 +193797,6 @@ entities: - type: Transform pos: 31.5,20.5 parent: 12 - - uid: 11591 - components: - - type: Transform - pos: 31.5,21.5 - parent: 12 - uid: 11595 components: - type: Transform @@ -192832,11 +193876,6 @@ entities: - type: Transform pos: 50.5,23.5 parent: 12 - - uid: 11646 - components: - - type: Transform - pos: 50.5,22.5 - parent: 12 - uid: 11647 components: - type: Transform @@ -196010,11 +197049,6 @@ entities: - type: Transform pos: 52.5,9.5 parent: 12 - - uid: 25470 - components: - - type: Transform - pos: 51.5,9.5 - parent: 12 - uid: 25492 components: - type: Transform @@ -196108,12 +197142,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-41.5 parent: 12 - - uid: 25661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,5.5 - parent: 12 - uid: 25662 components: - type: Transform @@ -196224,6 +197252,18 @@ entities: - type: Transform pos: 29.5,-29.5 parent: 12 + - uid: 26618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,9.5 + parent: 12 + - uid: 26698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,9.5 + parent: 12 - uid: 26830 components: - type: Transform @@ -196234,6 +197274,12 @@ entities: - type: Transform pos: -57.5,-31.5 parent: 12 + - uid: 27025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 12 - uid: 27031 components: - type: Transform @@ -196488,6 +197534,17 @@ entities: - type: Transform pos: -24.5,-1.5 parent: 12 + - uid: 28924 + components: + - type: Transform + pos: 44.5,9.5 + parent: 12 + - uid: 28928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,11.5 + parent: 12 - uid: 29116 components: - type: Transform @@ -196626,6 +197683,11 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-2.5 parent: 12 + - uid: 31889 + components: + - type: Transform + pos: 41.5,1.5 + parent: 12 - proto: WallSolidDiagonal entities: - uid: 24234 @@ -196749,6 +197811,17 @@ entities: - type: Transform pos: -48.5,66.5 parent: 12 + - uid: 11332 + components: + - type: Transform + pos: 45.5,9.5 + parent: 12 + - uid: 11364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,10.5 + parent: 12 - uid: 11580 components: - type: Transform @@ -197018,12 +198091,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,63.5 parent: 12 - - uid: 20884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-1.5 - parent: 12 - uid: 21608 components: - type: Transform @@ -197046,6 +198113,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,25.5 parent: 12 + - uid: 24452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 12 - uid: 24635 components: - type: Transform @@ -197154,12 +198227,30 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 12 + - uid: 26816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,8.5 + parent: 12 + - uid: 27023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-2.5 + parent: 12 - uid: 27172 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,17.5 parent: 12 + - uid: 27217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-2.5 + parent: 12 - uid: 27226 components: - type: Transform @@ -197176,6 +198267,24 @@ entities: - type: Transform pos: -9.5,-35.5 parent: 12 + - uid: 27304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,32.5 + parent: 12 + - uid: 27316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,13.5 + parent: 12 + - uid: 27385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 12 - uid: 27413 components: - type: Transform @@ -197218,11 +198327,40 @@ entities: - type: Transform pos: -51.5,-13.5 parent: 12 - - uid: 28770 + - uid: 28239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-3.5 + rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 12 + - uid: 28391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,22.5 + parent: 12 + - uid: 28701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,21.5 + parent: 12 + - uid: 28702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 12 + - uid: 28703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,9.5 + parent: 12 + - uid: 28942 + components: + - type: Transform + pos: 49.5,9.5 parent: 12 - uid: 29115 components: @@ -197593,12 +198731,21 @@ entities: - type: Transform pos: -55.5,-31.5 parent: 12 +- proto: WarningCO2 + entities: + - uid: 26826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 12 - proto: WarningN2 entities: - - uid: 27182 + - uid: 26827 components: - type: Transform - pos: 59.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 12 - uid: 30433 components: @@ -197607,29 +198754,44 @@ entities: parent: 12 - proto: WarningO2 entities: - - uid: 27183 + - uid: 26828 components: - type: Transform - pos: 61.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-9.5 parent: 12 - proto: WarningPlasma entities: - - uid: 27202 + - uid: 26832 components: - type: Transform - pos: 63.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 12 +- proto: WarningTritium + entities: + - uid: 26840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 parent: 12 - proto: WarningWaste entities: - - uid: 27028 + - uid: 26764 components: - type: Transform - pos: 67.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,2.5 parent: 12 - - uid: 27906 + - uid: 26765 components: + - type: MetaData + desc: WARNING! Water vapor flow tube. Ensure the flow is disengaged before working. + name: water vapor warning sign - type: Transform - pos: 65.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-1.5 parent: 12 - proto: WaterCooler entities: @@ -197790,11 +198952,6 @@ entities: - type: Transform pos: 58.5,52.5 parent: 12 - - uid: 27030 - components: - - type: Transform - pos: 45.5,-1.5 - parent: 12 - uid: 27328 components: - type: Transform @@ -197805,6 +198962,11 @@ entities: - type: Transform pos: -3.5,-23.5 parent: 12 + - uid: 28842 + components: + - type: Transform + pos: 29.5,12.5 + parent: 12 - uid: 31370 components: - type: Transform @@ -197849,15 +199011,20 @@ entities: - type: Transform pos: 13.5,21.5 parent: 12 - - uid: 15785 + - uid: 5034 components: - type: Transform - pos: 9.5,32.5 + pos: 25.5,8.5 parent: 12 - - uid: 26919 + - uid: 5675 components: - type: Transform - pos: 58.5,-3.5 + pos: 24.5,-2.5 + parent: 12 + - uid: 15785 + components: + - type: Transform + pos: 9.5,32.5 parent: 12 - proto: WeaponCapacitorRecharger entities: @@ -198043,8 +199210,8 @@ entities: - uid: 9394 components: - type: Transform - rot: -6.283185307179586 rad - pos: 55.34557,2.520393 + rot: -25.132741228718352 rad + pos: 17.416166,-13.405632 parent: 12 - uid: 10394 components: @@ -198085,11 +199252,6 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 12 - - uid: 8799 - components: - - type: Transform - pos: 32.5,2.5 - parent: 12 - uid: 8878 components: - type: Transform @@ -198160,30 +199322,35 @@ entities: - type: Transform pos: 48.5,-32.5 parent: 12 - - uid: 26552 + - uid: 26892 components: - type: Transform - pos: 45.5,-2.5 + pos: 16.5,20.5 parent: 12 - - uid: 26803 + - uid: 27022 components: - type: Transform - pos: 70.5,-5.5 + pos: 45.5,-3.5 parent: 12 - uid: 27846 components: - type: Transform pos: -15.5,69.5 parent: 12 - - uid: 28239 + - uid: 28651 components: - type: Transform - pos: 15.5,17.5 + pos: -4.5,-23.5 parent: 12 - - uid: 28651 + - uid: 28750 components: - type: Transform - pos: -4.5,-23.5 + pos: 8.5,-7.5 + parent: 12 + - uid: 28841 + components: + - type: Transform + pos: 29.5,11.5 parent: 12 - uid: 30402 components: @@ -198283,12 +199450,6 @@ entities: - type: Transform pos: -38.5,-21.5 parent: 12 - - uid: 6794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-22.5 - parent: 12 - uid: 6982 components: - type: Transform @@ -198723,6 +199884,12 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,3.5 parent: 12 + - uid: 31908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,11.5 + parent: 12 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 23890 @@ -198933,11 +200100,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-4.5 parent: 12 - - uid: 356 - components: - - type: Transform - pos: 9.5,2.5 - parent: 12 - uid: 371 components: - type: Transform @@ -199102,11 +200264,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-37.5 parent: 12 - - uid: 7124 - components: - - type: Transform - pos: 49.5,9.5 - parent: 12 - uid: 7382 components: - type: Transform @@ -199161,11 +200318,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-17.5 parent: 12 - - uid: 9398 - components: - - type: Transform - pos: 47.5,9.5 - parent: 12 - uid: 9637 components: - type: Transform @@ -199184,16 +200336,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,14.5 parent: 12 - - uid: 11485 - components: - - type: Transform - pos: 45.5,9.5 - parent: 12 - - uid: 11486 - components: - - type: Transform - pos: 44.5,9.5 - parent: 12 - uid: 11515 components: - type: Transform @@ -199774,21 +200916,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-12.5 parent: 12 - - uid: 20542 - components: - - type: Transform - pos: 53.5,11.5 - parent: 12 - - uid: 20543 - components: - - type: Transform - pos: 53.5,12.5 - parent: 12 - - uid: 20552 - components: - - type: Transform - pos: 53.5,10.5 - parent: 12 - uid: 22292 components: - type: Transform @@ -199836,16 +200963,6 @@ entities: - type: Transform pos: -54.5,-15.5 parent: 12 - - uid: 26562 - components: - - type: Transform - pos: 9.5,0.5 - parent: 12 - - uid: 26907 - components: - - type: Transform - pos: 48.5,9.5 - parent: 12 - uid: 27276 components: - type: Transform @@ -199917,11 +201034,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,0.5 parent: 12 - - uid: 5979 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 12 - uid: 28193 components: - type: Transform @@ -201022,6 +202134,12 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-10.5 parent: 12 + - uid: 27236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,12.5 + parent: 12 - uid: 27514 components: - type: Transform @@ -201106,6 +202224,12 @@ entities: rot: 3.141592653589793 rad pos: -57.5,27.5 parent: 12 + - uid: 31907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,10.5 + parent: 12 - proto: Wirecutter entities: - uid: 8737 @@ -201179,11 +202303,6 @@ entities: - 31202 - proto: Wrench entities: - - uid: 5053 - components: - - type: Transform - pos: 18.33702,3.4807546 - parent: 12 - uid: 5916 components: - type: Transform @@ -201204,7 +202323,8 @@ entities: - uid: 7197 components: - type: Transform - pos: 2.478019,-1.4704378 + rot: -12.566370614359172 rad + pos: 2.2218802,-0.60405827 parent: 12 - uid: 9080 components: @@ -201233,11 +202353,6 @@ entities: - type: Transform pos: 44.512337,53.244392 parent: 12 - - uid: 27207 - components: - - type: Transform - pos: 72.52122,-5.3538737 - parent: 12 - uid: 28277 components: - type: Transform @@ -201248,6 +202363,12 @@ entities: - type: Transform pos: 5.7223816,16.863264 parent: 12 + - uid: 29302 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.46028,4.4797335 + parent: 12 - proto: Zipties entities: - uid: 13512 From 9b9853439c28e466bee4ee595fab4427938bc14b Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 19 Sep 2024 13:45:03 +0000 Subject: [PATCH 058/161] make flare recipe roundstart instead of blueprint (#32303) * make flare recipe roundstart instead of blueprint * migrate it --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Markers/Spawners/Random/Salvage/tables_loot.yml | 1 - .../Prototypes/Entities/Objects/Tools/blueprint.yml | 10 ---------- .../Prototypes/Entities/Structures/Machines/lathe.yml | 2 +- Resources/migration.yml | 3 +++ 4 files changed, 4 insertions(+), 12 deletions(-) diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml index 552b8aae0da3..b74a80c39d4a 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml @@ -217,7 +217,6 @@ id: SalvageEquipmentRare table: !type:GroupSelector children: - - id: BlueprintFlare - id: FultonBeacon - id: Fulton amount: !type:RangeNumberSelector diff --git a/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml b/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml index ba26baf36267..43cbdc2431ff 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml @@ -37,13 +37,3 @@ - type: Blueprint providedRecipes: - SeismicCharge - -- type: entity - parent: BaseBlueprint - id: BlueprintFlare - name: flare blueprint - description: A blueprint with a schematic of a flare. It can be inserted into an autolathe. - components: - - type: Blueprint - providedRecipes: - - Flare diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index a905bc73daba..538da8d93e6e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -198,7 +198,7 @@ - ClothingHeadHatWelding - WetFloorSign - ClothingHeadHatCone - + - Flare - type: EmagLatheRecipes emagStaticRecipes: - BoxLethalshot diff --git a/Resources/migration.yml b/Resources/migration.yml index 6ef05275b5d3..352c9a4454cf 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -434,3 +434,6 @@ OverlordCircuitBoard: null # 2024-09-08 HatBase: null + +# 2024-09-19 +BlueprintFlare: null From bac7093f8435faf2d7a5a5087ae42c52a2c1b470 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 13:46:12 +0000 Subject: [PATCH 059/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5f5d96f41c9d..4a3bcfb20916 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: You can no longer shoot out of crates with guns - type: Fix - id: 6901 - time: '2024-07-11T05:14:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28961 - author: Cojoke-dot changes: - message: The Spray Painter can now be used to paint glass airlocks to look like @@ -3921,3 +3914,11 @@ id: 7400 time: '2024-09-19T10:23:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31659 +- author: deltanedas + changes: + - message: Removed the flare blueprint from salvage, it's now unlocked roundstart + in autolathes. + type: Remove + id: 7401 + time: '2024-09-19T13:45:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32303 From e490b69b4e4fd49f6fecf7a1e066fab1c7a1e630 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:50:59 +0200 Subject: [PATCH 060/161] fix conjugate have in cryo locale string (#31993) --- Content.Server/Bed/Cryostorage/CryostorageSystem.cs | 1 + Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index dd89ba2f72e8..cd4aa4a0981a 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -239,6 +239,7 @@ public void HandleEnterCryostorage(Entity ent, Ne Loc.GetString( "earlyleave-cryo-announcement", ("character", name), + ("entity", ent.Owner), ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName)) ), Loc.GetString("earlyleave-cryo-sender"), playDefaultSound: false diff --git a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl index 500a53056212..7d1c07944356 100644 --- a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl +++ b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl @@ -2,5 +2,5 @@ ### Announcement earlyleave-cryo-job-unknown = Unknown -earlyleave-cryo-announcement = {$character} ({$job}) has entered cryogenic storage! +earlyleave-cryo-announcement = {$character} ({$job}) { CONJUGATE-HAVE($entity) } entered cryogenic storage! earlyleave-cryo-sender = Station From fdfbd74bcb697a7574ebc5ebef08f60c82a8479d Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 19 Sep 2024 13:55:31 +0000 Subject: [PATCH 061/161] increase thieving beacon range to 2 (#31340) * increase thieving beacon range to 2 * add obstruction check * review * Entity strikes again * webedit ops because github died or something --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Objectives/Systems/StealConditionSystem.cs | 16 ++++++++++++---- .../Entities/Objects/Tools/thief_beacon.yml | 1 + 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Content.Server/Objectives/Systems/StealConditionSystem.cs b/Content.Server/Objectives/Systems/StealConditionSystem.cs index e2d81e011cf5..48814e7ba3c1 100644 --- a/Content.Server/Objectives/Systems/StealConditionSystem.cs +++ b/Content.Server/Objectives/Systems/StealConditionSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Objectives.Components; using Content.Server.Objectives.Components.Targets; using Content.Shared.CartridgeLoader; +using Content.Shared.Interaction; using Content.Shared.Mind; using Content.Shared.Objectives.Components; using Content.Shared.Objectives.Systems; @@ -21,11 +22,14 @@ public sealed class StealConditionSystem : EntitySystem [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; private EntityQuery _containerQuery; + private HashSet> _nearestEnts = new(); + public override void Initialize() { base.Initialize(); @@ -103,15 +107,19 @@ private float GetProgress(MindComponent mind, StealConditionComponent condition) //check stealAreas if (condition.CheckStealAreas) { - var areasQuery = AllEntityQuery(); - while (areasQuery.MoveNext(out var uid, out var area)) + var areasQuery = AllEntityQuery(); + while (areasQuery.MoveNext(out var uid, out var area, out var xform)) { if (!area.Owners.Contains(mind.Owner)) continue; - var nearestEnt = _lookup.GetEntitiesInRange(uid, area.Range); - foreach (var ent in nearestEnt) + _nearestEnts.Clear(); + _lookup.GetEntitiesInRange(xform.Coordinates, area.Range, _nearestEnts); + foreach (var ent in _nearestEnts) { + if (!_interaction.InRangeUnobstructed((uid, xform), (ent, ent.Comp), range: area.Range)) + continue; + CheckEntity(ent, condition, ref containerStack, ref count); } } diff --git a/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml b/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml index 042b3fe51735..f0f373741756 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml @@ -6,6 +6,7 @@ components: - type: ThiefBeacon - type: StealArea + range: 2 # Slightly larger than fulton beacon's random offset - type: Item size: Normal - type: Physics From 90d19367f85bd859a2bdfbb3bd324b722a243789 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 13:56:37 +0000 Subject: [PATCH 062/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4a3bcfb20916..e56ada2a0a5f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: The Spray Painter can now be used to paint glass airlocks to look like - regular glass airlocks. - type: Tweak - id: 6902 - time: '2024-07-11T05:33:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29869 - author: MFMessage changes: - message: Picking a ghost role as an admin will now deadmin. @@ -3922,3 +3914,10 @@ id: 7401 time: '2024-09-19T13:45:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32303 +- author: deltanedas + changes: + - message: Increased the thieving beacon's range to 2 tiles. + type: Tweak + id: 7402 + time: '2024-09-19T13:55:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31340 From 0093fce5b498442cdee49644c4126dd1ea2a26e1 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Thu, 19 Sep 2024 17:01:54 +0300 Subject: [PATCH 063/161] Dialog windows now grab the keyboard focus (#31294) * Dialog windows now grab the keyboard focus * Comment --- Content.Client/UserInterface/Controls/DialogWindow.xaml.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs index f50aca581bdf..733dbe326583 100644 --- a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs +++ b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs @@ -87,6 +87,9 @@ public DialogWindow(string title, List entries, bool ok = true Prompts.AddChild(box); } + // Grab keyboard focus for the first dialog entry + _promptLines[0].Item2.GrabKeyboardFocus(); + OkButton.OnPressed += _ => Confirm(); CancelButton.OnPressed += _ => From 30ac40f08832ed4f96cb51102155c4b50ba5c8d2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 14:03:00 +0000 Subject: [PATCH 064/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e56ada2a0a5f..5d3738016acc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: MFMessage - changes: - - message: Picking a ghost role as an admin will now deadmin. - type: Fix - id: 6903 - time: '2024-07-11T05:53:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29790 - author: Winkarst-cpu changes: - message: Admin notes popups are now more readable. @@ -3921,3 +3914,11 @@ id: 7402 time: '2024-09-19T13:55:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31340 +- author: Winkarst-cpu + changes: + - message: The first editable line in the dialog window now grabs the keyboard focus + once it's open. + type: Fix + id: 7403 + time: '2024-09-19T14:01:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31294 From d5d6fb51aa6e8d378fb92fb4ad7bea0682f7e721 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 19 Sep 2024 07:08:33 -0700 Subject: [PATCH 065/161] Allows you to buckle transfer person from bed to bed (#32089) * unbuckle if the target is buckled * better way to do it --- Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 7f6c39eafc06..8b35f677f185 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -268,7 +268,7 @@ private bool CanBuckle(EntityUid buckleUid, return false; } - if (buckleComp.Buckled) + if (buckleComp.Buckled && !TryUnbuckle(buckleUid, user, buckleComp)) { if (popup) { From b32bdbf8e9a8498651f090a4fc4dddb510acbe0c Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 14:09:39 +0000 Subject: [PATCH 066/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5d3738016acc..76b01c427fbb 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Admin notes popups are now more readable. - type: Tweak - id: 6904 - time: '2024-07-11T14:03:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29909 - author: jonathanargo changes: - message: Muskets are now wieldable. @@ -3922,3 +3915,10 @@ id: 7403 time: '2024-09-19T14:01:54.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31294 +- author: Plykiya + changes: + - message: You can now transfer someone from a rollerbed to a bed directly. + type: Tweak + id: 7404 + time: '2024-09-19T14:08:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32089 From 3e1c067c41539841bbb374d8584dd32a9bf1c93f Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Fri, 20 Sep 2024 01:17:18 +0600 Subject: [PATCH 067/161] Fland change - Add glasslocks to the Contiguous Fland Hallway Volume (#32264) * Add glasslocks to the Contiguous Fland Hallway Volume * Fix up the firelocks, hopefully! --- Resources/Maps/fland.yml | 235 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 222 insertions(+), 13 deletions(-) diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 54ef4d551041..b3d09487ade6 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -524,7 +524,7 @@ entities: version: 6 5,2: ind: 5,2 - tiles: fgAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABbAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABbAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAbAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAB + tiles: fgAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABbAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABbAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAbAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAOAAAAAAATwAAAAAAOAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAB version: 6 4,3: ind: 4,3 @@ -17208,12 +17208,9 @@ entities: parent: 13329 - type: DeviceList devices: - - 21410 - - 21411 - - 21412 - - 21407 - - 21408 - - 21409 + - 35811 + - 35810 + - 35809 - 21406 - 21405 - 21404 @@ -17349,6 +17346,9 @@ entities: - 29750 - 16742 - 29748 + - 21412 + - 21411 + - 21410 - uid: 31264 components: - type: Transform @@ -19611,6 +19611,176 @@ entities: - type: Transform pos: 57.5,32.5 parent: 13329 + - uid: 35743 + components: + - type: Transform + pos: -1.5,7.5 + parent: 13329 + - uid: 35769 + components: + - type: Transform + pos: -0.5,7.5 + parent: 13329 + - uid: 35786 + components: + - type: Transform + pos: 0.5,7.5 + parent: 13329 + - uid: 35787 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 13329 + - uid: 35788 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 13329 + - uid: 35789 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 13329 + - uid: 35790 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 13329 + - uid: 35791 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 13329 + - uid: 35792 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 13329 + - uid: 35793 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 13329 + - uid: 35794 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 13329 + - uid: 35795 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 13329 + - uid: 35796 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 13329 + - uid: 35797 + components: + - type: Transform + pos: 54.5,1.5 + parent: 13329 + - uid: 35798 + components: + - type: Transform + pos: 55.5,1.5 + parent: 13329 + - uid: 35799 + components: + - type: Transform + pos: 56.5,1.5 + parent: 13329 + - uid: 35800 + components: + - type: Transform + pos: 53.5,34.5 + parent: 13329 + - uid: 35801 + components: + - type: Transform + pos: 53.5,33.5 + parent: 13329 + - uid: 35802 + components: + - type: Transform + pos: 53.5,32.5 + parent: 13329 + - uid: 35803 + components: + - type: Transform + pos: 54.5,35.5 + parent: 13329 + - uid: 35804 + components: + - type: Transform + pos: 55.5,35.5 + parent: 13329 + - uid: 35805 + components: + - type: Transform + pos: 56.5,35.5 + parent: 13329 + - uid: 35806 + components: + - type: Transform + pos: 81.5,37.5 + parent: 13329 + - uid: 35807 + components: + - type: Transform + pos: 82.5,37.5 + parent: 13329 + - uid: 35808 + components: + - type: Transform + pos: 83.5,37.5 + parent: 13329 + - uid: 35812 + components: + - type: Transform + pos: 1.5,34.5 + parent: 13329 + - uid: 35813 + components: + - type: Transform + pos: 1.5,33.5 + parent: 13329 + - uid: 35814 + components: + - type: Transform + pos: 1.5,32.5 + parent: 13329 + - uid: 35815 + components: + - type: Transform + pos: -6.5,46.5 + parent: 13329 + - uid: 35816 + components: + - type: Transform + pos: -6.5,45.5 + parent: 13329 + - uid: 35817 + components: + - type: Transform + pos: -6.5,44.5 + parent: 13329 + - uid: 35818 + components: + - type: Transform + pos: -5.5,49.5 + parent: 13329 + - uid: 35819 + components: + - type: Transform + pos: -4.5,49.5 + parent: 13329 + - uid: 35820 + components: + - type: Transform + pos: -3.5,49.5 + parent: 13329 - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 16662 @@ -112647,12 +112817,9 @@ entities: parent: 13329 - type: DeviceList devices: - - 21410 - - 21411 - - 21412 - - 21407 - - 21408 - - 21409 + - 35811 + - 35810 + - 35809 - 21406 - 21405 - 21404 @@ -112754,6 +112921,9 @@ entities: - 21407 - 21408 - 21409 + - 21412 + - 21411 + - 21410 - proto: FireAxeCabinetFilled entities: - uid: 22994 @@ -114418,16 +114588,28 @@ entities: - type: Transform pos: 84.5,38.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 31262 + - 31263 - uid: 21411 components: - type: Transform pos: 84.5,39.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 31262 + - 31263 - uid: 21412 components: - type: Transform pos: 84.5,40.5 parent: 13329 + - type: DeviceNetwork + deviceLists: + - 31262 + - 31263 - uid: 21413 components: - type: Transform @@ -114708,6 +114890,33 @@ entities: - type: Transform pos: 48.5,47.5 parent: 13329 + - uid: 35809 + components: + - type: Transform + pos: 81.5,37.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 28840 + - 28841 + - uid: 35810 + components: + - type: Transform + pos: 82.5,37.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 28840 + - 28841 + - uid: 35811 + components: + - type: Transform + pos: 83.5,37.5 + parent: 13329 + - type: DeviceNetwork + deviceLists: + - 28840 + - 28841 - proto: Fireplace entities: - uid: 6349 From 937940bcc700b26318a6da9b4e0e74c1c5f27300 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 19:18:28 +0000 Subject: [PATCH 068/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 76b01c427fbb..2f5e15c360b6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: jonathanargo - changes: - - message: Muskets are now wieldable. - type: Tweak - id: 6905 - time: '2024-07-12T09:16:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29910 - author: themias changes: - message: Notice boards can now be built on walls @@ -3922,3 +3915,10 @@ id: 7404 time: '2024-09-19T14:08:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32089 +- author: SaphireLattice + changes: + - message: Fland now has public glass airlocks sectioning the hallway. + type: Fix + id: 7405 + time: '2024-09-19T19:17:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32264 From 24c412f16e48cbf8cf26a55b8f03fad8d994bb2b Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 19 Sep 2024 15:15:45 -0700 Subject: [PATCH 069/161] Removes cockroach/mothroach melee damage (#32221) no more cockroach and mothroach damage --- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 8e05642c0e97..2ab2534121d1 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -389,6 +389,14 @@ - type: NonSpreaderZombie - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-organic + - type: MeleeWeapon + soundHit: + path: /Audio/Effects/bite.ogg + angle: 0 + animation: WeaponArcBite + damage: + types: + Piercing: 0 - type: entity name: glockroach From d74d44acff70139c33bc54d0fc28964712d331c7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 22:16:52 +0000 Subject: [PATCH 070/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2f5e15c360b6..7672a0600628 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Notice boards can now be built on walls - type: Fix - id: 6906 - time: '2024-07-12T09:18:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29851 - author: slarticodefast changes: - message: Stun batons, stun prods and banana cream pies now fly like other throwing @@ -3922,3 +3915,10 @@ id: 7405 time: '2024-09-19T19:17:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32264 +- author: Plykiya + changes: + - message: Cockroaches and mothroaches can no longer damage things with their bites. + type: Tweak + id: 7406 + time: '2024-09-19T22:15:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32221 From 1a601c49a53e61a43c20dedfd25a4056796d1d0d Mon Sep 17 00:00:00 2001 From: PopGamer46 Date: Fri, 20 Sep 2024 01:27:23 +0200 Subject: [PATCH 071/161] Makes the rat king's cheeseEm order more convenient to use (#32181) more convenient cheeseem --- Resources/Prototypes/NPCs/mob.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/NPCs/mob.yml b/Resources/Prototypes/NPCs/mob.yml index b0e1c8ae9b98..dd3378618a61 100644 --- a/Resources/Prototypes/NPCs/mob.yml +++ b/Resources/Prototypes/NPCs/mob.yml @@ -15,6 +15,9 @@ - tasks: - !type:HTNCompoundTask task: RatServantCombatCompound + - tasks: + - !type:HTNCompoundTask + task: FollowCompound - tasks: - !type:HTNCompoundTask task: IdleCompound From 7aae8c0099c6f0c26fab0b68d1b11df8613089bc Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 19 Sep 2024 23:28:29 +0000 Subject: [PATCH 072/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7672a0600628..8dabef5af493 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: Stun batons, stun prods and banana cream pies now fly like other throwing - weapons when thrown. - type: Fix - id: 6907 - time: '2024-07-12T09:19:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29883 - author: Plykiya changes: - message: Dropping an item while in a container now places the item in the container. @@ -3922,3 +3914,11 @@ id: 7406 time: '2024-09-19T22:15:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32221 +- author: PopGamer46 + changes: + - message: The rat king's rats now follow you instead of idling when there is no + one to attack during the CheeseEm order + type: Tweak + id: 7407 + time: '2024-09-19T23:27:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32181 From 2d42a6bf98765f0cdbe84b876115849b79d248a8 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Thu, 19 Sep 2024 20:55:48 -0700 Subject: [PATCH 073/161] Cog update (Mail) (#32315) make mailing better --- Resources/Maps/cog.yml | 4106 ++++++++++++++++++++++++---------------- 1 file changed, 2497 insertions(+), 1609 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 7915d9cef028..a7d46ed26dc0 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -96,7 +96,7 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-2: ind: 0,-2 @@ -176,11 +176,11 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA + tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 @@ -224,7 +224,7 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 3,-1: ind: 3,-1 @@ -284,7 +284,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: YAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,2: ind: 0,2 @@ -320,7 +320,7 @@ entities: version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABCwAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABYAAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -332,15 +332,15 @@ entities: version: 6 3,3: ind: 3,3 - tiles: YAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAAAfQAAAAAAfQAAAAABfQAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAAAfQAAAAADfQAAAAADfQAAAAACDAAAAAAADAAAAAACDAAAAAACCAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACAAAAAADCAAAAAABCAAAAAADfQAAAAAAfQAAAAACfQAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAACAAAAAACCAAAAAACCAAAAAABfQAAAAAAfQAAAAABfQAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAADAAAAAABDAAAAAAADAAAAAABfQAAAAABfQAAAAADfQAAAAADDAAAAAABDAAAAAAADAAAAAAADAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAADAAAAAABDAAAAAADDAAAAAADfQAAAAACfQAAAAAAfQAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAADAAAAAACDAAAAAABDAAAAAACfQAAAAABfQAAAAABfQAAAAADDAAAAAACDAAAAAAADAAAAAABDAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAAAfQAAAAAAfQAAAAABfQAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAAAfQAAAAADfQAAAAADfQAAAAACDAAAAAAADAAAAAACDAAAAAACCAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACAAAAAADCAAAAAABCAAAAAADfQAAAAAAfQAAAAACfQAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAACAAAAAACCAAAAAACCAAAAAABfQAAAAAAfQAAAAABfQAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAADAAAAAABDAAAAAAADAAAAAABfQAAAAAAfQAAAAAAfQAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAADAAAAAABDAAAAAADDAAAAAADfQAAAAAAfQAAAAAAfQAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAADAAAAAACDAAAAAABDAAAAAACfQAAAAAAfQAAAAAAfQAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAAgAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 @@ -356,7 +356,7 @@ entities: version: 6 2,4: ind: 2,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAAgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,4: ind: 1,4 @@ -368,7 +368,7 @@ entities: version: 6 0,4: ind: 0,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABBwAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABBwAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAEAAAAAAAEAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 @@ -496,7 +496,6 @@ entities: id: Arrows decals: 8241: 30,2 - 8242: 30,4 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -711,9 +710,7 @@ entities: 2047: -15,-9 2048: -13,-7 2049: -26,2 - 2089: -32,11 2090: -29,11 - 2091: -29,7 2092: -32,7 2238: -45,38 2239: -45,39 @@ -2805,8 +2802,6 @@ entities: 8105: 31,7 8106: 31,6 8107: 31,5 - 8108: 30,4 - 8109: 30,4 8111: 29,2 8112: 29,6 8113: 34,4 @@ -4722,6 +4717,7 @@ entities: 4239: 39,57 4240: 40,57 7501: 76,50 + 8368: 66,50 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -5883,6 +5879,8 @@ entities: 2933: 77,49 4723: 51,51 7570: -58,31 + 8369: 72,48 + 8370: 72,49 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -7747,17 +7745,6 @@ entities: decals: 5968: 37,19 5969: 43,14 - - node: - zIndex: 1 - color: '#52B4E9FF' - id: WarnCornerGreyscaleSW - decals: - 8064: 66,50 - - node: - color: '#439909FF' - id: WarnCornerNE - decals: - 8057: 25,56 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -7783,16 +7770,6 @@ entities: id: WarnCornerNW decals: 542: -6,-50 - - node: - color: '#439909FF' - id: WarnCornerSE - decals: - 8059: 67,50 - - node: - color: '#DE3A3AFF' - id: WarnCornerSE - decals: - 4103: 25,55 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -7804,11 +7781,6 @@ entities: 2694: 25,72 2695: 26,77 8177: 35,1 - - node: - color: '#000000FF' - id: WarnCornerSW - decals: - 8063: 66,50 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -7872,6 +7844,16 @@ entities: 905: 9,-15 1253: 57,-25 2744: 11,77 + - node: + color: '#439909FF' + id: WarnEndE + decals: + 8366: 25,56 + - node: + color: '#439909FF' + id: WarnEndS + decals: + 8367: 67,50 - node: color: '#FFFFFFFF' id: WarnFull @@ -8187,6 +8169,7 @@ entities: 5755: -45,34 6722: -26,0 7538: -24,-54 + 8371: 11,51 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -8287,6 +8270,10 @@ entities: 6725: -25,0 7543: -23,-54 7550: -21,-55 + 8375: 12,51 + 8376: 13,51 + 8377: 14,51 + 8378: 15,51 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8353,6 +8340,9 @@ entities: 5757: -45,33 7541: -24,-56 7542: -24,-55 + 8372: 11,47 + 8373: 11,48 + 8374: 11,49 - node: zIndex: 1 color: '#FFFFFFFF' @@ -11663,6 +11653,19 @@ entities: - type: Transform pos: 16.5,6.5 parent: 12 + - type: DeviceList + devices: + - 28143 + - 31992 + - 31991 + - 31990 + - 28936 + - 27970 + - 27965 + - 27957 + - 31993 + - 31994 + - 31995 - uid: 4418 components: - type: Transform @@ -17883,6 +17886,30 @@ entities: - type: DeviceNetwork deviceLists: - 31755 + - uid: 31993 + components: + - type: Transform + pos: 17.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 31994 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 31995 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 - proto: AirSensorVox entities: - uid: 19806 @@ -19970,6 +19997,12 @@ entities: parent: 12 - proto: BaseComputer entities: + - uid: 8950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,47.5 + parent: 12 - uid: 16516 components: - type: Transform @@ -19981,11 +20014,6 @@ entities: - type: Transform pos: 40.5,57.5 parent: 12 - - uid: 24155 - components: - - type: Transform - pos: 59.5,50.5 - parent: 12 - proto: BaseGasCondenser entities: - uid: 2316 @@ -20492,6 +20520,11 @@ entities: parent: 12 - proto: Biogenerator entities: + - uid: 107 + components: + - type: Transform + pos: 59.5,50.5 + parent: 12 - uid: 2784 components: - type: Transform @@ -21690,15 +21723,17 @@ entities: - type: Transform pos: 52.52656,46.632416 parent: 12 - - uid: 25867 + - uid: 28896 components: - type: Transform - pos: 57.365803,56.3691 + rot: -12.566370614359172 rad + pos: -24.613401,34.621143 parent: 12 - - uid: 25868 + - uid: 31997 components: - type: Transform - pos: 57.678303,56.665974 + rot: -12.566370614359172 rad + pos: -24.461199,34.523228 parent: 12 - proto: BoxFolderGreen entities: @@ -21859,6 +21894,14 @@ entities: - type: Transform pos: 28.26377,38.438717 parent: 12 +- proto: BoxShellTranquilizer + entities: + - uid: 27968 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 12.796418,-35.638966 + parent: 12 - proto: BoxSterileMask entities: - uid: 2790 @@ -21990,12 +22033,12 @@ entities: - uid: 24162 components: - type: Transform - pos: 65.90268,50.539516 + pos: 66.26953,50.546974 parent: 12 - uid: 24163 components: - type: Transform - pos: 65.43393,50.74264 + pos: 65.501015,50.681324 parent: 12 - uid: 25857 components: @@ -39640,11 +39683,6 @@ entities: - type: Transform pos: 63.5,-3.5 parent: 12 - - uid: 26865 - components: - - type: Transform - pos: 64.5,-3.5 - parent: 12 - uid: 26867 components: - type: Transform @@ -40740,6 +40778,16 @@ entities: - type: Transform pos: 11.5,22.5 parent: 12 + - uid: 28457 + components: + - type: Transform + pos: -41.5,30.5 + parent: 12 + - uid: 28463 + components: + - type: Transform + pos: -40.5,30.5 + parent: 12 - uid: 28475 components: - type: Transform @@ -41000,6 +41048,11 @@ entities: - type: Transform pos: 59.5,-1.5 parent: 12 + - uid: 28742 + components: + - type: Transform + pos: -40.5,27.5 + parent: 12 - uid: 28866 components: - type: Transform @@ -41185,6 +41238,11 @@ entities: - type: Transform pos: 3.5,-19.5 parent: 12 + - uid: 28938 + components: + - type: Transform + pos: -41.5,27.5 + parent: 12 - uid: 28949 components: - type: Transform @@ -42545,11 +42603,6 @@ entities: - type: Transform pos: -28.5,-53.5 parent: 12 - - uid: 30809 - components: - - type: Transform - pos: -26.5,-52.5 - parent: 12 - uid: 30810 components: - type: Transform @@ -43090,6 +43143,16 @@ entities: - type: Transform pos: 58.5,9.5 parent: 12 + - uid: 32016 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 12 + - uid: 32017 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 12 - proto: CableApcStack entities: - uid: 16561 @@ -69330,11 +69393,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,4.5 parent: 12 - - uid: 107 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 12 - uid: 110 components: - type: Transform @@ -69395,12 +69453,30 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 12 + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 12 + - uid: 1080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 12 - uid: 1555 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,2.5 parent: 12 + - uid: 2185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 12 - uid: 2322 components: - type: Transform @@ -69479,6 +69555,18 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 12 + - uid: 3116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 12 + - uid: 3914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 12 - uid: 3917 components: - type: Transform @@ -69727,11 +69815,11 @@ entities: - type: Transform pos: -36.5,-53.5 parent: 12 - - uid: 4760 + - uid: 4767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-15.5 + rot: 3.141592653589793 rad + pos: 30.5,13.5 parent: 12 - uid: 4793 components: @@ -69775,6 +69863,18 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,3.5 parent: 12 + - uid: 5041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 12 + - uid: 5055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 12 - uid: 5097 components: - type: Transform @@ -69787,11 +69887,23 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-34.5 parent: 12 - - uid: 5323 + - uid: 5198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 12 + - uid: 5217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 12 + - uid: 5240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 parent: 12 - uid: 5419 components: @@ -70380,12 +70492,6 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-58.5 parent: 12 - - uid: 6767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 12 - uid: 7215 components: - type: Transform @@ -70817,12 +70923,6 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-35.5 parent: 12 - - uid: 8790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 12 - uid: 8854 components: - type: Transform @@ -70841,6 +70941,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-9.5 parent: 12 + - uid: 9259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 12 - uid: 9416 components: - type: Transform @@ -70905,6 +71011,12 @@ entities: rot: 3.141592653589793 rad pos: -23.5,59.5 parent: 12 + - uid: 10320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 12 - uid: 10595 components: - type: Transform @@ -70934,11 +71046,11 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 12 - - uid: 10839 + - uid: 10870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-17.5 + rot: 3.141592653589793 rad + pos: 5.5,8.5 parent: 12 - uid: 10921 components: @@ -70955,12 +71067,6 @@ entities: - type: Transform pos: 19.5,10.5 parent: 12 - - uid: 10931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 12 - uid: 10935 components: - type: Transform @@ -71022,12 +71128,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,15.5 parent: 12 - - uid: 11061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,16.5 - parent: 12 - uid: 11063 components: - type: Transform @@ -71161,41 +71261,45 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,9.5 parent: 12 - - uid: 11398 + - uid: 11403 components: - type: Transform - pos: 25.5,17.5 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 parent: 12 - - uid: 11401 + - uid: 11455 components: - type: Transform - pos: 22.5,17.5 + pos: 47.5,11.5 parent: 12 - - uid: 11402 + - uid: 11464 components: - type: Transform - pos: 23.5,17.5 + pos: 47.5,9.5 parent: 12 - - uid: 11403 + - uid: 11569 components: - type: Transform - pos: 24.5,17.5 + rot: 3.141592653589793 rad + pos: 6.5,-18.5 parent: 12 - - uid: 11455 + - uid: 11571 components: - type: Transform - pos: 47.5,11.5 + rot: 3.141592653589793 rad + pos: 30.5,15.5 parent: 12 - - uid: 11464 + - uid: 11574 components: - type: Transform - pos: 47.5,9.5 + rot: 3.141592653589793 rad + pos: 5.5,-22.5 parent: 12 - - uid: 11937 + - uid: 11688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 + rot: 3.141592653589793 rad + pos: 6.5,-20.5 parent: 12 - uid: 11940 components: @@ -71532,6 +71636,12 @@ entities: - type: Transform pos: 51.5,76.5 parent: 12 + - uid: 15115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 12 - uid: 15676 components: - type: Transform @@ -71638,12 +71748,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,11.5 parent: 12 - - uid: 17641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 12 - uid: 17662 components: - type: Transform @@ -71925,6 +72029,12 @@ entities: - type: Transform pos: -1.5,34.5 parent: 12 + - uid: 21470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 12 - uid: 21533 components: - type: Transform @@ -72217,6 +72327,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-8.5 parent: 12 + - uid: 22022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 12 - uid: 22076 components: - type: Transform @@ -72315,6 +72431,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-52.5 parent: 12 + - uid: 24144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,17.5 + parent: 12 - uid: 24228 components: - type: Transform @@ -72345,6 +72467,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,60.5 parent: 12 + - uid: 24438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 12 - uid: 24512 components: - type: Transform @@ -73167,12 +73295,6 @@ entities: - type: Transform pos: 1.5,18.5 parent: 12 - - uid: 26076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 12 - uid: 26236 components: - type: Transform @@ -73191,6 +73313,12 @@ entities: rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 12 + - uid: 27064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 12 - uid: 27240 components: - type: Transform @@ -73203,12 +73331,24 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,4.5 parent: 12 - - uid: 27319 + - uid: 27317 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 12 + - uid: 27318 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-14.5 parent: 12 + - uid: 27319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 12 - uid: 27332 components: - type: Transform @@ -73680,6 +73820,27 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,18.5 parent: 12 + - uid: 27953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-21.5 + parent: 12 + - uid: 27966 + components: + - type: Transform + pos: 24.5,17.5 + parent: 12 + - uid: 27967 + components: + - type: Transform + pos: 22.5,17.5 + parent: 12 + - uid: 27969 + components: + - type: Transform + pos: 23.5,17.5 + parent: 12 - uid: 28230 components: - type: Transform @@ -73788,24 +73949,12 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,8.5 parent: 12 - - uid: 28457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 12 - uid: 28493 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,11.5 parent: 12 - - uid: 28526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-19.5 - parent: 12 - uid: 28601 components: - type: Transform @@ -73986,16 +74135,6 @@ entities: - type: Transform pos: 4.5,-22.5 parent: 12 - - uid: 28645 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 12 - - uid: 28646 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 12 - uid: 28647 components: - type: Transform @@ -74018,42 +74157,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-0.5 parent: 12 - - uid: 28932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 12 - - uid: 28933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 12 - - uid: 28934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 12 - - uid: 28935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 12 - - uid: 28936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 12 - - uid: 28938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 12 - uid: 28939 components: - type: Transform @@ -74595,31 +74698,6 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 - - uid: 30474 - components: - - type: Transform - pos: 30.5,13.5 - parent: 12 - - uid: 30475 - components: - - type: Transform - pos: 30.5,14.5 - parent: 12 - - uid: 30476 - components: - - type: Transform - pos: 30.5,15.5 - parent: 12 - - uid: 30477 - components: - - type: Transform - pos: 30.5,16.5 - parent: 12 - - uid: 30478 - components: - - type: Transform - pos: 30.5,17.5 - parent: 12 - uid: 30479 components: - type: Transform @@ -74630,11 +74708,6 @@ entities: - type: Transform pos: 30.5,18.5 parent: 12 - - uid: 30481 - components: - - type: Transform - pos: 29.5,17.5 - parent: 12 - uid: 30901 components: - type: Transform @@ -77280,12 +77353,6 @@ entities: - type: Transform pos: 40.23914,28.830877 parent: 12 - - uid: 13012 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 38.32882,63.725273 - parent: 12 - uid: 17613 components: - type: Transform @@ -77402,6 +77469,11 @@ entities: parent: 12 - proto: CigarGold entities: + - uid: 15114 + components: + - type: Transform + pos: -29.484297,7.799851 + parent: 12 - uid: 22676 components: - type: Transform @@ -77412,7 +77484,8 @@ entities: - uid: 15843 components: - type: Transform - pos: -31.578348,7.632894 + rot: -12.566370614359172 rad + pos: -30.428051,7.541847 parent: 12 - proto: CigCartonBlue entities: @@ -78136,6 +78209,42 @@ entities: - type: Transform pos: -10.5,-58.5 parent: 12 +- proto: ClosetLegalFilled + entities: + - uid: 8948 + components: + - type: Transform + pos: -24.5,31.5 + parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8949 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: ClosetMaintenanceFilledRandom entities: - uid: 894 @@ -78497,16 +78606,38 @@ entities: - type: Transform pos: -39.5,32.5 parent: 12 - - uid: 21469 - components: - - type: Transform - pos: -24.5,32.5 - parent: 12 - - uid: 21470 - components: - - type: Transform - pos: -24.5,31.5 - parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8477 + - 8498 + - 8790 + - 8804 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: ClosetToolFilled entities: - uid: 902 @@ -78607,7 +78738,8 @@ entities: - uid: 2043 components: - type: Transform - pos: -18.489782,-21.02709 + rot: -6.283185307179586 rad + pos: -18.539837,-21.05266 parent: 12 - uid: 9108 components: @@ -78885,6 +79017,14 @@ entities: rot: -6.283185307179586 rad pos: 31.319462,23.37985 parent: 12 +- proto: ClothingHeadHatChickenhead + entities: + - uid: 25868 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 58.704426,58.721027 + parent: 12 - proto: ClothingHeadHatCone entities: - uid: 16765 @@ -78952,11 +79092,6 @@ entities: - type: Transform pos: -15.479212,51.570213 parent: 12 - - uid: 26218 - components: - - type: Transform - pos: -24.520052,34.79124 - parent: 12 - proto: ClothingHeadHatTophat entities: - uid: 23553 @@ -79134,6 +79269,13 @@ entities: parent: 12 - proto: ClothingMaskGas entities: + - uid: 8498 + components: + - type: Transform + parent: 21468 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13014 components: - type: Transform @@ -79189,13 +79331,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingNeckBling - entities: - - uid: 17459 - components: - - type: Transform - pos: -28.339855,7.670552 - parent: 12 - proto: ClothingNeckCloakAce entities: - uid: 18303 @@ -79422,6 +79557,15 @@ entities: - type: Transform pos: 37.5,37.5 parent: 12 +- proto: ClothingOuterHoodieGrey + entities: + - uid: 8477 + components: + - type: Transform + parent: 21468 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHospitalGown entities: - uid: 2825 @@ -79450,13 +79594,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterRobesJudge - entities: - - uid: 26217 - components: - - type: Transform - pos: -24.514727,34.5396 - parent: 12 - proto: ClothingOuterStraightjacket entities: - uid: 19275 @@ -79517,7 +79654,8 @@ entities: - uid: 17387 components: - type: Transform - pos: -28.495407,7.6554866 + rot: -12.566370614359172 rad + pos: -30.809994,11.504305 parent: 12 - proto: ClothingShoesBootsCowboyBrown entities: @@ -79643,6 +79781,24 @@ entities: - type: Transform pos: -16.566727,62.579807 parent: 12 +- proto: ClothingUniformJumpskirtLawyerBlack + entities: + - uid: 8939 + components: + - type: Transform + parent: 8818 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerBlue + entities: + - uid: 8865 + components: + - type: Transform + parent: 8818 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitColorBrown entities: - uid: 12812 @@ -79650,6 +79806,15 @@ entities: - type: Transform pos: 55.808376,27.453695 parent: 12 +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 8790 + components: + - type: Transform + parent: 21468 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitGladiator entities: - uid: 31205 @@ -79678,6 +79843,24 @@ entities: - type: Transform pos: 5.4296494,41.582844 parent: 12 +- proto: ClothingUniformJumpsuitLawyerBlack + entities: + - uid: 8947 + components: + - type: Transform + parent: 8818 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerBlue + entities: + - uid: 8940 + components: + - type: Transform + parent: 8818 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPyjamaSyndicateRed entities: - uid: 28255 @@ -79695,6 +79878,14 @@ entities: rot: -6.283185307179586 rad pos: 13.549731,-35.194027 parent: 12 +- proto: ClothingUniformOveralls + entities: + - uid: 24116 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 58.704426,58.319515 + parent: 12 - proto: Cobweb1 entities: - uid: 4897 @@ -80404,12 +80595,6 @@ entities: containers: board: !type:Container ents: [] - - uid: 24144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,47.5 - parent: 12 - proto: ComputerId entities: - uid: 2995 @@ -81406,28 +81591,24 @@ entities: parent: 12 - type: Lock locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PhysShapeCircle - radius: 0.45 - position: 0,0 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrateBaseSecure entities: - uid: 6770 @@ -83069,12 +83250,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-36.5 parent: 12 - - uid: 3914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,12.5 - parent: 12 - uid: 3924 components: - type: Transform @@ -83139,12 +83314,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-47.5 parent: 12 - - uid: 5055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,49.5 - parent: 12 - uid: 5131 components: - type: Transform @@ -83161,12 +83330,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-17.5 parent: 12 - - uid: 5682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 12 - uid: 5892 components: - type: Transform @@ -83207,12 +83370,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,50.5 parent: 12 - - uid: 8286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 12 - uid: 8352 components: - type: Transform @@ -83247,26 +83404,17 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-40.5 parent: 12 - - uid: 8804 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 12 - uid: 8903 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-42.5 parent: 12 - - uid: 8953 - components: - - type: Transform - pos: 49.5,-17.5 - parent: 12 - - uid: 9001 + - uid: 8951 components: - type: Transform - pos: 30.5,17.5 + rot: 3.141592653589793 rad + pos: 32.5,11.5 parent: 12 - uid: 9071 components: @@ -83280,6 +83428,12 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-0.5 parent: 12 + - uid: 9674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,54.5 + parent: 12 - uid: 9798 components: - type: Transform @@ -83314,12 +83468,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-12.5 parent: 12 - - uid: 10320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-22.5 - parent: 12 - uid: 10414 components: - type: Transform @@ -83377,11 +83525,46 @@ entities: - type: Transform pos: 31.5,8.5 parent: 12 + - uid: 11401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-26.5 + parent: 12 + - uid: 11434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 12 - uid: 11446 components: - type: Transform pos: 20.5,10.5 parent: 12 + - uid: 11548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,45.5 + parent: 12 + - uid: 11790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,53.5 + parent: 12 + - uid: 11792 + components: + - type: Transform + pos: 28.5,56.5 + parent: 12 + - uid: 11937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,53.5 + parent: 12 - uid: 11965 components: - type: Transform @@ -83494,6 +83677,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,28.5 parent: 12 + - uid: 14936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,41.5 + parent: 12 - uid: 15046 components: - type: Transform @@ -83536,21 +83725,21 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,53.5 parent: 12 - - uid: 15143 + - uid: 15137 components: - type: Transform - pos: 26.5,55.5 + pos: 42.5,7.5 parent: 12 - - uid: 15144 + - uid: 15141 components: - type: Transform - pos: 31.5,56.5 + rot: 3.141592653589793 rad + pos: 37.5,7.5 parent: 12 - - uid: 15145 + - uid: 15144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,54.5 + pos: 37.5,11.5 parent: 12 - uid: 15153 components: @@ -83576,6 +83765,12 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,42.5 parent: 12 + - uid: 15175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-13.5 + parent: 12 - uid: 15400 components: - type: Transform @@ -83686,12 +83881,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,41.5 parent: 12 - - uid: 20259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,45.5 - parent: 12 - uid: 20260 components: - type: Transform @@ -83970,12 +84159,47 @@ entities: - type: Transform pos: 31.5,0.5 parent: 12 + - uid: 25517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,45.5 + parent: 12 + - uid: 25521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 12 + - uid: 25942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 12 + - uid: 25943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-18.5 + parent: 12 + - uid: 25947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-23.5 + parent: 12 - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-47.5 parent: 12 + - uid: 26217 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 12 - uid: 26511 components: - type: Transform @@ -84016,12 +84240,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-4.5 parent: 12 - - uid: 27317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 12 - uid: 27387 components: - type: Transform @@ -84033,12 +84251,6 @@ entities: - type: Transform pos: 54.5,8.5 parent: 12 - - uid: 27984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 12 - uid: 28038 components: - type: Transform @@ -84075,48 +84287,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-35.5 parent: 12 - - uid: 28044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 12 - - uid: 28052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 12 - - uid: 28053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 12 - - uid: 28054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,9.5 - parent: 12 - - uid: 28056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,12.5 - parent: 12 - - uid: 28057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,12.5 - parent: 12 - - uid: 28058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,17.5 - parent: 12 - uid: 28086 components: - type: Transform @@ -84147,28 +84317,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,45.5 parent: 12 - - uid: 28141 - components: - - type: Transform - pos: 69.5,50.5 - parent: 12 - - uid: 28142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,44.5 - parent: 12 - - uid: 28143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,44.5 - parent: 12 - - uid: 28144 - components: - - type: Transform - pos: 60.5,45.5 - parent: 12 - uid: 28148 components: - type: Transform @@ -84192,12 +84340,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-50.5 parent: 12 - - uid: 28463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-26.5 - parent: 12 - uid: 28998 components: - type: Transform @@ -84314,6 +84456,64 @@ entities: - type: Transform pos: -9.5,72.5 parent: 12 + - uid: 31916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 12 + - uid: 31917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 12 + - uid: 31918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 12 + - uid: 31946 + components: + - type: Transform + pos: -14.5,2.5 + parent: 12 + - uid: 31947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,2.5 + parent: 12 + - uid: 32009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,47.5 + parent: 12 + - uid: 32010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,47.5 + parent: 12 + - uid: 32011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,45.5 + parent: 12 + - uid: 32012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,45.5 + parent: 12 + - uid: 32013 + components: + - type: Transform + pos: 52.5,46.5 + parent: 12 - proto: DisposalJunction entities: - uid: 1900 @@ -84471,17 +84671,17 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,44.5 parent: 12 - - uid: 24041 + - uid: 24045 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,49.5 + pos: 53.5,47.5 parent: 12 - - uid: 24045 + - uid: 27954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,47.5 + rot: 1.5707963267948966 rad + pos: 21.5,41.5 parent: 12 - proto: DisposalJunctionFlipped entities: @@ -84574,11 +84774,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-37.5 parent: 12 - - uid: 8947 - components: - - type: Transform - pos: 49.5,-21.5 - parent: 12 - uid: 10447 components: - type: Transform @@ -84698,6 +84893,12 @@ entities: parent: 12 - proto: DisposalPipe entities: + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 12 - uid: 404 components: - type: Transform @@ -84731,8 +84932,8 @@ entities: - uid: 910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 + rot: -1.5707963267948966 rad + pos: 41.5,7.5 parent: 12 - uid: 1084 components: @@ -85091,12 +85292,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-12.5 parent: 12 - - uid: 2185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 12 - uid: 2538 components: - type: Transform @@ -85115,12 +85310,6 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,49.5 parent: 12 - - uid: 3116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,45.5 - parent: 12 - uid: 3121 components: - type: Transform @@ -85563,6 +85752,12 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-39.5 parent: 12 + - uid: 4303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-23.5 + parent: 12 - uid: 4398 components: - type: Transform @@ -85617,34 +85812,47 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,53.5 parent: 12 + - uid: 4697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-26.5 + parent: 12 - uid: 4710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,45.5 + rot: -1.5707963267948966 rad + pos: 35.5,-26.5 + parent: 12 + - uid: 4744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 parent: 12 - uid: 4749 components: - type: Transform - pos: 6.5,-19.5 + rot: -1.5707963267948966 rad + pos: 28.5,-26.5 parent: 12 - uid: 4751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 + rot: -1.5707963267948966 rad + pos: 26.5,-26.5 parent: 12 - uid: 4752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-16.5 + rot: -1.5707963267948966 rad + pos: 32.5,-26.5 parent: 12 - - uid: 4767 + - uid: 4760 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-12.5 + pos: 42.5,-11.5 parent: 12 - uid: 4922 components: @@ -85700,12 +85908,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-51.5 parent: 12 - - uid: 5041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,45.5 - parent: 12 - uid: 5051 components: - type: Transform @@ -85717,11 +85919,11 @@ entities: - type: Transform pos: 20.5,-13.5 parent: 12 - - uid: 5240 + - uid: 5323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-9.5 + rot: 1.5707963267948966 rad + pos: 33.5,11.5 parent: 12 - uid: 5398 components: @@ -85752,12 +85954,23 @@ entities: - type: Transform pos: 7.5,-48.5 parent: 12 + - uid: 5682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,11.5 + parent: 12 - uid: 5800 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,1.5 parent: 12 + - uid: 5831 + components: + - type: Transform + pos: 37.5,10.5 + parent: 12 - uid: 5921 components: - type: Transform @@ -85806,6 +86019,11 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-22.5 parent: 12 + - uid: 6019 + components: + - type: Transform + pos: 37.5,8.5 + parent: 12 - uid: 6021 components: - type: Transform @@ -85830,6 +86048,12 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-1.5 parent: 12 + - uid: 6767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,7.5 + parent: 12 - uid: 6843 components: - type: Transform @@ -85968,12 +86192,30 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-12.5 parent: 12 + - uid: 7256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,5.5 + parent: 12 + - uid: 7280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 12 - uid: 7305 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 12 + - uid: 7321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 12 - uid: 7353 components: - type: Transform @@ -85986,15 +86228,29 @@ entities: rot: 3.141592653589793 rad pos: 32.5,17.5 parent: 12 + - uid: 7539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 12 + - uid: 8286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 12 - uid: 8287 components: - type: Transform - pos: 30.5,15.5 + rot: -1.5707963267948966 rad + pos: 20.5,-26.5 parent: 12 - uid: 8288 components: - type: Transform - pos: 30.5,16.5 + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 parent: 12 - uid: 8289 components: @@ -86377,16 +86633,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-0.5 parent: 12 - - uid: 8477 - components: - - type: Transform - pos: 30.5,13.5 - parent: 12 - - uid: 8865 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 12 - uid: 8941 components: - type: Transform @@ -86423,35 +86669,11 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-22.5 parent: 12 - - uid: 8948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-20.5 - parent: 12 - - uid: 8949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-19.5 - parent: 12 - - uid: 8950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-18.5 - parent: 12 - - uid: 8951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 12 - - uid: 8952 + - uid: 8953 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-17.5 + pos: 46.5,-23.5 parent: 12 - uid: 8960 components: @@ -86495,6 +86717,24 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 12 + - uid: 9001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 12 + - uid: 9011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 12 + - uid: 9014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-15.5 + parent: 12 - uid: 9041 components: - type: Transform @@ -86525,6 +86765,12 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-11.5 parent: 12 + - uid: 9258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 12 - uid: 9339 components: - type: Transform @@ -86704,6 +86950,12 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 9684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,54.5 + parent: 12 - uid: 9774 components: - type: Transform @@ -86817,6 +87069,12 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-26.5 parent: 12 + - uid: 10255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,43.5 + parent: 12 - uid: 10418 components: - type: Transform @@ -86990,6 +87248,12 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 12 + - uid: 10825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,6.5 + parent: 12 - uid: 10871 components: - type: Transform @@ -87025,6 +87289,18 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,11.5 parent: 12 + - uid: 10931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-13.5 + parent: 12 + - uid: 10932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 12 - uid: 10959 components: - type: Transform @@ -87151,12 +87427,13 @@ entities: - uid: 10990 components: - type: Transform - pos: 21.5,16.5 + pos: 42.5,-24.5 parent: 12 - uid: 10991 components: - type: Transform - pos: 21.5,17.5 + rot: -1.5707963267948966 rad + pos: 40.5,-26.5 parent: 12 - uid: 10992 components: @@ -87193,6 +87470,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,5.5 parent: 12 + - uid: 11021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 12 - uid: 11042 components: - type: Transform @@ -87205,6 +87488,29 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-17.5 parent: 12 + - uid: 11398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 12 + - uid: 11402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 12 + - uid: 11436 + components: + - type: Transform + pos: 37.5,9.5 + parent: 12 + - uid: 11457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 12 - uid: 11492 components: - type: Transform @@ -87225,6 +87531,96 @@ entities: - type: Transform pos: 41.5,14.5 parent: 12 + - uid: 11509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,47.5 + parent: 12 + - uid: 11577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,11.5 + parent: 12 + - uid: 11581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,7.5 + parent: 12 + - uid: 11614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 12 + - uid: 11615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 12 + - uid: 11659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 12 + - uid: 11689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-20.5 + parent: 12 + - uid: 11697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-19.5 + parent: 12 + - uid: 11698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-14.5 + parent: 12 + - uid: 11699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 12 + - uid: 11700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-16.5 + parent: 12 + - uid: 11782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,17.5 + parent: 12 + - uid: 11783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 12 + - uid: 11784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 12 + - uid: 11890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,54.5 + parent: 12 - uid: 11961 components: - type: Transform @@ -87342,7 +87738,8 @@ entities: - uid: 12339 components: - type: Transform - pos: 30.5,14.5 + rot: 1.5707963267948966 rad + pos: 27.5,53.5 parent: 12 - uid: 12391 components: @@ -87459,6 +87856,12 @@ entities: - type: Transform pos: 42.5,39.5 parent: 12 + - uid: 12868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,42.5 + parent: 12 - uid: 12984 components: - type: Transform @@ -87813,6 +88216,12 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,41.5 parent: 12 + - uid: 15029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,44.5 + parent: 12 - uid: 15030 components: - type: Transform @@ -87921,16 +88330,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,52.5 parent: 12 - - uid: 15114 - components: - - type: Transform - pos: 26.5,53.5 - parent: 12 - - uid: 15115 - components: - - type: Transform - pos: 26.5,54.5 - parent: 12 - uid: 15116 components: - type: Transform @@ -87992,25 +88391,19 @@ entities: - uid: 15134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,56.5 + rot: 3.141592653589793 rad + pos: 47.5,-22.5 parent: 12 - uid: 15135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,56.5 + rot: 3.141592653589793 rad + pos: 47.5,-21.5 parent: 12 - uid: 15136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,56.5 - parent: 12 - - uid: 15137 - components: - - type: Transform - pos: 31.5,55.5 + pos: 32.5,12.5 parent: 12 - uid: 15138 components: @@ -88030,6 +88423,18 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,54.5 parent: 12 + - uid: 15143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-13.5 + parent: 12 + - uid: 15145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-13.5 + parent: 12 - uid: 15146 components: - type: Transform @@ -88123,6 +88528,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,40.5 parent: 12 + - uid: 15174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 12 - uid: 15388 components: - type: Transform @@ -88181,11 +88592,29 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,51.5 parent: 12 + - uid: 15399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 12 - uid: 16388 components: - type: Transform pos: -25.5,26.5 parent: 12 + - uid: 16418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-4.5 + parent: 12 + - uid: 16532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-9.5 + parent: 12 - uid: 16713 components: - type: Transform @@ -88403,6 +88832,12 @@ entities: - type: Transform pos: -16.5,-3.5 parent: 12 + - uid: 17641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 12 - uid: 17666 components: - type: Transform @@ -88754,13 +89189,19 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,43.5 + pos: 42.5,-7.5 parent: 12 - uid: 18564 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,42.5 + pos: 42.5,-6.5 + parent: 12 + - uid: 18668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-5.5 parent: 12 - uid: 18672 components: @@ -88796,7 +89237,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,44.5 + pos: 42.5,-3.5 parent: 12 - uid: 19177 components: @@ -88846,11 +89287,23 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-16.5 parent: 12 + - uid: 19552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-2.5 + parent: 12 - uid: 19843 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,41.5 + pos: 42.5,-1.5 + parent: 12 + - uid: 19968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-0.5 parent: 12 - uid: 20151 components: @@ -89425,14 +89878,14 @@ entities: - uid: 20254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,45.5 + rot: 3.141592653589793 rad + pos: 42.5,0.5 parent: 12 - uid: 20255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,45.5 + rot: 3.141592653589793 rad + pos: 42.5,1.5 parent: 12 - uid: 20256 components: @@ -89440,6 +89893,12 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,53.5 parent: 12 + - uid: 20259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,2.5 + parent: 12 - uid: 20263 components: - type: Transform @@ -89631,6 +90090,12 @@ entities: rot: 3.141592653589793 rad pos: -35.5,41.5 parent: 12 + - uid: 20885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,3.5 + parent: 12 - uid: 21326 components: - type: Transform @@ -89642,11 +90107,23 @@ entities: - type: Transform pos: -28.5,39.5 parent: 12 + - uid: 21469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,4.5 + parent: 12 - uid: 21472 components: - type: Transform pos: -25.5,27.5 parent: 12 + - uid: 22088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 12 - uid: 22107 components: - type: Transform @@ -89659,6 +90136,12 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-16.5 parent: 12 + - uid: 22113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 12 - uid: 22121 components: - type: Transform @@ -89670,6 +90153,12 @@ entities: - type: Transform pos: 30.5,9.5 parent: 12 + - uid: 22268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-23.5 + parent: 12 - uid: 22275 components: - type: Transform @@ -89681,6 +90170,17 @@ entities: - type: Transform pos: 41.5,13.5 parent: 12 + - uid: 22366 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 12 + - uid: 22389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-26.5 + parent: 12 - uid: 22418 components: - type: Transform @@ -90227,6 +90727,12 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,64.5 parent: 12 + - uid: 22835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-26.5 + parent: 12 - uid: 22840 components: - type: Transform @@ -90354,6 +90860,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,55.5 parent: 12 + - uid: 23128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-26.5 + parent: 12 - uid: 23425 components: - type: Transform @@ -90444,6 +90956,18 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,44.5 parent: 12 + - uid: 23771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-26.5 + parent: 12 + - uid: 23772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 12 - uid: 23847 components: - type: Transform @@ -90596,6 +91120,24 @@ entities: - type: Transform pos: -34.5,48.5 parent: 12 + - uid: 23886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-26.5 + parent: 12 + - uid: 23890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-26.5 + parent: 12 + - uid: 23945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,49.5 + parent: 12 - uid: 24038 components: - type: Transform @@ -90779,30 +91321,90 @@ entities: rot: 3.141592653589793 rad pos: 53.5,48.5 parent: 12 + - uid: 24155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-26.5 + parent: 12 + - uid: 24509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 12 - uid: 24638 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,15.5 parent: 12 + - uid: 24699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-26.5 + parent: 12 + - uid: 24700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,48.5 + parent: 12 - uid: 25331 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-1.5 parent: 12 + - uid: 25343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 12 - uid: 25371 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 12 + - uid: 25382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 12 - uid: 25487 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-41.5 parent: 12 + - uid: 25519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 12 + - uid: 25520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 12 + - uid: 25945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 12 + - uid: 25946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-24.5 + parent: 12 - uid: 25992 components: - type: Transform @@ -90840,6 +91442,18 @@ entities: - type: Transform pos: -38.5,-42.5 parent: 12 + - uid: 26076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 12 + - uid: 26114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 12 - uid: 26135 components: - type: Transform @@ -90876,6 +91490,18 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 12 + - uid: 26218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 12 + - uid: 26439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 12 - uid: 26801 components: - type: Transform @@ -90897,11 +91523,6 @@ entities: - type: Transform pos: 43.5,-1.5 parent: 12 - - uid: 27318 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 12 - uid: 27388 components: - type: Transform @@ -91022,174 +91643,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,12.5 parent: 12 - - uid: 27953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 12 - - uid: 27954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 12 - - uid: 27955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 12 - - uid: 27956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 12 - - uid: 27957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 12 - - uid: 27958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,9.5 - parent: 12 - - uid: 27959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 12 - - uid: 27960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 12 - - uid: 27961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 12 - - uid: 27962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 12 - - uid: 27963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,8.5 - parent: 12 - - uid: 27964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 12 - - uid: 27965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 12 - - uid: 27966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 12 - - uid: 27967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 12 - - uid: 27968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 12 - - uid: 27969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 12 - - uid: 27970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 12 - - uid: 27971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 12 - - uid: 27972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 12 - - uid: 27973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 12 - - uid: 27974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 12 - - uid: 27975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 12 - - uid: 27976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 12 - - uid: 27977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 12 - - uid: 27978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 12 - - uid: 27979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 - parent: 12 - - uid: 27993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-15.5 - parent: 12 - uid: 27998 components: - type: Transform @@ -91416,112 +91869,12 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-49.5 parent: 12 - - uid: 28048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-13.5 - parent: 12 - - uid: 28051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 12 - uid: 28055 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,12.5 parent: 12 - - uid: 28059 - components: - - type: Transform - pos: 18.5,10.5 - parent: 12 - - uid: 28060 - components: - - type: Transform - pos: 18.5,11.5 - parent: 12 - - uid: 28061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,12.5 - parent: 12 - - uid: 28062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,13.5 - parent: 12 - - uid: 28063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,14.5 - parent: 12 - - uid: 28064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 12 - - uid: 28065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,16.5 - parent: 12 - - uid: 28066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,17.5 - parent: 12 - - uid: 28067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,17.5 - parent: 12 - - uid: 28068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,17.5 - parent: 12 - - uid: 28069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,17.5 - parent: 12 - - uid: 28070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,17.5 - parent: 12 - - uid: 28071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,17.5 - parent: 12 - - uid: 28072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,17.5 - parent: 12 - - uid: 28075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,17.5 - parent: 12 - uid: 28076 components: - type: Transform @@ -91718,149 +92071,18 @@ entities: - type: Transform pos: 43.5,44.5 parent: 12 - - uid: 28117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,45.5 - parent: 12 - - uid: 28118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,45.5 - parent: 12 - - uid: 28119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,45.5 - parent: 12 - uid: 28120 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,45.5 parent: 12 - - uid: 28121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,45.5 - parent: 12 - - uid: 28122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,45.5 - parent: 12 - - uid: 28123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,45.5 - parent: 12 - - uid: 28124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,45.5 - parent: 12 - - uid: 28125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,44.5 - parent: 12 - - uid: 28126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,44.5 - parent: 12 - - uid: 28127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,44.5 - parent: 12 - - uid: 28128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,44.5 - parent: 12 - - uid: 28129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,44.5 - parent: 12 - - uid: 28130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,44.5 - parent: 12 - - uid: 28131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,44.5 - parent: 12 - - uid: 28132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,44.5 - parent: 12 - - uid: 28133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,45.5 - parent: 12 - - uid: 28134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,46.5 - parent: 12 - - uid: 28135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,47.5 - parent: 12 - - uid: 28136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,48.5 - parent: 12 - - uid: 28137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,50.5 - parent: 12 - - uid: 28138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,50.5 - parent: 12 - uid: 28139 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,12.5 parent: 12 - - uid: 28145 - components: - - type: Transform - pos: 69.5,49.5 - parent: 12 - uid: 28147 components: - type: Transform @@ -91927,24 +92149,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,22.5 parent: 12 - - uid: 28443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-23.5 - parent: 12 - - uid: 28444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-24.5 - parent: 12 - - uid: 28445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-25.5 - parent: 12 - uid: 28446 components: - type: Transform @@ -91993,16 +92197,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,52.5 parent: 12 - - uid: 28896 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 12 - - uid: 28931 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 12 - uid: 28945 components: - type: Transform @@ -92400,6 +92594,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,70.5 parent: 12 + - uid: 30809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,46.5 + parent: 12 - uid: 31245 components: - type: Transform @@ -92497,6 +92697,469 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,72.5 parent: 12 + - uid: 31912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 12 + - uid: 31913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 12 + - uid: 31914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 12 + - uid: 31915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 12 + - uid: 31919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-24.5 + parent: 12 + - uid: 31920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-23.5 + parent: 12 + - uid: 31921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-22.5 + parent: 12 + - uid: 31923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-20.5 + parent: 12 + - uid: 31924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 12 + - uid: 31925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 12 + - uid: 31926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-17.5 + parent: 12 + - uid: 31927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 12 + - uid: 31928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-15.5 + parent: 12 + - uid: 31929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-14.5 + parent: 12 + - uid: 31930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 12 + - uid: 31931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 12 + - uid: 31932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-11.5 + parent: 12 + - uid: 31933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-10.5 + parent: 12 + - uid: 31934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-9.5 + parent: 12 + - uid: 31935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 12 + - uid: 31936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 12 + - uid: 31937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 12 + - uid: 31938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 12 + - uid: 31939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 12 + - uid: 31940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 12 + - uid: 31941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 12 + - uid: 31942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-1.5 + parent: 12 + - uid: 31943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 12 + - uid: 31944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 12 + - uid: 31945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 12 + - uid: 31948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 12 + - uid: 31949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 12 + - uid: 31950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 12 + - uid: 31951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 12 + - uid: 31952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 12 + - uid: 31953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 12 + - uid: 31954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 12 + - uid: 31955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,10.5 + parent: 12 + - uid: 31956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 12 + - uid: 31957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,12.5 + parent: 12 + - uid: 31958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,13.5 + parent: 12 + - uid: 31959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,14.5 + parent: 12 + - uid: 31960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,15.5 + parent: 12 + - uid: 31961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,16.5 + parent: 12 + - uid: 31962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 12 + - uid: 31963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 12 + - uid: 31964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,19.5 + parent: 12 + - uid: 31965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,20.5 + parent: 12 + - uid: 31966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,21.5 + parent: 12 + - uid: 31967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,22.5 + parent: 12 + - uid: 31968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,23.5 + parent: 12 + - uid: 31969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 12 + - uid: 31970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,25.5 + parent: 12 + - uid: 31971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,26.5 + parent: 12 + - uid: 31972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,27.5 + parent: 12 + - uid: 31973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,28.5 + parent: 12 + - uid: 31974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,29.5 + parent: 12 + - uid: 31975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 12 + - uid: 31976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,31.5 + parent: 12 + - uid: 31977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,32.5 + parent: 12 + - uid: 31978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,33.5 + parent: 12 + - uid: 31979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,34.5 + parent: 12 + - uid: 31980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,35.5 + parent: 12 + - uid: 31981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,36.5 + parent: 12 + - uid: 31982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,37.5 + parent: 12 + - uid: 31983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,38.5 + parent: 12 + - uid: 31984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,39.5 + parent: 12 + - uid: 31985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,40.5 + parent: 12 + - uid: 31987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,41.5 + parent: 12 + - uid: 31988 + components: + - type: Transform + pos: 28.5,54.5 + parent: 12 + - uid: 31989 + components: + - type: Transform + pos: 28.5,55.5 + parent: 12 + - uid: 31996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 12 + - uid: 32003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,45.5 + parent: 12 + - uid: 32004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,45.5 + parent: 12 + - uid: 32005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,45.5 + parent: 12 + - uid: 32006 + components: + - type: Transform + pos: 56.5,46.5 + parent: 12 + - uid: 32007 + components: + - type: Transform + pos: 57.5,48.5 + parent: 12 + - uid: 32008 + components: + - type: Transform + pos: 57.5,49.5 + parent: 12 - proto: DisposalPipeBroken entities: - uid: 4901 @@ -92519,12 +93182,86 @@ entities: parent: 12 - proto: DisposalRouter entities: - - uid: 15029 + - uid: 21663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 12 + - type: DisposalRouter + tags: + - Engineering + - uid: 27958 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 12 + - type: DisposalRouter + tags: + - Cargo + - uid: 27959 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,41.5 + pos: 35.5,54.5 + parent: 12 + - type: DisposalRouter + tags: + - Freezer +- proto: DisposalRouterFlipped + entities: + - uid: 8952 + components: + - type: Transform + pos: 50.5,49.5 parent: 12 + - type: DisposalRouter + tags: + - Botany + - uid: 10839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 12 + - type: DisposalRouter + tags: + - Chemistry + - uid: 12126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,53.5 + parent: 12 + - type: DisposalRouter + tags: + - Kitchen + - uid: 24035 + components: + - type: Transform + pos: 50.5,46.5 + parent: 12 + - type: DisposalRouter + tags: + - Ranch + - uid: 31922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-21.5 + parent: 12 + - type: DisposalRouter + tags: + - Science + - uid: 31986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,41.5 + parent: 12 + - type: DisposalRouter + tags: + - Security - proto: DisposalTrunk entities: - uid: 1853 @@ -92693,12 +93430,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,21.5 parent: 12 - - uid: 8940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 12 - uid: 9077 components: - type: Transform @@ -92805,12 +93536,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,53.5 parent: 12 - - uid: 15141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,55.5 - parent: 12 - uid: 15142 components: - type: Transform @@ -92994,6 +93719,11 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-13.5 parent: 12 + - uid: 27021 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 12 - uid: 27386 components: - type: Transform @@ -93006,11 +93736,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-50.5 parent: 12 - - uid: 28140 + - uid: 27955 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,50.5 + pos: 46.5,-17.5 parent: 12 - uid: 28382 components: @@ -93035,6 +93765,12 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,70.5 parent: 12 + - uid: 30481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 12 - uid: 31242 components: - type: Transform @@ -93197,11 +93933,6 @@ entities: - type: Transform pos: 76.5,-32.5 parent: 12 - - uid: 8939 - components: - - type: Transform - pos: 46.5,-17.5 - parent: 12 - uid: 9110 components: - type: Transform @@ -93379,13 +94110,6 @@ entities: - type: Transform pos: 43.5,48.5 parent: 12 - - uid: 24035 - components: - - type: MetaData - name: disposal unit to freezer - - type: Transform - pos: 59.5,52.5 - parent: 12 - uid: 24065 components: - type: Transform @@ -93451,11 +94175,6 @@ entities: - type: Transform pos: 34.5,41.5 parent: 12 - - uid: 15399 - components: - - type: Transform - pos: 35.5,54.5 - parent: 12 - uid: 18312 components: - type: Transform @@ -93733,6 +94452,14 @@ entities: - type: Transform pos: -49.320602,19.989155 parent: 12 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 31998 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -30.212772,11.4973545 + parent: 12 - proto: DrinkGlass entities: - uid: 7306 @@ -93808,7 +94535,8 @@ entities: - uid: 10942 components: - type: Transform - pos: -28.50796,7.818667 + rot: -12.566370614359172 rad + pos: -31.42805,11.573797 parent: 12 - proto: DrinkGreenTea entities: @@ -93957,6 +94685,12 @@ entities: - type: Transform pos: -31.864534,44.26396 parent: 12 + - uid: 24117 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 57.68418,56.94676 + parent: 12 - proto: DrinkMugBlue entities: - uid: 30236 @@ -94144,7 +94878,8 @@ entities: - uid: 13481 components: - type: Transform - pos: -31.423407,7.5807095 + rot: -12.566370614359172 rad + pos: -29.330828,7.500151 parent: 12 - proto: EmergencyFunnyOxygenTankFilled entities: @@ -99499,6 +100234,30 @@ entities: deviceLists: - 9101 - 30453 + - uid: 27957 + components: + - type: Transform + pos: 23.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 27965 + components: + - type: Transform + pos: 23.5,6.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 27970 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 - uid: 28356 components: - type: Transform @@ -99710,6 +100469,30 @@ entities: - type: DeviceNetwork deviceLists: - 31755 + - uid: 31990 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 31991 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - uid: 31992 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 - proto: Fireplace entities: - uid: 30393 @@ -99859,7 +100642,8 @@ entities: - uid: 17376 components: - type: Transform - pos: -31.29457,7.467202 + rot: -12.566370614359172 rad + pos: -29.955828,7.493202 parent: 12 - uid: 17610 components: @@ -100491,6 +101275,13 @@ entities: rot: -6.283185307179586 rad pos: -24.51083,53.52161 parent: 12 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 11791 + components: + - type: Transform + pos: 25.738708,55.553703 + parent: 12 - proto: FoodCondimentPacketKetchup entities: - uid: 15065 @@ -100531,6 +101322,13 @@ entities: rot: -18.84955592153876 rad pos: 39.129684,63.4756 parent: 12 +- proto: FoodContainerEgg + entities: + - uid: 11579 + components: + - type: Transform + pos: 57.538345,56.66531 + parent: 12 - proto: FoodCornTrash entities: - uid: 31149 @@ -100597,6 +101395,13 @@ entities: - type: Transform pos: -31.49684,-57.333786 parent: 12 +- proto: FoodMealEggplantParm + entities: + - uid: 31902 + components: + - type: Transform + pos: 56.52447,50.519176 + parent: 12 - proto: FoodMeat entities: - uid: 31346 @@ -101198,6 +102003,8 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 12 + - type: AtmosPipeColor + color: '#5D782EFF' - uid: 7255 components: - type: Transform @@ -103333,14 +104140,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 22113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22147 components: - type: Transform @@ -107993,14 +108792,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4719 components: - type: Transform @@ -108009,14 +108800,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4746 components: - type: Transform @@ -109138,6 +109921,8 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-60.5 parent: 12 + - type: AtmosPipeColor + color: '#5D782EFF' - uid: 5383 components: - type: Transform @@ -128096,6 +128881,8 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-59.5 parent: 12 + - type: AtmosPipeColor + color: '#5D782EFF' - uid: 5392 components: - type: Transform @@ -130407,6 +131194,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 27960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27961 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27985 components: - type: Transform @@ -133040,6 +133850,17 @@ entities: - 28354 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 28504 components: - type: Transform @@ -133512,6 +134333,8 @@ entities: - type: Transform pos: -5.5,-57.5 parent: 12 + - type: AtmosPipeColor + color: '#5D782EFF' - uid: 5344 components: - type: Transform @@ -134739,6 +135562,24 @@ entities: - 28354 - type: AtmosPipeColor color: '#990000FF' + - uid: 28935 + components: + - type: Transform + pos: 26.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 3983 + - type: AtmosPipeColor + color: '#990000FF' - uid: 29259 components: - type: Transform @@ -145546,6 +146387,13 @@ entities: - type: Transform pos: -4.5,-40.5 parent: 12 +- proto: HydrogenChemistryBottle + entities: + - uid: 13012 + components: + - type: Transform + pos: 38.364483,63.67461 + parent: 12 - proto: hydroponicsSoil entities: - uid: 9725 @@ -145641,7 +146489,8 @@ entities: - uid: 23538 components: - type: Transform - pos: 58.011997,58.63435 + rot: -6.283185307179586 rad + pos: 57.729115,58.67161 parent: 12 - uid: 24099 components: @@ -145810,7 +146659,8 @@ entities: - uid: 17438 components: - type: Transform - pos: -31.515587,11.674736 + rot: -12.566370614359172 rad + pos: -29.448883,11.559898 parent: 12 - proto: IngotGold1 entities: @@ -145839,7 +146689,8 @@ entities: - uid: 15842 components: - type: Transform - pos: -31.452826,11.436241 + rot: -18.84955592153876 rad + pos: -28.558372,7.517247 parent: 12 - proto: IngotSilver1 entities: @@ -146119,7 +146970,8 @@ entities: - uid: 23591 components: - type: Transform - pos: 31.5,60.5 + rot: -1.5707963267948966 rad + pos: 52.5,53.5 parent: 12 - uid: 23593 components: @@ -146127,11 +146979,11 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,49.5 parent: 12 - - uid: 24139 + - uid: 24115 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,51.5 + pos: 28.5,52.5 parent: 12 - uid: 24140 components: @@ -146274,7 +147126,8 @@ entities: - uid: 25858 components: - type: Transform - pos: 58.5,58.5 + rot: -6.283185307179586 rad + pos: 58.192078,58.51409 parent: 12 - uid: 31131 components: @@ -146331,11 +147184,6 @@ entities: - type: Transform pos: 29.5,60.5 parent: 12 - - uid: 22835 - components: - - type: Transform - pos: 27.5,60.5 - parent: 12 - uid: 24272 components: - type: Transform @@ -146346,6 +147194,11 @@ entities: - type: Transform pos: 55.5,4.5 parent: 12 + - uid: 27963 + components: + - type: Transform + pos: 27.5,60.5 + parent: 12 - uid: 31129 components: - type: Transform @@ -147713,14 +148566,6 @@ entities: parent: 12 - proto: MailingUnit entities: - - uid: 5831 - components: - - type: Transform - pos: 25.5,55.5 - parent: 12 - - type: MailingUnit - tag: Kitchen - target: Kitchen - uid: 5979 components: - type: Transform @@ -147729,26 +148574,40 @@ entities: - type: MailingUnit tag: Freezer target: Freezer - - uid: 6019 + - uid: 6209 components: - type: MetaData - name: mailing unit to chemistry + name: mailing unit - type: Transform - pos: 66.5,50.5 + pos: 67.5,50.5 parent: 12 - type: MailingUnit tag: Botany target: Botany - - uid: 6209 + - uid: 11061 components: - - type: MetaData - name: mailing unit to freezer - type: Transform - pos: 67.5,50.5 + pos: 10.5,-18.5 parent: 12 - type: MailingUnit - tag: Botany - target: Botany + tag: Engineering + target: Engineering + - uid: 24041 + components: + - type: Transform + pos: 59.5,52.5 + parent: 12 + - type: MailingUnit + tag: Ranch + target: Ranch + - uid: 25944 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 12 + - type: MailingUnit + tag: Cargo + target: Cargo - uid: 27002 components: - type: Transform @@ -147757,6 +148616,14 @@ entities: - type: MailingUnit tag: Kitchen target: Kitchen + - uid: 28445 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 12 + - type: MailingUnit + tag: Science + target: Science - uid: 28826 components: - type: Transform @@ -147773,6 +148640,18 @@ entities: - type: MailingUnit tag: Security target: Security +- proto: MailingUnitElectronics + entities: + - uid: 26865 + components: + - type: Transform + pos: 11.412247,-19.576067 + parent: 12 + - uid: 26898 + components: + - type: Transform + pos: 11.510092,-19.26601 + parent: 12 - proto: MaintenanceFluffSpawner entities: - uid: 1079 @@ -149630,6 +150509,12 @@ entities: - type: Transform pos: -22.5,41.5 parent: 12 + - uid: 30477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 12 - uid: 31565 components: - type: Transform @@ -150148,7 +151033,8 @@ entities: - uid: 25869 components: - type: Transform - pos: 59.553303,58.540974 + rot: -12.566370614359172 rad + pos: 59.580013,58.541615 parent: 12 - proto: PlaqueAtmos entities: @@ -155208,6 +156094,12 @@ entities: - type: Transform pos: 41.5,-39.5 parent: 12 + - uid: 9260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,55.5 + parent: 12 - uid: 9599 components: - type: Transform @@ -156894,12 +157786,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,42.5 parent: 12 - - uid: 24297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,53.5 - parent: 12 - uid: 24298 components: - type: Transform @@ -157123,6 +158009,11 @@ entities: rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 12 + - uid: 32018 + components: + - type: Transform + pos: 52.5,50.5 + parent: 12 - proto: RandomSoap entities: - uid: 22405 @@ -158079,6 +158970,11 @@ entities: - type: Transform pos: -31.532892,44.28764 parent: 12 + - uid: 27971 + components: + - type: Transform + pos: 25.355482,55.431313 + parent: 12 - proto: ReagentContainerRice entities: - uid: 3075 @@ -158099,6 +158995,13 @@ entities: rot: -6.283185307179586 rad pos: 28.604269,25.749634 parent: 12 +- proto: ReagentContainerSugar + entities: + - uid: 11793 + components: + - type: Transform + pos: 25.441526,55.614902 + parent: 12 - proto: Recycler entities: - uid: 4231 @@ -165105,27 +166008,20 @@ entities: - type: Transform pos: 24.5,48.5 parent: 12 -- proto: ShellTranquilizer +- proto: ShelfChemistryChemistrySecure entities: - - uid: 31528 - components: - - type: Transform - pos: 12.811687,-35.620705 - parent: 12 - - uid: 31529 - components: - - type: Transform - pos: 12.558601,-35.61762 - parent: 12 - - uid: 31530 + - uid: 32015 components: - type: Transform - pos: 12.3086,-35.610153 + rot: 3.141592653589793 rad + pos: -25.5,-45.5 parent: 12 - - uid: 31531 +- proto: ShelfKitchen + entities: + - uid: 32014 components: - type: Transform - pos: 13.0647745,-35.61762 + pos: 31.5,60.5 parent: 12 - proto: Shiv entities: @@ -166996,6 +167892,14 @@ entities: rot: 1.5707963267948966 rad pos: 86.5,-35.5 parent: 12 +- proto: SignMail + entities: + - uid: 31528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 12 - proto: SignMaterials entities: - uid: 16551 @@ -169367,21 +170271,6 @@ entities: parent: 12 - proto: SpawnPointBotanist entities: - - uid: 24115 - components: - - type: Transform - pos: 59.5,43.5 - parent: 12 - - uid: 24116 - components: - - type: Transform - pos: 60.5,43.5 - parent: 12 - - uid: 24117 - components: - - type: Transform - pos: 61.5,43.5 - parent: 12 - uid: 24119 components: - type: Transform @@ -169407,6 +170296,21 @@ entities: - type: Transform pos: 76.5,48.5 parent: 12 + - uid: 24139 + components: + - type: Transform + pos: 59.5,43.5 + parent: 12 + - uid: 24297 + components: + - type: Transform + pos: 60.5,43.5 + parent: 12 + - uid: 25867 + components: + - type: Transform + pos: 61.5,43.5 + parent: 12 - proto: SpawnPointBoxer entities: - uid: 24260 @@ -174519,16 +175423,6 @@ entities: - type: Transform pos: 28.5,57.5 parent: 12 - - uid: 15174 - components: - - type: Transform - pos: 28.5,56.5 - parent: 12 - - uid: 15175 - components: - - type: Transform - pos: 30.5,56.5 - parent: 12 - uid: 15176 components: - type: Transform @@ -175247,6 +176141,12 @@ entities: - type: Transform pos: 2.5,65.5 parent: 12 + - uid: 24981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,50.5 + parent: 12 - uid: 25005 components: - type: Transform @@ -175420,6 +176320,18 @@ entities: - type: Transform pos: -15.5,-50.5 parent: 12 + - uid: 27956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,56.5 + parent: 12 + - uid: 27964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,56.5 + parent: 12 - uid: 27994 components: - type: Transform @@ -176454,6 +177366,26 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,64.5 parent: 12 + - uid: 31999 + components: + - type: Transform + pos: -30.5,7.5 + parent: 12 + - uid: 32000 + components: + - type: Transform + pos: -29.5,7.5 + parent: 12 + - uid: 32001 + components: + - type: Transform + pos: -30.5,11.5 + parent: 12 + - uid: 32002 + components: + - type: Transform + pos: -29.5,11.5 + parent: 12 - proto: TableWood entities: - uid: 1995 @@ -177596,6 +178528,13 @@ entities: - type: Transform pos: 20.550642,-38.45991 parent: 12 + - uid: 8804 + components: + - type: Transform + parent: 21468 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 8874 components: - type: Transform @@ -177637,7 +178576,8 @@ entities: - uid: 15844 components: - type: Transform - pos: -28.503035,7.381849 + rot: -12.566370614359172 rad + pos: -31.455828,7.5626955 parent: 12 - proto: ToolboxMechanical entities: @@ -177972,6 +178912,15 @@ entities: - type: Transform pos: 54.946606,29.060595 parent: 12 +- proto: ToyHammer + entities: + - uid: 8949 + components: + - type: Transform + parent: 8948 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ToyIan entities: - uid: 18870 @@ -178958,7 +179907,7 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 12 - - uid: 21663 + - uid: 17459 components: - type: Transform pos: -15.5,45.5 @@ -182161,24 +183110,12 @@ entities: - type: Transform pos: 12.5,-12.5 parent: 12 - - uid: 5198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,1.5 - parent: 12 - uid: 5214 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,11.5 parent: 12 - - uid: 5217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-1.5 - parent: 12 - uid: 5218 components: - type: Transform @@ -183440,11 +184377,6 @@ entities: - type: Transform pos: 44.5,-8.5 parent: 12 - - uid: 8818 - components: - - type: Transform - pos: 44.5,-6.5 - parent: 12 - uid: 8852 components: - type: Transform @@ -183496,12 +184428,6 @@ entities: rot: 1.5707963267948966 rad pos: 70.5,-4.5 parent: 12 - - uid: 9011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-4.5 - parent: 12 - uid: 9012 components: - type: Transform @@ -183514,12 +184440,6 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-4.5 parent: 12 - - uid: 9014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-4.5 - parent: 12 - uid: 9015 components: - type: Transform @@ -183789,11 +184709,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-2.5 parent: 12 - - uid: 9674 - components: - - type: Transform - pos: 47.5,7.5 - parent: 12 - uid: 9675 components: - type: Transform @@ -183811,12 +184726,6 @@ entities: rot: 1.5707963267948966 rad pos: 81.5,8.5 parent: 12 - - uid: 9684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,7.5 - parent: 12 - uid: 9701 components: - type: Transform @@ -184042,12 +184951,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,20.5 parent: 12 - - uid: 10255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 12 - uid: 10256 components: - type: Transform @@ -184591,12 +185494,6 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,13.5 parent: 12 - - uid: 10825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,11.5 - parent: 12 - uid: 10826 components: - type: Transform @@ -184621,12 +185518,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-5.5 parent: 12 - - uid: 10870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-5.5 - parent: 12 - uid: 10909 components: - type: Transform @@ -184642,12 +185533,6 @@ entities: - type: Transform pos: 38.5,4.5 parent: 12 - - uid: 10932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-5.5 - parent: 12 - uid: 10937 components: - type: Transform @@ -184707,12 +185592,6 @@ entities: - type: Transform pos: -29.5,-9.5 parent: 12 - - uid: 11021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-4.5 - parent: 12 - uid: 11035 components: - type: Transform @@ -185255,11 +186134,6 @@ entities: - type: Transform pos: 53.5,13.5 parent: 12 - - uid: 11457 - components: - - type: Transform - pos: 53.5,14.5 - parent: 12 - uid: 11458 components: - type: Transform @@ -185285,56 +186159,26 @@ entities: - type: Transform pos: 50.5,15.5 parent: 12 - - uid: 11569 - components: - - type: Transform - pos: 54.5,15.5 - parent: 12 - uid: 11570 components: - type: Transform pos: 55.5,15.5 parent: 12 - - uid: 11571 - components: - - type: Transform - pos: 55.5,16.5 - parent: 12 - uid: 11573 components: - type: Transform pos: 54.5,18.5 parent: 12 - - uid: 11574 - components: - - type: Transform - pos: 53.5,18.5 - parent: 12 - uid: 11576 components: - type: Transform pos: 53.5,21.5 parent: 12 - - uid: 11577 - components: - - type: Transform - pos: 54.5,21.5 - parent: 12 - uid: 11578 components: - type: Transform pos: 54.5,22.5 parent: 12 - - uid: 11579 - components: - - type: Transform - pos: 55.5,22.5 - parent: 12 - - uid: 11581 - components: - - type: Transform - pos: 55.5,25.5 - parent: 12 - uid: 11582 components: - type: Transform @@ -185465,41 +186309,6 @@ entities: - type: Transform pos: 20.5,38.5 parent: 12 - - uid: 11782 - components: - - type: Transform - pos: 26.5,38.5 - parent: 12 - - uid: 11783 - components: - - type: Transform - pos: 27.5,38.5 - parent: 12 - - uid: 11784 - components: - - type: Transform - pos: 27.5,39.5 - parent: 12 - - uid: 11790 - components: - - type: Transform - pos: 32.5,38.5 - parent: 12 - - uid: 11791 - components: - - type: Transform - pos: 33.5,38.5 - parent: 12 - - uid: 11792 - components: - - type: Transform - pos: 32.5,39.5 - parent: 12 - - uid: 11793 - components: - - type: Transform - pos: 32.5,40.5 - parent: 12 - uid: 11796 components: - type: Transform @@ -185601,11 +186410,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-27.5 parent: 12 - - uid: 11890 - components: - - type: Transform - pos: 36.5,39.5 - parent: 12 - uid: 11913 components: - type: Transform @@ -185770,11 +186574,6 @@ entities: - type: Transform pos: 31.5,26.5 parent: 12 - - uid: 12868 - components: - - type: Transform - pos: 44.5,5.5 - parent: 12 - uid: 12887 components: - type: Transform @@ -187879,12 +188678,6 @@ entities: - type: Transform pos: -31.5,65.5 parent: 12 - - uid: 19552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 12 - uid: 19553 components: - type: Transform @@ -188104,12 +188897,6 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 - - uid: 20885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 12 - uid: 21060 components: - type: Transform @@ -188266,11 +189053,6 @@ entities: - type: Transform pos: 56.5,13.5 parent: 12 - - uid: 22088 - components: - - type: Transform - pos: 57.5,13.5 - parent: 12 - uid: 22089 components: - type: Transform @@ -188454,12 +189236,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,74.5 parent: 12 - - uid: 23128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 12 - uid: 23129 components: - type: Transform @@ -188538,12 +189314,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,63.5 parent: 12 - - uid: 23886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,7.5 - parent: 12 - uid: 23895 components: - type: Transform @@ -188973,12 +189743,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 12 - - uid: 26114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 12 - uid: 26131 components: - type: Transform @@ -189035,12 +189799,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,11.5 parent: 12 - - uid: 26439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,3.5 - parent: 12 - uid: 26440 components: - type: Transform @@ -189226,18 +189984,6 @@ entities: - type: Transform pos: 56.5,-9.5 parent: 12 - - uid: 26898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-7.5 - parent: 12 - - uid: 27021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,0.5 - parent: 12 - uid: 27038 components: - type: Transform @@ -189428,6 +190174,26 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-15.5 parent: 12 + - uid: 28127 + components: + - type: Transform + pos: 33.5,27.5 + parent: 12 + - uid: 28128 + components: + - type: Transform + pos: 33.5,28.5 + parent: 12 + - uid: 28134 + components: + - type: Transform + pos: 31.5,34.5 + parent: 12 + - uid: 28135 + components: + - type: Transform + pos: 30.5,34.5 + parent: 12 - uid: 28146 components: - type: Transform @@ -189583,12 +190349,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,8.5 parent: 12 - - uid: 28742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,9.5 - parent: 12 - uid: 28743 components: - type: Transform @@ -189942,12 +190702,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,18.5 parent: 12 - - uid: 31902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,7.5 - parent: 12 - uid: 31906 components: - type: Transform @@ -190619,6 +191373,196 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 12 + - uid: 27972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,1.5 + parent: 12 + - uid: 27973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-1.5 + parent: 12 + - uid: 27974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 12 + - uid: 27975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-4.5 + parent: 12 + - uid: 27976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-4.5 + parent: 12 + - uid: 27977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,7.5 + parent: 12 + - uid: 27978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,7.5 + parent: 12 + - uid: 27984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,11.5 + parent: 12 + - uid: 27993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-5.5 + parent: 12 + - uid: 28044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-5.5 + parent: 12 + - uid: 28048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-4.5 + parent: 12 + - uid: 28051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,14.5 + parent: 12 + - uid: 28052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,15.5 + parent: 12 + - uid: 28053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,16.5 + parent: 12 + - uid: 28054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,18.5 + parent: 12 + - uid: 28056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,21.5 + parent: 12 + - uid: 28057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,22.5 + parent: 12 + - uid: 28058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,25.5 + parent: 12 + - uid: 28067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,5.5 + parent: 12 + - uid: 28068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 12 + - uid: 28069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 12 + - uid: 28070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,13.5 + parent: 12 + - uid: 28071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 12 + - uid: 28072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,7.5 + parent: 12 + - uid: 28075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 12 + - uid: 28117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,3.5 + parent: 12 + - uid: 28118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-7.5 + parent: 12 + - uid: 28119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 12 + - uid: 28121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,9.5 + parent: 12 + - uid: 28122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,7.5 + parent: 12 + - uid: 28132 + components: + - type: Transform + pos: 33.5,30.5 + parent: 12 + - uid: 28133 + components: + - type: Transform + pos: 33.5,33.5 + parent: 12 - uid: 28283 components: - type: Transform @@ -193649,18 +194593,6 @@ entities: - type: Transform pos: 34.5,17.5 parent: 12 - - uid: 11434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,26.5 - parent: 12 - - uid: 11436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,26.5 - parent: 12 - uid: 11466 components: - type: Transform @@ -193696,11 +194628,6 @@ entities: - type: Transform pos: 38.5,13.5 parent: 12 - - uid: 11509 - components: - - type: Transform - pos: 39.5,13.5 - parent: 12 - uid: 11540 components: - type: Transform @@ -193741,11 +194668,6 @@ entities: - type: Transform pos: 48.5,16.5 parent: 12 - - uid: 11548 - components: - - type: Transform - pos: 48.5,18.5 - parent: 12 - uid: 11549 components: - type: Transform @@ -193821,16 +194743,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,29.5 parent: 12 - - uid: 11614 - components: - - type: Transform - pos: 33.5,27.5 - parent: 12 - - uid: 11615 - components: - - type: Transform - pos: 33.5,28.5 - parent: 12 - uid: 11635 components: - type: Transform @@ -193931,11 +194843,6 @@ entities: - type: Transform pos: 46.5,27.5 parent: 12 - - uid: 11659 - components: - - type: Transform - pos: 49.5,28.5 - parent: 12 - uid: 11660 components: - type: Transform @@ -194061,16 +194968,6 @@ entities: - type: Transform pos: 36.5,27.5 parent: 12 - - uid: 11688 - components: - - type: Transform - pos: 36.5,28.5 - parent: 12 - - uid: 11689 - components: - - type: Transform - pos: 36.5,29.5 - parent: 12 - uid: 11690 components: - type: Transform @@ -194093,26 +194990,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 12 - - uid: 11697 - components: - - type: Transform - pos: 33.5,30.5 - parent: 12 - - uid: 11698 - components: - - type: Transform - pos: 33.5,33.5 - parent: 12 - - uid: 11699 - components: - - type: Transform - pos: 31.5,34.5 - parent: 12 - - uid: 11700 - components: - - type: Transform - pos: 30.5,34.5 - parent: 12 - uid: 11785 components: - type: Transform @@ -195465,11 +196342,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 12 - - uid: 14936 - components: - - type: Transform - pos: -21.5,18.5 - parent: 12 - uid: 14942 components: - type: Transform @@ -196727,11 +197599,6 @@ entities: - type: Transform pos: -9.5,18.5 parent: 12 - - uid: 22022 - components: - - type: Transform - pos: -8.5,18.5 - parent: 12 - uid: 22050 components: - type: Transform @@ -196977,16 +197844,6 @@ entities: - type: Transform pos: 10.5,-31.5 parent: 12 - - uid: 24699 - components: - - type: Transform - pos: -0.5,17.5 - parent: 12 - - uid: 24700 - components: - - type: Transform - pos: -1.5,20.5 - parent: 12 - uid: 24701 components: - type: Transform @@ -197024,11 +197881,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,0.5 parent: 12 - - uid: 25343 - components: - - type: Transform - pos: 53.5,9.5 - parent: 12 - uid: 25350 components: - type: Transform @@ -197443,6 +198295,46 @@ entities: - type: Transform pos: -19.5,18.5 parent: 12 + - uid: 28059 + components: + - type: Transform + pos: 26.5,38.5 + parent: 12 + - uid: 28060 + components: + - type: Transform + pos: 27.5,38.5 + parent: 12 + - uid: 28061 + components: + - type: Transform + pos: 27.5,39.5 + parent: 12 + - uid: 28062 + components: + - type: Transform + pos: 32.5,38.5 + parent: 12 + - uid: 28063 + components: + - type: Transform + pos: 33.5,38.5 + parent: 12 + - uid: 28064 + components: + - type: Transform + pos: 32.5,39.5 + parent: 12 + - uid: 28065 + components: + - type: Transform + pos: 32.5,40.5 + parent: 12 + - uid: 28066 + components: + - type: Transform + pos: 36.5,39.5 + parent: 12 - uid: 28073 components: - type: Transform @@ -198311,12 +199203,77 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,9.5 parent: 12 + - uid: 27979 + components: + - type: Transform + pos: -29.5,20.5 + parent: 12 - uid: 28085 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,26.5 parent: 12 + - uid: 28123 + components: + - type: Transform + pos: 41.5,26.5 + parent: 12 + - uid: 28124 + components: + - type: Transform + pos: 46.5,26.5 + parent: 12 + - uid: 28125 + components: + - type: Transform + pos: 39.5,13.5 + parent: 12 + - uid: 28126 + components: + - type: Transform + pos: 48.5,18.5 + parent: 12 + - uid: 28129 + components: + - type: Transform + pos: 49.5,28.5 + parent: 12 + - uid: 28130 + components: + - type: Transform + pos: 36.5,28.5 + parent: 12 + - uid: 28131 + components: + - type: Transform + pos: 36.5,29.5 + parent: 12 + - uid: 28136 + components: + - type: Transform + pos: -21.5,18.5 + parent: 12 + - uid: 28137 + components: + - type: Transform + pos: -8.5,18.5 + parent: 12 + - uid: 28138 + components: + - type: Transform + pos: -0.5,17.5 + parent: 12 + - uid: 28140 + components: + - type: Transform + pos: -1.5,20.5 + parent: 12 + - uid: 28141 + components: + - type: Transform + pos: 53.5,9.5 + parent: 12 - uid: 28199 components: - type: Transform @@ -198599,6 +199556,45 @@ entities: - type: Transform pos: -25.5,-49.5 parent: 12 +- proto: WardrobeFormal + entities: + - uid: 8818 + components: + - type: Transform + pos: -24.5,32.5 + parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8947 + - 8940 + - 8939 + - 8865 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WardrobeGeneticsFilled entities: - uid: 9839 @@ -199096,8 +200092,8 @@ entities: - uid: 31467 components: - type: Transform - rot: -12.566370614359172 rad - pos: 12.675885,-35.2318 + rot: -18.84955592153876 rad + pos: 12.486576,-35.1766 parent: 12 - proto: WeaponShotgunEnforcer entities: @@ -199389,7 +200385,8 @@ entities: - uid: 23543 components: - type: Transform - pos: 57.647415,57.40518 + rot: -12.566370614359172 rad + pos: 57.642513,57.478374 parent: 12 - proto: Windoor entities: @@ -199456,11 +200453,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-52.5 parent: 12 - - uid: 8498 - components: - - type: Transform - pos: 53.5,-23.5 - parent: 12 - uid: 8833 components: - type: Transform @@ -199547,16 +200539,6 @@ entities: - type: Transform pos: 48.5,46.5 parent: 12 - - uid: 23771 - components: - - type: Transform - pos: 54.5,-23.5 - parent: 12 - - uid: 23772 - components: - - type: Transform - pos: 52.5,-23.5 - parent: 12 - uid: 29642 components: - type: Transform @@ -199624,35 +200606,18 @@ entities: parent: 12 - proto: WindoorSecure entities: - - uid: 1080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-43.5 - parent: 12 - uid: 2029 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-28.5 parent: 12 - - uid: 4303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 12 - uid: 8732 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-30.5 parent: 12 - - uid: 12126 - components: - - type: Transform - pos: -33.5,-45.5 - parent: 12 - uid: 12234 components: - type: Transform @@ -199668,30 +200633,12 @@ entities: - type: Transform pos: -51.5,18.5 parent: 12 - - uid: 18668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 12 - uid: 21655 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,49.5 parent: 12 - - uid: 22366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 12 - - uid: 22389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,24.5 - parent: 12 - uid: 22645 components: - type: Transform @@ -199702,39 +200649,6 @@ entities: - type: Transform pos: 14.5,55.5 parent: 12 - - uid: 25382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-42.5 - parent: 12 - - uid: 25517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 12 - - uid: 25944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,24.5 - parent: 12 - - uid: 25945 - components: - - type: Transform - pos: -34.5,20.5 - parent: 12 - - uid: 25946 - components: - - type: Transform - pos: -33.5,20.5 - parent: 12 - - uid: 25947 - components: - - type: Transform - pos: -32.5,20.5 - parent: 12 - uid: 27233 components: - type: Transform @@ -199743,18 +200657,6 @@ entities: parent: 12 - proto: WindoorSecureArmoryLocked entities: - - uid: 7280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - - uid: 16532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - uid: 20340 components: - type: Transform @@ -199779,6 +200681,18 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,65.5 parent: 12 + - uid: 31530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,52.5 + parent: 12 + - uid: 31531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,53.5 + parent: 12 - proto: WindoorSecureBrigLocked entities: - uid: 19350 @@ -199795,43 +200709,29 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-25.5 parent: 12 - - uid: 9258 + - uid: 28142 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,-23.5 parent: 12 - - uid: 9259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-23.5 - parent: 12 - - uid: 9260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-23.5 - parent: 12 - proto: WindoorSecureChemistryLocked entities: - - uid: 357 + - uid: 28145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-42.5 + rot: 1.5707963267948966 rad + pos: -24.5,-43.5 parent: 12 - - uid: 1076 + - uid: 28444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-43.5 + pos: -33.5,-45.5 parent: 12 - - uid: 22268 + - uid: 28526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-45.5 + rot: 1.5707963267948966 rad + pos: -24.5,-42.5 parent: 12 - proto: WindoorSecureCommandLocked entities: @@ -199892,38 +200792,16 @@ entities: parent: 12 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 23890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,20.5 - parent: 12 - - uid: 24438 - components: - - type: Transform - pos: -34.5,24.5 - parent: 12 - - uid: 24509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,20.5 - parent: 12 - - uid: 24981 + - uid: 28646 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,20.5 - parent: 12 - - uid: 25942 - components: - - type: Transform pos: -33.5,24.5 parent: 12 - - uid: 25943 + - uid: 28931 components: - type: Transform - pos: -32.5,24.5 + pos: -33.5,20.5 parent: 12 - proto: WindoorSecureMedicalLocked entities: @@ -199990,24 +200868,12 @@ entities: parent: 12 - proto: WindoorSecureScienceLocked entities: - - uid: 25519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 12 - - uid: 25520 + - uid: 28443 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -18.5,-20.5 parent: 12 - - uid: 25521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 12 - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 30270 @@ -200018,18 +200884,6 @@ entities: parent: 12 - proto: WindoorSecureSecurityLocked entities: - - uid: 7321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - - uid: 7539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - uid: 8730 components: - type: Transform @@ -201556,12 +202410,6 @@ entities: - type: Transform pos: 28.5,-35.5 parent: 12 - - uid: 7256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 12 - uid: 7581 components: - type: Transform @@ -201730,12 +202578,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 12 - - uid: 16418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-12.5 - parent: 12 - uid: 16643 components: - type: Transform @@ -201869,11 +202711,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,57.5 parent: 12 - - uid: 19968 - components: - - type: Transform - pos: -19.5,39.5 - parent: 12 - uid: 19969 components: - type: Transform @@ -202070,11 +202907,6 @@ entities: - type: Transform pos: -33.5,50.5 parent: 12 - - uid: 23945 - components: - - type: Transform - pos: 53.5,54.5 - parent: 12 - uid: 23946 components: - type: Transform @@ -202128,12 +202960,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-11.5 parent: 12 - - uid: 27064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-10.5 - parent: 12 - uid: 27236 components: - type: Transform @@ -202146,6 +202972,34 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,4.5 parent: 12 + - uid: 28144 + components: + - type: Transform + pos: 54.5,-23.5 + parent: 12 + - uid: 28645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 12 + - uid: 28932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,53.5 + parent: 12 + - uid: 28933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-11.5 + parent: 12 + - uid: 28934 + components: + - type: Transform + pos: 52.5,-23.5 + parent: 12 - uid: 29220 components: - type: Transform @@ -202170,6 +203024,28 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,68.5 parent: 12 + - uid: 30474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,24.5 + parent: 12 + - uid: 30475 + components: + - type: Transform + pos: -32.5,20.5 + parent: 12 + - uid: 30476 + components: + - type: Transform + pos: -34.5,20.5 + parent: 12 + - uid: 30478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,24.5 + parent: 12 - uid: 31181 components: - type: Transform @@ -202218,6 +203094,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-67.5 parent: 12 + - uid: 31529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 12 - uid: 31770 components: - type: Transform @@ -202230,6 +203112,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,10.5 parent: 12 + - uid: 31911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-12.5 + parent: 12 - proto: Wirecutter entities: - uid: 8737 From fba67979c8f9ef06b8bc5ddcde1267bd2bfe457c Mon Sep 17 00:00:00 2001 From: spanky-spanky Date: Fri, 20 Sep 2024 00:07:49 -0400 Subject: [PATCH 074/161] Modifications to bring Omega up to date. (#32317) --- Resources/Maps/Shuttles/emergency_omega.yml | 288 +- Resources/Maps/omega.yml | 44715 ++++++++++-------- Resources/Prototypes/Maps/omega.yml | 1 + 3 files changed, 25790 insertions(+), 19214 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_omega.yml b/Resources/Maps/Shuttles/emergency_omega.yml index 7b038effac92..e3e6f680bf85 100644 --- a/Resources/Maps/Shuttles/emergency_omega.yml +++ b/Resources/Maps/Shuttles/emergency_omega.yml @@ -25,7 +25,7 @@ entities: chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAADSwAAAAACSwAAAAADMQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAWQAAAAACHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABSwAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACSwAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADHQAAAAABMQAAAAAAHQAAAAACHQAAAAABHQAAAAAAWQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAHQAAAAADHQAAAAABJgAAAAADHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAADSwAAAAACSwAAAAADMQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAWQAAAAACHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABSwAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACSwAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADHQAAAAABMQAAAAAAHQAAAAACHQAAAAABHQAAAAAAWQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 @@ -52,10 +52,10 @@ entities: gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: DeviceNetwork + deviceNetId: Wireless configurators: [] deviceLists: [] transmitFrequencyId: ShuttleTimer - deviceNetId: Wireless - type: DecalGrid chunkCollection: version: 2 @@ -77,12 +77,7 @@ entities: 162: -10,9 163: -10,3 164: -10,1 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 169: -10,11 + 174: -10,11 - node: color: '#FFFFFFFF' id: Bot @@ -112,6 +107,8 @@ entities: 124: -1,4 125: -2,4 172: -8,8 + 177: -8,10 + 178: -8,11 - node: color: '#FFFFFFFF' id: BotRight @@ -137,6 +134,7 @@ entities: 129: -6,7 130: -5,7 131: -4,7 + 173: -10,10 - node: color: '#FFFFFFFF' id: BotRightGreyscale @@ -305,7 +303,7 @@ entities: decals: 75: -6,10 76: -6,12 - 77: -6,13 + 184: -6,11 - node: color: '#FFFFFFFF' id: Bushf1 @@ -343,7 +341,6 @@ entities: color: '#DE3A3A96' id: Delivery decals: - 103: -7,11 104: -7,9 - node: color: '#334E6DC8' @@ -529,11 +526,7 @@ entities: decals: 19: 4,8 20: -8,4 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 101: -8,11 + 179: -7,13 - node: color: '#334E6DC8' id: WarnLineGreyscaleS @@ -544,19 +537,12 @@ entities: id: WarnLineGreyscaleW decals: 37: -6,1 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 88: -6,11 - 102: -10,11 - node: color: '#FFFFFFFF' id: WarnLineN decals: 21: -7,5 22: 1,5 - 25: -8,12 - node: color: '#FFFFFFFF' id: WarnLineS @@ -752,13 +738,6 @@ entities: - type: Transform pos: -6.5,1.5 parent: 603 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 532 - components: - - type: Transform - pos: -6.5,11.5 - parent: 603 - proto: AirlockSecurityLocked entities: - uid: 466 @@ -1112,11 +1091,6 @@ entities: - type: Transform pos: -4.5,8.5 parent: 603 - - uid: 26 - components: - - type: Transform - pos: -5.5,8.5 - parent: 603 - uid: 34 components: - type: Transform @@ -1247,11 +1221,6 @@ entities: - type: Transform pos: 3.5,10.5 parent: 603 - - uid: 98 - components: - - type: Transform - pos: -9.5,11.5 - parent: 603 - uid: 100 components: - type: Transform @@ -1362,6 +1331,11 @@ entities: - type: Transform pos: 0.5,12.5 parent: 603 + - uid: 273 + components: + - type: Transform + pos: -6.5,10.5 + parent: 603 - uid: 284 components: - type: Transform @@ -1397,11 +1371,6 @@ entities: - type: Transform pos: -0.5,9.5 parent: 603 - - uid: 307 - components: - - type: Transform - pos: -8.5,11.5 - parent: 603 - uid: 308 components: - type: Transform @@ -1427,11 +1396,6 @@ entities: - type: Transform pos: -8.5,6.5 parent: 603 - - uid: 314 - components: - - type: Transform - pos: -7.5,12.5 - parent: 603 - uid: 315 components: - type: Transform @@ -1445,12 +1409,12 @@ entities: - uid: 355 components: - type: Transform - pos: -6.5,10.5 + pos: -8.5,11.5 parent: 603 - uid: 356 components: - type: Transform - pos: -6.5,11.5 + pos: -5.5,14.5 parent: 603 - uid: 357 components: @@ -1467,11 +1431,6 @@ entities: - type: Transform pos: -7.5,5.5 parent: 603 - - uid: 360 - components: - - type: Transform - pos: -7.5,11.5 - parent: 603 - uid: 400 components: - type: Transform @@ -1482,21 +1441,11 @@ entities: - type: Transform pos: -6.5,6.5 parent: 603 - - uid: 405 - components: - - type: Transform - pos: -5.5,11.5 - parent: 603 - uid: 428 components: - type: Transform pos: -4.5,14.5 parent: 603 - - uid: 501 - components: - - type: Transform - pos: -5.5,14.5 - parent: 603 - uid: 502 components: - type: Transform @@ -1512,6 +1461,26 @@ entities: - type: Transform pos: -3.5,15.5 parent: 603 + - uid: 506 + components: + - type: Transform + pos: -8.5,10.5 + parent: 603 + - uid: 508 + components: + - type: Transform + pos: -4.5,9.5 + parent: 603 + - uid: 584 + components: + - type: Transform + pos: -6.5,14.5 + parent: 603 + - uid: 604 + components: + - type: Transform + pos: -5.5,10.5 + parent: 603 - proto: CableHV entities: - uid: 1 @@ -1591,6 +1560,11 @@ entities: - type: Transform pos: -7.5,8.5 parent: 603 + - uid: 26 + components: + - type: Transform + pos: -7.5,9.5 + parent: 603 - uid: 51 components: - type: Transform @@ -1621,6 +1595,11 @@ entities: - type: Transform pos: 0.5,5.5 parent: 603 + - uid: 207 + components: + - type: Transform + pos: -6.5,10.5 + parent: 603 - uid: 243 components: - type: Transform @@ -1736,11 +1715,6 @@ entities: - type: Transform pos: -0.5,12.5 parent: 603 - - uid: 273 - components: - - type: Transform - pos: -6.5,9.5 - parent: 603 - uid: 274 components: - type: Transform @@ -1811,6 +1785,11 @@ entities: - type: Transform pos: 0.5,4.5 parent: 603 + - uid: 405 + components: + - type: Transform + pos: -7.5,10.5 + parent: 603 - proto: CableTerminal entities: - uid: 285 @@ -1903,6 +1882,18 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,10.5 parent: 603 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 603 + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 603 - uid: 436 components: - type: Transform @@ -2030,6 +2021,12 @@ entities: - type: Transform pos: -0.5,2.5 parent: 603 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 603 - uid: 522 components: - type: Transform @@ -2048,6 +2045,18 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 603 + - uid: 531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 603 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 603 - uid: 534 components: - type: Transform @@ -2060,12 +2069,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,14.5 parent: 603 - - uid: 536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,13.5 - parent: 603 - uid: 537 components: - type: Transform @@ -2271,10 +2274,11 @@ entities: parent: 603 - proto: FirelockEdge entities: - - uid: 531 + - uid: 98 components: - type: Transform - pos: -7.5,12.5 + rot: 1.5707963267948966 rad + pos: -6.5,13.5 parent: 603 - proto: FirelockGlass entities: @@ -2359,18 +2363,17 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 603 - - uid: 200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 603 - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 603 + - uid: 507 + components: + - type: Transform + pos: -8.5,10.5 + parent: 603 - proto: GasPipeFourway entities: - uid: 316 @@ -2635,6 +2638,12 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,2.5 parent: 603 + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 603 - uid: 578 components: - type: Transform @@ -2721,6 +2730,12 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 603 + - uid: 509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 603 - proto: GeneratorBasic15kW entities: - uid: 214 @@ -2887,15 +2902,16 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 603 - - uid: 475 + - uid: 462 components: - type: Transform - pos: -6.5,2.5 + rot: -1.5707963267948966 rad + pos: -6.5,14.5 parent: 603 - - uid: 509 + - uid: 475 components: - type: Transform - pos: -8.5,12.5 + pos: -6.5,2.5 parent: 603 - uid: 539 components: @@ -3005,11 +3021,6 @@ entities: - type: Transform pos: -2.5,3.5 parent: 603 - - uid: 575 - components: - - type: Transform - pos: -8.5,10.5 - parent: 603 - uid: 576 components: - type: Transform @@ -3031,6 +3042,11 @@ entities: parent: 603 - proto: Poweredlight entities: + - uid: 204 + components: + - type: Transform + pos: -8.5,11.5 + parent: 603 - uid: 423 components: - type: Transform @@ -3093,13 +3109,6 @@ entities: parent: 603 - type: ApcPowerReceiver powerLoad: 0 - - uid: 584 - components: - - type: Transform - pos: -8.5,9.5 - parent: 603 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 585 components: - type: Transform @@ -3133,14 +3142,12 @@ entities: parent: 603 - type: ApcPowerReceiver powerLoad: 0 - - uid: 577 + - uid: 514 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,11.5 + pos: -7.5,13.5 parent: 603 - - type: ApcPowerReceiver - powerLoad: 0 - proto: Rack entities: - uid: 569 @@ -3340,15 +3347,16 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 603 - - uid: 506 + - uid: 563 components: - type: Transform - pos: -8.5,12.5 + pos: -6.5,2.5 parent: 603 - - uid: 563 + - uid: 575 components: - type: Transform - pos: -6.5,2.5 + rot: -1.5707963267948966 rad + pos: -6.5,14.5 parent: 603 - proto: SignalButton entities: @@ -3428,19 +3436,13 @@ entities: - type: Transform pos: -6.5,3.5 parent: 603 -- proto: SignPrison - entities: - - uid: 513 - components: - - type: Transform - pos: -9.5,12.5 - parent: 603 - proto: SignSecurity entities: - - uid: 462 + - uid: 513 components: - type: Transform - pos: -6.5,12.5 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 parent: 603 - proto: SMESBasic entities: @@ -3595,7 +3597,7 @@ entities: parent: 603 - proto: VendingMachineSec entities: - - uid: 514 + - uid: 510 components: - type: Transform pos: -5.5,12.5 @@ -3846,6 +3848,11 @@ entities: - type: Transform pos: 4.5,14.5 parent: 603 + - uid: 200 + components: + - type: Transform + pos: -6.5,11.5 + parent: 603 - uid: 201 components: - type: Transform @@ -3863,18 +3870,6 @@ entities: - type: Transform pos: 4.5,15.5 parent: 603 - - uid: 204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,10.5 - parent: 603 - - uid: 207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,10.5 - parent: 603 - uid: 208 components: - type: Transform @@ -3981,6 +3976,11 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 603 + - uid: 307 + components: + - type: Transform + pos: -6.5,10.5 + parent: 603 - uid: 362 components: - type: Transform @@ -4019,14 +4019,8 @@ entities: - uid: 388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 603 - - uid: 392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,10.5 + rot: 1.5707963267948966 rad + pos: -8.5,12.5 parent: 603 - uid: 406 components: @@ -4051,15 +4045,11 @@ entities: - type: Transform pos: -6.5,12.5 parent: 603 - - uid: 507 - components: - - type: Transform - pos: -6.5,14.5 - parent: 603 - - uid: 508 + - uid: 577 components: - type: Transform - pos: -6.5,13.5 + rot: 1.5707963267948966 rad + pos: -7.5,12.5 parent: 603 - proto: WeaponCapacitorRecharger entities: @@ -4083,11 +4073,11 @@ entities: parent: 603 - proto: WindoorSecureSecurityLocked entities: - - uid: 510 + - uid: 536 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,12.5 + rot: -1.5707963267948966 rad + pos: -6.5,13.5 parent: 603 - proto: WindowReinforcedDirectional entities: diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 2ffa5eca0349..b8cf3c6fc000 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -18,7 +18,9 @@ tilemap: 58: FloorHydro 61: FloorLaundry 62: FloorLino + 3: FloorMetalDiamond 69: FloorMono + 2: FloorRGlass 77: FloorReinforced 1: FloorRockVault 80: FloorShowroom @@ -63,7 +65,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACNgAAAAAAHQAAAAACHQAAAAABHQAAAAADNgAAAAAAHQAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADNgAAAAAAHQAAAAADHQAAAAACUAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAD + tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACNgAAAAAAHQAAAAACHQAAAAABHQAAAAADNgAAAAAAHQAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADNgAAAAAAHQAAAAADHQAAAAACUAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAD version: 6 0,1: ind: 0,1 @@ -95,19 +97,19 @@ entities: version: 6 0,2: ind: 0,2 - tiles: HQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,2: ind: 1,2 - tiles: WQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,3: ind: 0,3 @@ -123,15 +125,15 @@ entities: version: 6 2,0: ind: 2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAAeAAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAD + tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAAgAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAA version: 6 0,-2: ind: 0,-2 @@ -139,27 +141,27 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAbAAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABbAAAAAABWQAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAbAAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABbAAAAAABWQAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD + tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAADbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADWQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAAaQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAACAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAADbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADWQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAAaQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAACBwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -171,11 +173,11 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAD + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -191,11 +193,11 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA + tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -203,11 +205,11 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAwAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAwAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAAeQAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -223,11 +225,47 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: eQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -251,11 +289,16 @@ entities: id: Arrows decals: 1084: 27,-31 + 2100: -54,11 - node: color: '#FFFFFFFF' id: Arrows decals: 1605: -35,19 + 1864: 47,-4 + 1865: 49,-4 + 1866: 55,-4 + 1867: 57,-4 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -263,6 +306,18 @@ entities: decals: 938: -11,-6 1085: 27,-29 + 1868: 62,-4 + 1869: 62,-2 + 2101: -54.435013,10.029322 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1870: 57,-2 + 1871: 55,-2 + 1872: 49,-2 + 2080: 47,-2 - node: color: '#FFFFFFFF' id: Bot @@ -285,8 +340,6 @@ entities: 249: 7,55 250: 11,43 251: 9,43 - 310: 28,-10 - 311: 30,-10 419: 11,-28 420: 12,-28 422: 12,-26 @@ -299,10 +352,6 @@ entities: 636: -17,9 654: -37,-9 655: -36,-9 - 687: -35,5 - 688: -34,5 - 689: -33,5 - 690: -32,5 699: -35,1 713: -31,-6 714: -31,-10 @@ -324,13 +373,37 @@ entities: 1013: 35,-29 1082: 29,-31 1083: 29,-29 - 1204: -9,-28 - 1205: -9,-27 1233: -14,-26 1234: -16,-26 1531: 2,-36 1532: -15,-14 1604: -37,20 + 1725: -37,4 + 1726: -37,5 + 1735: -32,4 + 1736: -32,5 + 1744: -35,5 + 1745: -34,4 + 1896: 32,14 + 1897: 32,16 + 1909: 26,17 + 1910: 25,17 + 1911: 25,15 + 1912: 24,14 + 2086: -49,6 + 2108: -40,-13 + 2109: -42,-13 + 2119: -42,-16 + 2120: -40,-16 + 2122: -51,0 + 2128: -58,0 + - node: + angle: 4.71238898038469 rad + color: '#DE3A3AFF' + id: BotGreyscale + decals: + 2018: -41,-18 + 2019: -40,-19 - node: color: '#FFFFFFFF' id: BotLeft @@ -343,6 +416,13 @@ entities: 1601: -34,-10 1602: -36,21 1603: -37,21 + 1742: -35,4 + 1743: -34,5 + 1913: 24,15 + 1914: 25,14 + 2123: -52,0 + 2124: -53,0 + 2126: -51,6 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -387,6 +467,11 @@ entities: 1088: -5,28 1089: -5,29 1090: -5,30 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNe + decals: + 2023: -39,-18 - node: color: '#EFB34196' id: BrickTileSteelCornerNe @@ -399,36 +484,35 @@ entities: decals: 1559: -43,-11 1560: -43,-11 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSe + decals: + 2024: -39,-19 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 1575: -39,-19 - 1576: -39,-19 + 2006: -39,-16 + 2007: -39,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 1573: -43,-19 - 1574: -43,-19 + 2117: -43,-16 + 2118: -43,-16 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: - 1583: -39,-18 - 1584: -39,-18 - 1585: -39,-17 - 1586: -39,-17 1587: -39,-15 1588: -39,-15 - 1589: -39,-16 - 1590: -39,-16 - 1591: -39,-14 - 1592: -39,-14 1593: -39,-13 1594: -39,-13 1595: -39,-12 1596: -39,-12 + 2115: -39,-14 + 2116: -39,-14 - node: color: '#D381C996' id: BrickTileSteelLineN @@ -459,12 +543,10 @@ entities: color: '#EFB34196' id: BrickTileSteelLineS decals: - 1577: -40,-19 - 1578: -40,-19 - 1579: -41,-19 - 1580: -41,-19 - 1581: -42,-19 - 1582: -42,-19 + 2111: -40,-16 + 2112: -40,-16 + 2113: -42,-16 + 2114: -42,-16 - node: color: '#EFB34196' id: BrickTileSteelLineW @@ -475,12 +557,6 @@ entities: 1564: -43,-14 1565: -43,-15 1566: -43,-15 - 1567: -43,-16 - 1568: -43,-16 - 1569: -43,-17 - 1570: -43,-17 - 1571: -43,-18 - 1572: -43,-18 - node: color: '#334E6DC8' id: BrickTileWhiteBox @@ -611,6 +687,7 @@ entities: 1245: -18,-21 1246: -19,-21 1259: -22,-23 + 2079: -10,-21 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -646,6 +723,7 @@ entities: 1253: -20,-24 1254: -21,-24 1255: -22,-24 + 1718: -10,-24 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -808,6 +886,12 @@ entities: 1501: -3,-28 1502: -3,-27 1503: -3,-26 + 1719: -11,-25 + 1720: -10,-25 + 1721: -9,-29 + 1722: -9,-28 + 1723: -9,-27 + 1724: -9,-26 - node: color: '#D381C996' id: CheckerNWSE @@ -890,8 +974,6 @@ entities: 254: 5,47 255: 6,47 256: 7,47 - 312: 29,-10 - 313: 31,-10 421: 12,-29 582: -27,13 583: -27,14 @@ -902,17 +984,11 @@ entities: 634: -17,10 648: -35,-34 649: -34,-34 - 691: -35,4 - 692: -34,4 - 693: -33,4 - 694: -32,4 700: -34,-6 715: -40,-4 716: -40,-3 717: -40,-2 1087: 22,-26 - 1202: -9,-26 - 1203: -9,-29 1367: -12,-37 1368: -11,-37 1370: -6,-15 @@ -944,12 +1020,38 @@ entities: 1396: -22,-13 1397: -22,-12 1606: 5,-4 + 1728: -36,5 + 1733: -33,4 + 1737: -36,4 + 1748: -33,5 + 1915: 46,-4 + 1916: 46,-3 + 1917: 46,-2 + 1919: 58,-3 + 1920: 58,-2 + 1995: 58,-4 + 2048: -41,-12 + 2121: -50,0 + 2125: -48,6 + 2127: -57,0 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: 1609: -49,-26 + - node: + angle: 4.71238898038469 rad + color: '#DE3A3AFF' + id: DeliveryGreyscale + decals: + 2020: -40,-18 + - node: + cleanable: True + color: '#DE3A3AFF' + id: Dirt + decals: + 2025: -42,-18 - node: cleanable: True color: '#FFFFFFFF' @@ -959,6 +1061,13 @@ entities: 1031: -45,-29 1032: -43,-27 1033: -44,-30 + - node: + cleanable: True + color: '#DE3A3AFF' + id: DirtHeavy + decals: + 2026: -41,-18 + 2027: -40,-19 - node: cleanable: True color: '#FFFFFFFF' @@ -976,6 +1085,19 @@ entities: 1537: -47,-8 1538: -47,-7 1539: -47,-10 + - node: + cleanable: True + color: '#DE3A3AFF' + id: DirtHeavyMonotile + decals: + 2029: -39,-18 + 2030: -39,-19 + - node: + cleanable: True + color: '#DE3A3AFF' + id: DirtLight + decals: + 2028: -40,-18 - node: color: '#FFFFFFFF' id: DirtLight @@ -1040,33 +1162,55 @@ entities: 1550: -46,-7 1551: -45,-6 1552: -40,-6 + - node: + cleanable: True + color: '#DE3A3AFF' + id: DirtMedium + decals: + 2031: -41,-19 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: 803: 8,-33 - 827: 24,15 1540: -46,-10 1541: -46,-9 1542: -46,-12 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 1883: 53,-6 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 47: 6.065522,21.048145 + 1885: 51,0 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 48: 7.049897,20.985645 325: -8.939377,-46.636467 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 1884: 52,-6 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 49: 7.518647,21.016895 324: -8.955002,-48.308342 + 1881: 51,-6 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 1882: 53,0 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -1096,8 +1240,6 @@ entities: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 272: 26,-8 - 273: 30,-7 897: 16,33 898: 15,28 - node: @@ -1209,6 +1351,7 @@ entities: id: Grassd1 decals: 20: -8.810993,-9.335041 + 1877: 53,-6 - node: color: '#FFFFFFFF' id: Grassd2 @@ -1216,11 +1359,18 @@ entities: 46: 7.909272,21.016895 323: -8.91927,-49.011467 329: -13.966697,-45.902092 + 1874: 51,-6 - node: color: '#FFFFFFFF' id: Grassd3 decals: 21: -7.826618,-9.960041 + 1875: 52,0 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 1876: 51,0 - node: color: '#FFFFFFFF' id: Grasse2 @@ -1229,6 +1379,7 @@ entities: 45: 6.784272,21.079395 321: -8.936016,-46.30113 331: -13.997947,-48.558342 + 1880: 53,0 - node: color: '#FFFFFFFF' id: Grasse3 @@ -1236,6 +1387,7 @@ entities: 22: -7.045368,-10.022541 322: -9.029766,-47.11363 330: -13.997947,-47.558342 + 1878: 52,-6 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -1271,9 +1423,6 @@ entities: 165: 19,19 166: 18,19 171: 19,21 - 267: 30,-8 - 268: 29,-8 - 269: 28,-8 890: 16,35 891: 16,32 - node: @@ -1319,10 +1468,6 @@ entities: 626: -19,11 627: -20,11 681: -30,5 - 683: -32,3 - 684: -33,3 - 685: -34,3 - 686: -35,3 707: -31,-7 708: -32,-7 709: -33,-7 @@ -1380,9 +1525,6 @@ entities: 162: 18,17 163: 19,17 176: 17,13 - 264: 28,-10 - 265: 29,-10 - 266: 30,-10 889: 16,29 892: 16,34 - node: @@ -1483,7 +1625,6 @@ entities: 173: 14,26 174: 14,27 175: 14,23 - 271: 27,-9 893: 15,30 894: 15,31 - node: @@ -1577,7 +1718,6 @@ entities: 164: 20,18 168: 17,20 169: 20,20 - 270: 31,-9 895: 17,30 896: 17,31 905: 20,26 @@ -1655,16 +1795,15 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 143: 22,15 + 1899: 22,15 - node: color: '#FFFFFFFF' id: LoadingArea decals: 54: 9,21 - 695: -35,3 - 696: -34,3 - 697: -33,3 - 698: -32,3 + 1746: -35,3 + 1747: -34,3 + 1898: 26,13 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -1852,8 +1991,6 @@ entities: 628: -21,10 680: -29,5 682: -31,3 - 784: -46,-4 - 785: -46,-3 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -2024,10 +2161,6 @@ entities: 177: 16,13 178: 15,13 179: 14,13 - 274: 30,-6 - 275: 29,-6 - 276: 28,-6 - 277: 27,-6 278: 24,-8 279: 24,-6 280: 24,-4 @@ -2095,6 +2228,32 @@ entities: 1338: -12,-52 1339: -12,-51 1340: -12,-50 + 1941: 34,-4 + 1942: 35,-4 + 1943: 36,-4 + 1944: 37,-4 + 1945: 38,-4 + 1946: 39,-4 + 1947: 41,-4 + 1948: 40,-4 + 1949: 42,-4 + 1950: 43,-4 + 1951: 44,-4 + 1952: 45,-4 + 1953: 51,-5 + 1954: 52,-5 + 1955: 53,-5 + 1956: 59,-4 + 1957: 60,-4 + 1958: 61,-4 + 1959: 27,-5 + 1960: 27,-6 + 1961: 27,-7 + 1962: 27,-8 + 1963: 28,-8 + 1964: 29,-8 + 1965: 30,-8 + 1966: 31,-8 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -2112,6 +2271,8 @@ entities: decals: 629: -21,9 758: -38,-9 + 2001: -47,-3 + 2002: -47,-4 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -2237,6 +2398,30 @@ entities: 1324: -11,-43 1325: -11,-44 1326: -11,-45 + 1921: 59,-2 + 1922: 60,-2 + 1923: 61,-2 + 1924: 53,-1 + 1927: 51,-1 + 1928: 52,-1 + 1929: 45,-2 + 1930: 44,-2 + 1931: 43,-2 + 1932: 42,-2 + 1933: 41,-2 + 1934: 40,-2 + 1935: 39,-2 + 1936: 38,-2 + 1937: 37,-2 + 1938: 36,-2 + 1939: 35,-2 + 1940: 34,-2 + 1967: 31,-8 + 1968: 31,-7 + 1969: 31,-6 + 1970: 31,-5 + 1971: 31,0 + 1972: 31,-1 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -2283,6 +2468,16 @@ entities: id: Rock04 decals: 1035: -44,-27 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1908: 29,8 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 1907: 66,-23 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -2318,6 +2513,11 @@ entities: id: SpaceStationSign7 decals: 953: 0,-13 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 2141: 34,-5 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2340,7 +2540,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 153: 14,21 - 260: 27,-8 882: 15,32 888: 15,35 - node: @@ -2368,6 +2567,7 @@ entities: decals: 618: -21,11 702: -34,-7 + 2000: -47,-2 - node: color: '#FFDB9895' id: ThreeQuarterTileOverlayGreyscale @@ -2389,7 +2589,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 150: 20,17 - 262: 31,-10 881: 17,29 887: 17,34 - node: @@ -2430,7 +2629,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 149: 14,17 - 263: 27,-10 884: 15,29 885: 15,34 - node: @@ -2478,7 +2676,6 @@ entities: 151: 20,19 152: 17,21 170: 20,21 - 261: 31,-8 883: 17,32 886: 17,35 - node: @@ -2511,14 +2708,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 449: -9,-15 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 1023: -9,-44 - 1024: -14,-44 - 1025: -14,-51 - 1026: -9,-51 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2595,6 +2784,8 @@ entities: id: WarnCornerSmallNE decals: 932: 21,5 + 1902: 26,14 + 2139: -57,5 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -2606,11 +2797,13 @@ entities: id: WarnCornerSmallSE decals: 935: 23,3 + 1901: 26,16 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 934: 25,3 + 2132: -56,1 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2631,7 +2824,6 @@ entities: 1190: -13,-25 1191: -14,-23 1192: -14,-22 - 1193: -10,-25 1238: -17,-25 1239: -19,-28 - node: @@ -2640,6 +2832,10 @@ entities: decals: 921: 23,7 922: 23,8 + 1900: 26,15 + 2097: -60,0 + 2098: -60,1 + 2099: -60,2 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -2664,7 +2860,6 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 1178: -10,-21 1179: -12,-21 1257: -16,-21 1258: -20,-21 @@ -2682,7 +2877,6 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 1177: -10,-24 1240: -17,-24 - node: color: '#52B4E996' @@ -2705,12 +2899,20 @@ entities: 926: 22,7 927: 23,7 933: 24,3 + 2003: -47,-4 + 2077: -46,-4 + 2078: -45,-4 + 2129: -58,1 + 2130: -57,1 - node: color: '#FFFFFFFF' id: WarnLineS decals: 923: 21,7 924: 21,8 + 2131: -56,0 + 2133: -59,4 + 2140: -59,5 - node: color: '#FFFFFFFF' id: WarnLineW @@ -2722,6 +2924,15 @@ entities: 930: 22,5 1236: -14,-29 1237: -13,-29 + 2088: -55,5 + 2089: -54,5 + 2090: -53,5 + 2091: -52,5 + 2092: -51,5 + 2093: -50,5 + 2094: -49,5 + 2095: -48,5 + 2138: -56,5 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2763,13 +2974,6 @@ entities: 240: 8,54 241: 8,55 252: 11,53 - 314: 31,-6 - 315: 31,-5 - 316: 31,-4 - 317: 31,-3 - 318: 31,-2 - 319: 31,-1 - 320: 31,0 401: 19,-25 404: 27,-30 414: 3,-28 @@ -2780,9 +2984,6 @@ entities: 647: -38,-34 660: -37,1 661: -37,2 - 662: -37,3 - 663: -37,4 - 664: -37,5 718: -41,-3 - node: color: '#FFFFFFFF' @@ -2790,9 +2991,6 @@ entities: decals: 31: -23,-4 32: -22,-4 - 144: 24,16 - 145: 23,16 - 146: 22,16 214: 15,46 215: 14,46 216: 13,46 @@ -2815,8 +3013,6 @@ entities: 591: -31,22 724: -43,-4 725: -44,-4 - 726: -45,-4 - 727: -46,-4 - node: cleanable: True color: '#FFFFFFFF' @@ -3144,8 +3340,8 @@ entities: 1,7: 0: 24814 1,8: - 0: 7 - 1: 17408 + 0: 50183 + 1: 10752 2,5: 0: 10047 2,6: @@ -3154,8 +3350,8 @@ entities: 0: 1111 1: 4096 2,8: - 0: 2052 - 1: 17520 + 0: 63492 + 1: 1136 3,5: 0: 55773 3,6: @@ -3222,7 +3418,7 @@ entities: -4,-4: 0: 62347 -4,-5: - 0: 48049 + 0: 49073 -5,-4: 0: 63803 -4,-3: @@ -3242,7 +3438,7 @@ entities: -3,-2: 0: 12287 -3,-5: - 0: 65525 + 0: 65521 -2,-4: 0: 65134 -2,-3: @@ -3302,7 +3498,7 @@ entities: -8,1: 0: 28927 -9,1: - 0: 61678 + 0: 61695 -8,2: 0: 65311 -9,2: @@ -3373,15 +3569,18 @@ entities: -1,9: 1: 3968 0,9: - 1: 22468 + 1: 57284 0,10: - 1: 57309 + 1: 22357 + 0: 34952 0,11: 0: 2474 1,9: - 1: 17652 + 1: 43706 + 0: 17476 1,10: - 1: 1103 + 0: 1095 + 1: 2728 1,11: 0: 61182 2,9: @@ -3394,7 +3593,7 @@ entities: 2,12: 0: 8190 3,9: - 0: 3633 + 0: 3761 3,11: 0: 61166 3,10: @@ -3402,18 +3601,16 @@ entities: 4,8: 0: 64275 4,9: - 0: 824 - 1: 4096 + 0: 4664 4,10: - 1: 1 - 0: 32 + 0: 33 4,11: 0: 36416 5,7: 0: 14085 5,4: - 0: 4380 - 1: 17408 + 0: 4572 + 1: 16384 5,5: 0: 4113 1: 1092 @@ -3422,10 +3619,17 @@ entities: 5,3: 0: 65500 6,4: - 0: 1 - 1: 192 + 0: 119 6,3: - 0: 57297 + 0: 63351 + 7,4: + 0: 139 + 1: 1792 + 7,3: + 0: 64413 + 8,4: + 0: 17 + 1: 14 5,0: 0: 49502 5,2: @@ -3438,25 +3642,27 @@ entities: 0: 47419 6,1: 0: 11 - 1: 19968 6,2: - 0: 256 - 1: 50244 + 0: 2016 6,-1: 0: 49151 7,0: 0: 65375 7,1: - 0: 15 - 1: 32512 - 7,3: - 0: 256 + 0: 25103 + 1: 35840 + 7,2: + 0: 35063 + 1: 8 7,-1: 0: 65535 - 8,0: - 0: 1799 8,1: - 1: 13090 + 1: 4352 + 8,2: + 1: 1 + 8,3: + 0: 61713 + 1: 3584 0,12: 0: 10624 0,13: @@ -3504,46 +3710,77 @@ entities: -5,9: 1: 4353 0: 16 + 8,0: + 1: 14 + 9,0: + 1: 15 + 9,3: + 1: 8960 + 9,4: + 1: 3 + 10,0: + 1: 15 + 11,0: + 1: 3 + 0: 136 + 11,-1: + 0: 36863 8,-4: - 1: 4096 - 8,-3: - 1: 547 + 0: 79 + 1: 4352 7,-4: - 1: 49152 - 0: 19 + 0: 255 + 8,-3: + 1: 272 7,-3: - 1: 15 - 0: 65280 - 8,-2: - 0: 1799 + 1: 3840 7,-2: - 0: 65375 + 0: 65535 8,-1: - 1: 546 + 0: 4095 + 8,-2: + 0: 58368 + 8,-5: + 0: 59392 + 9,-2: + 0: 45056 + 1: 241 + 9,-1: + 0: 4095 + 9,-3: + 1: 4368 + 10,-2: + 1: 3696 + 0: 4096 + 10,-1: + 0: 4095 + 11,-2: + 1: 768 + 0: 34944 + 12,-1: + 0: 45055 4,-5: 0: 57297 4,-3: 0: 14 1: 2560 5,-4: - 0: 25 - 1: 25668 + 0: 29 + 1: 25664 5,-2: 0: 10415 5,-5: - 0: 53520 + 0: 20752 5,-3: 1: 3686 6,-4: 0: 239 - 1: 61440 6,-3: - 1: 815 - 0: 34816 + 1: 3952 6,-2: - 0: 47935 + 0: 48059 7,-5: - 0: 25817 + 0: 8209 0,-8: 0: 46071 0,-9: @@ -3605,7 +3842,7 @@ entities: -3,-8: 0: 58043 -3,-7: - 0: 20222 + 0: 28414 -3,-6: 0: 65535 -3,-9: @@ -3658,12 +3895,19 @@ entities: 0: 16 0,-10: 1: 1860 + 0,-12: + 1: 34952 + 0,-13: + 1: 34952 + 1,-12: + 0: 36864 + 1: 34 1,-11: 0: 49080 1,-10: 0: 49072 - 1,-12: - 0: 37376 + 1,-13: + 1: 12834 2,-12: 0: 28672 2,-11: @@ -3693,7 +3937,11 @@ entities: 0: 13107 1: 34952 -2,-15: - 1: 1 + 1: 61681 + -1,-15: + 1: 61936 + 0,-15: + 1: 62448 5,-8: 1: 4368 0: 52416 @@ -3710,7 +3958,7 @@ entities: 6,-6: 0: 61695 6,-5: - 0: 3839 + 0: 4095 6,-9: 0: 65319 7,-8: @@ -3726,11 +3974,11 @@ entities: 8,-7: 0: 65535 8,-6: - 0: 63247 - 8,-5: - 0: 7 + 0: 26383 8,-9: 0: 48112 + 9,-5: + 0: 310 9,-9: 0: 45872 9,-8: @@ -3738,22 +3986,29 @@ entities: 9,-7: 0: 64 9,-6: - 0: 72 + 0: 19584 10,-8: 1: 244 0: 4096 10,-7: 0: 256 + 1: 57344 + 10,-6: + 0: 17 10,-9: 1: 17476 0: 43690 11,-8: 1: 244 + 11,-7: + 1: 62192 11,-9: 1: 17476 0: 43690 12,-8: 1: 244 + 12,-7: + 1: 61680 8,-11: 0: 195 7,-11: @@ -3809,13 +4064,16 @@ entities: -13,-3: 0: 61007 -12,-2: - 0: 7406 + 0: 3310 -13,-2: 0: 61678 -12,-1: - 0: 7645 + 0: 3823 + -13,-1: + 0: 34952 + 1: 768 -12,0: - 0: 65535 + 0: 56797 -11,-4: 0: 65262 -11,-3: @@ -3826,8 +4084,6 @@ entities: 0: 3003 -11,0: 0: 65535 - -11,-5: - 0: 61152 -10,-4: 0: 48059 -10,-3: @@ -3836,10 +4092,10 @@ entities: 0: 39867 -10,-1: 0: 39867 - -10,-5: - 0: 48056 -10,0: - 0: 65531 + 0: 16379 + -10,-5: + 0: 35768 -9,-5: 0: 48059 -12,-7: @@ -3863,6 +4119,8 @@ entities: 0: 55487 -11,-6: 0: 65501 + -11,-5: + 0: 2995 -10,-8: 0: 60943 -10,-6: @@ -3916,17 +4174,28 @@ entities: -10,8: 0: 2080 -12,4: - 3: 204 + 3: 546 + 4: 2184 + -13,4: + 3: 2184 + 5: 546 + -12,5: + 0: 1 + 1: 3856 + -13,5: + 1: 4032 + -11,5: + 1: 784 -11,4: - 3: 17 + 6: 546 0: 8 - -11,5: - 0: 2048 -11,6: 0: 49152 -11,3: 0: 34823 1: 1792 + -10,5: + 0: 152 -11,7: 0: 2184 -10,7: @@ -3935,29 +4204,34 @@ entities: 0: 3296 -10,4: 0: 32904 - -10,5: - 0: 136 -10,3: 0: 35087 -9,5: 0: 119 -9,6: 0: 4400 - -12,1: + -13,0: 0: 65535 + -12,1: + 0: 52701 + -13,1: + 0: 4095 -12,2: 0: 65535 + -13,2: + 0: 65535 -12,3: 0: 15 1: 3840 -13,3: - 1: 31860 + 0: 15 + 1: 3840 -11,1: 0: 30719 -11,2: 0: 30583 -10,1: - 0: 61951 + 0: 61883 -10,2: 0: 65295 -11,-9: @@ -3970,57 +4244,68 @@ entities: 0: 4095 -9,-11: 0: 12288 + -16,0: + 1: 62227 + 3: 3276 + -17,0: + 1: 8930 + -16,1: + 1: 58999 + 0: 2184 + -17,1: + 1: 43746 + -16,2: + 1: 13090 + 3: 34944 + -17,2: + 1: 34986 + -16,-1: + 1: 57344 + -16,3: + 1: 58594 -15,0: - 1: 17484 - -15,-1: - 1: 16384 + 3: 273 + 0: 52428 -15,1: - 1: 17484 + 0: 239 + 1: 61440 -15,2: - 1: 17484 + 3: 13104 + 1: 34952 -15,3: - 1: 12 + 1: 16120 + -15,4: + 1: 46 + -14,0: + 0: 65535 -14,1: - 0: 1 - 3: 49344 - -14,-1: - 1: 61440 + 0: 20223 -14,3: - 1: 49392 - -14,0: - 4: 192 - 5: 49152 + 1: 16128 + 0: 14 -14,2: - 6: 192 - 3: 49152 - -13,0: - 4: 16 - 5: 4096 - 1: 17476 - -13,1: - 3: 4112 - 1: 17476 - -13,2: - 6: 16 - 3: 4096 - 1: 17476 - -13,-1: - 1: 29696 - 0: 33 - -13,4: - 1: 116 - -15,-4: - 0: 16384 + 0: 61166 + -14,4: + 1: 12561 + 3: 2184 + -16,-2: + 0: 1772 + -16,-3: + 0: 51200 -15,-3: - 0: 1024 + 0: 5392 -15,-2: - 0: 2246 + 0: 2295 + -15,-4: + 0: 16384 + -14,-2: + 0: 61424 + -14,-1: + 1: 3840 -14,-4: 0: 60928 -14,-3: 0: 61166 - -14,-2: - 0: 61664 -14,-5: 0: 27848 -16,-8: @@ -4088,8 +4373,71 @@ entities: 1: 8738 13,-8: 1: 50 - -14,4: - 1: 192 + 13,-7: + 1: 61936 + 14,-7: + 1: 62448 + 15,-7: + 1: 28976 + -14,5: + 1: 3923 + 12,-2: + 0: 43552 + 1: 128 + 12,0: + 0: 42 + 1: 128 + 13,-2: + 1: 48 + 0: 48000 + 13,-1: + 0: 49151 + 13,0: + 0: 139 + 1: 48 + 14,-1: + 0: 12287 + 14,-2: + 0: 8736 + 1: 2048 + 14,0: + 0: 34 + 1: 8 + 15,-2: + 1: 3840 + 15,-1: + 0: 3967 + 15,0: + 1: 15 + 16,-2: + 1: 273 + 16,-1: + 0: 771 + 16,-4: + 1: 22357 + 16,-5: + 1: 21877 + 16,-3: + 1: 4373 + 16,0: + 1: 1 + 16,-7: + 0: 512 + 16,-6: + 1: 20736 + 0: 200 + 17,-6: + 0: 1 + 1,-15: + 1: 8752 + 0,-14: + 1: 34952 + 1,-14: + 1: 9010 + -17,-1: + 1: 8192 + -17,3: + 1: 34952 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -4154,7 +4502,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - 6666.982 - 0 - 0 @@ -4166,13 +4513,14 @@ entities: - 0 - 0 - 0 + - 0 - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -4185,9 +4533,9 @@ entities: temperature: 293.15 moles: - 0 + - 6666.982 - 0 - 0 - - 6666.982 - 0 - 0 - 0 @@ -4214,6 +4562,40 @@ entities: - type: Transform pos: -10.386757,8.623476 parent: 4812 +- proto: ActionToggleInternals + entities: + - uid: 9710 + components: + - type: Transform + parent: 12116 + - type: InstantAction + container: 12116 +- proto: ActionToggleLight + entities: + - uid: 8638 + components: + - type: Transform + parent: 1481 + - type: InstantAction + container: 1481 + - uid: 9534 + components: + - type: Transform + parent: 12119 + - type: InstantAction + container: 12119 + - uid: 9825 + components: + - type: Transform + parent: 6364 + - type: InstantAction + container: 6364 + - uid: 9826 + components: + - type: Transform + parent: 12487 + - type: InstantAction + container: 12487 - proto: AirAlarm entities: - uid: 4981 @@ -4357,22 +4739,11 @@ entities: parent: 4812 - type: DeviceList devices: - - 10758 - - 10757 + - 12140 + - 4622 + - 12136 - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - - uid: 12182 - components: - - type: Transform - pos: -42.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 12181 + - 4623 - uid: 12183 components: - type: Transform @@ -4380,15 +4751,9 @@ entities: parent: 4812 - type: DeviceList devices: + - 12141 + - 12137 - 12184 - - 12035 - - 12036 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - uid: 12186 components: - type: Transform @@ -4753,11 +5118,13 @@ entities: parent: 4812 - type: DeviceList devices: - - 12277 - 4424 - 4425 - - 4380 + - 6684 + - 4983 + - 12277 - 4381 + - 4380 - uid: 12278 components: - type: Transform @@ -4769,7 +5136,6 @@ entities: - 4425 - 4424 - 4444 - - 4443 - uid: 12282 components: - type: Transform @@ -4788,9 +5154,12 @@ entities: parent: 4812 - type: DeviceList devices: - - 4205 + - 4444 + - 4335 + - 12842 - 12284 - - 4203 + - 12841 + - 12279 - uid: 12285 components: - type: Transform @@ -5111,6 +5480,61 @@ entities: - 12363 - 9007 - 8991 + - uid: 12697 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 4812 + - type: DeviceList + devices: + - 13228 + - 13229 + - 13230 + - 13192 + - 12692 + - 12693 + - 12694 + - 12684 + - 13233 + - 13232 + - 13231 + - 4327 + - 12767 + - 4328 + - 12688 + - 12764 + - 12766 + - uid: 13204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 4812 + - type: DeviceList + devices: + - 12977 + - 2904 + - 2963 + - uid: 13561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,8.5 + parent: 4812 + - type: DeviceList + devices: + - 9495 + - uid: 13607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 4812 + - type: DeviceList + devices: + - 9504 + - 9421 + - 13408 - proto: AirAlarmElectronics entities: - uid: 10719 @@ -5135,15 +5559,15 @@ entities: - type: Transform pos: -34.5,-37.5 parent: 4812 - - uid: 9671 + - uid: 12248 components: - type: Transform - pos: -31.5,4.5 + pos: -36.5,5.5 parent: 4812 - - uid: 9672 + - uid: 12374 components: - type: Transform - pos: -31.5,5.5 + pos: -35.5,5.5 parent: 4812 - uid: 12398 components: @@ -5201,13 +5625,26 @@ entities: parent: 4812 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 3444 + - uid: 3321 components: - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,0.5 parent: 4812 + - uid: 11735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,7.5 + parent: 4812 - proto: AirlockAtmosphericsLocked entities: + - uid: 3444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 4812 - uid: 8862 components: - type: Transform @@ -5218,11 +5655,6 @@ entities: - type: Transform pos: -39.5,-0.5 parent: 4812 - - uid: 9566 - components: - - type: Transform - pos: -35.5,2.5 - parent: 4812 - proto: AirlockBarLocked entities: - uid: 325 @@ -5293,16 +5725,6 @@ entities: - type: Transform pos: 15.5,22.5 parent: 4812 - - uid: 4427 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 4812 - - uid: 4428 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 4812 - proto: AirlockChapelLocked entities: - uid: 329 @@ -5322,12 +5744,12 @@ entities: - type: Transform pos: -21.5,-34.5 parent: 4812 -- proto: AirlockChemistryLocked +- proto: AirlockChemistryGlassLocked entities: - - uid: 6617 + - uid: 9481 components: - type: Transform - pos: -9.5,-19.5 + pos: -13.5,-17.5 parent: 4812 - proto: AirlockChiefEngineerGlassLocked entities: @@ -5402,6 +5824,11 @@ entities: - type: Transform pos: -6.5,29.5 parent: 4812 + - uid: 2889 + components: + - type: Transform + pos: 6.5,18.5 + parent: 4812 - proto: AirlockCommandLocked entities: - uid: 5174 @@ -5428,6 +5855,12 @@ entities: parent: 4812 - proto: AirlockEngineeringGlassLocked entities: + - uid: 2964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 4812 - uid: 9565 components: - type: Transform @@ -5448,6 +5881,12 @@ entities: - type: Transform pos: -40.5,-9.5 parent: 4812 + - uid: 12129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 4812 - proto: AirlockEngineeringLocked entities: - uid: 901 @@ -5532,6 +5971,31 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 4812 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 9212 + components: + - type: Transform + pos: -60.5,6.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9190: + - DoorStatus: DoorBolt + - uid: 13456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-4.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13457: + - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 3761 @@ -5558,26 +6022,41 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-50.5 parent: 4812 - - uid: 3777 + - uid: 4057 components: - type: Transform - pos: 32.5,-5.5 + rot: 1.5707963267948966 rad + pos: 49.5,-4.5 parent: 4812 - - uid: 3778 + - uid: 4061 components: - type: Transform - pos: 32.5,-7.5 + rot: 1.5707963267948966 rad + pos: 55.5,-4.5 parent: 4812 - - uid: 3779 + - uid: 4070 components: - type: Transform - pos: 32.5,0.5 + rot: -1.5707963267948966 rad + pos: 63.5,-1.5 parent: 4812 - - uid: 3780 + - uid: 4088 components: - type: Transform - pos: 32.5,2.5 + rot: 3.141592653589793 rad + pos: 63.5,-3.5 parent: 4812 + - uid: 4157 + components: + - type: MetaData + name: security airlock + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-4.5 + parent: 4812 + - type: AccessReader + access: + - - Security - uid: 8476 components: - type: Transform @@ -5606,64 +6085,97 @@ entities: - DoorStatus: Close 9656: - DoorStatus: Close -- proto: AirlockExternalGlassAtmosphericsLocked + - uid: 13036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 4812 + - uid: 13037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-0.5 + parent: 4812 + - uid: 13053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 4812 + - uid: 13121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 4812 + - uid: 13176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 4812 +- proto: AirlockExternalGlassCargoLocked entities: - - uid: 6362 + - uid: 2894 components: - type: Transform - pos: -47.5,-3.5 + rot: 3.141592653589793 rad + pos: 27.5,15.5 parent: 4812 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6363: + 4550: - DoorStatus: DoorBolt - - uid: 6363 + - uid: 3040 components: - type: Transform - pos: -50.5,-4.5 + pos: 21.5,27.5 + parent: 4812 + - uid: 3041 + components: + - type: Transform + pos: 21.5,25.5 + parent: 4812 + - uid: 4550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 parent: 4812 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6362: + 2894: - DoorStatus: DoorBolt -- proto: AirlockExternalGlassCargoLocked +- proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 2919 + - uid: 9190 components: - type: Transform - pos: 25.5,14.5 + pos: -59.5,4.5 parent: 4812 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2920: + 9212: - DoorStatus: DoorBolt - - uid: 2920 + - uid: 13457 components: - type: Transform - pos: 28.5,14.5 + rot: 3.141592653589793 rad + pos: -49.5,-4.5 parent: 4812 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2919: + 13456: - DoorStatus: DoorBolt - - uid: 3040 - components: - - type: Transform - pos: 21.5,27.5 - parent: 4812 - - uid: 3041 - components: - - type: Transform - pos: 21.5,25.5 - parent: 4812 - proto: AirlockExternalGlassLocked entities: - uid: 10406 @@ -5713,9 +6225,31 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-43.5 parent: 4812 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 13030 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 4812 + - uid: 13031 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 4812 + - uid: 13035 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 4812 + - uid: 13044 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 4812 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 3769 + - uid: 3225 components: - type: Transform rot: -1.5707963267948966 rad @@ -5732,6 +6266,11 @@ entities: - type: Transform pos: -47.5,-26.5 parent: 4812 + - uid: 13557 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 4812 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3190 @@ -5746,29 +6285,29 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,25.5 parent: 4812 - - uid: 4134 + - uid: 4062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 + rot: 3.141592653589793 rad + pos: 55.5,1.5 parent: 4812 - - uid: 4135 + - uid: 4064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 + rot: 3.141592653589793 rad + pos: 57.5,1.5 parent: 4812 - - uid: 4136 + - uid: 4067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 + rot: 3.141592653589793 rad + pos: 49.5,1.5 parent: 4812 - - uid: 4137 + - uid: 4071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,2.5 + rot: 3.141592653589793 rad + pos: 47.5,1.5 parent: 4812 - uid: 4736 components: @@ -5804,6 +6343,18 @@ entities: - DoorStatus: Close - type: DeviceLinkSink invokeCounter: 1 + - uid: 12991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-1.5 + parent: 4812 + - uid: 13120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-3.5 + parent: 4812 - proto: AirlockExternalLocked entities: - uid: 2737 @@ -5954,21 +6505,6 @@ entities: - type: Transform pos: 14.5,-2.5 parent: 4812 - - uid: 4382 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 4812 - - uid: 4383 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 4812 - - uid: 4384 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 4812 - uid: 4714 components: - type: Transform @@ -6044,13 +6580,44 @@ entities: - type: Transform pos: -28.5,-1.5 parent: 4812 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 723 + - uid: 12724 components: - type: Transform - pos: 6.5,18.5 + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 4812 + - uid: 12725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 4812 + - uid: 12726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 4812 + - uid: 12727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 4812 + - uid: 12728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-2.5 parent: 4812 + - uid: 12729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 4812 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: - uid: 2460 components: - type: Transform @@ -6120,15 +6687,16 @@ entities: parent: 4812 - proto: AirlockMaintAtmoLocked entities: - - uid: 7949 + - uid: 4058 components: - type: Transform - pos: -39.5,6.5 + rot: -1.5707963267948966 rad + pos: -36.5,0.5 parent: 4812 - - uid: 8686 + - uid: 7949 components: - type: Transform - pos: -36.5,0.5 + pos: -39.5,6.5 parent: 4812 - proto: AirlockMaintBarLocked entities: @@ -6467,22 +7035,26 @@ entities: - type: Transform pos: -8.5,10.5 parent: 4812 -- proto: AirlockMedicalGlassLocked +- proto: AirlockMedicalGlass entities: - - uid: 1933 + - uid: 3402 components: - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 4812 - - uid: 1934 + - uid: 4615 components: - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-21.5 parent: 4812 - - uid: 7411 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 2903 components: - type: Transform - pos: -9.5,-24.5 + pos: -11.5,-26.5 parent: 4812 - uid: 7412 components: @@ -6499,13 +7071,20 @@ entities: - type: Transform pos: -23.5,-23.5 parent: 4812 -- proto: AirlockMedicalLocked - entities: - - uid: 7410 + - uid: 13414 components: - type: Transform - pos: -11.5,-26.5 + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 parent: 4812 + - uid: 13415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 4812 +- proto: AirlockMedicalLocked + entities: - uid: 7414 components: - type: Transform @@ -6727,6 +7306,15 @@ entities: parent: 4812 - proto: AirSensor entities: + - uid: 2904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13204 - uid: 8805 components: - type: Transform @@ -6737,6 +7325,14 @@ entities: - type: Transform pos: -17.5,-21.5 parent: 4812 + - uid: 9504 + components: + - type: Transform + pos: -47.5,2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 - uid: 12170 components: - type: Transform @@ -6762,16 +7358,18 @@ entities: - type: Transform pos: -40.5,3.5 parent: 4812 - - uid: 12181 - components: - - type: Transform - pos: -44.5,16.5 - parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12178 + - 12180 - uid: 12184 components: - type: Transform pos: -34.5,2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12183 - uid: 12185 components: - type: Transform @@ -6922,11 +7520,17 @@ entities: - type: Transform pos: 21.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - uid: 12279 components: - type: Transform pos: 25.5,0.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - uid: 12281 components: - type: Transform @@ -6937,6 +7541,9 @@ entities: - type: Transform pos: 30.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - uid: 12287 components: - type: Transform @@ -7075,6 +7682,24 @@ entities: - type: Transform pos: -37.5,-34.5 parent: 4812 + - uid: 12684 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 + - uid: 13192 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 - proto: AltarSpawner entities: - uid: 4008 @@ -7094,8 +7719,94 @@ entities: - uid: 4233 components: - type: Transform - pos: -42.336273,-2.370503 + pos: -46.253944,-2.360939 parent: 4812 +- proto: AmePartFlatpack + entities: + - uid: 9429 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9430 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9431 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9432 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9434 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9435 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9436 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9437 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9439 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9440 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9441 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9442 + components: + - type: Transform + parent: 9425 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnomalyScanner entities: - uid: 6357 @@ -7392,6 +8103,18 @@ entities: - type: Transform pos: 30.5,-37.5 parent: 4812 + - uid: 12695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-4.5 + parent: 4812 + - uid: 13669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,6.5 + parent: 4812 - proto: AppleSeeds entities: - uid: 8397 @@ -7404,6 +8127,18 @@ entities: - type: Transform pos: -31.531736,31.32598 parent: 4812 +- proto: ArrivalsShuttleTimer + entities: + - uid: 13189 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 4812 + - uid: 13190 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 4812 - proto: ArtistCircuitBoard entities: - uid: 12642 @@ -7411,6 +8146,23 @@ entities: - type: Transform pos: 9.402303,43.5883 parent: 4812 +- proto: Ashtray + entities: + - uid: 12687 + components: + - type: Transform + pos: 29.61573,-5.4393315 + parent: 4812 + - uid: 13265 + components: + - type: Transform + pos: 23.03569,17.459896 + parent: 4812 + - uid: 13656 + components: + - type: Transform + pos: -44.452446,3.5162945 + parent: 4812 - proto: AsimovCircuitBoard entities: - uid: 12644 @@ -7420,11 +8172,36 @@ entities: parent: 4812 - proto: AsteroidRock entities: + - uid: 2808 + components: + - type: Transform + pos: 25.5,8.5 + parent: 4812 - uid: 2840 components: - type: Transform pos: 13.5,34.5 parent: 4812 + - uid: 2884 + components: + - type: Transform + pos: 28.5,7.5 + parent: 4812 + - uid: 2887 + components: + - type: Transform + pos: 27.5,6.5 + parent: 4812 + - uid: 2906 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 4812 + - uid: 2968 + components: + - type: Transform + pos: 28.5,6.5 + parent: 4812 - uid: 3012 components: - type: Transform @@ -7440,6 +8217,21 @@ entities: - type: Transform pos: 19.5,38.5 parent: 4812 + - uid: 3262 + components: + - type: Transform + pos: 28.5,10.5 + parent: 4812 + - uid: 3266 + components: + - type: Transform + pos: 27.5,7.5 + parent: 4812 + - uid: 3267 + components: + - type: Transform + pos: 26.5,7.5 + parent: 4812 - uid: 3295 components: - type: Transform @@ -7530,11 +8322,6 @@ entities: - type: Transform pos: 20.5,32.5 parent: 4812 - - uid: 3459 - components: - - type: Transform - pos: 15.5,37.5 - parent: 4812 - uid: 3460 components: - type: Transform @@ -8045,6 +8832,21 @@ entities: - type: Transform pos: -36.5,27.5 parent: 4812 + - uid: 4055 + components: + - type: Transform + pos: 30.5,11.5 + parent: 4812 + - uid: 4056 + components: + - type: Transform + pos: 63.5,-23.5 + parent: 4812 + - uid: 4059 + components: + - type: Transform + pos: 26.5,8.5 + parent: 4812 - uid: 5032 components: - type: Transform @@ -8065,11 +8867,6 @@ entities: - type: Transform pos: 30.5,-19.5 parent: 4812 - - uid: 5808 - components: - - type: Transform - pos: 31.5,-20.5 - parent: 4812 - uid: 5809 components: - type: Transform @@ -8195,6 +8992,21 @@ entities: - type: Transform pos: 37.5,-21.5 parent: 4812 + - uid: 6777 + components: + - type: Transform + pos: 25.5,7.5 + parent: 4812 + - uid: 7399 + components: + - type: Transform + pos: 25.5,6.5 + parent: 4812 + - uid: 7401 + components: + - type: Transform + pos: 26.5,6.5 + parent: 4812 - uid: 8460 components: - type: Transform @@ -8390,6 +9202,81 @@ entities: - type: Transform pos: -31.5,35.5 parent: 4812 + - uid: 9215 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 4812 + - uid: 9340 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 4812 + - uid: 9344 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 4812 + - uid: 9351 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 4812 + - uid: 9383 + components: + - type: Transform + pos: -40.5,22.5 + parent: 4812 + - uid: 9390 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 4812 + - uid: 9391 + components: + - type: Transform + pos: -64.5,-1.5 + parent: 4812 + - uid: 9407 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 4812 + - uid: 9408 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 4812 + - uid: 9413 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 4812 + - uid: 9418 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 4812 + - uid: 9447 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 4812 + - uid: 9448 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 4812 + - uid: 9449 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 4812 + - uid: 9520 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 4812 - uid: 9621 components: - type: Transform @@ -8440,6 +9327,21 @@ entities: - type: Transform pos: -33.5,-40.5 parent: 4812 + - uid: 9713 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 4812 + - uid: 9931 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 4812 + - uid: 10395 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 4812 - uid: 10417 components: - type: Transform @@ -8690,11 +9592,6 @@ entities: - type: Transform pos: -58.5,-8.5 parent: 4812 - - uid: 10486 - components: - - type: Transform - pos: -49.5,-2.5 - parent: 4812 - uid: 10926 components: - type: Transform @@ -8825,11 +9722,6 @@ entities: - type: Transform pos: -39.5,20.5 parent: 4812 - - uid: 10971 - components: - - type: Transform - pos: -39.5,21.5 - parent: 4812 - uid: 10972 components: - type: Transform @@ -9000,11 +9892,6 @@ entities: - type: Transform pos: -41.5,21.5 parent: 4812 - - uid: 11020 - components: - - type: Transform - pos: -41.5,22.5 - parent: 4812 - uid: 11021 components: - type: Transform @@ -9390,13 +10277,433 @@ entities: - type: Transform pos: 35.5,-41.5 parent: 4812 + - uid: 11888 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 4812 + - uid: 11895 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 4812 + - uid: 11899 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 4812 + - uid: 12099 + components: + - type: Transform + pos: 27.5,10.5 + parent: 4812 + - uid: 12128 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 4812 + - uid: 12143 + components: + - type: Transform + pos: -64.5,-0.5 + parent: 4812 + - uid: 12238 + components: + - type: Transform + pos: 27.5,8.5 + parent: 4812 + - uid: 12678 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 4812 + - uid: 12926 + components: + - type: Transform + pos: 65.5,-23.5 + parent: 4812 + - uid: 12983 + components: + - type: Transform + pos: 65.5,-26.5 + parent: 4812 + - uid: 12990 + components: + - type: Transform + pos: 65.5,-24.5 + parent: 4812 + - uid: 12992 + components: + - type: Transform + pos: 67.5,-24.5 + parent: 4812 + - uid: 12994 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 4812 + - uid: 12995 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 4812 + - uid: 12996 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 4812 + - uid: 12998 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 4812 + - uid: 12999 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 4812 + - uid: 13000 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 4812 + - uid: 13001 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 4812 + - uid: 13002 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 4812 + - uid: 13003 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 4812 + - uid: 13004 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 4812 + - uid: 13005 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 4812 + - uid: 13006 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 4812 + - uid: 13007 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 4812 + - uid: 13008 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 4812 + - uid: 13009 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 4812 + - uid: 13010 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 4812 + - uid: 13011 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 4812 + - uid: 13012 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 4812 + - uid: 13013 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 4812 + - uid: 13014 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 4812 + - uid: 13015 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 4812 + - uid: 13016 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 4812 + - uid: 13017 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 4812 + - uid: 13018 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 4812 + - uid: 13019 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 4812 + - uid: 13022 + components: + - type: Transform + pos: 64.5,-26.5 + parent: 4812 + - uid: 13029 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 4812 + - uid: 13032 + components: + - type: Transform + pos: 67.5,-25.5 + parent: 4812 + - uid: 13033 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 4812 + - uid: 13043 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 4812 + - uid: 13045 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 4812 + - uid: 13085 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 4812 + - uid: 13092 + components: + - type: Transform + pos: 64.5,-24.5 + parent: 4812 + - uid: 13129 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 4812 + - uid: 13132 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 4812 + - uid: 13226 + components: + - type: Transform + pos: 65.5,-22.5 + parent: 4812 + - uid: 13273 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 4812 + - uid: 13274 + components: + - type: Transform + pos: 67.5,-26.5 + parent: 4812 + - uid: 13275 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 4812 + - uid: 13276 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 4812 + - uid: 13277 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 4812 + - uid: 13278 + components: + - type: Transform + pos: 63.5,-26.5 + parent: 4812 + - uid: 13293 + components: + - type: Transform + pos: 30.5,10.5 + parent: 4812 + - uid: 13294 + components: + - type: Transform + pos: 29.5,10.5 + parent: 4812 - proto: AsteroidRockMining entities: - - uid: 12146 + - uid: 3224 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 4812 + - uid: 3744 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 4812 + - uid: 3778 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 4812 + - uid: 4580 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 4812 + - uid: 9387 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 4812 + - uid: 9409 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 4812 + - uid: 9532 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 4812 + - uid: 9533 + components: + - type: Transform + pos: -57.5,-4.5 + parent: 4812 + - uid: 10755 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 4812 + - uid: 10906 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 4812 + - uid: 11892 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 4812 + - uid: 12035 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 4812 + - uid: 12138 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 4812 + - uid: 12592 components: - type: Transform pos: -52.5,-3.5 parent: 4812 + - uid: 12698 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 4812 + - uid: 12779 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 4812 + - uid: 13071 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 4812 + - uid: 13075 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 4812 + - uid: 13087 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 4812 + - uid: 13094 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 4812 + - uid: 13220 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 4812 + - uid: 13222 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 4812 + - uid: 13417 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 4812 + - uid: 13418 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 4812 + - uid: 13419 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 4812 + - uid: 13422 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 4812 + - uid: 13475 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 4812 + - uid: 13522 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 4812 + - uid: 13523 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 4812 - proto: AtmosDeviceFanDirectional entities: - uid: 2781 @@ -9405,41 +10712,73 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-39.5 parent: 4812 - - uid: 8478 + - uid: 4060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,27.5 + rot: 3.141592653589793 rad + pos: 49.5,1.5 parent: 4812 - - uid: 8479 + - uid: 4063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,25.5 + rot: 3.141592653589793 rad + pos: 55.5,1.5 parent: 4812 - - uid: 8480 + - uid: 4066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,1.5 + parent: 4812 + - uid: 4068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,1.5 + parent: 4812 + - uid: 4076 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 4812 + - uid: 4087 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 4812 + - uid: 4090 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 4812 + - uid: 4093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-7.5 + pos: 65.5,-1.5 parent: 4812 - - uid: 8481 + - uid: 4118 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 4812 + - uid: 4134 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,2.5 + pos: 65.5,-3.5 parent: 4812 - - uid: 8483 + - uid: 8478 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-5.5 + pos: 23.5,27.5 parent: 4812 - - uid: 8485 + - uid: 8479 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,0.5 + pos: 23.5,25.5 parent: 4812 - uid: 8486 components: @@ -9488,82 +10827,147 @@ entities: - type: Transform pos: -47.5,-26.5 parent: 4812 + - uid: 13427 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 4812 - proto: AtmosFixBlockerMarker entities: - - uid: 11893 + - uid: 2916 components: - type: Transform - pos: -51.5,5.5 + pos: -60.5,9.5 parent: 4812 - - uid: 11894 + - uid: 8772 components: - type: Transform - pos: -52.5,5.5 + pos: -61.5,2.5 parent: 4812 - - uid: 11895 + - uid: 9392 components: - type: Transform - pos: -53.5,5.5 + pos: -59.5,10.5 parent: 4812 - - uid: 11896 + - uid: 9419 components: - type: Transform - pos: -53.5,7.5 + pos: -59.5,2.5 + parent: 4812 + - uid: 9457 + components: + - type: Transform + pos: -60.5,2.5 + parent: 4812 + - uid: 9472 + components: + - type: Transform + pos: -59.5,1.5 + parent: 4812 + - uid: 9485 + components: + - type: Transform + pos: -60.5,1.5 + parent: 4812 + - uid: 9706 + components: + - type: Transform + pos: -46.5,17.5 + parent: 4812 + - uid: 9708 + components: + - type: Transform + pos: -46.5,18.5 + parent: 4812 + - uid: 9717 + components: + - type: Transform + pos: -46.5,16.5 + parent: 4812 + - uid: 9820 + components: + - type: Transform + pos: -52.5,17.5 + parent: 4812 + - uid: 11893 + components: + - type: Transform + pos: -48.5,16.5 parent: 4812 - uid: 11897 components: - type: Transform - pos: -52.5,7.5 + pos: -52.5,16.5 parent: 4812 - - uid: 11898 + - uid: 12132 components: - type: Transform - pos: -51.5,7.5 + pos: -48.5,17.5 parent: 4812 - - uid: 11899 + - uid: 12133 components: - type: Transform - pos: -51.5,11.5 + pos: -48.5,18.5 parent: 4812 - - uid: 11900 + - uid: 12135 components: - type: Transform - pos: -52.5,11.5 + pos: -52.5,18.5 parent: 4812 - - uid: 11901 + - uid: 13371 components: - type: Transform - pos: -53.5,11.5 + pos: -58.5,11.5 parent: 4812 - - uid: 11902 + - uid: 13372 components: - type: Transform - pos: -45.5,16.5 + pos: -59.5,11.5 parent: 4812 - - uid: 11903 + - uid: 13482 components: - type: Transform - pos: -45.5,17.5 + pos: -60.5,11.5 parent: 4812 - - uid: 11904 + - uid: 13512 components: - type: Transform - pos: -44.5,17.5 + pos: -60.5,10.5 parent: 4812 - - uid: 11905 + - uid: 13520 components: - type: Transform - pos: -44.5,16.5 + pos: -59.5,9.5 parent: 4812 - - uid: 11906 + - uid: 13524 components: - type: Transform - pos: -43.5,16.5 + pos: -61.5,0.5 parent: 4812 - - uid: 11907 + - uid: 13542 components: - type: Transform - pos: -43.5,17.5 + pos: -61.5,1.5 + parent: 4812 + - uid: 13550 + components: + - type: Transform + pos: -60.5,0.5 + parent: 4812 + - uid: 13553 + components: + - type: Transform + pos: -58.5,9.5 + parent: 4812 + - uid: 13555 + components: + - type: Transform + pos: -59.5,0.5 + parent: 4812 + - uid: 13559 + components: + - type: Transform + pos: -58.5,10.5 parent: 4812 - proto: AtmosFixFreezerMarker entities: @@ -9644,54 +11048,54 @@ entities: parent: 4812 - proto: AtmosFixNitrogenMarker entities: - - uid: 11887 + - uid: 9192 components: - type: Transform - pos: -51.5,1.5 + pos: -42.5,16.5 parent: 4812 - - uid: 11888 + - uid: 9467 components: - type: Transform - pos: -52.5,1.5 + pos: -42.5,18.5 parent: 4812 - - uid: 11889 + - uid: 12661 components: - type: Transform - pos: -53.5,1.5 + pos: -42.5,17.5 parent: 4812 - proto: AtmosFixOxygenMarker entities: - - uid: 11890 + - uid: 11907 components: - type: Transform - pos: -51.5,3.5 + pos: -44.5,17.5 parent: 4812 - - uid: 11891 + - uid: 12121 components: - type: Transform - pos: -52.5,3.5 + pos: -44.5,16.5 parent: 4812 - - uid: 11892 + - uid: 12123 components: - type: Transform - pos: -53.5,3.5 + pos: -44.5,18.5 parent: 4812 - proto: AtmosFixPlasmaMarker entities: - - uid: 11908 + - uid: 11891 components: - type: Transform - pos: -51.5,9.5 + pos: -50.5,16.5 parent: 4812 - - uid: 11909 + - uid: 11902 components: - type: Transform - pos: -52.5,9.5 + pos: -50.5,17.5 parent: 4812 - - uid: 11910 + - uid: 11903 components: - type: Transform - pos: -53.5,9.5 + pos: -50.5,18.5 parent: 4812 - proto: Autolathe entities: @@ -9745,6 +11149,13 @@ entities: - type: Transform pos: -57.5,-12.5 parent: 4812 +- proto: BannerSyndicate + entities: + - uid: 9444 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 4812 - proto: Barricade entities: - uid: 8860 @@ -9779,14 +11190,21 @@ entities: parent: 4812 - type: BarSign current: TheAleNath -- proto: BaseGasCondenser +- proto: BaseComputer entities: - - uid: 3405 + - uid: 13498 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,1.5 parent: 4812 +- proto: BaseGasCondenser + entities: + - uid: 9503 + components: + - type: Transform + pos: -45.5,7.5 + parent: 4812 - proto: Beaker entities: - uid: 9030 @@ -10082,20 +11500,38 @@ entities: - type: Transform pos: 2.5,-25.5 parent: 4812 - - uid: 9496 + - uid: 9455 components: - type: Transform - pos: -44.5,18.5 + rot: -1.5707963267948966 rad + pos: -61.5,10.5 + parent: 4812 + - uid: 9828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,1.5 + parent: 4812 + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 4812 + - uid: 13287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 parent: 4812 - proto: BlockGameArcade entities: - - uid: 4549 + - uid: 2912 components: - type: Transform + rot: 1.5707963267948966 rad pos: 27.5,-0.5 parent: 4812 - - type: SpamEmitSound - enabled: False - uid: 5026 components: - type: Transform @@ -10125,13 +11561,6 @@ entities: - type: Transform pos: -22.624014,-17.30092 parent: 4812 -- proto: BookAtmosDistro - entities: - - uid: 10450 - components: - - type: Transform - pos: -22.389639,-17.51967 - parent: 4812 - proto: BookAtmosVentsMore entities: - uid: 12467 @@ -10355,6 +11784,13 @@ entities: - type: Transform pos: -18.4054,-14.319918 parent: 4812 +- proto: BoxFlare + entities: + - uid: 9501 + components: + - type: Transform + pos: 22.50444,17.647528 + parent: 4812 - proto: BoxFlashbang entities: - uid: 8369 @@ -10407,15 +11843,15 @@ entities: - type: Transform pos: 8.33344,26.616299 parent: 4812 - - uid: 4575 + - uid: 3443 components: - type: Transform - pos: 28.5,1.5 + pos: -21.5,22.5 parent: 4812 - - uid: 8267 + - uid: 4575 components: - type: Transform - pos: -21.5,23.5 + pos: 28.5,1.5 parent: 4812 - uid: 8295 components: @@ -10441,11 +11877,6 @@ entities: - type: Transform pos: 15.550373,35.549133 parent: 4812 - - uid: 4576 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 - proto: BoxHandcuff entities: - uid: 2727 @@ -10617,6 +12048,20 @@ entities: - type: Transform pos: -10.295721,17.222569 parent: 4812 +- proto: ButtonFrameCaution + entities: + - uid: 13615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,8.5 + parent: 4812 + - uid: 13616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 4812 - proto: CableApcExtension entities: - uid: 258 @@ -13249,26 +14694,6 @@ entities: - type: Transform pos: 23.5,14.5 parent: 4812 - - uid: 3178 - components: - - type: Transform - pos: 24.5,14.5 - parent: 4812 - - uid: 3179 - components: - - type: Transform - pos: 25.5,14.5 - parent: 4812 - - uid: 3180 - components: - - type: Transform - pos: 26.5,14.5 - parent: 4812 - - uid: 3181 - components: - - type: Transform - pos: 27.5,14.5 - parent: 4812 - uid: 3182 components: - type: Transform @@ -13594,6 +15019,66 @@ entities: - type: Transform pos: -9.5,-23.5 parent: 4812 + - uid: 4079 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 4812 + - uid: 4089 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 4812 + - uid: 4091 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 4812 + - uid: 4092 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 4812 + - uid: 4137 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 4812 + - uid: 4156 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 4812 + - uid: 4158 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 4812 + - uid: 4172 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 4812 + - uid: 4204 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 4812 + - uid: 4207 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 4812 + - uid: 4212 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 4812 + - uid: 4213 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 4812 - uid: 4257 components: - type: Transform @@ -13884,121 +15369,6 @@ entities: - type: Transform pos: 30.5,4.5 parent: 4812 - - uid: 4315 - components: - - type: Transform - pos: 31.5,2.5 - parent: 4812 - - uid: 4316 - components: - - type: Transform - pos: 32.5,2.5 - parent: 4812 - - uid: 4317 - components: - - type: Transform - pos: 33.5,2.5 - parent: 4812 - - uid: 4318 - components: - - type: Transform - pos: 31.5,0.5 - parent: 4812 - - uid: 4319 - components: - - type: Transform - pos: 32.5,0.5 - parent: 4812 - - uid: 4320 - components: - - type: Transform - pos: 33.5,0.5 - parent: 4812 - - uid: 4321 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 4812 - - uid: 4322 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 4812 - - uid: 4323 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 4812 - - uid: 4324 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 4812 - - uid: 4325 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 4812 - - uid: 4326 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 4812 - - uid: 4327 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 4812 - - uid: 4328 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 4812 - - uid: 4329 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 4812 - - uid: 4330 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 4812 - - uid: 4331 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 4812 - - uid: 4332 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 4812 - - uid: 4333 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 4812 - - uid: 4334 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 4812 - - uid: 4335 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 4812 - - uid: 4336 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 4812 - - uid: 4337 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 4812 - uid: 4338 components: - type: Transform @@ -16899,6 +18269,16 @@ entities: - type: Transform pos: -48.5,-16.5 parent: 4812 + - uid: 8485 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 4812 + - uid: 8723 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4812 - uid: 8908 components: - type: Transform @@ -17109,380 +18489,105 @@ entities: - type: Transform pos: 13.5,-22.5 parent: 4812 - - uid: 9050 - components: - - type: Transform - pos: -50.5,0.5 - parent: 4812 - uid: 9090 components: - type: Transform pos: 32.5,-29.5 parent: 4812 - - uid: 9288 - components: - - type: Transform - pos: -38.5,6.5 - parent: 4812 - - uid: 9321 - components: - - type: Transform - pos: -38.5,5.5 - parent: 4812 - - uid: 9322 - components: - - type: Transform - pos: -38.5,4.5 - parent: 4812 - - uid: 9323 - components: - - type: Transform - pos: -38.5,3.5 - parent: 4812 - - uid: 9324 - components: - - type: Transform - pos: -38.5,2.5 - parent: 4812 - - uid: 9325 - components: - - type: Transform - pos: -38.5,1.5 - parent: 4812 - - uid: 9326 - components: - - type: Transform - pos: -38.5,0.5 - parent: 4812 - - uid: 9327 - components: - - type: Transform - pos: -39.5,0.5 - parent: 4812 - - uid: 9328 - components: - - type: Transform - pos: -40.5,0.5 - parent: 4812 - - uid: 9329 - components: - - type: Transform - pos: -41.5,0.5 - parent: 4812 - - uid: 9330 - components: - - type: Transform - pos: -42.5,0.5 - parent: 4812 - - uid: 9331 - components: - - type: Transform - pos: -43.5,0.5 - parent: 4812 - - uid: 9332 - components: - - type: Transform - pos: -44.5,0.5 - parent: 4812 - - uid: 9333 - components: - - type: Transform - pos: -45.5,0.5 - parent: 4812 - - uid: 9334 - components: - - type: Transform - pos: -46.5,0.5 - parent: 4812 - - uid: 9335 - components: - - type: Transform - pos: -47.5,0.5 - parent: 4812 - - uid: 9336 - components: - - type: Transform - pos: -48.5,0.5 - parent: 4812 - - uid: 9337 - components: - - type: Transform - pos: -49.5,0.5 - parent: 4812 - - uid: 9338 - components: - - type: Transform - pos: -51.5,0.5 - parent: 4812 - - uid: 9339 - components: - - type: Transform - pos: -52.5,0.5 - parent: 4812 - - uid: 9340 - components: - - type: Transform - pos: -53.5,0.5 - parent: 4812 - - uid: 9341 - components: - - type: Transform - pos: -54.5,0.5 - parent: 4812 - - uid: 9342 - components: - - type: Transform - pos: -54.5,1.5 - parent: 4812 - - uid: 9343 - components: - - type: Transform - pos: -54.5,2.5 - parent: 4812 - - uid: 9344 - components: - - type: Transform - pos: -54.5,3.5 - parent: 4812 - - uid: 9345 - components: - - type: Transform - pos: -54.5,4.5 - parent: 4812 - - uid: 9346 - components: - - type: Transform - pos: -54.5,5.5 - parent: 4812 - - uid: 9347 - components: - - type: Transform - pos: -54.5,6.5 - parent: 4812 - - uid: 9348 - components: - - type: Transform - pos: -54.5,7.5 - parent: 4812 - - uid: 9349 - components: - - type: Transform - pos: -54.5,8.5 - parent: 4812 - - uid: 9350 + - uid: 9126 components: - type: Transform - pos: -54.5,9.5 + pos: -48.5,-3.5 parent: 4812 - - uid: 9351 + - uid: 9127 components: - type: Transform - pos: -54.5,10.5 + pos: -41.5,11.5 parent: 4812 - - uid: 9352 + - uid: 9257 components: - type: Transform pos: -54.5,11.5 parent: 4812 - - uid: 9353 - components: - - type: Transform - pos: -54.5,12.5 - parent: 4812 - - uid: 9354 - components: - - type: Transform - pos: -53.5,12.5 - parent: 4812 - - uid: 9355 - components: - - type: Transform - pos: -52.5,12.5 - parent: 4812 - - uid: 9356 - components: - - type: Transform - pos: -51.5,12.5 - parent: 4812 - - uid: 9357 - components: - - type: Transform - pos: -50.5,12.5 - parent: 4812 - - uid: 9358 - components: - - type: Transform - pos: -49.5,12.5 - parent: 4812 - - uid: 9359 - components: - - type: Transform - pos: -48.5,13.5 - parent: 4812 - - uid: 9360 - components: - - type: Transform - pos: -48.5,12.5 - parent: 4812 - - uid: 9361 - components: - - type: Transform - pos: -48.5,11.5 - parent: 4812 - - uid: 9362 - components: - - type: Transform - pos: -48.5,10.5 - parent: 4812 - - uid: 9363 - components: - - type: Transform - pos: -48.5,9.5 - parent: 4812 - - uid: 9364 - components: - - type: Transform - pos: -48.5,8.5 - parent: 4812 - - uid: 9365 - components: - - type: Transform - pos: -48.5,7.5 - parent: 4812 - - uid: 9366 - components: - - type: Transform - pos: -48.5,6.5 - parent: 4812 - - uid: 9367 - components: - - type: Transform - pos: -48.5,5.5 - parent: 4812 - - uid: 9368 - components: - - type: Transform - pos: -48.5,4.5 - parent: 4812 - - uid: 9369 - components: - - type: Transform - pos: -48.5,3.5 - parent: 4812 - - uid: 9370 - components: - - type: Transform - pos: -48.5,2.5 - parent: 4812 - - uid: 9371 - components: - - type: Transform - pos: -48.5,1.5 - parent: 4812 - - uid: 9372 - components: - - type: Transform - pos: -48.5,-0.5 - parent: 4812 - - uid: 9373 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 4812 - - uid: 9374 - components: - - type: Transform - pos: -48.5,-2.5 - parent: 4812 - - uid: 9375 - components: - - type: Transform - pos: -47.5,13.5 - parent: 4812 - - uid: 9376 + - uid: 9264 components: - type: Transform - pos: -46.5,13.5 + pos: -44.5,8.5 parent: 4812 - - uid: 9377 + - uid: 9279 components: - type: Transform - pos: -45.5,13.5 + pos: -41.5,14.5 parent: 4812 - - uid: 9378 + - uid: 9288 components: - type: Transform - pos: -44.5,13.5 + pos: -38.5,6.5 parent: 4812 - - uid: 9379 + - uid: 9304 components: - type: Transform - pos: -43.5,13.5 + pos: -41.5,10.5 parent: 4812 - - uid: 9380 + - uid: 9307 components: - type: Transform - pos: -42.5,13.5 + pos: -41.5,6.5 parent: 4812 - - uid: 9381 + - uid: 9312 components: - type: Transform pos: -41.5,13.5 parent: 4812 - - uid: 9382 - components: - - type: Transform - pos: -44.5,1.5 - parent: 4812 - - uid: 9383 + - uid: 9321 components: - type: Transform - pos: -44.5,2.5 + pos: -38.5,5.5 parent: 4812 - - uid: 9384 + - uid: 9322 components: - type: Transform - pos: -44.5,3.5 + pos: -38.5,4.5 parent: 4812 - - uid: 9385 + - uid: 9323 components: - type: Transform - pos: -44.5,4.5 + pos: -38.5,3.5 parent: 4812 - - uid: 9386 + - uid: 9324 components: - type: Transform - pos: -44.5,5.5 + pos: -38.5,2.5 parent: 4812 - - uid: 9387 + - uid: 9325 components: - type: Transform - pos: -44.5,6.5 + pos: -38.5,1.5 parent: 4812 - - uid: 9388 + - uid: 9326 components: - type: Transform - pos: -44.5,7.5 + pos: -38.5,0.5 parent: 4812 - - uid: 9389 + - uid: 9327 components: - type: Transform - pos: -44.5,8.5 + pos: -39.5,0.5 parent: 4812 - - uid: 9390 + - uid: 9332 components: - type: Transform - pos: -44.5,10.5 + pos: -41.5,12.5 parent: 4812 - - uid: 9391 + - uid: 9361 components: - type: Transform - pos: -44.5,9.5 + pos: -41.5,8.5 parent: 4812 - - uid: 9392 + - uid: 9372 components: - type: Transform - pos: -44.5,11.5 + pos: -41.5,9.5 parent: 4812 - uid: 9393 components: @@ -17554,30 +18659,10 @@ entities: - type: Transform pos: -39.5,5.5 parent: 4812 - - uid: 9407 - components: - - type: Transform - pos: -40.5,5.5 - parent: 4812 - - uid: 9408 - components: - - type: Transform - pos: -41.5,5.5 - parent: 4812 - - uid: 9409 - components: - - type: Transform - pos: -42.5,5.5 - parent: 4812 - - uid: 9410 - components: - - type: Transform - pos: -43.5,11.5 - parent: 4812 - - uid: 9411 + - uid: 9451 components: - type: Transform - pos: -42.5,11.5 + pos: -42.5,0.5 parent: 4812 - uid: 9456 components: @@ -17587,87 +18672,42 @@ entities: - uid: 9458 components: - type: Transform - pos: -50.5,11.5 - parent: 4812 - - uid: 9459 - components: - - type: Transform - pos: -50.5,10.5 - parent: 4812 - - uid: 9460 - components: - - type: Transform - pos: -50.5,9.5 - parent: 4812 - - uid: 9461 - components: - - type: Transform - pos: -50.5,8.5 - parent: 4812 - - uid: 9462 - components: - - type: Transform - pos: -50.5,7.5 - parent: 4812 - - uid: 9463 - components: - - type: Transform - pos: -50.5,6.5 - parent: 4812 - - uid: 9464 - components: - - type: Transform - pos: -50.5,5.5 + pos: 23.5,15.5 parent: 4812 - - uid: 9465 + - uid: 9488 components: - type: Transform - pos: -50.5,4.5 + pos: -41.5,0.5 parent: 4812 - - uid: 9466 + - uid: 9490 components: - type: Transform - pos: -50.5,3.5 + pos: -40.5,0.5 parent: 4812 - - uid: 9467 + - uid: 9499 components: - type: Transform - pos: -50.5,2.5 + pos: 25.5,16.5 parent: 4812 - - uid: 9468 + - uid: 9500 components: - type: Transform - pos: -50.5,1.5 + pos: 23.5,16.5 parent: 4812 - uid: 9512 components: - type: Transform pos: -36.5,-1.5 parent: 4812 - - uid: 9523 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 4812 - - uid: 9525 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 4812 - - uid: 9526 - components: - - type: Transform - pos: -47.5,-2.5 - parent: 4812 - - uid: 9527 + - uid: 9513 components: - type: Transform - pos: -47.5,-3.5 + pos: -41.5,7.5 parent: 4812 - - uid: 9528 + - uid: 9523 components: - type: Transform - pos: -47.5,-4.5 + pos: 17.5,-16.5 parent: 4812 - uid: 9529 components: @@ -17724,6 +18764,11 @@ entities: - type: Transform pos: -31.5,19.5 parent: 4812 + - uid: 9666 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 4812 - uid: 9694 components: - type: Transform @@ -17744,60 +18789,35 @@ entities: - type: Transform pos: -36.5,-5.5 parent: 4812 - - uid: 9708 - components: - - type: Transform - pos: -42.5,14.5 - parent: 4812 - - uid: 9709 - components: - - type: Transform - pos: -42.5,15.5 - parent: 4812 - - uid: 9710 - components: - - type: Transform - pos: -42.5,16.5 - parent: 4812 - - uid: 9711 - components: - - type: Transform - pos: -42.5,17.5 - parent: 4812 - - uid: 9712 - components: - - type: Transform - pos: -43.5,15.5 - parent: 4812 - - uid: 9713 + - uid: 9715 components: - type: Transform - pos: -44.5,15.5 + pos: 24.5,15.5 parent: 4812 - - uid: 9714 + - uid: 9757 components: - type: Transform - pos: -45.5,15.5 + pos: 47.5,-4.5 parent: 4812 - - uid: 9715 + - uid: 9758 components: - type: Transform - pos: -46.5,15.5 + pos: 47.5,0.5 parent: 4812 - - uid: 9716 + - uid: 9759 components: - type: Transform - pos: -46.5,16.5 + pos: 47.5,-5.5 parent: 4812 - - uid: 9717 + - uid: 9842 components: - type: Transform - pos: -46.5,17.5 + pos: -43.5,0.5 parent: 4812 - - uid: 9718 + - uid: 9844 components: - type: Transform - pos: -46.5,18.5 + pos: -43.5,8.5 parent: 4812 - uid: 10041 components: @@ -18039,16 +19059,6 @@ entities: - type: Transform pos: -40.5,-15.5 parent: 4812 - - uid: 10090 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 4812 - - uid: 10091 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 4812 - uid: 10092 components: - type: Transform @@ -19164,6 +20174,16 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 4812 + - uid: 11737 + components: + - type: Transform + pos: -43.5,4.5 + parent: 4812 + - uid: 11738 + components: + - type: Transform + pos: -43.5,2.5 + parent: 4812 - uid: 11919 components: - type: Transform @@ -19189,9929 +20209,13717 @@ entities: - type: Transform pos: -28.5,-23.5 parent: 4812 - - uid: 12629 + - uid: 12540 components: - type: Transform - pos: 26.5,13.5 + pos: 49.5,-3.5 parent: 4812 -- proto: CableApcStack - entities: - - uid: 6196 + - uid: 12669 components: - type: Transform - pos: 7.451914,-16.53358 + pos: 47.5,-3.5 parent: 4812 - - uid: 6249 + - uid: 12691 components: - type: Transform - pos: 13.4315815,-23.512243 + pos: 41.5,-2.5 parent: 4812 - - uid: 8585 + - uid: 12730 components: - type: Transform - pos: -16.671284,7.8180285 + pos: 38.5,-4.5 parent: 4812 - - uid: 11952 + - uid: 12731 components: - type: Transform - pos: -10.655096,15.8788185 + pos: 38.5,-3.5 parent: 4812 - - uid: 11953 + - uid: 12732 components: - type: Transform - pos: -10.655096,15.8788185 + pos: 38.5,-2.5 parent: 4812 -- proto: CableHV - entities: - - uid: 902 + - uid: 12733 components: - type: Transform - pos: 8.5,4.5 + pos: 37.5,-2.5 parent: 4812 - - uid: 943 + - uid: 12734 components: - type: Transform - pos: -14.5,7.5 + pos: 36.5,-2.5 parent: 4812 - - uid: 944 + - uid: 12735 components: - type: Transform - pos: -14.5,8.5 + pos: 35.5,-2.5 parent: 4812 - - uid: 945 + - uid: 12736 components: - type: Transform - pos: -14.5,9.5 + pos: 34.5,-2.5 parent: 4812 - - uid: 946 + - uid: 12737 components: - type: Transform - pos: -14.5,10.5 + pos: 33.5,-2.5 parent: 4812 - - uid: 947 + - uid: 12738 components: - type: Transform - pos: -14.5,11.5 + pos: 30.5,-3.5 parent: 4812 - - uid: 948 + - uid: 12739 components: - type: Transform - pos: -14.5,12.5 + pos: 30.5,-4.5 parent: 4812 - - uid: 949 + - uid: 12740 components: - type: Transform - pos: -14.5,13.5 + pos: 30.5,-5.5 parent: 4812 - - uid: 950 + - uid: 12741 components: - type: Transform - pos: -13.5,13.5 + pos: 30.5,-6.5 parent: 4812 - - uid: 951 + - uid: 12742 components: - type: Transform - pos: -12.5,13.5 + pos: 30.5,-7.5 parent: 4812 - - uid: 952 + - uid: 12743 components: - type: Transform - pos: -11.5,13.5 + pos: 39.5,-2.5 parent: 4812 - - uid: 953 + - uid: 12744 components: - type: Transform - pos: -10.5,13.5 + pos: 40.5,-2.5 parent: 4812 - - uid: 954 + - uid: 12749 components: - type: Transform - pos: -9.5,13.5 + pos: 42.5,-2.5 parent: 4812 - - uid: 955 + - uid: 12754 components: - type: Transform - pos: -8.5,13.5 + pos: 43.5,-2.5 parent: 4812 - - uid: 956 + - uid: 12904 components: - type: Transform - pos: -7.5,13.5 + pos: 60.5,-2.5 parent: 4812 - - uid: 957 + - uid: 12905 components: - type: Transform - pos: -6.5,13.5 + pos: 61.5,-2.5 parent: 4812 - - uid: 958 + - uid: 12906 components: - type: Transform - pos: -5.5,13.5 + pos: 54.5,-2.5 parent: 4812 - - uid: 959 + - uid: 12907 components: - type: Transform - pos: -4.5,13.5 + pos: 62.5,-2.5 parent: 4812 - - uid: 960 + - uid: 12908 components: - type: Transform - pos: -3.5,13.5 + pos: 62.5,-3.5 parent: 4812 - - uid: 961 + - uid: 12909 components: - type: Transform - pos: -2.5,13.5 + pos: 62.5,-1.5 parent: 4812 - - uid: 962 + - uid: 12910 components: - type: Transform - pos: -1.5,13.5 + pos: 55.5,-5.5 parent: 4812 - - uid: 964 + - uid: 12911 components: - type: Transform - pos: -0.5,14.5 + pos: 63.5,-1.5 parent: 4812 - - uid: 965 + - uid: 12913 components: - type: Transform - pos: 0.5,14.5 + pos: 57.5,-5.5 parent: 4812 - - uid: 966 + - uid: 12914 components: - type: Transform - pos: 1.5,14.5 + pos: 57.5,-3.5 parent: 4812 - - uid: 967 + - uid: 12915 components: - type: Transform - pos: 2.5,14.5 + pos: 55.5,-1.5 parent: 4812 - - uid: 968 + - uid: 12918 components: - type: Transform - pos: 2.5,13.5 + pos: 59.5,-2.5 parent: 4812 - - uid: 969 + - uid: 12919 components: - type: Transform - pos: 2.5,12.5 + pos: 64.5,-3.5 parent: 4812 - - uid: 970 + - uid: 12921 components: - type: Transform - pos: 2.5,11.5 + pos: 55.5,-3.5 parent: 4812 - - uid: 1003 + - uid: 12922 components: - type: Transform - pos: 7.5,4.5 + pos: 63.5,-3.5 parent: 4812 - - uid: 1367 + - uid: 12923 components: - type: Transform - pos: 6.5,4.5 + pos: 55.5,-4.5 parent: 4812 - - uid: 1368 + - uid: 12924 components: - type: Transform - pos: 5.5,4.5 + pos: 64.5,-1.5 parent: 4812 - - uid: 2080 + - uid: 12925 components: - type: Transform - pos: 6.5,31.5 + pos: 57.5,-4.5 parent: 4812 - - uid: 2081 + - uid: 12982 components: - type: Transform - pos: 6.5,32.5 + pos: 25.5,14.5 parent: 4812 - - uid: 2082 + - uid: 12984 components: - type: Transform - pos: 5.5,32.5 + pos: 25.5,15.5 parent: 4812 - - uid: 2083 + - uid: 12985 components: - type: Transform - pos: 4.5,32.5 + pos: 26.5,15.5 parent: 4812 - - uid: 2084 + - uid: 12986 components: - type: Transform - pos: 3.5,32.5 + pos: 27.5,15.5 parent: 4812 - - uid: 2085 + - uid: 12987 components: - type: Transform - pos: 3.5,31.5 + pos: 28.5,15.5 parent: 4812 - - uid: 2086 + - uid: 12988 components: - type: Transform - pos: 3.5,30.5 + pos: 29.5,15.5 parent: 4812 - - uid: 2087 + - uid: 13038 components: - type: Transform - pos: 3.5,29.5 + pos: 55.5,-0.5 parent: 4812 - - uid: 2088 + - uid: 13039 components: - type: Transform - pos: 3.5,28.5 + pos: 49.5,-0.5 parent: 4812 - - uid: 2089 + - uid: 13040 components: - type: Transform - pos: 3.5,27.5 + pos: 58.5,-2.5 parent: 4812 - - uid: 2090 + - uid: 13041 components: - type: Transform - pos: 3.5,26.5 + pos: 56.5,-2.5 parent: 4812 - - uid: 2091 + - uid: 13042 components: - type: Transform - pos: 3.5,25.5 + pos: 57.5,-2.5 parent: 4812 - - uid: 2092 + - uid: 13046 components: - type: Transform - pos: 3.5,24.5 + pos: 55.5,0.5 parent: 4812 - - uid: 2093 + - uid: 13047 components: - type: Transform - pos: 3.5,23.5 + pos: 57.5,0.5 parent: 4812 - - uid: 2094 + - uid: 13049 components: - type: Transform - pos: 3.5,22.5 + pos: 55.5,-2.5 parent: 4812 - - uid: 2095 + - uid: 13051 components: - type: Transform - pos: 3.5,21.5 + pos: 49.5,0.5 parent: 4812 - - uid: 2096 + - uid: 13184 components: - type: Transform - pos: 3.5,20.5 + pos: 49.5,-2.5 parent: 4812 - - uid: 2097 + - uid: 13187 components: - type: Transform - pos: 3.5,19.5 + pos: 52.5,-2.5 parent: 4812 - - uid: 2098 + - uid: 13188 components: - type: Transform - pos: 2.5,19.5 + pos: 51.5,-2.5 parent: 4812 - - uid: 2099 + - uid: 13197 components: - type: Transform - pos: 1.5,19.5 + pos: 30.5,15.5 parent: 4812 - - uid: 2100 + - uid: 13198 components: - type: Transform - pos: 0.5,19.5 + pos: 31.5,15.5 parent: 4812 - - uid: 2101 + - uid: 13199 components: - type: Transform - pos: -0.5,19.5 + pos: 32.5,15.5 parent: 4812 - - uid: 2102 + - uid: 13201 components: - type: Transform - pos: -1.5,19.5 + pos: 33.5,15.5 parent: 4812 - - uid: 2103 + - uid: 13202 components: - type: Transform - pos: -1.5,18.5 + pos: 34.5,15.5 parent: 4812 - - uid: 2104 + - uid: 13203 components: - type: Transform - pos: -1.5,17.5 + pos: 35.5,15.5 parent: 4812 - - uid: 2105 + - uid: 13250 components: - type: Transform - pos: -1.5,16.5 + pos: -41.5,15.5 parent: 4812 - - uid: 2106 + - uid: 13251 components: - type: Transform - pos: -1.5,15.5 + pos: -42.5,15.5 parent: 4812 - - uid: 2107 + - uid: 13254 components: - type: Transform - pos: -1.5,14.5 + pos: -43.5,15.5 parent: 4812 - - uid: 2108 + - uid: 13263 components: - type: Transform - pos: 3.5,33.5 + pos: -44.5,15.5 parent: 4812 - - uid: 2109 + - uid: 13267 components: - type: Transform - pos: 3.5,34.5 + pos: -45.5,15.5 parent: 4812 - - uid: 2110 + - uid: 13291 components: - type: Transform - pos: 3.5,35.5 + pos: -46.5,15.5 parent: 4812 - - uid: 2111 + - uid: 13292 components: - type: Transform - pos: 4.5,35.5 + pos: -47.5,15.5 parent: 4812 - - uid: 2112 + - uid: 13295 components: - type: Transform - pos: 4.5,34.5 + pos: -48.5,15.5 parent: 4812 - - uid: 2113 + - uid: 13296 components: - type: Transform - pos: 2.5,34.5 + pos: -49.5,15.5 parent: 4812 - - uid: 2114 + - uid: 13297 components: - type: Transform - pos: 1.5,34.5 + pos: -50.5,15.5 parent: 4812 - - uid: 2115 + - uid: 13298 components: - type: Transform - pos: 1.5,35.5 + pos: -51.5,15.5 parent: 4812 - - uid: 2116 + - uid: 13299 components: - type: Transform - pos: 1.5,36.5 + pos: -52.5,15.5 parent: 4812 - - uid: 2117 + - uid: 13300 components: - type: Transform - pos: 0.5,36.5 + pos: -53.5,15.5 parent: 4812 - - uid: 2118 + - uid: 13301 components: - type: Transform - pos: 0.5,35.5 + pos: -41.5,16.5 parent: 4812 - - uid: 2119 + - uid: 13302 components: - type: Transform - pos: -0.5,35.5 + pos: -41.5,17.5 parent: 4812 - - uid: 2120 + - uid: 13303 components: - type: Transform - pos: -1.5,35.5 + pos: -41.5,18.5 parent: 4812 - - uid: 2121 + - uid: 13304 components: - type: Transform - pos: -2.5,35.5 + pos: -41.5,19.5 parent: 4812 - - uid: 2122 + - uid: 13305 components: - type: Transform - pos: -3.5,35.5 + pos: -42.5,19.5 parent: 4812 - - uid: 2123 + - uid: 13306 components: - type: Transform - pos: -4.5,35.5 + pos: -43.5,19.5 parent: 4812 - - uid: 2124 + - uid: 13307 components: - type: Transform - pos: -5.5,35.5 + pos: -44.5,19.5 parent: 4812 - - uid: 2125 + - uid: 13308 components: - type: Transform - pos: -3.5,36.5 + pos: -45.5,19.5 parent: 4812 - - uid: 2126 + - uid: 13309 components: - type: Transform - pos: -2.5,36.5 + pos: -46.5,19.5 parent: 4812 - - uid: 2127 + - uid: 13310 components: - type: Transform - pos: -1.5,36.5 + pos: -47.5,19.5 parent: 4812 - - uid: 2128 + - uid: 13311 components: - type: Transform - pos: -5.5,36.5 + pos: -48.5,19.5 parent: 4812 - - uid: 2129 + - uid: 13312 components: - type: Transform - pos: -6.5,36.5 + pos: -49.5,19.5 parent: 4812 - - uid: 2130 + - uid: 13313 components: - type: Transform - pos: -6.5,35.5 + pos: -50.5,19.5 parent: 4812 - - uid: 2131 + - uid: 13314 components: - type: Transform - pos: 6.5,33.5 + pos: -51.5,19.5 parent: 4812 - - uid: 2132 + - uid: 13315 components: - type: Transform - pos: -6.5,34.5 + pos: -52.5,19.5 parent: 4812 - - uid: 2133 + - uid: 13316 components: - type: Transform - pos: -7.5,34.5 + pos: -53.5,19.5 parent: 4812 - - uid: 2134 + - uid: 13321 components: - type: Transform - pos: -8.5,34.5 + pos: 23.5,13.5 parent: 4812 - - uid: 2135 + - uid: 13357 components: - type: Transform - pos: -9.5,34.5 + pos: -45.5,6.5 parent: 4812 - - uid: 2136 + - uid: 13359 components: - type: Transform - pos: -9.5,35.5 + pos: -45.5,7.5 parent: 4812 - - uid: 2137 + - uid: 13360 components: - type: Transform - pos: -8.5,35.5 + pos: -42.5,8.5 parent: 4812 - - uid: 2138 + - uid: 13367 components: - type: Transform - pos: -8.5,33.5 + pos: -45.5,3.5 parent: 4812 - - uid: 2139 + - uid: 13368 components: - type: Transform - pos: -8.5,32.5 + pos: -45.5,5.5 parent: 4812 - - uid: 2140 + - uid: 13382 components: - type: Transform - pos: -9.5,32.5 + pos: -50.5,-4.5 parent: 4812 - - uid: 2839 + - uid: 13406 components: - type: Transform - pos: 13.5,32.5 + pos: 34.5,-4.5 parent: 4812 - - uid: 3047 + - uid: 13430 components: - type: Transform - pos: 12.5,32.5 + pos: -54.5,12.5 parent: 4812 - - uid: 3048 + - uid: 13446 components: - type: Transform - pos: 12.5,31.5 + pos: -54.5,8.5 parent: 4812 - - uid: 3049 + - uid: 13463 components: - type: Transform - pos: 12.5,30.5 + pos: -54.5,9.5 parent: 4812 - - uid: 3050 + - uid: 13464 components: - type: Transform - pos: 12.5,29.5 + pos: -42.5,-6.5 parent: 4812 - - uid: 3051 + - uid: 13465 components: - type: Transform - pos: 12.5,28.5 + pos: -43.5,-6.5 parent: 4812 - - uid: 3052 + - uid: 13466 components: - type: Transform - pos: 12.5,27.5 + pos: -43.5,-5.5 parent: 4812 - - uid: 3053 + - uid: 13467 components: - type: Transform - pos: 12.5,26.5 + pos: -43.5,-4.5 parent: 4812 - - uid: 3054 + - uid: 13468 components: - type: Transform - pos: 12.5,25.5 + pos: -43.5,-3.5 parent: 4812 - - uid: 3055 + - uid: 13469 components: - type: Transform - pos: 12.5,24.5 + pos: -44.5,-3.5 parent: 4812 - - uid: 3056 + - uid: 13470 components: - type: Transform - pos: 12.5,23.5 + pos: -45.5,-3.5 parent: 4812 - - uid: 3057 + - uid: 13471 components: - type: Transform - pos: 12.5,22.5 + pos: -46.5,-3.5 parent: 4812 - - uid: 3058 + - uid: 13472 components: - type: Transform - pos: 12.5,21.5 + pos: -47.5,-3.5 parent: 4812 - - uid: 3059 + - uid: 13499 components: - type: Transform - pos: 12.5,20.5 + pos: 34.5,-3.5 parent: 4812 - - uid: 3060 + - uid: 13510 components: - type: Transform - pos: 12.5,19.5 + pos: -43.5,3.5 parent: 4812 - - uid: 3061 + - uid: 13529 components: - type: Transform - pos: 4.5,19.5 + pos: -43.5,1.5 parent: 4812 - - uid: 3062 + - uid: 13562 components: - type: Transform - pos: 5.5,19.5 + pos: -45.5,8.5 parent: 4812 - - uid: 3063 + - uid: 13563 components: - type: Transform - pos: 6.5,19.5 + pos: -46.5,8.5 parent: 4812 - - uid: 3064 + - uid: 13564 components: - type: Transform - pos: 7.5,19.5 + pos: -47.5,8.5 parent: 4812 - - uid: 3065 + - uid: 13565 components: - type: Transform - pos: 8.5,19.5 + pos: -49.5,8.5 parent: 4812 - - uid: 3066 + - uid: 13566 components: - type: Transform - pos: 9.5,19.5 + pos: -48.5,8.5 parent: 4812 - - uid: 3067 + - uid: 13567 components: - type: Transform - pos: 10.5,19.5 + pos: -50.5,8.5 parent: 4812 - - uid: 3068 + - uid: 13568 components: - type: Transform - pos: 11.5,19.5 + pos: -51.5,8.5 parent: 4812 - - uid: 3069 + - uid: 13569 components: - type: Transform - pos: 3.5,11.5 + pos: -52.5,8.5 parent: 4812 - - uid: 3070 + - uid: 13570 components: - type: Transform - pos: 4.5,11.5 + pos: -53.5,8.5 parent: 4812 - - uid: 3071 + - uid: 13571 components: - type: Transform - pos: 5.5,11.5 + pos: -54.5,10.5 parent: 4812 - - uid: 3072 + - uid: 13572 components: - type: Transform - pos: 6.5,11.5 + pos: -53.5,6.5 parent: 4812 - - uid: 3073 + - uid: 13573 components: - type: Transform - pos: 7.5,11.5 + pos: -54.5,6.5 parent: 4812 - - uid: 3074 + - uid: 13574 components: - type: Transform - pos: 8.5,11.5 + pos: -52.5,6.5 parent: 4812 - - uid: 3075 + - uid: 13575 components: - type: Transform - pos: 9.5,11.5 + pos: -51.5,6.5 parent: 4812 - - uid: 3076 + - uid: 13576 components: - type: Transform - pos: 9.5,10.5 + pos: -50.5,6.5 parent: 4812 - - uid: 3077 + - uid: 13577 components: - type: Transform - pos: 9.5,9.5 + pos: -49.5,6.5 parent: 4812 - - uid: 3078 + - uid: 13578 components: - type: Transform - pos: 9.5,8.5 + pos: -48.5,6.5 parent: 4812 - - uid: 3079 + - uid: 13579 components: - type: Transform - pos: 9.5,7.5 + pos: -47.5,6.5 parent: 4812 - - uid: 3080 + - uid: 13580 components: - type: Transform - pos: 9.5,6.5 + pos: -47.5,5.5 parent: 4812 - - uid: 3081 + - uid: 13581 components: - type: Transform - pos: 9.5,5.5 + pos: -47.5,4.5 parent: 4812 - - uid: 3082 + - uid: 13582 components: - type: Transform - pos: 9.5,4.5 + pos: -47.5,3.5 parent: 4812 - - uid: 3083 + - uid: 13583 components: - type: Transform - pos: 9.5,3.5 + pos: -47.5,2.5 parent: 4812 - - uid: 3084 + - uid: 13584 components: - type: Transform - pos: 10.5,3.5 + pos: -47.5,1.5 parent: 4812 - - uid: 3085 + - uid: 13585 components: - type: Transform - pos: 11.5,3.5 + pos: -47.5,0.5 parent: 4812 - - uid: 3086 + - uid: 13586 components: - type: Transform - pos: 11.5,4.5 + pos: -48.5,0.5 parent: 4812 - - uid: 3087 + - uid: 13587 components: - type: Transform - pos: 11.5,5.5 + pos: -49.5,0.5 parent: 4812 - - uid: 3088 + - uid: 13588 components: - type: Transform - pos: 11.5,6.5 + pos: -50.5,0.5 parent: 4812 - - uid: 3089 + - uid: 13589 components: - type: Transform - pos: 11.5,7.5 + pos: -51.5,0.5 parent: 4812 - - uid: 3090 + - uid: 13590 components: - type: Transform - pos: 11.5,8.5 + pos: -52.5,0.5 parent: 4812 - - uid: 3091 + - uid: 13591 components: - type: Transform - pos: 11.5,9.5 + pos: -53.5,0.5 parent: 4812 - - uid: 3092 + - uid: 13592 components: - type: Transform - pos: 11.5,10.5 + pos: -54.5,0.5 parent: 4812 - - uid: 3093 + - uid: 13593 components: - type: Transform - pos: 11.5,11.5 + pos: -55.5,0.5 parent: 4812 - - uid: 3094 + - uid: 13594 components: - type: Transform - pos: 11.5,12.5 + pos: -56.5,0.5 parent: 4812 - - uid: 3095 + - uid: 13595 components: - type: Transform - pos: 11.5,13.5 + pos: -57.5,0.5 parent: 4812 - - uid: 3096 + - uid: 13597 components: - type: Transform - pos: 11.5,14.5 + pos: -55.5,5.5 parent: 4812 - - uid: 3097 + - uid: 13598 components: - type: Transform - pos: 11.5,15.5 + pos: -56.5,5.5 parent: 4812 - - uid: 3098 + - uid: 13599 components: - type: Transform - pos: 11.5,16.5 + pos: -57.5,5.5 parent: 4812 - - uid: 3099 + - uid: 13600 components: - type: Transform - pos: 11.5,17.5 + pos: -58.5,5.5 parent: 4812 - - uid: 3100 + - uid: 13601 components: - type: Transform - pos: 11.5,18.5 + pos: -58.5,4.5 parent: 4812 - - uid: 3789 + - uid: 13602 components: - type: Transform - pos: 14.5,46.5 + pos: -59.5,4.5 parent: 4812 - - uid: 3790 + - uid: 13603 components: - type: Transform - pos: 14.5,45.5 + pos: -60.5,4.5 parent: 4812 - - uid: 3791 + - uid: 13604 components: - type: Transform - pos: 14.5,44.5 + pos: -60.5,5.5 parent: 4812 - - uid: 3792 + - uid: 13660 components: - type: Transform - pos: 14.5,47.5 + pos: -43.5,5.5 parent: 4812 - - uid: 3793 + - uid: 13661 components: - type: Transform - pos: 13.5,47.5 + pos: -44.5,5.5 parent: 4812 - - uid: 3853 + - uid: 13673 components: - type: Transform - pos: 13.5,45.5 + pos: -55.5,6.5 parent: 4812 - - uid: 3854 +- proto: CableApcStack + entities: + - uid: 6196 components: - type: Transform - pos: 12.5,45.5 + pos: 7.451914,-16.53358 parent: 4812 - - uid: 3855 + - uid: 6249 components: - type: Transform - pos: 11.5,45.5 + pos: 13.4315815,-23.512243 parent: 4812 - - uid: 3856 + - uid: 8585 components: - type: Transform - pos: 10.5,45.5 + pos: -16.671284,7.8180285 parent: 4812 - - uid: 3857 + - uid: 11952 components: - type: Transform - pos: 10.5,46.5 + pos: -10.655096,15.8788185 parent: 4812 - - uid: 3858 + - uid: 11953 components: - type: Transform - pos: 10.5,47.5 + pos: -10.655096,15.8788185 parent: 4812 - - uid: 3859 +- proto: CableHV + entities: + - uid: 741 components: - type: Transform - pos: 10.5,48.5 + pos: -39.5,3.5 parent: 4812 - - uid: 3860 + - uid: 902 components: - type: Transform - pos: 10.5,49.5 + pos: 8.5,4.5 parent: 4812 - - uid: 3861 + - uid: 943 components: - type: Transform - pos: 10.5,50.5 + pos: -14.5,7.5 parent: 4812 - - uid: 3862 + - uid: 944 components: - type: Transform - pos: 11.5,50.5 + pos: -14.5,8.5 parent: 4812 - - uid: 3863 + - uid: 945 components: - type: Transform - pos: 12.5,50.5 + pos: -14.5,9.5 parent: 4812 - - uid: 3864 + - uid: 946 components: - type: Transform - pos: 12.5,51.5 + pos: -14.5,10.5 parent: 4812 - - uid: 3865 + - uid: 947 components: - type: Transform - pos: 12.5,52.5 + pos: -14.5,11.5 parent: 4812 - - uid: 3866 + - uid: 948 components: - type: Transform - pos: 12.5,53.5 + pos: -14.5,12.5 parent: 4812 - - uid: 3867 + - uid: 949 components: - type: Transform - pos: 12.5,54.5 + pos: -14.5,13.5 parent: 4812 - - uid: 3868 + - uid: 950 components: - type: Transform - pos: 12.5,55.5 + pos: -13.5,13.5 parent: 4812 - - uid: 3869 + - uid: 951 components: - type: Transform - pos: 9.5,50.5 + pos: -12.5,13.5 parent: 4812 - - uid: 3870 + - uid: 952 components: - type: Transform - pos: 8.5,50.5 + pos: -11.5,13.5 parent: 4812 - - uid: 3871 + - uid: 953 components: - type: Transform - pos: 8.5,51.5 + pos: -10.5,13.5 parent: 4812 - - uid: 3872 + - uid: 954 components: - type: Transform - pos: 8.5,52.5 + pos: -9.5,13.5 parent: 4812 - - uid: 3873 + - uid: 955 components: - type: Transform - pos: 8.5,53.5 + pos: -8.5,13.5 parent: 4812 - - uid: 3874 + - uid: 956 components: - type: Transform - pos: 8.5,54.5 + pos: -7.5,13.5 parent: 4812 - - uid: 3875 + - uid: 957 components: - type: Transform - pos: 8.5,55.5 + pos: -6.5,13.5 parent: 4812 - - uid: 3876 + - uid: 958 components: - type: Transform - pos: 9.5,55.5 + pos: -5.5,13.5 parent: 4812 - - uid: 3877 + - uid: 959 components: - type: Transform - pos: 11.5,55.5 + pos: -4.5,13.5 parent: 4812 - - uid: 3878 + - uid: 960 components: - type: Transform - pos: 10.5,55.5 + pos: -3.5,13.5 parent: 4812 - - uid: 3879 + - uid: 961 components: - type: Transform - pos: 10.5,56.5 + pos: -2.5,13.5 parent: 4812 - - uid: 4235 + - uid: 962 components: - type: Transform - pos: 12.5,3.5 + pos: -1.5,13.5 parent: 4812 - - uid: 4236 + - uid: 964 components: - type: Transform - pos: 13.5,3.5 + pos: -0.5,14.5 parent: 4812 - - uid: 4237 + - uid: 965 components: - type: Transform - pos: 14.5,3.5 + pos: 0.5,14.5 parent: 4812 - - uid: 4238 + - uid: 966 components: - type: Transform - pos: 15.5,3.5 + pos: 1.5,14.5 parent: 4812 - - uid: 4239 + - uid: 967 components: - type: Transform - pos: 15.5,4.5 + pos: 2.5,14.5 parent: 4812 - - uid: 4240 + - uid: 968 components: - type: Transform - pos: 17.5,4.5 + pos: 2.5,13.5 parent: 4812 - - uid: 4241 + - uid: 969 components: - type: Transform - pos: 16.5,4.5 + pos: 2.5,12.5 parent: 4812 - - uid: 4242 + - uid: 970 components: - type: Transform - pos: 18.5,4.5 + pos: 2.5,11.5 parent: 4812 - - uid: 4243 + - uid: 1003 components: - type: Transform - pos: 18.5,3.5 + pos: 7.5,4.5 parent: 4812 - - uid: 4244 + - uid: 1367 components: - type: Transform - pos: 18.5,2.5 + pos: 6.5,4.5 parent: 4812 - - uid: 4245 + - uid: 1368 components: - type: Transform - pos: 17.5,2.5 + pos: 5.5,4.5 parent: 4812 - - uid: 5014 + - uid: 2080 components: - type: Transform - pos: -26.5,-30.5 + pos: 6.5,31.5 parent: 4812 - - uid: 5914 + - uid: 2081 components: - type: Transform - pos: 16.5,-30.5 + pos: 6.5,32.5 parent: 4812 - - uid: 5915 + - uid: 2082 components: - type: Transform - pos: 15.5,-30.5 + pos: 5.5,32.5 parent: 4812 - - uid: 5916 + - uid: 2083 components: - type: Transform - pos: 15.5,-31.5 + pos: 4.5,32.5 parent: 4812 - - uid: 5917 + - uid: 2084 components: - type: Transform - pos: 15.5,-32.5 + pos: 3.5,32.5 parent: 4812 - - uid: 5918 + - uid: 2085 components: - type: Transform - pos: 15.5,-33.5 + pos: 3.5,31.5 parent: 4812 - - uid: 5919 + - uid: 2086 components: - type: Transform - pos: 16.5,-33.5 + pos: 3.5,30.5 parent: 4812 - - uid: 5920 + - uid: 2087 components: - type: Transform - pos: 17.5,-33.5 + pos: 3.5,29.5 parent: 4812 - - uid: 5921 + - uid: 2088 components: - type: Transform - pos: 18.5,-33.5 + pos: 3.5,28.5 parent: 4812 - - uid: 5922 + - uid: 2089 components: - type: Transform - pos: 18.5,-32.5 + pos: 3.5,27.5 parent: 4812 - - uid: 5923 + - uid: 2090 components: - type: Transform - pos: 18.5,-31.5 + pos: 3.5,26.5 parent: 4812 - - uid: 5924 + - uid: 2091 components: - type: Transform - pos: 18.5,-30.5 + pos: 3.5,25.5 parent: 4812 - - uid: 5925 + - uid: 2092 components: - type: Transform - pos: 18.5,-29.5 + pos: 3.5,24.5 parent: 4812 - - uid: 5926 + - uid: 2093 components: - type: Transform - pos: 18.5,-28.5 + pos: 3.5,23.5 parent: 4812 - - uid: 5927 + - uid: 2094 components: - type: Transform - pos: 18.5,-27.5 + pos: 3.5,22.5 parent: 4812 - - uid: 5928 + - uid: 2095 components: - type: Transform - pos: 18.5,-26.5 + pos: 3.5,21.5 parent: 4812 - - uid: 5929 + - uid: 2096 components: - type: Transform - pos: 18.5,-25.5 + pos: 3.5,20.5 parent: 4812 - - uid: 5930 + - uid: 2097 components: - type: Transform - pos: 18.5,-24.5 + pos: 3.5,19.5 parent: 4812 - - uid: 5931 + - uid: 2098 components: - type: Transform - pos: 18.5,-23.5 + pos: 2.5,19.5 parent: 4812 - - uid: 5932 + - uid: 2099 components: - type: Transform - pos: 18.5,-22.5 + pos: 1.5,19.5 parent: 4812 - - uid: 5933 + - uid: 2100 components: - type: Transform - pos: 18.5,-21.5 + pos: 0.5,19.5 parent: 4812 - - uid: 5934 + - uid: 2101 components: - type: Transform - pos: 18.5,-20.5 + pos: -0.5,19.5 parent: 4812 - - uid: 5935 + - uid: 2102 components: - type: Transform - pos: 17.5,-20.5 + pos: -1.5,19.5 parent: 4812 - - uid: 5936 + - uid: 2103 components: - type: Transform - pos: 16.5,-20.5 + pos: -1.5,18.5 parent: 4812 - - uid: 5937 + - uid: 2104 components: - type: Transform - pos: 16.5,-19.5 + pos: -1.5,17.5 parent: 4812 - - uid: 5938 + - uid: 2105 components: - type: Transform - pos: 16.5,-18.5 + pos: -1.5,16.5 parent: 4812 - - uid: 5939 + - uid: 2106 components: - type: Transform - pos: 16.5,-17.5 + pos: -1.5,15.5 parent: 4812 - - uid: 5940 + - uid: 2107 components: - type: Transform - pos: 16.5,-16.5 + pos: -1.5,14.5 parent: 4812 - - uid: 5941 + - uid: 2108 components: - type: Transform - pos: 16.5,-15.5 + pos: 3.5,33.5 parent: 4812 - - uid: 5942 + - uid: 2109 components: - type: Transform - pos: 16.5,-14.5 + pos: 3.5,34.5 parent: 4812 - - uid: 5943 + - uid: 2110 components: - type: Transform - pos: 15.5,-14.5 + pos: 3.5,35.5 parent: 4812 - - uid: 5944 + - uid: 2111 components: - type: Transform - pos: 14.5,-14.5 + pos: 4.5,35.5 parent: 4812 - - uid: 5945 + - uid: 2112 components: - type: Transform - pos: 14.5,-14.5 + pos: 4.5,34.5 parent: 4812 - - uid: 5946 + - uid: 2113 components: - type: Transform - pos: 13.5,-14.5 + pos: 2.5,34.5 parent: 4812 - - uid: 5947 + - uid: 2114 components: - type: Transform - pos: 12.5,-14.5 + pos: 1.5,34.5 parent: 4812 - - uid: 5948 + - uid: 2115 components: - type: Transform - pos: 12.5,-13.5 + pos: 1.5,35.5 parent: 4812 - - uid: 5949 + - uid: 2116 components: - type: Transform - pos: 12.5,-12.5 + pos: 1.5,36.5 parent: 4812 - - uid: 5950 + - uid: 2117 components: - type: Transform - pos: 12.5,-11.5 + pos: 0.5,36.5 parent: 4812 - - uid: 5951 + - uid: 2118 components: - type: Transform - pos: 11.5,-11.5 + pos: 0.5,35.5 parent: 4812 - - uid: 5952 + - uid: 2119 components: - type: Transform - pos: 10.5,-11.5 + pos: -0.5,35.5 parent: 4812 - - uid: 5953 + - uid: 2120 components: - type: Transform - pos: 9.5,-11.5 + pos: -1.5,35.5 parent: 4812 - - uid: 5954 + - uid: 2121 components: - type: Transform - pos: 8.5,-11.5 + pos: -2.5,35.5 parent: 4812 - - uid: 5955 + - uid: 2122 components: - type: Transform - pos: 8.5,-10.5 + pos: -3.5,35.5 parent: 4812 - - uid: 5956 + - uid: 2123 components: - type: Transform - pos: 8.5,-9.5 + pos: -4.5,35.5 parent: 4812 - - uid: 5957 + - uid: 2124 components: - type: Transform - pos: 9.5,-9.5 + pos: -5.5,35.5 parent: 4812 - - uid: 5958 + - uid: 2125 components: - type: Transform - pos: 9.5,-8.5 + pos: -3.5,36.5 parent: 4812 - - uid: 5959 + - uid: 2126 components: - type: Transform - pos: 9.5,-7.5 + pos: -2.5,36.5 parent: 4812 - - uid: 5960 + - uid: 2127 components: - type: Transform - pos: 9.5,-6.5 + pos: -1.5,36.5 parent: 4812 - - uid: 5961 + - uid: 2128 components: - type: Transform - pos: 9.5,-5.5 + pos: -5.5,36.5 parent: 4812 - - uid: 5962 + - uid: 2129 components: - type: Transform - pos: 9.5,-4.5 + pos: -6.5,36.5 parent: 4812 - - uid: 5963 + - uid: 2130 components: - type: Transform - pos: 9.5,-3.5 + pos: -6.5,35.5 parent: 4812 - - uid: 5964 + - uid: 2131 components: - type: Transform - pos: 9.5,-2.5 + pos: 6.5,33.5 parent: 4812 - - uid: 5965 + - uid: 2132 components: - type: Transform - pos: 9.5,-1.5 + pos: -6.5,34.5 parent: 4812 - - uid: 5966 + - uid: 2133 components: - type: Transform - pos: 9.5,-0.5 + pos: -7.5,34.5 parent: 4812 - - uid: 5967 + - uid: 2134 components: - type: Transform - pos: 9.5,0.5 + pos: -8.5,34.5 parent: 4812 - - uid: 5968 + - uid: 2135 components: - type: Transform - pos: 9.5,1.5 + pos: -9.5,34.5 parent: 4812 - - uid: 5969 + - uid: 2136 components: - type: Transform - pos: 9.5,2.5 + pos: -9.5,35.5 parent: 4812 - - uid: 6020 + - uid: 2137 components: - type: Transform - pos: 16.5,-31.5 + pos: -8.5,35.5 parent: 4812 - - uid: 6519 + - uid: 2138 components: - type: Transform - pos: -25.5,-30.5 + pos: -8.5,33.5 parent: 4812 - - uid: 6918 + - uid: 2139 components: - type: Transform - pos: -8.5,-30.5 + pos: -8.5,32.5 parent: 4812 - - uid: 6919 + - uid: 2140 components: - type: Transform - pos: -8.5,-31.5 + pos: -9.5,32.5 parent: 4812 - - uid: 6920 + - uid: 2839 components: - type: Transform - pos: -8.5,-32.5 + pos: 13.5,32.5 parent: 4812 - - uid: 6921 + - uid: 2969 components: - type: Transform - pos: -10.5,-32.5 + pos: -39.5,4.5 parent: 4812 - - uid: 6922 + - uid: 3047 components: - type: Transform - pos: -9.5,-32.5 + pos: 12.5,32.5 parent: 4812 - - uid: 6923 + - uid: 3048 components: - type: Transform - pos: -10.5,-33.5 + pos: 12.5,31.5 parent: 4812 - - uid: 6924 + - uid: 3049 components: - type: Transform - pos: -10.5,-34.5 + pos: 12.5,30.5 parent: 4812 - - uid: 6925 + - uid: 3050 components: - type: Transform - pos: -9.5,-34.5 + pos: 12.5,29.5 parent: 4812 - - uid: 6926 + - uid: 3051 components: - type: Transform - pos: -8.5,-34.5 + pos: 12.5,28.5 parent: 4812 - - uid: 6927 + - uid: 3052 components: - type: Transform - pos: -7.5,-34.5 + pos: 12.5,27.5 parent: 4812 - - uid: 6928 + - uid: 3053 components: - type: Transform - pos: -6.5,-34.5 + pos: 12.5,26.5 parent: 4812 - - uid: 6929 + - uid: 3054 components: - type: Transform - pos: -5.5,-34.5 + pos: 12.5,25.5 parent: 4812 - - uid: 6930 + - uid: 3055 components: - type: Transform - pos: -4.5,-34.5 + pos: 12.5,24.5 parent: 4812 - - uid: 6931 + - uid: 3056 components: - type: Transform - pos: -3.5,-34.5 + pos: 12.5,23.5 parent: 4812 - - uid: 6932 + - uid: 3057 components: - type: Transform - pos: -2.5,-34.5 + pos: 12.5,22.5 parent: 4812 - - uid: 6933 + - uid: 3058 components: - type: Transform - pos: -1.5,-34.5 + pos: 12.5,21.5 parent: 4812 - - uid: 6934 + - uid: 3059 components: - type: Transform - pos: -0.5,-34.5 + pos: 12.5,20.5 parent: 4812 - - uid: 6935 + - uid: 3060 components: - type: Transform - pos: 0.5,-34.5 + pos: 12.5,19.5 parent: 4812 - - uid: 6936 + - uid: 3061 components: - type: Transform - pos: 1.5,-34.5 + pos: 4.5,19.5 parent: 4812 - - uid: 6937 + - uid: 3062 components: - type: Transform - pos: 1.5,-33.5 + pos: 5.5,19.5 parent: 4812 - - uid: 6938 + - uid: 3063 components: - type: Transform - pos: 1.5,-32.5 + pos: 6.5,19.5 parent: 4812 - - uid: 6939 + - uid: 3064 components: - type: Transform - pos: 1.5,-31.5 + pos: 7.5,19.5 parent: 4812 - - uid: 6940 + - uid: 3065 components: - type: Transform - pos: 1.5,-30.5 + pos: 8.5,19.5 parent: 4812 - - uid: 6941 + - uid: 3066 components: - type: Transform - pos: 2.5,-30.5 + pos: 9.5,19.5 parent: 4812 - - uid: 6942 + - uid: 3067 components: - type: Transform - pos: 3.5,-30.5 + pos: 10.5,19.5 parent: 4812 - - uid: 6943 + - uid: 3068 components: - type: Transform - pos: 4.5,-30.5 + pos: 11.5,19.5 parent: 4812 - - uid: 6944 + - uid: 3069 components: - type: Transform - pos: 5.5,-30.5 + pos: 3.5,11.5 parent: 4812 - - uid: 6945 + - uid: 3070 components: - type: Transform - pos: 6.5,-30.5 + pos: 4.5,11.5 parent: 4812 - - uid: 6946 + - uid: 3071 components: - type: Transform - pos: 7.5,-30.5 + pos: 5.5,11.5 parent: 4812 - - uid: 6947 + - uid: 3072 components: - type: Transform - pos: 8.5,-30.5 + pos: 6.5,11.5 parent: 4812 - - uid: 6948 + - uid: 3073 components: - type: Transform - pos: 9.5,-30.5 + pos: 7.5,11.5 parent: 4812 - - uid: 6949 + - uid: 3074 components: - type: Transform - pos: 10.5,-30.5 + pos: 8.5,11.5 parent: 4812 - - uid: 6950 + - uid: 3075 components: - type: Transform - pos: 11.5,-30.5 + pos: 9.5,11.5 parent: 4812 - - uid: 6951 + - uid: 3076 components: - type: Transform - pos: 12.5,-30.5 + pos: 9.5,10.5 parent: 4812 - - uid: 6952 + - uid: 3077 components: - type: Transform - pos: 12.5,-31.5 + pos: 9.5,9.5 parent: 4812 - - uid: 6953 + - uid: 3078 components: - type: Transform - pos: 12.5,-32.5 + pos: 9.5,8.5 parent: 4812 - - uid: 6954 + - uid: 3079 components: - type: Transform - pos: 12.5,-33.5 + pos: 9.5,7.5 parent: 4812 - - uid: 6955 + - uid: 3080 components: - type: Transform - pos: 13.5,-33.5 + pos: 9.5,6.5 parent: 4812 - - uid: 6956 + - uid: 3081 components: - type: Transform - pos: 14.5,-33.5 + pos: 9.5,5.5 parent: 4812 - - uid: 6957 + - uid: 3082 components: - type: Transform - pos: 1.5,-29.5 + pos: 9.5,4.5 parent: 4812 - - uid: 6958 + - uid: 3083 components: - type: Transform - pos: 1.5,-28.5 + pos: 9.5,3.5 parent: 4812 - - uid: 6959 + - uid: 3084 components: - type: Transform - pos: 1.5,-27.5 + pos: 10.5,3.5 parent: 4812 - - uid: 6960 + - uid: 3085 components: - type: Transform - pos: 1.5,-26.5 + pos: 11.5,3.5 parent: 4812 - - uid: 6961 + - uid: 3086 components: - type: Transform - pos: 1.5,-25.5 + pos: 11.5,4.5 parent: 4812 - - uid: 6962 + - uid: 3087 components: - type: Transform - pos: 1.5,-24.5 + pos: 11.5,5.5 parent: 4812 - - uid: 6963 + - uid: 3088 components: - type: Transform - pos: 1.5,-23.5 + pos: 11.5,6.5 parent: 4812 - - uid: 6964 + - uid: 3089 components: - type: Transform - pos: 1.5,-22.5 + pos: 11.5,7.5 parent: 4812 - - uid: 6965 + - uid: 3090 components: - type: Transform - pos: 1.5,-21.5 + pos: 11.5,8.5 parent: 4812 - - uid: 6966 + - uid: 3091 components: - type: Transform - pos: 1.5,-20.5 + pos: 11.5,9.5 parent: 4812 - - uid: 6967 + - uid: 3092 components: - type: Transform - pos: 1.5,-19.5 + pos: 11.5,10.5 parent: 4812 - - uid: 6968 + - uid: 3093 components: - type: Transform - pos: 1.5,-18.5 + pos: 11.5,11.5 parent: 4812 - - uid: 6969 + - uid: 3094 components: - type: Transform - pos: 1.5,-17.5 + pos: 11.5,12.5 parent: 4812 - - uid: 6970 + - uid: 3095 components: - type: Transform - pos: 1.5,-16.5 + pos: 11.5,13.5 parent: 4812 - - uid: 6971 + - uid: 3096 components: - type: Transform - pos: 1.5,-15.5 + pos: 11.5,14.5 parent: 4812 - - uid: 6972 + - uid: 3097 components: - type: Transform - pos: 1.5,-14.5 + pos: 11.5,15.5 parent: 4812 - - uid: 6973 + - uid: 3098 components: - type: Transform - pos: 1.5,-13.5 + pos: 11.5,16.5 parent: 4812 - - uid: 6974 + - uid: 3099 components: - type: Transform - pos: 1.5,-12.5 + pos: 11.5,17.5 parent: 4812 - - uid: 6975 + - uid: 3100 components: - type: Transform - pos: 1.5,-11.5 + pos: 11.5,18.5 parent: 4812 - - uid: 6976 + - uid: 3259 components: - type: Transform - pos: 2.5,-11.5 + pos: -38.5,2.5 parent: 4812 - - uid: 6977 + - uid: 3270 components: - type: Transform - pos: 3.5,-11.5 + pos: -37.5,2.5 parent: 4812 - - uid: 6978 + - uid: 3789 components: - type: Transform - pos: 4.5,-11.5 + pos: 14.5,46.5 parent: 4812 - - uid: 6979 + - uid: 3790 components: - type: Transform - pos: 5.5,-11.5 + pos: 14.5,45.5 parent: 4812 - - uid: 6980 + - uid: 3791 components: - type: Transform - pos: 6.5,-11.5 + pos: 14.5,44.5 parent: 4812 - - uid: 6981 + - uid: 3792 components: - type: Transform - pos: 7.5,-11.5 + pos: 14.5,47.5 parent: 4812 - - uid: 7280 + - uid: 3793 components: - type: Transform - pos: -27.5,-30.5 + pos: 13.5,47.5 parent: 4812 - - uid: 7282 + - uid: 3853 components: - type: Transform - pos: -28.5,-30.5 + pos: 13.5,45.5 parent: 4812 - - uid: 7283 + - uid: 3854 components: - type: Transform - pos: -29.5,-30.5 + pos: 12.5,45.5 parent: 4812 - - uid: 7958 + - uid: 3855 components: - type: Transform - pos: -37.5,8.5 + pos: 11.5,45.5 parent: 4812 - - uid: 7959 + - uid: 3856 components: - type: Transform - pos: -37.5,7.5 + pos: 10.5,45.5 parent: 4812 - - uid: 7960 + - uid: 3857 components: - type: Transform - pos: -36.5,7.5 + pos: 10.5,46.5 parent: 4812 - - uid: 7961 + - uid: 3858 components: - type: Transform - pos: -35.5,7.5 + pos: 10.5,47.5 parent: 4812 - - uid: 7962 + - uid: 3859 components: - type: Transform - pos: -34.5,7.5 + pos: 10.5,48.5 parent: 4812 - - uid: 7963 + - uid: 3860 components: - type: Transform - pos: -33.5,7.5 + pos: 10.5,49.5 parent: 4812 - - uid: 7964 + - uid: 3861 components: - type: Transform - pos: -32.5,7.5 + pos: 10.5,50.5 parent: 4812 - - uid: 7965 + - uid: 3862 components: - type: Transform - pos: -31.5,7.5 + pos: 11.5,50.5 parent: 4812 - - uid: 7966 + - uid: 3863 components: - type: Transform - pos: -30.5,7.5 + pos: 12.5,50.5 parent: 4812 - - uid: 7967 + - uid: 3864 components: - type: Transform - pos: -29.5,7.5 + pos: 12.5,51.5 parent: 4812 - - uid: 7968 + - uid: 3865 components: - type: Transform - pos: -29.5,8.5 + pos: 12.5,52.5 parent: 4812 - - uid: 7969 + - uid: 3866 components: - type: Transform - pos: -28.5,8.5 + pos: 12.5,53.5 parent: 4812 - - uid: 7970 + - uid: 3867 components: - type: Transform - pos: -27.5,8.5 + pos: 12.5,54.5 parent: 4812 - - uid: 7971 + - uid: 3868 components: - type: Transform - pos: -26.5,8.5 + pos: 12.5,55.5 parent: 4812 - - uid: 7972 + - uid: 3869 components: - type: Transform - pos: -25.5,8.5 + pos: 9.5,50.5 parent: 4812 - - uid: 7973 + - uid: 3870 components: - type: Transform - pos: -24.5,8.5 + pos: 8.5,50.5 parent: 4812 - - uid: 7974 + - uid: 3871 components: - type: Transform - pos: -23.5,8.5 + pos: 8.5,51.5 parent: 4812 - - uid: 7975 + - uid: 3872 components: - type: Transform - pos: -22.5,8.5 + pos: 8.5,52.5 parent: 4812 - - uid: 7976 + - uid: 3873 components: - type: Transform - pos: -22.5,9.5 + pos: 8.5,53.5 parent: 4812 - - uid: 7977 + - uid: 3874 components: - type: Transform - pos: -22.5,10.5 + pos: 8.5,54.5 parent: 4812 - - uid: 7978 + - uid: 3875 components: - type: Transform - pos: -21.5,10.5 + pos: 8.5,55.5 parent: 4812 - - uid: 7979 + - uid: 3876 components: - type: Transform - pos: -20.5,10.5 + pos: 9.5,55.5 parent: 4812 - - uid: 7980 + - uid: 3877 components: - type: Transform - pos: -19.5,10.5 + pos: 11.5,55.5 parent: 4812 - - uid: 7981 + - uid: 3878 components: - type: Transform - pos: -18.5,10.5 + pos: 10.5,55.5 parent: 4812 - - uid: 7982 + - uid: 3879 components: - type: Transform - pos: -17.5,10.5 + pos: 10.5,56.5 parent: 4812 - - uid: 7983 + - uid: 4235 components: - type: Transform - pos: -16.5,10.5 + pos: 12.5,3.5 parent: 4812 - - uid: 7984 + - uid: 4236 components: - type: Transform - pos: -15.5,10.5 + pos: 13.5,3.5 parent: 4812 - - uid: 8725 + - uid: 4237 components: - type: Transform - pos: -45.5,-2.5 + pos: 14.5,3.5 parent: 4812 - - uid: 8738 + - uid: 4238 components: - type: Transform - pos: -45.5,-3.5 + pos: 15.5,3.5 parent: 4812 - - uid: 8739 + - uid: 4239 components: - type: Transform - pos: -44.5,-3.5 + pos: 15.5,4.5 parent: 4812 - - uid: 8740 + - uid: 4240 components: - type: Transform - pos: -44.5,-2.5 + pos: 17.5,4.5 parent: 4812 - - uid: 8741 + - uid: 4241 components: - type: Transform - pos: -45.5,-1.5 + pos: 16.5,4.5 parent: 4812 - - uid: 8742 + - uid: 4242 components: - type: Transform - pos: -44.5,-1.5 + pos: 18.5,4.5 parent: 4812 - - uid: 8743 + - uid: 4243 components: - type: Transform - pos: -43.5,-1.5 + pos: 18.5,3.5 parent: 4812 - - uid: 8744 + - uid: 4244 components: - type: Transform - pos: -42.5,-1.5 + pos: 18.5,2.5 parent: 4812 - - uid: 8745 + - uid: 4245 components: - type: Transform - pos: -42.5,-2.5 + pos: 17.5,2.5 parent: 4812 - - uid: 8746 + - uid: 5014 components: - type: Transform - pos: -42.5,-3.5 + pos: -26.5,-30.5 parent: 4812 - - uid: 8747 + - uid: 5914 components: - type: Transform - pos: -42.5,-4.5 + pos: 16.5,-30.5 parent: 4812 - - uid: 8748 + - uid: 5915 components: - type: Transform - pos: -44.5,-4.5 + pos: 15.5,-30.5 parent: 4812 - - uid: 8749 + - uid: 5916 components: - type: Transform - pos: -44.5,-5.5 + pos: 15.5,-31.5 parent: 4812 - - uid: 8750 + - uid: 5917 components: - type: Transform - pos: -42.5,-5.5 + pos: 15.5,-32.5 parent: 4812 - - uid: 8755 + - uid: 5918 components: - type: Transform - pos: -43.5,-2.5 + pos: 15.5,-33.5 parent: 4812 - - uid: 9732 + - uid: 5919 components: - type: Transform - pos: -42.5,-6.5 + pos: 16.5,-33.5 parent: 4812 - - uid: 9733 + - uid: 5920 components: - type: Transform - pos: -42.5,-7.5 + pos: 17.5,-33.5 parent: 4812 - - uid: 9734 + - uid: 5921 components: - type: Transform - pos: -42.5,-8.5 + pos: 18.5,-33.5 parent: 4812 - - uid: 9735 + - uid: 5922 components: - type: Transform - pos: -41.5,-8.5 + pos: 18.5,-32.5 parent: 4812 - - uid: 9736 + - uid: 5923 components: - type: Transform - pos: -40.5,-8.5 + pos: 18.5,-31.5 parent: 4812 - - uid: 9737 + - uid: 5924 components: - type: Transform - pos: -39.5,-8.5 + pos: 18.5,-30.5 parent: 4812 - - uid: 9738 + - uid: 5925 components: - type: Transform - pos: -38.5,-8.5 + pos: 18.5,-29.5 parent: 4812 - - uid: 9739 + - uid: 5926 components: - type: Transform - pos: -37.5,-8.5 + pos: 18.5,-28.5 parent: 4812 - - uid: 9740 + - uid: 5927 components: - type: Transform - pos: -36.5,-8.5 + pos: 18.5,-27.5 parent: 4812 - - uid: 9741 + - uid: 5928 components: - type: Transform - pos: -35.5,-8.5 + pos: 18.5,-26.5 parent: 4812 - - uid: 9742 + - uid: 5929 components: - type: Transform - pos: -34.5,-8.5 + pos: 18.5,-25.5 parent: 4812 - - uid: 9743 + - uid: 5930 components: - type: Transform - pos: -33.5,-8.5 + pos: 18.5,-24.5 parent: 4812 - - uid: 9744 + - uid: 5931 components: - type: Transform - pos: -32.5,-8.5 + pos: 18.5,-23.5 parent: 4812 - - uid: 9745 + - uid: 5932 components: - type: Transform - pos: -31.5,-8.5 + pos: 18.5,-22.5 parent: 4812 - - uid: 9746 + - uid: 5933 components: - type: Transform - pos: -30.5,-8.5 + pos: 18.5,-21.5 parent: 4812 - - uid: 9747 + - uid: 5934 components: - type: Transform - pos: -29.5,-8.5 + pos: 18.5,-20.5 parent: 4812 - - uid: 9748 + - uid: 5935 components: - type: Transform - pos: -29.5,-7.5 + pos: 17.5,-20.5 parent: 4812 - - uid: 9749 + - uid: 5936 components: - type: Transform - pos: -29.5,-6.5 + pos: 16.5,-20.5 parent: 4812 - - uid: 9750 + - uid: 5937 components: - type: Transform - pos: -29.5,-5.5 + pos: 16.5,-19.5 parent: 4812 - - uid: 9751 + - uid: 5938 components: - type: Transform - pos: -38.5,7.5 + pos: 16.5,-18.5 parent: 4812 - - uid: 9752 + - uid: 5939 components: - type: Transform - pos: -39.5,7.5 + pos: 16.5,-17.5 parent: 4812 - - uid: 9753 + - uid: 5940 components: - type: Transform - pos: -39.5,5.5 + pos: 16.5,-16.5 parent: 4812 - - uid: 9754 + - uid: 5941 components: - type: Transform - pos: -38.5,5.5 + pos: 16.5,-15.5 parent: 4812 - - uid: 9755 + - uid: 5942 components: - type: Transform - pos: -39.5,6.5 + pos: 16.5,-14.5 parent: 4812 - - uid: 9756 + - uid: 5943 components: - type: Transform - pos: -37.5,5.5 + pos: 15.5,-14.5 parent: 4812 - - uid: 9757 + - uid: 5944 components: - type: Transform - pos: -36.5,5.5 + pos: 14.5,-14.5 parent: 4812 - - uid: 9758 + - uid: 5945 components: - type: Transform - pos: -36.5,4.5 + pos: 14.5,-14.5 parent: 4812 - - uid: 9759 + - uid: 5946 components: - type: Transform - pos: -36.5,3.5 + pos: 13.5,-14.5 parent: 4812 - - uid: 9760 + - uid: 5947 components: - type: Transform - pos: -36.5,2.5 + pos: 12.5,-14.5 parent: 4812 - - uid: 9761 + - uid: 5948 components: - type: Transform - pos: -36.5,1.5 + pos: 12.5,-13.5 parent: 4812 - - uid: 9762 + - uid: 5949 components: - type: Transform - pos: -36.5,0.5 + pos: 12.5,-12.5 parent: 4812 - - uid: 9763 + - uid: 5950 components: - type: Transform - pos: -36.5,-0.5 + pos: 12.5,-11.5 parent: 4812 - - uid: 9764 + - uid: 5951 components: - type: Transform - pos: -36.5,-1.5 + pos: 11.5,-11.5 parent: 4812 - - uid: 9765 + - uid: 5952 components: - type: Transform - pos: -36.5,-2.5 + pos: 10.5,-11.5 parent: 4812 - - uid: 9766 + - uid: 5953 components: - type: Transform - pos: -36.5,-3.5 + pos: 9.5,-11.5 parent: 4812 - - uid: 9767 + - uid: 5954 components: - type: Transform - pos: -36.5,-4.5 + pos: 8.5,-11.5 parent: 4812 - - uid: 9768 + - uid: 5955 components: - type: Transform - pos: -36.5,-5.5 + pos: 8.5,-10.5 parent: 4812 - - uid: 9769 + - uid: 5956 components: - type: Transform - pos: -36.5,-6.5 + pos: 8.5,-9.5 parent: 4812 - - uid: 9770 + - uid: 5957 components: - type: Transform - pos: -36.5,-7.5 + pos: 9.5,-9.5 parent: 4812 - - uid: 9771 + - uid: 5958 components: - type: Transform - pos: -33.5,-7.5 + pos: 9.5,-8.5 parent: 4812 - - uid: 9772 + - uid: 5959 components: - type: Transform - pos: -33.5,-6.5 + pos: 9.5,-7.5 parent: 4812 - - uid: 9773 + - uid: 5960 components: - type: Transform - pos: -33.5,-5.5 + pos: 9.5,-6.5 parent: 4812 - - uid: 9774 + - uid: 5961 components: - type: Transform - pos: -33.5,-4.5 + pos: 9.5,-5.5 parent: 4812 - - uid: 9775 + - uid: 5962 components: - type: Transform - pos: -33.5,-3.5 + pos: 9.5,-4.5 parent: 4812 - - uid: 9776 + - uid: 5963 components: - type: Transform - pos: -33.5,-2.5 + pos: 9.5,-3.5 parent: 4812 - - uid: 9777 + - uid: 5964 components: - type: Transform - pos: -32.5,-2.5 + pos: 9.5,-2.5 parent: 4812 - - uid: 9778 + - uid: 5965 components: - type: Transform - pos: -31.5,-2.5 + pos: 9.5,-1.5 parent: 4812 - - uid: 9779 + - uid: 5966 components: - type: Transform - pos: -30.5,-2.5 + pos: 9.5,-0.5 parent: 4812 - - uid: 9780 + - uid: 5967 components: - type: Transform - pos: -29.5,-2.5 + pos: 9.5,0.5 parent: 4812 - - uid: 9781 + - uid: 5968 components: - type: Transform - pos: -28.5,-2.5 + pos: 9.5,1.5 parent: 4812 - - uid: 9782 + - uid: 5969 components: - type: Transform - pos: -27.5,-2.5 + pos: 9.5,2.5 parent: 4812 - - uid: 9783 + - uid: 6020 components: - type: Transform - pos: -26.5,-2.5 + pos: 16.5,-31.5 parent: 4812 - - uid: 9784 + - uid: 6519 components: - type: Transform - pos: -25.5,-2.5 + pos: -25.5,-30.5 parent: 4812 - - uid: 9785 + - uid: 6587 components: - type: Transform - pos: -25.5,-3.5 + pos: -50.5,3.5 parent: 4812 - - uid: 9786 + - uid: 6638 components: - type: Transform - pos: -25.5,-4.5 + pos: -48.5,-0.5 parent: 4812 - - uid: 9787 + - uid: 6918 components: - type: Transform - pos: -24.5,-4.5 + pos: -8.5,-30.5 parent: 4812 - - uid: 9788 + - uid: 6919 components: - type: Transform - pos: -23.5,-4.5 + pos: -8.5,-31.5 parent: 4812 - - uid: 9789 + - uid: 6920 components: - type: Transform - pos: -22.5,-4.5 + pos: -8.5,-32.5 parent: 4812 - - uid: 9790 + - uid: 6921 components: - type: Transform - pos: -21.5,-4.5 + pos: -10.5,-32.5 parent: 4812 - - uid: 9791 + - uid: 6922 components: - type: Transform - pos: -20.5,-4.5 + pos: -9.5,-32.5 parent: 4812 - - uid: 9792 + - uid: 6923 components: - type: Transform - pos: -20.5,-3.5 + pos: -10.5,-33.5 parent: 4812 - - uid: 9793 + - uid: 6924 components: - type: Transform - pos: -19.5,-3.5 + pos: -10.5,-34.5 parent: 4812 - - uid: 9794 + - uid: 6925 components: - type: Transform - pos: -18.5,-3.5 + pos: -9.5,-34.5 parent: 4812 - - uid: 9795 + - uid: 6926 components: - type: Transform - pos: -17.5,-3.5 + pos: -8.5,-34.5 parent: 4812 - - uid: 9796 + - uid: 6927 components: - type: Transform - pos: -16.5,-3.5 + pos: -7.5,-34.5 parent: 4812 - - uid: 9797 + - uid: 6928 components: - type: Transform - pos: -15.5,-3.5 + pos: -6.5,-34.5 parent: 4812 - - uid: 9798 + - uid: 6929 components: - type: Transform - pos: -14.5,-3.5 + pos: -5.5,-34.5 parent: 4812 - - uid: 9799 + - uid: 6930 components: - type: Transform - pos: -13.5,-3.5 + pos: -4.5,-34.5 parent: 4812 - - uid: 9800 + - uid: 6931 components: - type: Transform - pos: -12.5,-3.5 + pos: -3.5,-34.5 parent: 4812 - - uid: 9801 + - uid: 6932 components: - type: Transform - pos: -12.5,-2.5 + pos: -2.5,-34.5 parent: 4812 - - uid: 9802 + - uid: 6933 components: - type: Transform - pos: -12.5,-1.5 + pos: -1.5,-34.5 parent: 4812 - - uid: 9803 + - uid: 6934 components: - type: Transform - pos: -12.5,-0.5 + pos: -0.5,-34.5 parent: 4812 - - uid: 9804 + - uid: 6935 components: - type: Transform - pos: -12.5,0.5 + pos: 0.5,-34.5 parent: 4812 - - uid: 9805 + - uid: 6936 components: - type: Transform - pos: -12.5,1.5 + pos: 1.5,-34.5 parent: 4812 - - uid: 9806 + - uid: 6937 components: - type: Transform - pos: -12.5,2.5 + pos: 1.5,-33.5 parent: 4812 - - uid: 9807 + - uid: 6938 components: - type: Transform - pos: -12.5,3.5 + pos: 1.5,-32.5 parent: 4812 - - uid: 9808 + - uid: 6939 components: - type: Transform - pos: -12.5,4.5 + pos: 1.5,-31.5 parent: 4812 - - uid: 9809 + - uid: 6940 components: - type: Transform - pos: -12.5,5.5 + pos: 1.5,-30.5 parent: 4812 - - uid: 9810 + - uid: 6941 components: - type: Transform - pos: -12.5,6.5 + pos: 2.5,-30.5 parent: 4812 - - uid: 9811 + - uid: 6942 components: - type: Transform - pos: -12.5,7.5 + pos: 3.5,-30.5 parent: 4812 - - uid: 9812 + - uid: 6943 components: - type: Transform - pos: -12.5,8.5 + pos: 4.5,-30.5 parent: 4812 - - uid: 9813 + - uid: 6944 components: - type: Transform - pos: -12.5,9.5 + pos: 5.5,-30.5 parent: 4812 - - uid: 9814 + - uid: 6945 components: - type: Transform - pos: -12.5,10.5 + pos: 6.5,-30.5 parent: 4812 - - uid: 9815 + - uid: 6946 components: - type: Transform - pos: -12.5,11.5 + pos: 7.5,-30.5 parent: 4812 - - uid: 9816 + - uid: 6947 components: - type: Transform - pos: -12.5,12.5 + pos: 8.5,-30.5 parent: 4812 - - uid: 9913 + - uid: 6948 components: - type: Transform - pos: -44.5,-6.5 + pos: 9.5,-30.5 parent: 4812 - - uid: 9914 + - uid: 6949 components: - type: Transform - pos: -44.5,-7.5 + pos: 10.5,-30.5 parent: 4812 - - uid: 9915 + - uid: 6950 components: - type: Transform - pos: -44.5,-8.5 + pos: 11.5,-30.5 parent: 4812 - - uid: 9916 + - uid: 6951 components: - type: Transform - pos: -44.5,-9.5 + pos: 12.5,-30.5 parent: 4812 - - uid: 9917 + - uid: 6952 components: - type: Transform - pos: -44.5,-10.5 + pos: 12.5,-31.5 parent: 4812 - - uid: 9918 + - uid: 6953 components: - type: Transform - pos: -44.5,-11.5 + pos: 12.5,-32.5 parent: 4812 - - uid: 9919 + - uid: 6954 components: - type: Transform - pos: -44.5,-12.5 + pos: 12.5,-33.5 parent: 4812 - - uid: 9920 + - uid: 6955 components: - type: Transform - pos: -43.5,-12.5 + pos: 13.5,-33.5 parent: 4812 - - uid: 9921 + - uid: 6956 components: - type: Transform - pos: -42.5,-12.5 + pos: 14.5,-33.5 parent: 4812 - - uid: 9922 + - uid: 6957 components: - type: Transform - pos: -41.5,-12.5 + pos: 1.5,-29.5 parent: 4812 - - uid: 9923 + - uid: 6958 components: - type: Transform - pos: -40.5,-12.5 + pos: 1.5,-28.5 parent: 4812 - - uid: 9924 + - uid: 6959 components: - type: Transform - pos: -40.5,-10.5 + pos: 1.5,-27.5 parent: 4812 - - uid: 9925 + - uid: 6960 components: - type: Transform - pos: -40.5,-11.5 + pos: 1.5,-26.5 parent: 4812 - - uid: 9926 + - uid: 6961 components: - type: Transform - pos: -40.5,-13.5 + pos: 1.5,-25.5 parent: 4812 - - uid: 9927 + - uid: 6962 components: - type: Transform - pos: -40.5,-14.5 + pos: 1.5,-24.5 parent: 4812 - - uid: 9928 + - uid: 6963 components: - type: Transform - pos: -40.5,-15.5 + pos: 1.5,-23.5 parent: 4812 - - uid: 9929 + - uid: 6964 components: - type: Transform - pos: -40.5,-16.5 + pos: 1.5,-22.5 parent: 4812 - - uid: 9930 + - uid: 6965 components: - type: Transform - pos: -40.5,-17.5 + pos: 1.5,-21.5 parent: 4812 - - uid: 9931 + - uid: 6966 components: - type: Transform - pos: -40.5,-18.5 + pos: 1.5,-20.5 parent: 4812 - - uid: 9960 + - uid: 6967 components: - type: Transform - pos: -48.5,-19.5 + pos: 1.5,-19.5 parent: 4812 - - uid: 9961 + - uid: 6968 components: - type: Transform - pos: -48.5,-20.5 + pos: 1.5,-18.5 parent: 4812 - - uid: 9962 + - uid: 6969 components: - type: Transform - pos: -47.5,-20.5 + pos: 1.5,-17.5 parent: 4812 - - uid: 9963 + - uid: 6970 components: - type: Transform - pos: -46.5,-20.5 + pos: 1.5,-16.5 parent: 4812 - - uid: 9964 + - uid: 6971 components: - type: Transform - pos: -45.5,-20.5 + pos: 1.5,-15.5 parent: 4812 - - uid: 9965 + - uid: 6972 components: - type: Transform - pos: -44.5,-20.5 + pos: 1.5,-14.5 parent: 4812 - - uid: 9966 + - uid: 6973 components: - type: Transform - pos: -43.5,-20.5 + pos: 1.5,-13.5 parent: 4812 - - uid: 9967 + - uid: 6974 components: - type: Transform - pos: -42.5,-20.5 + pos: 1.5,-12.5 parent: 4812 - - uid: 9974 + - uid: 6975 components: - type: Transform - pos: -36.5,-19.5 + pos: 1.5,-11.5 parent: 4812 - - uid: 9975 + - uid: 6976 components: - type: Transform - pos: -36.5,-18.5 + pos: 2.5,-11.5 parent: 4812 - - uid: 9976 + - uid: 6977 components: - type: Transform - pos: -36.5,-17.5 + pos: 3.5,-11.5 parent: 4812 - - uid: 9977 + - uid: 6978 components: - type: Transform - pos: -36.5,-16.5 + pos: 4.5,-11.5 parent: 4812 - - uid: 9978 + - uid: 6979 components: - type: Transform - pos: -36.5,-15.5 + pos: 5.5,-11.5 parent: 4812 - - uid: 9979 + - uid: 6980 components: - type: Transform - pos: -36.5,-14.5 + pos: 6.5,-11.5 parent: 4812 - - uid: 9980 + - uid: 6981 components: - type: Transform - pos: -36.5,-13.5 + pos: 7.5,-11.5 parent: 4812 - - uid: 9981 + - uid: 7280 components: - type: Transform - pos: -36.5,-12.5 + pos: -27.5,-30.5 parent: 4812 - - uid: 9982 + - uid: 7282 components: - type: Transform - pos: -36.5,-11.5 + pos: -28.5,-30.5 parent: 4812 - - uid: 9983 + - uid: 7283 components: - type: Transform - pos: -36.5,-10.5 + pos: -29.5,-30.5 parent: 4812 - - uid: 9984 + - uid: 7958 components: - type: Transform - pos: -36.5,-9.5 + pos: -37.5,8.5 parent: 4812 - - uid: 9995 + - uid: 7959 components: - type: Transform - pos: -41.5,-20.5 + pos: -37.5,7.5 parent: 4812 - - uid: 9996 + - uid: 7960 components: - type: Transform - pos: -40.5,-20.5 + pos: -36.5,7.5 parent: 4812 - - uid: 9997 + - uid: 7961 components: - type: Transform - pos: -39.5,-20.5 + pos: -35.5,7.5 parent: 4812 - - uid: 9998 + - uid: 7962 components: - type: Transform - pos: -38.5,-20.5 + pos: -34.5,7.5 parent: 4812 - - uid: 9999 + - uid: 7963 components: - type: Transform - pos: -37.5,-20.5 + pos: -33.5,7.5 parent: 4812 - - uid: 10000 + - uid: 7964 components: - type: Transform - pos: -36.5,-20.5 + pos: -32.5,7.5 parent: 4812 - - uid: 10159 + - uid: 7965 components: - type: Transform - pos: -56.5,-22.5 + pos: -31.5,7.5 parent: 4812 - - uid: 10160 + - uid: 7966 components: - type: Transform - pos: -55.5,-22.5 + pos: -30.5,7.5 parent: 4812 - - uid: 10161 + - uid: 7967 components: - type: Transform - pos: -54.5,-22.5 + pos: -29.5,7.5 parent: 4812 - - uid: 10162 + - uid: 7968 components: - type: Transform - pos: -53.5,-22.5 + pos: -29.5,8.5 parent: 4812 - - uid: 10163 + - uid: 7969 components: - type: Transform - pos: -53.5,-23.5 + pos: -28.5,8.5 parent: 4812 - - uid: 10164 + - uid: 7970 components: - type: Transform - pos: -53.5,-24.5 + pos: -27.5,8.5 parent: 4812 - - uid: 10168 + - uid: 7971 components: - type: Transform - pos: -53.5,-25.5 + pos: -26.5,8.5 parent: 4812 - - uid: 10169 + - uid: 7972 components: - type: Transform - pos: -52.5,-25.5 + pos: -25.5,8.5 parent: 4812 - - uid: 10170 + - uid: 7973 components: - type: Transform - pos: -51.5,-25.5 + pos: -24.5,8.5 parent: 4812 - - uid: 10171 + - uid: 7974 components: - type: Transform - pos: -51.5,-24.5 + pos: -23.5,8.5 parent: 4812 - - uid: 10172 + - uid: 7975 components: - type: Transform - pos: -51.5,-23.5 + pos: -22.5,8.5 parent: 4812 - - uid: 10173 + - uid: 7976 components: - type: Transform - pos: -51.5,-22.5 + pos: -22.5,9.5 parent: 4812 - - uid: 10174 + - uid: 7977 components: - type: Transform - pos: -50.5,-22.5 + pos: -22.5,10.5 parent: 4812 - - uid: 10175 + - uid: 7978 components: - type: Transform - pos: -49.5,-22.5 + pos: -21.5,10.5 parent: 4812 - - uid: 10176 + - uid: 7979 components: - type: Transform - pos: -48.5,-22.5 + pos: -20.5,10.5 parent: 4812 - - uid: 10177 + - uid: 7980 components: - type: Transform - pos: -47.5,-22.5 + pos: -19.5,10.5 parent: 4812 - - uid: 10178 + - uid: 7981 components: - type: Transform - pos: -46.5,-22.5 + pos: -18.5,10.5 parent: 4812 - - uid: 10179 + - uid: 7982 components: - type: Transform - pos: -45.5,-22.5 + pos: -17.5,10.5 parent: 4812 - - uid: 10180 + - uid: 7983 components: - type: Transform - pos: -45.5,-21.5 + pos: -16.5,10.5 parent: 4812 - - uid: 10181 + - uid: 7984 components: - type: Transform - pos: -50.5,-25.5 + pos: -15.5,10.5 parent: 4812 - - uid: 10225 + - uid: 8551 components: - type: Transform - pos: -57.5,-22.5 + pos: -52.5,3.5 parent: 4812 - - uid: 10226 + - uid: 8639 components: - type: Transform - pos: -59.5,-26.5 + pos: -48.5,3.5 parent: 4812 - - uid: 10227 + - uid: 8726 components: - type: Transform - pos: -59.5,-25.5 + pos: -48.5,2.5 parent: 4812 - - uid: 10228 + - uid: 8738 components: - type: Transform - pos: -59.5,-24.5 + pos: -45.5,-3.5 parent: 4812 - - uid: 10229 + - uid: 8739 components: - type: Transform - pos: -59.5,-23.5 + pos: -44.5,-3.5 parent: 4812 - - uid: 10230 + - uid: 8741 components: - type: Transform - pos: -59.5,-21.5 + pos: -45.5,-1.5 parent: 4812 - - uid: 10231 + - uid: 8742 components: - type: Transform - pos: -59.5,-20.5 + pos: -44.5,-1.5 parent: 4812 - - uid: 10232 + - uid: 8743 components: - type: Transform - pos: -59.5,-19.5 + pos: -43.5,-1.5 parent: 4812 - - uid: 10233 + - uid: 8744 components: - type: Transform - pos: -59.5,-18.5 + pos: -42.5,-1.5 parent: 4812 - - uid: 10234 + - uid: 8745 components: - type: Transform - pos: -61.5,-18.5 + pos: -42.5,-2.5 parent: 4812 - - uid: 10235 + - uid: 8746 components: - type: Transform - pos: -61.5,-19.5 + pos: -42.5,-3.5 parent: 4812 - - uid: 10236 + - uid: 8747 components: - type: Transform - pos: -61.5,-20.5 + pos: -42.5,-4.5 parent: 4812 - - uid: 10237 + - uid: 8748 components: - type: Transform - pos: -61.5,-21.5 + pos: -44.5,-4.5 parent: 4812 - - uid: 10238 + - uid: 8749 components: - type: Transform - pos: -61.5,-23.5 + pos: -44.5,-5.5 parent: 4812 - - uid: 10239 + - uid: 8750 components: - type: Transform - pos: -61.5,-24.5 + pos: -42.5,-5.5 parent: 4812 - - uid: 10240 + - uid: 9222 components: - type: Transform - pos: -61.5,-25.5 + pos: -51.5,3.5 parent: 4812 - - uid: 10241 + - uid: 9450 components: - type: Transform - pos: -61.5,-26.5 + pos: -48.5,-3.5 parent: 4812 - - uid: 10242 + - uid: 9487 components: - type: Transform - pos: -63.5,-26.5 + pos: -47.5,-3.5 parent: 4812 - - uid: 10243 + - uid: 9507 components: - type: Transform - pos: -63.5,-25.5 + pos: -46.5,-3.5 parent: 4812 - - uid: 10244 + - uid: 9522 components: - type: Transform - pos: -63.5,-24.5 + pos: -48.5,1.5 parent: 4812 - - uid: 10245 + - uid: 9732 components: - type: Transform - pos: -63.5,-23.5 + pos: -42.5,-6.5 parent: 4812 - - uid: 10246 + - uid: 9733 components: - type: Transform - pos: -65.5,-26.5 + pos: -42.5,-7.5 parent: 4812 - - uid: 10247 + - uid: 9734 components: - type: Transform - pos: -65.5,-25.5 + pos: -42.5,-8.5 parent: 4812 - - uid: 10248 + - uid: 9735 components: - type: Transform - pos: -65.5,-24.5 + pos: -41.5,-8.5 parent: 4812 - - uid: 10249 + - uid: 9736 components: - type: Transform - pos: -65.5,-23.5 + pos: -40.5,-8.5 parent: 4812 - - uid: 10250 + - uid: 9737 components: - type: Transform - pos: -69.5,-26.5 + pos: -39.5,-8.5 parent: 4812 - - uid: 10251 + - uid: 9738 components: - type: Transform - pos: -69.5,-25.5 + pos: -38.5,-8.5 parent: 4812 - - uid: 10252 + - uid: 9739 components: - type: Transform - pos: -69.5,-24.5 + pos: -37.5,-8.5 parent: 4812 - - uid: 10253 + - uid: 9740 components: - type: Transform - pos: -69.5,-23.5 + pos: -36.5,-8.5 parent: 4812 - - uid: 10254 + - uid: 9741 components: - type: Transform - pos: -67.5,-26.5 + pos: -35.5,-8.5 parent: 4812 - - uid: 10255 + - uid: 9742 components: - type: Transform - pos: -67.5,-25.5 + pos: -34.5,-8.5 parent: 4812 - - uid: 10256 + - uid: 9743 components: - type: Transform - pos: -67.5,-24.5 + pos: -33.5,-8.5 parent: 4812 - - uid: 10257 + - uid: 9744 components: - type: Transform - pos: -67.5,-23.5 + pos: -32.5,-8.5 parent: 4812 - - uid: 10258 + - uid: 9745 components: - type: Transform - pos: -69.5,-21.5 + pos: -31.5,-8.5 parent: 4812 - - uid: 10259 + - uid: 9746 components: - type: Transform - pos: -69.5,-20.5 + pos: -30.5,-8.5 parent: 4812 - - uid: 10260 + - uid: 9747 components: - type: Transform - pos: -69.5,-19.5 + pos: -29.5,-8.5 parent: 4812 - - uid: 10261 + - uid: 9748 components: - type: Transform - pos: -69.5,-18.5 + pos: -29.5,-7.5 parent: 4812 - - uid: 10262 + - uid: 9749 components: - type: Transform - pos: -67.5,-18.5 + pos: -29.5,-6.5 parent: 4812 - - uid: 10263 + - uid: 9750 components: - type: Transform - pos: -67.5,-19.5 + pos: -29.5,-5.5 parent: 4812 - - uid: 10264 + - uid: 9751 components: - type: Transform - pos: -67.5,-20.5 + pos: -38.5,7.5 parent: 4812 - - uid: 10265 + - uid: 9752 components: - type: Transform - pos: -67.5,-21.5 + pos: -39.5,7.5 parent: 4812 - - uid: 10266 + - uid: 9753 components: - type: Transform - pos: -65.5,-21.5 + pos: -39.5,5.5 parent: 4812 - - uid: 10267 + - uid: 9755 components: - type: Transform - pos: -65.5,-20.5 + pos: -39.5,6.5 parent: 4812 - - uid: 10268 + - uid: 9760 components: - type: Transform - pos: -65.5,-19.5 + pos: -36.5,2.5 parent: 4812 - - uid: 10269 + - uid: 9761 components: - type: Transform - pos: -65.5,-18.5 + pos: -36.5,1.5 parent: 4812 - - uid: 10270 + - uid: 9762 components: - type: Transform - pos: -63.5,-18.5 + pos: -36.5,0.5 parent: 4812 - - uid: 10271 + - uid: 9763 components: - type: Transform - pos: -63.5,-19.5 + pos: -36.5,-0.5 parent: 4812 - - uid: 10272 + - uid: 9764 components: - type: Transform - pos: -63.5,-20.5 + pos: -36.5,-1.5 parent: 4812 - - uid: 10273 + - uid: 9765 components: - type: Transform - pos: -63.5,-21.5 + pos: -36.5,-2.5 parent: 4812 - - uid: 10275 + - uid: 9766 components: - type: Transform - pos: -71.5,-22.5 + pos: -36.5,-3.5 parent: 4812 - - uid: 10276 + - uid: 9767 components: - type: Transform - pos: -70.5,-22.5 + pos: -36.5,-4.5 parent: 4812 - - uid: 10529 + - uid: 9768 components: - type: Transform - pos: -10.5,-31.5 + pos: -36.5,-5.5 parent: 4812 - - uid: 10530 + - uid: 9769 components: - type: Transform - pos: -10.5,-30.5 + pos: -36.5,-6.5 parent: 4812 - - uid: 10531 + - uid: 9770 components: - type: Transform - pos: -11.5,-30.5 + pos: -36.5,-7.5 parent: 4812 - - uid: 10532 + - uid: 9771 components: - type: Transform - pos: -12.5,-30.5 + pos: -33.5,-7.5 parent: 4812 - - uid: 10533 + - uid: 9772 components: - type: Transform - pos: -13.5,-30.5 + pos: -33.5,-6.5 parent: 4812 - - uid: 10534 + - uid: 9773 components: - type: Transform - pos: -14.5,-30.5 + pos: -33.5,-5.5 parent: 4812 - - uid: 10535 + - uid: 9774 components: - type: Transform - pos: -15.5,-30.5 + pos: -33.5,-4.5 parent: 4812 - - uid: 10536 + - uid: 9775 components: - type: Transform - pos: -16.5,-30.5 + pos: -33.5,-3.5 parent: 4812 - - uid: 10537 + - uid: 9776 components: - type: Transform - pos: -17.5,-30.5 + pos: -33.5,-2.5 parent: 4812 - - uid: 10538 + - uid: 9777 components: - type: Transform - pos: -18.5,-30.5 + pos: -32.5,-2.5 parent: 4812 - - uid: 10539 + - uid: 9778 components: - type: Transform - pos: -19.5,-30.5 + pos: -31.5,-2.5 parent: 4812 - - uid: 10540 + - uid: 9779 components: - type: Transform - pos: -20.5,-30.5 + pos: -30.5,-2.5 parent: 4812 - - uid: 10541 + - uid: 9780 components: - type: Transform - pos: -21.5,-30.5 + pos: -29.5,-2.5 parent: 4812 - - uid: 10542 + - uid: 9781 components: - type: Transform - pos: -22.5,-30.5 + pos: -28.5,-2.5 parent: 4812 - - uid: 10543 + - uid: 9782 components: - type: Transform - pos: -23.5,-30.5 + pos: -27.5,-2.5 parent: 4812 - - uid: 10544 + - uid: 9783 components: - type: Transform - pos: -24.5,-30.5 + pos: -26.5,-2.5 parent: 4812 - - uid: 10550 + - uid: 9784 components: - type: Transform - pos: -29.5,-29.5 + pos: -25.5,-2.5 parent: 4812 - - uid: 10551 + - uid: 9785 components: - type: Transform - pos: -29.5,-28.5 + pos: -25.5,-3.5 parent: 4812 - - uid: 10552 + - uid: 9786 components: - type: Transform - pos: -29.5,-27.5 + pos: -25.5,-4.5 parent: 4812 - - uid: 10553 + - uid: 9787 components: - type: Transform - pos: -29.5,-26.5 + pos: -24.5,-4.5 parent: 4812 - - uid: 10554 + - uid: 9788 components: - type: Transform - pos: -29.5,-25.5 + pos: -23.5,-4.5 parent: 4812 - - uid: 10555 + - uid: 9789 components: - type: Transform - pos: -30.5,-25.5 + pos: -22.5,-4.5 parent: 4812 - - uid: 10556 + - uid: 9790 components: - type: Transform - pos: -31.5,-25.5 + pos: -21.5,-4.5 parent: 4812 - - uid: 10557 + - uid: 9791 components: - type: Transform - pos: -32.5,-25.5 + pos: -20.5,-4.5 parent: 4812 - - uid: 10558 + - uid: 9792 components: - type: Transform - pos: -33.5,-25.5 + pos: -20.5,-3.5 parent: 4812 - - uid: 10559 + - uid: 9793 components: - type: Transform - pos: -34.5,-25.5 + pos: -19.5,-3.5 parent: 4812 - - uid: 10560 + - uid: 9794 components: - type: Transform - pos: -34.5,-24.5 + pos: -18.5,-3.5 parent: 4812 - - uid: 10561 + - uid: 9795 components: - type: Transform - pos: -34.5,-23.5 + pos: -17.5,-3.5 parent: 4812 - - uid: 10562 + - uid: 9796 components: - type: Transform - pos: -34.5,-22.5 + pos: -16.5,-3.5 parent: 4812 - - uid: 10563 + - uid: 9797 components: - type: Transform - pos: -34.5,-21.5 + pos: -15.5,-3.5 parent: 4812 - - uid: 10564 + - uid: 9798 components: - type: Transform - pos: -34.5,-20.5 + pos: -14.5,-3.5 parent: 4812 - - uid: 10565 + - uid: 9799 components: - type: Transform - pos: -35.5,-20.5 + pos: -13.5,-3.5 parent: 4812 - - uid: 10638 + - uid: 9800 components: - type: Transform - pos: -45.5,-12.5 + pos: -12.5,-3.5 parent: 4812 - - uid: 10639 + - uid: 9801 components: - type: Transform - pos: -46.5,-12.5 + pos: -12.5,-2.5 parent: 4812 - - uid: 10640 + - uid: 9802 components: - type: Transform - pos: -47.5,-12.5 + pos: -12.5,-1.5 parent: 4812 - - uid: 10641 + - uid: 9803 components: - type: Transform - pos: -47.5,-11.5 + pos: -12.5,-0.5 parent: 4812 - - uid: 10642 + - uid: 9804 components: - type: Transform - pos: -48.5,-11.5 + pos: -12.5,0.5 parent: 4812 - - uid: 10643 + - uid: 9805 components: - type: Transform - pos: -49.5,-11.5 + pos: -12.5,1.5 parent: 4812 - - uid: 10644 + - uid: 9806 components: - type: Transform - pos: -50.5,-11.5 + pos: -12.5,2.5 parent: 4812 - - uid: 10645 + - uid: 9807 components: - type: Transform - pos: -51.5,-11.5 + pos: -12.5,3.5 parent: 4812 - - uid: 10646 + - uid: 9808 components: - type: Transform - pos: -52.5,-11.5 + pos: -12.5,4.5 parent: 4812 - - uid: 10647 + - uid: 9809 components: - type: Transform - pos: -53.5,-11.5 + pos: -12.5,5.5 parent: 4812 - - uid: 10650 + - uid: 9810 components: - type: Transform - pos: -53.5,-12.5 + pos: -12.5,6.5 parent: 4812 - - uid: 10651 + - uid: 9811 components: - type: Transform - pos: -53.5,-13.5 + pos: -12.5,7.5 parent: 4812 - - uid: 10662 + - uid: 9812 components: - type: Transform - pos: -51.5,-12.5 + pos: -12.5,8.5 parent: 4812 - - uid: 10663 + - uid: 9813 components: - type: Transform - pos: -51.5,-13.5 + pos: -12.5,9.5 parent: 4812 - - uid: 10669 + - uid: 9814 components: - type: Transform - pos: -45.5,-6.5 + pos: -12.5,10.5 parent: 4812 - - uid: 10670 + - uid: 9815 components: - type: Transform - pos: -46.5,-6.5 + pos: -12.5,11.5 parent: 4812 - - uid: 10671 + - uid: 9816 components: - type: Transform - pos: -47.5,-6.5 + pos: -12.5,12.5 parent: 4812 - - uid: 10672 + - uid: 9913 components: - type: Transform - pos: -48.5,-6.5 + pos: -44.5,-6.5 parent: 4812 - - uid: 11394 + - uid: 9914 components: - type: Transform - pos: 33.5,-39.5 + pos: -44.5,-7.5 parent: 4812 - - uid: 11395 + - uid: 9915 components: - type: Transform - pos: 32.5,-39.5 + pos: -44.5,-8.5 parent: 4812 - - uid: 11396 + - uid: 9916 components: - type: Transform - pos: 31.5,-39.5 + pos: -44.5,-9.5 parent: 4812 - - uid: 11397 + - uid: 9917 components: - type: Transform - pos: 33.5,-38.5 + pos: -44.5,-10.5 parent: 4812 - - uid: 11398 + - uid: 9918 components: - type: Transform - pos: 33.5,-37.5 + pos: -44.5,-11.5 parent: 4812 - - uid: 11399 + - uid: 9919 components: - type: Transform - pos: 33.5,-36.5 + pos: -44.5,-12.5 parent: 4812 - - uid: 11400 + - uid: 9920 components: - type: Transform - pos: 34.5,-36.5 + pos: -43.5,-12.5 parent: 4812 - - uid: 11401 + - uid: 9921 components: - type: Transform - pos: 35.5,-36.5 + pos: -42.5,-12.5 parent: 4812 - - uid: 11402 + - uid: 9922 components: - type: Transform - pos: 36.5,-36.5 + pos: -41.5,-12.5 parent: 4812 - - uid: 11403 + - uid: 9923 components: - type: Transform - pos: 37.5,-36.5 + pos: -40.5,-12.5 parent: 4812 - - uid: 11404 + - uid: 9925 components: - type: Transform - pos: 38.5,-36.5 + pos: -40.5,-11.5 parent: 4812 - - uid: 11405 + - uid: 9926 components: - type: Transform - pos: 31.5,-38.5 + pos: -40.5,-13.5 parent: 4812 - - uid: 11406 + - uid: 9927 components: - type: Transform - pos: 31.5,-37.5 + pos: -40.5,-14.5 parent: 4812 - - uid: 11407 + - uid: 9928 components: - type: Transform - pos: 31.5,-36.5 + pos: -40.5,-15.5 parent: 4812 - - uid: 11408 + - uid: 9960 components: - type: Transform - pos: 31.5,-35.5 + pos: -48.5,-19.5 parent: 4812 - - uid: 11409 + - uid: 9961 components: - type: Transform - pos: 31.5,-34.5 + pos: -48.5,-20.5 parent: 4812 - - uid: 11410 + - uid: 9962 components: - type: Transform - pos: 31.5,-33.5 + pos: -47.5,-20.5 parent: 4812 - - uid: 11411 + - uid: 9963 components: - type: Transform - pos: 30.5,-33.5 + pos: -46.5,-20.5 parent: 4812 - - uid: 11412 + - uid: 9964 components: - type: Transform - pos: 29.5,-33.5 + pos: -45.5,-20.5 parent: 4812 - - uid: 11413 + - uid: 9965 components: - type: Transform - pos: 28.5,-33.5 + pos: -44.5,-20.5 parent: 4812 - - uid: 11414 + - uid: 9966 components: - type: Transform - pos: 27.5,-33.5 + pos: -43.5,-20.5 parent: 4812 - - uid: 11415 + - uid: 9967 components: - type: Transform - pos: 26.5,-33.5 + pos: -42.5,-20.5 parent: 4812 - - uid: 11416 + - uid: 9974 components: - type: Transform - pos: 25.5,-33.5 + pos: -36.5,-19.5 parent: 4812 - - uid: 11417 + - uid: 9975 components: - type: Transform - pos: 24.5,-33.5 + pos: -36.5,-18.5 parent: 4812 - - uid: 11418 + - uid: 9976 components: - type: Transform - pos: 23.5,-33.5 + pos: -36.5,-17.5 parent: 4812 - - uid: 11419 + - uid: 9977 components: - type: Transform - pos: 22.5,-33.5 + pos: -36.5,-16.5 parent: 4812 - - uid: 11420 + - uid: 9978 components: - type: Transform - pos: 21.5,-33.5 + pos: -36.5,-15.5 parent: 4812 - - uid: 11421 + - uid: 9979 components: - type: Transform - pos: 20.5,-33.5 + pos: -36.5,-14.5 parent: 4812 - - uid: 11422 + - uid: 9980 components: - type: Transform - pos: 19.5,-33.5 + pos: -36.5,-13.5 parent: 4812 - - uid: 11437 + - uid: 9981 components: - type: Transform - pos: 30.5,-39.5 + pos: -36.5,-12.5 parent: 4812 - - uid: 11477 + - uid: 9982 components: - type: Transform - pos: 53.5,-36.5 + pos: -36.5,-11.5 parent: 4812 - - uid: 11478 + - uid: 9983 components: - type: Transform - pos: 52.5,-36.5 + pos: -36.5,-10.5 parent: 4812 - - uid: 11479 + - uid: 9984 components: - type: Transform - pos: 39.5,-36.5 + pos: -36.5,-9.5 parent: 4812 - - uid: 11480 + - uid: 9995 components: - type: Transform - pos: 40.5,-36.5 + pos: -41.5,-20.5 parent: 4812 - - uid: 11481 + - uid: 9996 components: - type: Transform - pos: 41.5,-35.5 + pos: -40.5,-20.5 parent: 4812 - - uid: 11482 + - uid: 9997 components: - type: Transform - pos: 41.5,-34.5 + pos: -39.5,-20.5 parent: 4812 - - uid: 11483 + - uid: 9998 components: - type: Transform - pos: 41.5,-33.5 + pos: -38.5,-20.5 parent: 4812 - - uid: 11484 + - uid: 9999 components: - type: Transform - pos: 41.5,-32.5 + pos: -37.5,-20.5 parent: 4812 - - uid: 11485 + - uid: 10000 components: - type: Transform - pos: 43.5,-35.5 + pos: -36.5,-20.5 parent: 4812 - - uid: 11486 + - uid: 10159 components: - type: Transform - pos: 43.5,-34.5 + pos: -56.5,-22.5 parent: 4812 - - uid: 11487 + - uid: 10160 components: - type: Transform - pos: 43.5,-33.5 + pos: -55.5,-22.5 parent: 4812 - - uid: 11488 + - uid: 10161 components: - type: Transform - pos: 43.5,-32.5 + pos: -54.5,-22.5 parent: 4812 - - uid: 11489 + - uid: 10162 components: - type: Transform - pos: 45.5,-34.5 + pos: -53.5,-22.5 parent: 4812 - - uid: 11490 + - uid: 10163 components: - type: Transform - pos: 45.5,-33.5 + pos: -53.5,-23.5 parent: 4812 - - uid: 11491 + - uid: 10164 components: - type: Transform - pos: 45.5,-32.5 + pos: -53.5,-24.5 parent: 4812 - - uid: 11492 + - uid: 10168 components: - type: Transform - pos: 45.5,-35.5 + pos: -53.5,-25.5 parent: 4812 - - uid: 11493 + - uid: 10169 components: - type: Transform - pos: 47.5,-35.5 + pos: -52.5,-25.5 parent: 4812 - - uid: 11494 + - uid: 10170 components: - type: Transform - pos: 47.5,-34.5 + pos: -51.5,-25.5 parent: 4812 - - uid: 11495 + - uid: 10171 components: - type: Transform - pos: 47.5,-33.5 + pos: -51.5,-24.5 parent: 4812 - - uid: 11496 + - uid: 10172 components: - type: Transform - pos: 47.5,-32.5 + pos: -51.5,-23.5 parent: 4812 - - uid: 11497 + - uid: 10173 components: - type: Transform - pos: 49.5,-35.5 + pos: -51.5,-22.5 parent: 4812 - - uid: 11498 + - uid: 10174 components: - type: Transform - pos: 49.5,-34.5 + pos: -50.5,-22.5 parent: 4812 - - uid: 11499 + - uid: 10175 components: - type: Transform - pos: 49.5,-33.5 + pos: -49.5,-22.5 parent: 4812 - - uid: 11500 + - uid: 10176 components: - type: Transform - pos: 49.5,-32.5 + pos: -48.5,-22.5 parent: 4812 - - uid: 11501 + - uid: 10177 components: - type: Transform - pos: 51.5,-35.5 + pos: -47.5,-22.5 parent: 4812 - - uid: 11502 + - uid: 10178 components: - type: Transform - pos: 51.5,-34.5 + pos: -46.5,-22.5 parent: 4812 - - uid: 11503 + - uid: 10179 components: - type: Transform - pos: 51.5,-33.5 + pos: -45.5,-22.5 parent: 4812 - - uid: 11504 + - uid: 10180 components: - type: Transform - pos: 51.5,-32.5 + pos: -45.5,-21.5 parent: 4812 - - uid: 11505 + - uid: 10181 components: - type: Transform - pos: 51.5,-40.5 + pos: -50.5,-25.5 parent: 4812 - - uid: 11506 + - uid: 10225 components: - type: Transform - pos: 51.5,-39.5 + pos: -57.5,-22.5 parent: 4812 - - uid: 11507 + - uid: 10226 components: - type: Transform - pos: 51.5,-38.5 + pos: -59.5,-26.5 parent: 4812 - - uid: 11508 + - uid: 10227 components: - type: Transform - pos: 51.5,-37.5 + pos: -59.5,-25.5 parent: 4812 - - uid: 11509 + - uid: 10228 components: - type: Transform - pos: 49.5,-40.5 + pos: -59.5,-24.5 parent: 4812 - - uid: 11510 + - uid: 10229 components: - type: Transform - pos: 49.5,-39.5 + pos: -59.5,-23.5 parent: 4812 - - uid: 11511 + - uid: 10230 components: - type: Transform - pos: 49.5,-38.5 + pos: -59.5,-21.5 parent: 4812 - - uid: 11512 + - uid: 10231 components: - type: Transform - pos: 49.5,-37.5 + pos: -59.5,-20.5 parent: 4812 - - uid: 11513 + - uid: 10232 components: - type: Transform - pos: 47.5,-40.5 + pos: -59.5,-19.5 parent: 4812 - - uid: 11514 + - uid: 10233 components: - type: Transform - pos: 47.5,-39.5 + pos: -59.5,-18.5 parent: 4812 - - uid: 11515 + - uid: 10234 components: - type: Transform - pos: 47.5,-38.5 + pos: -61.5,-18.5 parent: 4812 - - uid: 11516 + - uid: 10235 components: - type: Transform - pos: 47.5,-37.5 + pos: -61.5,-19.5 parent: 4812 - - uid: 11517 + - uid: 10236 components: - type: Transform - pos: 45.5,-40.5 + pos: -61.5,-20.5 parent: 4812 - - uid: 11518 + - uid: 10237 components: - type: Transform - pos: 45.5,-39.5 + pos: -61.5,-21.5 parent: 4812 - - uid: 11519 + - uid: 10238 components: - type: Transform - pos: 45.5,-38.5 + pos: -61.5,-23.5 parent: 4812 - - uid: 11520 + - uid: 10239 components: - type: Transform - pos: 45.5,-37.5 + pos: -61.5,-24.5 parent: 4812 - - uid: 11521 + - uid: 10240 components: - type: Transform - pos: 43.5,-40.5 + pos: -61.5,-25.5 parent: 4812 - - uid: 11522 + - uid: 10241 components: - type: Transform - pos: 43.5,-39.5 + pos: -61.5,-26.5 parent: 4812 - - uid: 11523 + - uid: 10242 components: - type: Transform - pos: 43.5,-38.5 + pos: -63.5,-26.5 parent: 4812 - - uid: 11524 + - uid: 10243 components: - type: Transform - pos: 43.5,-37.5 + pos: -63.5,-25.5 parent: 4812 - - uid: 11525 + - uid: 10244 components: - type: Transform - pos: 41.5,-40.5 + pos: -63.5,-24.5 parent: 4812 - - uid: 11526 + - uid: 10245 components: - type: Transform - pos: 41.5,-39.5 + pos: -63.5,-23.5 parent: 4812 - - uid: 11527 + - uid: 10246 components: - type: Transform - pos: 41.5,-38.5 + pos: -65.5,-26.5 parent: 4812 - - uid: 11528 + - uid: 10247 components: - type: Transform - pos: 41.5,-37.5 + pos: -65.5,-25.5 parent: 4812 -- proto: CableHVStack - entities: - - uid: 8587 + - uid: 10248 components: - type: Transform - pos: -16.483784,7.5211535 + pos: -65.5,-24.5 parent: 4812 - - uid: 11956 + - uid: 10249 components: - type: Transform - pos: -10.405096,15.5663185 + pos: -65.5,-23.5 parent: 4812 - - uid: 11957 + - uid: 10250 components: - type: Transform - pos: -10.405096,15.5663185 + pos: -69.5,-26.5 parent: 4812 -- proto: CableMV - entities: - - uid: 327 + - uid: 10251 components: - type: Transform - pos: -15.5,-18.5 + pos: -69.5,-25.5 parent: 4812 - - uid: 971 + - uid: 10252 components: - type: Transform - pos: -14.5,7.5 + pos: -69.5,-24.5 parent: 4812 - - uid: 972 + - uid: 10253 components: - type: Transform - pos: -14.5,8.5 + pos: -69.5,-23.5 parent: 4812 - - uid: 973 + - uid: 10254 components: - type: Transform - pos: -14.5,9.5 + pos: -67.5,-26.5 parent: 4812 - - uid: 974 + - uid: 10255 components: - type: Transform - pos: -14.5,10.5 + pos: -67.5,-25.5 parent: 4812 - - uid: 975 + - uid: 10256 components: - type: Transform - pos: -14.5,11.5 + pos: -67.5,-24.5 parent: 4812 - - uid: 976 + - uid: 10257 components: - type: Transform - pos: -14.5,12.5 + pos: -67.5,-23.5 parent: 4812 - - uid: 977 + - uid: 10258 components: - type: Transform - pos: -14.5,13.5 + pos: -69.5,-21.5 parent: 4812 - - uid: 978 + - uid: 10259 components: - type: Transform - pos: -13.5,13.5 + pos: -69.5,-20.5 parent: 4812 - - uid: 979 + - uid: 10260 components: - type: Transform - pos: -12.5,13.5 + pos: -69.5,-19.5 parent: 4812 - - uid: 980 + - uid: 10261 components: - type: Transform - pos: -12.5,14.5 + pos: -69.5,-18.5 parent: 4812 - - uid: 981 + - uid: 10262 components: - type: Transform - pos: -8.5,-2.5 + pos: -67.5,-18.5 parent: 4812 - - uid: 982 + - uid: 10263 components: - type: Transform - pos: -8.5,-3.5 + pos: -67.5,-19.5 parent: 4812 - - uid: 983 + - uid: 10264 components: - type: Transform - pos: -9.5,-3.5 + pos: -67.5,-20.5 parent: 4812 - - uid: 984 + - uid: 10265 components: - type: Transform - pos: -10.5,-3.5 + pos: -67.5,-21.5 parent: 4812 - - uid: 985 + - uid: 10266 components: - type: Transform - pos: -12.5,-3.5 + pos: -65.5,-21.5 parent: 4812 - - uid: 986 + - uid: 10267 components: - type: Transform - pos: -11.5,-3.5 + pos: -65.5,-20.5 parent: 4812 - - uid: 987 + - uid: 10268 components: - type: Transform - pos: -12.5,-2.5 + pos: -65.5,-19.5 parent: 4812 - - uid: 988 + - uid: 10269 components: - type: Transform - pos: -12.5,-1.5 + pos: -65.5,-18.5 parent: 4812 - - uid: 989 + - uid: 10270 components: - type: Transform - pos: -12.5,-0.5 + pos: -63.5,-18.5 parent: 4812 - - uid: 990 + - uid: 10271 components: - type: Transform - pos: -12.5,0.5 + pos: -63.5,-19.5 parent: 4812 - - uid: 991 + - uid: 10272 components: - type: Transform - pos: -12.5,1.5 + pos: -63.5,-20.5 parent: 4812 - - uid: 992 + - uid: 10273 components: - type: Transform - pos: -12.5,2.5 + pos: -63.5,-21.5 parent: 4812 - - uid: 993 + - uid: 10275 components: - type: Transform - pos: -12.5,3.5 + pos: -71.5,-22.5 parent: 4812 - - uid: 994 + - uid: 10276 components: - type: Transform - pos: -12.5,4.5 + pos: -70.5,-22.5 parent: 4812 - - uid: 995 + - uid: 10529 components: - type: Transform - pos: -12.5,5.5 + pos: -10.5,-31.5 parent: 4812 - - uid: 996 + - uid: 10530 components: - type: Transform - pos: -12.5,6.5 + pos: -10.5,-30.5 parent: 4812 - - uid: 997 + - uid: 10531 components: - type: Transform - pos: -12.5,7.5 + pos: -11.5,-30.5 parent: 4812 - - uid: 998 + - uid: 10532 components: - type: Transform - pos: -12.5,8.5 + pos: -12.5,-30.5 parent: 4812 - - uid: 999 + - uid: 10533 components: - type: Transform - pos: -12.5,9.5 + pos: -13.5,-30.5 parent: 4812 - - uid: 1000 + - uid: 10534 components: - type: Transform - pos: -12.5,10.5 + pos: -14.5,-30.5 parent: 4812 - - uid: 1001 + - uid: 10535 components: - type: Transform - pos: -12.5,11.5 + pos: -15.5,-30.5 parent: 4812 - - uid: 1002 + - uid: 10536 components: - type: Transform - pos: -12.5,12.5 + pos: -16.5,-30.5 parent: 4812 - - uid: 1004 + - uid: 10537 components: - type: Transform - pos: 6.5,4.5 + pos: -17.5,-30.5 parent: 4812 - - uid: 1005 + - uid: 10538 components: - type: Transform - pos: 7.5,4.5 + pos: -18.5,-30.5 parent: 4812 - - uid: 1006 + - uid: 10539 components: - type: Transform - pos: 8.5,4.5 + pos: -19.5,-30.5 parent: 4812 - - uid: 1007 + - uid: 10540 components: - type: Transform - pos: 9.5,4.5 + pos: -20.5,-30.5 parent: 4812 - - uid: 1008 + - uid: 10541 components: - type: Transform - pos: 9.5,5.5 + pos: -21.5,-30.5 parent: 4812 - - uid: 1009 + - uid: 10542 components: - type: Transform - pos: 9.5,6.5 + pos: -22.5,-30.5 parent: 4812 - - uid: 1010 + - uid: 10543 components: - type: Transform - pos: 9.5,7.5 + pos: -23.5,-30.5 parent: 4812 - - uid: 1011 + - uid: 10544 components: - type: Transform - pos: 9.5,8.5 + pos: -24.5,-30.5 parent: 4812 - - uid: 1012 + - uid: 10550 components: - type: Transform - pos: 9.5,9.5 + pos: -29.5,-29.5 parent: 4812 - - uid: 1013 + - uid: 10551 components: - type: Transform - pos: 9.5,10.5 + pos: -29.5,-28.5 parent: 4812 - - uid: 1014 + - uid: 10552 components: - type: Transform - pos: 9.5,11.5 + pos: -29.5,-27.5 parent: 4812 - - uid: 1015 + - uid: 10553 components: - type: Transform - pos: 8.5,11.5 + pos: -29.5,-26.5 parent: 4812 - - uid: 1016 + - uid: 10554 components: - type: Transform - pos: 7.5,11.5 + pos: -29.5,-25.5 parent: 4812 - - uid: 1017 + - uid: 10555 components: - type: Transform - pos: 6.5,11.5 + pos: -30.5,-25.5 parent: 4812 - - uid: 1018 + - uid: 10556 components: - type: Transform - pos: 5.5,11.5 + pos: -31.5,-25.5 parent: 4812 - - uid: 1019 + - uid: 10557 components: - type: Transform - pos: 4.5,11.5 + pos: -32.5,-25.5 parent: 4812 - - uid: 1020 + - uid: 10558 components: - type: Transform - pos: 3.5,11.5 + pos: -33.5,-25.5 parent: 4812 - - uid: 1021 + - uid: 10559 components: - type: Transform - pos: 2.5,11.5 + pos: -34.5,-25.5 parent: 4812 - - uid: 1023 + - uid: 10560 components: - type: Transform - pos: 7.5,-8.5 + pos: -34.5,-24.5 parent: 4812 - - uid: 1024 + - uid: 10561 components: - type: Transform - pos: 7.5,-9.5 + pos: -34.5,-23.5 parent: 4812 - - uid: 1025 + - uid: 10562 components: - type: Transform - pos: 8.5,-9.5 + pos: -34.5,-22.5 parent: 4812 - - uid: 1026 + - uid: 10563 components: - type: Transform - pos: 9.5,-9.5 + pos: -34.5,-21.5 parent: 4812 - - uid: 1027 + - uid: 10564 components: - type: Transform - pos: 9.5,-8.5 + pos: -34.5,-20.5 parent: 4812 - - uid: 1028 + - uid: 10565 components: - type: Transform - pos: 9.5,-7.5 + pos: -35.5,-20.5 parent: 4812 - - uid: 1029 + - uid: 10638 components: - type: Transform - pos: 9.5,-6.5 + pos: -45.5,-12.5 parent: 4812 - - uid: 1030 + - uid: 10639 components: - type: Transform - pos: 9.5,-5.5 + pos: -46.5,-12.5 parent: 4812 - - uid: 1031 + - uid: 10640 components: - type: Transform - pos: 9.5,-4.5 + pos: -47.5,-12.5 parent: 4812 - - uid: 1032 + - uid: 10641 components: - type: Transform - pos: 9.5,-3.5 + pos: -47.5,-11.5 parent: 4812 - - uid: 1033 + - uid: 10642 components: - type: Transform - pos: 9.5,-2.5 + pos: -48.5,-11.5 parent: 4812 - - uid: 1034 + - uid: 10643 components: - type: Transform - pos: 9.5,-1.5 + pos: -49.5,-11.5 parent: 4812 - - uid: 1035 + - uid: 10644 components: - type: Transform - pos: 9.5,-0.5 + pos: -50.5,-11.5 parent: 4812 - - uid: 1036 + - uid: 10645 components: - type: Transform - pos: 9.5,0.5 + pos: -51.5,-11.5 parent: 4812 - - uid: 1037 + - uid: 10646 components: - type: Transform - pos: 9.5,1.5 + pos: -52.5,-11.5 parent: 4812 - - uid: 1038 + - uid: 10647 components: - type: Transform - pos: 9.5,2.5 + pos: -53.5,-11.5 parent: 4812 - - uid: 1039 + - uid: 10650 components: - type: Transform - pos: 9.5,3.5 + pos: -53.5,-12.5 parent: 4812 - - uid: 1419 + - uid: 10651 components: - type: Transform - pos: 8.5,8.5 + pos: -53.5,-13.5 parent: 4812 - - uid: 1543 + - uid: 10662 components: - type: Transform - pos: 5.5,4.5 + pos: -51.5,-12.5 parent: 4812 - - uid: 1858 + - uid: 10663 components: - type: Transform - pos: 0.5,28.5 + pos: -51.5,-13.5 parent: 4812 - - uid: 1860 + - uid: 10669 components: - type: Transform - pos: -6.5,30.5 + pos: -45.5,-6.5 parent: 4812 - - uid: 2141 + - uid: 10670 components: - type: Transform - pos: 6.5,31.5 + pos: -46.5,-6.5 parent: 4812 - - uid: 2142 + - uid: 10671 components: - type: Transform - pos: 6.5,32.5 + pos: -47.5,-6.5 parent: 4812 - - uid: 2143 + - uid: 10672 components: - type: Transform - pos: 5.5,32.5 + pos: -48.5,-6.5 parent: 4812 - - uid: 2144 + - uid: 11394 components: - type: Transform - pos: 4.5,32.5 + pos: 33.5,-39.5 parent: 4812 - - uid: 2145 + - uid: 11395 components: - type: Transform - pos: 3.5,32.5 + pos: 32.5,-39.5 parent: 4812 - - uid: 2146 + - uid: 11396 components: - type: Transform - pos: 2.5,32.5 + pos: 31.5,-39.5 parent: 4812 - - uid: 2147 + - uid: 11397 components: - type: Transform - pos: 1.5,32.5 + pos: 33.5,-38.5 parent: 4812 - - uid: 2148 + - uid: 11398 components: - type: Transform - pos: 0.5,32.5 + pos: 33.5,-37.5 parent: 4812 - - uid: 2149 + - uid: 11399 components: - type: Transform - pos: -0.5,32.5 + pos: 33.5,-36.5 parent: 4812 - - uid: 2150 + - uid: 11400 components: - type: Transform - pos: -1.5,32.5 + pos: 34.5,-36.5 parent: 4812 - - uid: 2151 + - uid: 11401 components: - type: Transform - pos: -2.5,32.5 + pos: 35.5,-36.5 parent: 4812 - - uid: 2152 + - uid: 11402 components: - type: Transform - pos: -3.5,32.5 + pos: 36.5,-36.5 parent: 4812 - - uid: 2153 + - uid: 11403 components: - type: Transform - pos: -4.5,32.5 + pos: 37.5,-36.5 parent: 4812 - - uid: 2154 + - uid: 11404 components: - type: Transform - pos: -5.5,32.5 + pos: 38.5,-36.5 parent: 4812 - - uid: 2155 + - uid: 11405 components: - type: Transform - pos: -6.5,32.5 + pos: 31.5,-38.5 parent: 4812 - - uid: 2156 + - uid: 11406 components: - type: Transform - pos: -6.5,31.5 + pos: 31.5,-37.5 parent: 4812 - - uid: 2157 + - uid: 11407 components: - type: Transform - pos: 2.5,31.5 + pos: 31.5,-36.5 parent: 4812 - - uid: 2158 + - uid: 11408 components: - type: Transform - pos: 2.5,30.5 + pos: 31.5,-35.5 parent: 4812 - - uid: 2159 + - uid: 11409 components: - type: Transform - pos: 2.5,29.5 + pos: 31.5,-34.5 parent: 4812 - - uid: 2160 + - uid: 11410 components: - type: Transform - pos: 2.5,28.5 + pos: 31.5,-33.5 parent: 4812 - - uid: 2161 + - uid: 11411 components: - type: Transform - pos: 2.5,27.5 + pos: 30.5,-33.5 parent: 4812 - - uid: 2162 + - uid: 11412 components: - type: Transform - pos: 2.5,26.5 + pos: 29.5,-33.5 parent: 4812 - - uid: 2163 + - uid: 11413 components: - type: Transform - pos: 2.5,25.5 + pos: 28.5,-33.5 parent: 4812 - - uid: 2164 + - uid: 11414 components: - type: Transform - pos: 2.5,24.5 + pos: 27.5,-33.5 parent: 4812 - - uid: 2165 + - uid: 11415 components: - type: Transform - pos: 2.5,23.5 + pos: 26.5,-33.5 parent: 4812 - - uid: 2166 + - uid: 11416 components: - type: Transform - pos: 2.5,22.5 + pos: 25.5,-33.5 parent: 4812 - - uid: 2167 + - uid: 11417 components: - type: Transform - pos: 2.5,21.5 + pos: 24.5,-33.5 parent: 4812 - - uid: 2168 + - uid: 11418 components: - type: Transform - pos: 2.5,20.5 + pos: 23.5,-33.5 parent: 4812 - - uid: 2169 + - uid: 11419 components: - type: Transform - pos: 1.5,20.5 + pos: 22.5,-33.5 parent: 4812 - - uid: 2170 + - uid: 11420 components: - type: Transform - pos: 0.5,20.5 + pos: 21.5,-33.5 parent: 4812 - - uid: 2171 + - uid: 11421 components: - type: Transform - pos: 0.5,21.5 + pos: 20.5,-33.5 parent: 4812 - - uid: 2172 + - uid: 11422 components: - type: Transform - pos: 3.5,25.5 + pos: 19.5,-33.5 parent: 4812 - - uid: 2173 + - uid: 11437 components: - type: Transform - pos: 4.5,25.5 + pos: 30.5,-39.5 parent: 4812 - - uid: 2174 + - uid: 11477 components: - type: Transform - pos: 5.5,25.5 + pos: 53.5,-36.5 parent: 4812 - - uid: 2175 + - uid: 11478 components: - type: Transform - pos: 6.5,25.5 + pos: 52.5,-36.5 parent: 4812 - - uid: 2176 + - uid: 11479 components: - type: Transform - pos: 7.5,25.5 + pos: 39.5,-36.5 parent: 4812 - - uid: 2177 + - uid: 11480 components: - type: Transform - pos: 8.5,25.5 + pos: 40.5,-36.5 parent: 4812 - - uid: 2178 + - uid: 11481 components: - type: Transform - pos: 9.5,25.5 + pos: 41.5,-35.5 parent: 4812 - - uid: 2179 + - uid: 11482 components: - type: Transform - pos: 9.5,26.5 + pos: 41.5,-34.5 parent: 4812 - - uid: 2180 + - uid: 11483 components: - type: Transform - pos: 9.5,27.5 + pos: 41.5,-33.5 parent: 4812 - - uid: 2181 + - uid: 11484 components: - type: Transform - pos: 8.5,24.5 + pos: 41.5,-32.5 parent: 4812 - - uid: 2182 + - uid: 11485 components: - type: Transform - pos: 8.5,23.5 + pos: 43.5,-35.5 parent: 4812 - - uid: 2183 + - uid: 11486 components: - type: Transform - pos: 6.5,24.5 + pos: 43.5,-34.5 parent: 4812 - - uid: 2184 + - uid: 11487 components: - type: Transform - pos: 6.5,23.5 + pos: 43.5,-33.5 parent: 4812 - - uid: 2185 + - uid: 11488 components: - type: Transform - pos: -2.5,31.5 + pos: 43.5,-32.5 parent: 4812 - - uid: 2186 + - uid: 11489 components: - type: Transform - pos: 4.5,24.5 + pos: 45.5,-34.5 parent: 4812 - - uid: 2187 + - uid: 11490 components: - type: Transform - pos: 4.5,26.5 + pos: 45.5,-33.5 parent: 4812 - - uid: 2188 + - uid: 11491 components: - type: Transform - pos: -2.5,30.5 + pos: 45.5,-32.5 parent: 4812 - - uid: 2189 + - uid: 11492 components: - type: Transform - pos: -2.5,29.5 + pos: 45.5,-35.5 parent: 4812 - - uid: 2190 + - uid: 11493 components: - type: Transform - pos: -2.5,28.5 + pos: 47.5,-35.5 parent: 4812 - - uid: 2191 + - uid: 11494 components: - type: Transform - pos: -2.5,28.5 + pos: 47.5,-34.5 parent: 4812 - - uid: 2192 + - uid: 11495 components: - type: Transform - pos: -2.5,27.5 + pos: 47.5,-33.5 parent: 4812 - - uid: 2193 + - uid: 11496 components: - type: Transform - pos: -3.5,28.5 + pos: 47.5,-32.5 parent: 4812 - - uid: 2194 + - uid: 11497 components: - type: Transform - pos: -4.5,28.5 + pos: 49.5,-35.5 parent: 4812 - - uid: 2195 + - uid: 11498 components: - type: Transform - pos: -4.5,27.5 + pos: 49.5,-34.5 parent: 4812 - - uid: 2196 + - uid: 11499 components: - type: Transform - pos: -1.5,28.5 + pos: 49.5,-33.5 parent: 4812 - - uid: 2197 + - uid: 11500 components: - type: Transform - pos: -0.5,28.5 + pos: 49.5,-32.5 parent: 4812 - - uid: 2198 + - uid: 11501 components: - type: Transform - pos: -0.5,27.5 + pos: 51.5,-35.5 parent: 4812 - - uid: 2200 + - uid: 11502 components: - type: Transform - pos: 0.5,29.5 + pos: 51.5,-34.5 parent: 4812 - - uid: 2203 + - uid: 11503 components: - type: Transform - pos: -5.5,29.5 + pos: 51.5,-33.5 parent: 4812 - - uid: 2208 + - uid: 11504 components: - type: Transform - pos: -5.5,30.5 + pos: 51.5,-32.5 parent: 4812 - - uid: 2385 + - uid: 11505 components: - type: Transform - pos: -7.5,32.5 + pos: 51.5,-40.5 parent: 4812 - - uid: 2386 + - uid: 11506 components: - type: Transform - pos: -8.5,32.5 + pos: 51.5,-39.5 parent: 4812 - - uid: 2387 + - uid: 11507 components: - type: Transform - pos: -8.5,31.5 + pos: 51.5,-38.5 parent: 4812 - - uid: 2388 + - uid: 11508 components: - type: Transform - pos: -8.5,30.5 + pos: 51.5,-37.5 parent: 4812 - - uid: 2389 + - uid: 11509 components: - type: Transform - pos: -8.5,29.5 + pos: 49.5,-40.5 parent: 4812 - - uid: 2390 + - uid: 11510 components: - type: Transform - pos: -8.5,28.5 + pos: 49.5,-39.5 parent: 4812 - - uid: 2391 + - uid: 11511 components: - type: Transform - pos: -8.5,27.5 + pos: 49.5,-38.5 parent: 4812 - - uid: 2392 + - uid: 11512 components: - type: Transform - pos: -8.5,26.5 + pos: 49.5,-37.5 parent: 4812 - - uid: 2393 + - uid: 11513 components: - type: Transform - pos: -8.5,25.5 + pos: 47.5,-40.5 parent: 4812 - - uid: 2394 + - uid: 11514 components: - type: Transform - pos: -8.5,24.5 + pos: 47.5,-39.5 parent: 4812 - - uid: 2396 + - uid: 11515 components: - type: Transform - pos: -9.5,23.5 + pos: 47.5,-38.5 parent: 4812 - - uid: 2397 + - uid: 11516 components: - type: Transform - pos: -10.5,23.5 + pos: 47.5,-37.5 parent: 4812 - - uid: 2398 + - uid: 11517 components: - type: Transform - pos: -11.5,23.5 + pos: 45.5,-40.5 parent: 4812 - - uid: 2399 + - uid: 11518 components: - type: Transform - pos: -12.5,23.5 + pos: 45.5,-39.5 parent: 4812 - - uid: 2400 + - uid: 11519 components: - type: Transform - pos: -13.5,23.5 + pos: 45.5,-38.5 parent: 4812 - - uid: 2401 + - uid: 11520 components: - type: Transform - pos: -14.5,23.5 + pos: 45.5,-37.5 parent: 4812 - - uid: 2402 + - uid: 11521 components: - type: Transform - pos: -14.5,24.5 + pos: 43.5,-40.5 parent: 4812 - - uid: 2403 + - uid: 11522 components: - type: Transform - pos: -14.5,25.5 + pos: 43.5,-39.5 parent: 4812 - - uid: 2404 + - uid: 11523 components: - type: Transform - pos: -11.5,24.5 + pos: 43.5,-38.5 parent: 4812 - - uid: 2405 + - uid: 11524 components: - type: Transform - pos: -11.5,25.5 + pos: 43.5,-37.5 parent: 4812 - - uid: 2406 + - uid: 11525 components: - type: Transform - pos: -11.5,26.5 + pos: 41.5,-40.5 parent: 4812 - - uid: 2407 + - uid: 11526 components: - type: Transform - pos: -11.5,27.5 + pos: 41.5,-39.5 parent: 4812 - - uid: 2408 + - uid: 11527 components: - type: Transform - pos: -11.5,28.5 + pos: 41.5,-38.5 parent: 4812 - - uid: 2409 + - uid: 11528 components: - type: Transform - pos: -11.5,29.5 + pos: 41.5,-37.5 parent: 4812 - - uid: 2410 + - uid: 12036 components: - type: Transform - pos: -11.5,30.5 + pos: -49.5,3.5 parent: 4812 - - uid: 2411 + - uid: 12112 components: - type: Transform - pos: -12.5,30.5 + pos: -44.5,-2.5 parent: 4812 - - uid: 2412 + - uid: 12114 components: - type: Transform - pos: -12.5,26.5 + pos: -45.5,-2.5 parent: 4812 - - uid: 2413 + - uid: 12125 components: - type: Transform - pos: -13.5,26.5 + pos: -48.5,0.5 parent: 4812 - - uid: 2414 + - uid: 12127 components: - type: Transform - pos: -10.5,26.5 + pos: -48.5,-1.5 parent: 4812 - - uid: 2415 + - uid: 13069 components: - type: Transform - pos: -9.5,24.5 + pos: -53.5,3.5 parent: 4812 - - uid: 2416 + - uid: 13376 components: - type: Transform - pos: -9.5,22.5 + pos: -38.5,3.5 parent: 4812 - - uid: 2453 + - uid: 13551 components: - type: Transform - pos: -6.5,28.5 + pos: -48.5,-2.5 parent: 4812 - - uid: 2457 +- proto: CableHVStack + entities: + - uid: 8587 components: - type: Transform - pos: -5.5,28.5 + pos: -16.483784,7.5211535 parent: 4812 - - uid: 2632 + - uid: 11956 components: - type: Transform - pos: 1.5,28.5 + pos: -10.405096,15.5663185 parent: 4812 - - uid: 2633 + - uid: 11957 components: - type: Transform - pos: 0.5,30.5 + pos: -10.405096,15.5663185 parent: 4812 - - uid: 2644 +- proto: CableMV + entities: + - uid: 327 components: - type: Transform - pos: 1.5,30.5 + pos: -15.5,-18.5 parent: 4812 - - uid: 2834 + - uid: 971 components: - type: Transform - pos: 11.5,32.5 + pos: -14.5,7.5 parent: 4812 - - uid: 2838 + - uid: 972 components: - type: Transform - pos: 13.5,32.5 + pos: -14.5,8.5 parent: 4812 - - uid: 3120 + - uid: 973 components: - type: Transform - pos: 12.5,32.5 + pos: -14.5,9.5 parent: 4812 - - uid: 3121 + - uid: 974 components: - type: Transform - pos: 12.5,31.5 + pos: -14.5,10.5 parent: 4812 - - uid: 3122 + - uid: 975 components: - type: Transform - pos: 12.5,30.5 + pos: -14.5,11.5 parent: 4812 - - uid: 3123 + - uid: 976 components: - type: Transform - pos: 12.5,29.5 + pos: -14.5,12.5 parent: 4812 - - uid: 3124 + - uid: 977 components: - type: Transform - pos: 12.5,28.5 + pos: -14.5,13.5 parent: 4812 - - uid: 3125 + - uid: 978 components: - type: Transform - pos: 12.5,27.5 + pos: -13.5,13.5 parent: 4812 - - uid: 3126 + - uid: 979 components: - type: Transform - pos: 12.5,26.5 + pos: -12.5,13.5 parent: 4812 - - uid: 3127 + - uid: 980 components: - type: Transform - pos: 12.5,25.5 + pos: -12.5,14.5 parent: 4812 - - uid: 3128 + - uid: 981 components: - type: Transform - pos: 12.5,24.5 + pos: -8.5,-2.5 parent: 4812 - - uid: 3129 + - uid: 982 components: - type: Transform - pos: 13.5,24.5 + pos: -8.5,-3.5 parent: 4812 - - uid: 3130 + - uid: 983 components: - type: Transform - pos: 14.5,24.5 + pos: -9.5,-3.5 parent: 4812 - - uid: 3131 + - uid: 984 components: - type: Transform - pos: 15.5,24.5 + pos: -10.5,-3.5 parent: 4812 - - uid: 3132 + - uid: 985 components: - type: Transform - pos: 16.5,24.5 + pos: -12.5,-3.5 parent: 4812 - - uid: 3133 + - uid: 986 components: - type: Transform - pos: 17.5,24.5 + pos: -11.5,-3.5 parent: 4812 - - uid: 3134 + - uid: 987 components: - type: Transform - pos: 17.5,23.5 + pos: -12.5,-2.5 parent: 4812 - - uid: 3135 + - uid: 988 components: - type: Transform - pos: 17.5,22.5 + pos: -12.5,-1.5 parent: 4812 - - uid: 3265 + - uid: 989 components: - type: Transform - pos: -24.5,-25.5 + pos: -12.5,-0.5 parent: 4812 - - uid: 3734 + - uid: 990 components: - type: Transform - pos: -23.5,-25.5 + pos: -12.5,0.5 parent: 4812 - - uid: 3735 + - uid: 991 components: - type: Transform - pos: -25.5,-25.5 + pos: -12.5,1.5 parent: 4812 - - uid: 3884 + - uid: 992 components: - type: Transform - pos: 13.5,47.5 + pos: -12.5,2.5 parent: 4812 - - uid: 3885 + - uid: 993 components: - type: Transform - pos: 13.5,46.5 + pos: -12.5,3.5 parent: 4812 - - uid: 3886 + - uid: 994 components: - type: Transform - pos: 13.5,45.5 + pos: -12.5,4.5 parent: 4812 - - uid: 3887 + - uid: 995 components: - type: Transform - pos: 12.5,45.5 + pos: -12.5,5.5 parent: 4812 - - uid: 3888 + - uid: 996 components: - type: Transform - pos: 11.5,45.5 + pos: -12.5,6.5 parent: 4812 - - uid: 3889 + - uid: 997 components: - type: Transform - pos: 10.5,45.5 + pos: -12.5,7.5 parent: 4812 - - uid: 3890 + - uid: 998 components: - type: Transform - pos: 10.5,46.5 + pos: -12.5,8.5 parent: 4812 - - uid: 3891 + - uid: 999 components: - type: Transform - pos: 10.5,47.5 + pos: -12.5,9.5 parent: 4812 - - uid: 3892 + - uid: 1000 components: - type: Transform - pos: 10.5,48.5 + pos: -12.5,10.5 parent: 4812 - - uid: 3893 + - uid: 1001 components: - type: Transform - pos: 10.5,49.5 + pos: -12.5,11.5 parent: 4812 - - uid: 3894 + - uid: 1002 components: - type: Transform - pos: 10.5,50.5 + pos: -12.5,12.5 parent: 4812 - - uid: 3895 + - uid: 1004 components: - type: Transform - pos: 11.5,50.5 + pos: 6.5,4.5 parent: 4812 - - uid: 3896 + - uid: 1005 components: - type: Transform - pos: 11.5,51.5 + pos: 7.5,4.5 parent: 4812 - - uid: 4012 + - uid: 1006 components: - type: Transform - pos: -15.5,-17.5 + pos: 8.5,4.5 parent: 4812 - - uid: 4247 + - uid: 1007 components: - type: Transform - pos: 17.5,2.5 + pos: 9.5,4.5 parent: 4812 - - uid: 4248 + - uid: 1008 components: - type: Transform - pos: 18.5,2.5 + pos: 9.5,5.5 parent: 4812 - - uid: 4249 + - uid: 1009 components: - type: Transform - pos: 19.5,2.5 + pos: 9.5,6.5 parent: 4812 - - uid: 4250 + - uid: 1010 components: - type: Transform - pos: 19.5,1.5 + pos: 9.5,7.5 parent: 4812 - - uid: 4251 + - uid: 1011 components: - type: Transform - pos: 19.5,0.5 + pos: 9.5,8.5 parent: 4812 - - uid: 4252 + - uid: 1012 components: - type: Transform - pos: 19.5,-0.5 + pos: 9.5,9.5 parent: 4812 - - uid: 4253 + - uid: 1013 components: - type: Transform - pos: 20.5,-0.5 + pos: 9.5,10.5 parent: 4812 - - uid: 4254 + - uid: 1014 components: - type: Transform - pos: 21.5,-0.5 + pos: 9.5,11.5 parent: 4812 - - uid: 4255 + - uid: 1015 components: - type: Transform - pos: 22.5,-0.5 + pos: 8.5,11.5 parent: 4812 - - uid: 4256 + - uid: 1016 components: - type: Transform - pos: 22.5,-1.5 + pos: 7.5,11.5 parent: 4812 - - uid: 4806 + - uid: 1017 components: - type: Transform - pos: -16.5,-24.5 + pos: 6.5,11.5 parent: 4812 - - uid: 4813 + - uid: 1018 components: - type: Transform - pos: -16.5,-22.5 + pos: 5.5,11.5 parent: 4812 - - uid: 4870 + - uid: 1019 components: - type: Transform - pos: -18.5,-20.5 + pos: 4.5,11.5 parent: 4812 - - uid: 4914 + - uid: 1020 components: - type: Transform - pos: -17.5,-20.5 + pos: 3.5,11.5 parent: 4812 - - uid: 4915 + - uid: 1021 components: - type: Transform - pos: -16.5,-20.5 + pos: 2.5,11.5 parent: 4812 - - uid: 4945 + - uid: 1023 components: - type: Transform - pos: -18.5,-19.5 + pos: 7.5,-8.5 parent: 4812 - - uid: 4956 + - uid: 1024 components: - type: Transform - pos: -20.5,-26.5 + pos: 7.5,-9.5 parent: 4812 - - uid: 4957 + - uid: 1025 components: - type: Transform - pos: -22.5,-26.5 + pos: 8.5,-9.5 parent: 4812 - - uid: 4959 + - uid: 1026 components: - type: Transform - pos: -23.5,-25.5 + pos: 9.5,-9.5 parent: 4812 - - uid: 4960 + - uid: 1027 components: - type: Transform - pos: -18.5,-27.5 + pos: 9.5,-8.5 parent: 4812 - - uid: 4965 + - uid: 1028 components: - type: Transform - pos: -18.5,-28.5 + pos: 9.5,-7.5 parent: 4812 - - uid: 4967 + - uid: 1029 components: - type: Transform - pos: -16.5,-25.5 + pos: 9.5,-6.5 parent: 4812 - - uid: 4974 + - uid: 1030 components: - type: Transform - pos: -21.5,-26.5 + pos: 9.5,-5.5 parent: 4812 - - uid: 4975 + - uid: 1031 components: - type: Transform - pos: -16.5,-23.5 + pos: 9.5,-4.5 parent: 4812 - - uid: 4995 + - uid: 1032 components: - type: Transform - pos: -15.5,-19.5 + pos: 9.5,-3.5 parent: 4812 - - uid: 5972 + - uid: 1033 components: - type: Transform - pos: 16.5,-30.5 + pos: 9.5,-2.5 parent: 4812 - - uid: 5973 + - uid: 1034 components: - type: Transform - pos: 15.5,-30.5 + pos: 9.5,-1.5 parent: 4812 - - uid: 5974 + - uid: 1035 components: - type: Transform - pos: 15.5,-31.5 + pos: 9.5,-0.5 parent: 4812 - - uid: 5975 + - uid: 1036 components: - type: Transform - pos: 15.5,-32.5 + pos: 9.5,0.5 parent: 4812 - - uid: 5976 + - uid: 1037 components: - type: Transform - pos: 15.5,-33.5 + pos: 9.5,1.5 parent: 4812 - - uid: 5977 + - uid: 1038 components: - type: Transform - pos: 16.5,-33.5 + pos: 9.5,2.5 parent: 4812 - - uid: 5978 + - uid: 1039 components: - type: Transform - pos: 17.5,-33.5 + pos: 9.5,3.5 parent: 4812 - - uid: 5979 + - uid: 1419 components: - type: Transform - pos: 18.5,-33.5 + pos: 8.5,8.5 parent: 4812 - - uid: 5980 + - uid: 1543 components: - type: Transform - pos: 18.5,-32.5 + pos: 5.5,4.5 parent: 4812 - - uid: 5981 + - uid: 1858 components: - type: Transform - pos: 18.5,-31.5 + pos: 0.5,28.5 parent: 4812 - - uid: 5982 + - uid: 1860 components: - type: Transform - pos: 18.5,-30.5 + pos: -6.5,30.5 parent: 4812 - - uid: 5983 + - uid: 2141 components: - type: Transform - pos: 18.5,-29.5 + pos: 6.5,31.5 parent: 4812 - - uid: 5984 + - uid: 2142 components: - type: Transform - pos: 18.5,-28.5 + pos: 6.5,32.5 parent: 4812 - - uid: 5985 + - uid: 2143 components: - type: Transform - pos: 18.5,-27.5 + pos: 5.5,32.5 parent: 4812 - - uid: 5986 + - uid: 2144 components: - type: Transform - pos: 18.5,-26.5 + pos: 4.5,32.5 parent: 4812 - - uid: 5987 + - uid: 2145 components: - type: Transform - pos: 18.5,-25.5 + pos: 3.5,32.5 parent: 4812 - - uid: 5988 + - uid: 2146 components: - type: Transform - pos: 18.5,-24.5 + pos: 2.5,32.5 parent: 4812 - - uid: 5989 + - uid: 2147 components: - type: Transform - pos: 18.5,-23.5 + pos: 1.5,32.5 parent: 4812 - - uid: 5990 + - uid: 2148 components: - type: Transform - pos: 18.5,-22.5 + pos: 0.5,32.5 parent: 4812 - - uid: 5991 + - uid: 2149 components: - type: Transform - pos: 18.5,-21.5 + pos: -0.5,32.5 parent: 4812 - - uid: 5992 + - uid: 2150 components: - type: Transform - pos: 18.5,-20.5 + pos: -1.5,32.5 parent: 4812 - - uid: 5993 + - uid: 2151 components: - type: Transform - pos: 17.5,-20.5 + pos: -2.5,32.5 parent: 4812 - - uid: 5994 + - uid: 2152 components: - type: Transform - pos: 16.5,-20.5 + pos: -3.5,32.5 parent: 4812 - - uid: 5995 + - uid: 2153 components: - type: Transform - pos: 15.5,-20.5 + pos: -4.5,32.5 parent: 4812 - - uid: 5996 + - uid: 2154 components: - type: Transform - pos: 14.5,-20.5 + pos: -5.5,32.5 parent: 4812 - - uid: 5997 + - uid: 2155 components: - type: Transform - pos: 13.5,-20.5 + pos: -6.5,32.5 parent: 4812 - - uid: 5998 + - uid: 2156 components: - type: Transform - pos: 12.5,-20.5 + pos: -6.5,31.5 parent: 4812 - - uid: 5999 + - uid: 2157 components: - type: Transform - pos: 11.5,-20.5 + pos: 2.5,31.5 parent: 4812 - - uid: 6000 + - uid: 2158 components: - type: Transform - pos: 10.5,-20.5 + pos: 2.5,30.5 parent: 4812 - - uid: 6001 + - uid: 2159 components: - type: Transform - pos: 9.5,-20.5 + pos: 2.5,29.5 parent: 4812 - - uid: 6002 + - uid: 2160 components: - type: Transform - pos: 8.5,-20.5 + pos: 2.5,28.5 parent: 4812 - - uid: 6003 + - uid: 2161 components: - type: Transform - pos: 7.5,-20.5 + pos: 2.5,27.5 parent: 4812 - - uid: 6004 + - uid: 2162 components: - type: Transform - pos: 6.5,-20.5 + pos: 2.5,26.5 parent: 4812 - - uid: 6005 + - uid: 2163 components: - type: Transform - pos: 6.5,-19.5 + pos: 2.5,25.5 parent: 4812 - - uid: 6006 + - uid: 2164 components: - type: Transform - pos: 19.5,-20.5 + pos: 2.5,24.5 parent: 4812 - - uid: 6007 + - uid: 2165 components: - type: Transform - pos: 20.5,-20.5 + pos: 2.5,23.5 parent: 4812 - - uid: 6008 + - uid: 2166 components: - type: Transform - pos: 21.5,-20.5 + pos: 2.5,22.5 parent: 4812 - - uid: 6009 + - uid: 2167 components: - type: Transform - pos: 22.5,-20.5 + pos: 2.5,21.5 parent: 4812 - - uid: 6010 + - uid: 2168 components: - type: Transform - pos: 22.5,-21.5 + pos: 2.5,20.5 parent: 4812 - - uid: 6011 + - uid: 2169 components: - type: Transform - pos: 22.5,-22.5 + pos: 1.5,20.5 parent: 4812 - - uid: 6012 + - uid: 2170 components: - type: Transform - pos: 23.5,-22.5 + pos: 0.5,20.5 parent: 4812 - - uid: 6013 + - uid: 2171 components: - type: Transform - pos: 24.5,-22.5 + pos: 0.5,21.5 parent: 4812 - - uid: 6014 + - uid: 2172 components: - type: Transform - pos: 25.5,-22.5 + pos: 3.5,25.5 parent: 4812 - - uid: 6015 + - uid: 2173 components: - type: Transform - pos: 26.5,-22.5 + pos: 4.5,25.5 parent: 4812 - - uid: 6016 + - uid: 2174 components: - type: Transform - pos: 27.5,-22.5 + pos: 5.5,25.5 parent: 4812 - - uid: 6017 + - uid: 2175 components: - type: Transform - pos: 28.5,-22.5 + pos: 6.5,25.5 parent: 4812 - - uid: 6018 + - uid: 2176 components: - type: Transform - pos: 28.5,-21.5 + pos: 7.5,25.5 parent: 4812 - - uid: 6051 + - uid: 2177 components: - type: Transform - pos: 13.5,-21.5 + pos: 8.5,25.5 parent: 4812 - - uid: 6065 + - uid: 2178 components: - type: Transform - pos: 28.5,-23.5 + pos: 9.5,25.5 parent: 4812 - - uid: 6635 + - uid: 2179 components: - type: Transform - pos: -30.5,19.5 + pos: 9.5,26.5 parent: 4812 - - uid: 6636 + - uid: 2180 components: - type: Transform - pos: -31.5,21.5 + pos: 9.5,27.5 parent: 4812 - - uid: 6639 + - uid: 2181 components: - type: Transform - pos: -31.5,20.5 + pos: 8.5,24.5 parent: 4812 - - uid: 6640 + - uid: 2182 components: - type: Transform - pos: -26.5,-25.5 + pos: 8.5,23.5 parent: 4812 - - uid: 6641 + - uid: 2183 components: - type: Transform - pos: -27.5,-25.5 + pos: 6.5,24.5 parent: 4812 - - uid: 6660 + - uid: 2184 components: - type: Transform - pos: -25.5,-23.5 + pos: 6.5,23.5 parent: 4812 - - uid: 6661 + - uid: 2185 components: - type: Transform - pos: -24.5,-22.5 + pos: -2.5,31.5 parent: 4812 - - uid: 6664 + - uid: 2186 components: - type: Transform - pos: -20.5,-22.5 + pos: 4.5,24.5 parent: 4812 - - uid: 6666 + - uid: 2187 components: - type: Transform - pos: -25.5,-24.5 + pos: 4.5,26.5 parent: 4812 - - uid: 6668 + - uid: 2188 components: - type: Transform - pos: -17.5,-22.5 + pos: -2.5,30.5 parent: 4812 - - uid: 6780 + - uid: 2189 components: - type: Transform - pos: -10.5,-30.5 + pos: -2.5,29.5 parent: 4812 - - uid: 6782 + - uid: 2190 components: - type: Transform - pos: -19.5,-22.5 + pos: -2.5,28.5 parent: 4812 - - uid: 6787 + - uid: 2191 components: - type: Transform - pos: -16.5,-21.5 + pos: -2.5,28.5 parent: 4812 - - uid: 6902 + - uid: 2192 components: - type: Transform - pos: -8.5,-31.5 + pos: -2.5,27.5 parent: 4812 - - uid: 6903 + - uid: 2193 components: - type: Transform - pos: -8.5,-32.5 + pos: -3.5,28.5 parent: 4812 - - uid: 6904 + - uid: 2194 components: - type: Transform - pos: -8.5,-33.5 + pos: -4.5,28.5 parent: 4812 - - uid: 6905 + - uid: 2195 components: - type: Transform - pos: -8.5,-30.5 + pos: -4.5,27.5 parent: 4812 - - uid: 6906 + - uid: 2196 components: - type: Transform - pos: -9.5,-32.5 + pos: -1.5,28.5 parent: 4812 - - uid: 6907 + - uid: 2197 components: - type: Transform - pos: -10.5,-32.5 + pos: -0.5,28.5 parent: 4812 - - uid: 6908 + - uid: 2198 components: - type: Transform - pos: -11.5,-32.5 + pos: -0.5,27.5 parent: 4812 - - uid: 6909 + - uid: 2200 components: - type: Transform - pos: -11.5,-31.5 + pos: 0.5,29.5 parent: 4812 - - uid: 6910 + - uid: 2203 components: - type: Transform - pos: -11.5,-30.5 + pos: -5.5,29.5 parent: 4812 - - uid: 6911 + - uid: 2208 components: - type: Transform - pos: -12.5,-30.5 + pos: -5.5,30.5 parent: 4812 - - uid: 6912 + - uid: 2385 components: - type: Transform - pos: -13.5,-30.5 + pos: -7.5,32.5 parent: 4812 - - uid: 6913 + - uid: 2386 components: - type: Transform - pos: -14.5,-30.5 + pos: -8.5,32.5 parent: 4812 - - uid: 6914 + - uid: 2387 components: - type: Transform - pos: -15.5,-30.5 + pos: -8.5,31.5 parent: 4812 - - uid: 6915 + - uid: 2388 components: - type: Transform - pos: -16.5,-30.5 + pos: -8.5,30.5 parent: 4812 - - uid: 6916 + - uid: 2389 components: - type: Transform - pos: -17.5,-30.5 + pos: -8.5,29.5 parent: 4812 - - uid: 6917 + - uid: 2390 components: - type: Transform - pos: -17.5,-31.5 + pos: -8.5,28.5 parent: 4812 - - uid: 7029 + - uid: 2391 components: - type: Transform - pos: -22.5,-25.5 + pos: -8.5,27.5 parent: 4812 - - uid: 7062 + - uid: 2392 components: - type: Transform - pos: -17.5,-15.5 + pos: -8.5,26.5 parent: 4812 - - uid: 7065 + - uid: 2393 components: - type: Transform - pos: -15.5,-16.5 + pos: -8.5,25.5 parent: 4812 - - uid: 7183 + - uid: 2394 components: - type: Transform - pos: -15.5,-20.5 + pos: -8.5,24.5 parent: 4812 - - uid: 7237 + - uid: 2396 components: - type: Transform - pos: -15.5,-15.5 + pos: -9.5,23.5 parent: 4812 - - uid: 7238 + - uid: 2397 components: - type: Transform - pos: -15.5,-14.5 + pos: -10.5,23.5 parent: 4812 - - uid: 7239 + - uid: 2398 components: - type: Transform - pos: -16.5,-15.5 + pos: -11.5,23.5 parent: 4812 - - uid: 7257 + - uid: 2399 components: - type: Transform - pos: -12.5,-26.5 + pos: -12.5,23.5 parent: 4812 - - uid: 7261 + - uid: 2400 components: - type: Transform - pos: -10.5,-29.5 + pos: -13.5,23.5 parent: 4812 - - uid: 7263 + - uid: 2401 components: - type: Transform - pos: -10.5,-25.5 + pos: -14.5,23.5 parent: 4812 - - uid: 7264 + - uid: 2402 components: - type: Transform - pos: -18.5,-26.5 + pos: -14.5,24.5 parent: 4812 - - uid: 7265 + - uid: 2403 components: - type: Transform - pos: -10.5,-26.5 + pos: -14.5,25.5 parent: 4812 - - uid: 7266 + - uid: 2404 components: - type: Transform - pos: -11.5,-25.5 + pos: -11.5,24.5 parent: 4812 - - uid: 7270 + - uid: 2405 components: - type: Transform - pos: -23.5,-22.5 + pos: -11.5,25.5 parent: 4812 - - uid: 7271 + - uid: 2406 components: - type: Transform - pos: -25.5,-22.5 + pos: -11.5,26.5 parent: 4812 - - uid: 7274 + - uid: 2407 components: - type: Transform - pos: -14.5,-26.5 + pos: -11.5,27.5 parent: 4812 - - uid: 7275 + - uid: 2408 components: - type: Transform - pos: -15.5,-26.5 + pos: -11.5,28.5 parent: 4812 - - uid: 7277 + - uid: 2409 components: - type: Transform - pos: -11.5,-26.5 + pos: -11.5,29.5 parent: 4812 - - uid: 7286 + - uid: 2410 components: - type: Transform - pos: -22.5,-22.5 + pos: -11.5,30.5 parent: 4812 - - uid: 7338 + - uid: 2411 components: - type: Transform - pos: -13.5,-26.5 + pos: -12.5,30.5 parent: 4812 - - uid: 7339 + - uid: 2412 components: - type: Transform - pos: -16.5,-26.5 + pos: -12.5,26.5 parent: 4812 - - uid: 7341 + - uid: 2413 components: - type: Transform - pos: -17.5,-26.5 + pos: -13.5,26.5 parent: 4812 - - uid: 7342 + - uid: 2414 components: - type: Transform - pos: -10.5,-28.5 + pos: -10.5,26.5 parent: 4812 - - uid: 7345 + - uid: 2415 components: - type: Transform - pos: -10.5,-27.5 + pos: -9.5,24.5 parent: 4812 - - uid: 7348 + - uid: 2416 components: - type: Transform - pos: -18.5,-22.5 + pos: -9.5,22.5 parent: 4812 - - uid: 7384 + - uid: 2453 components: - type: Transform - pos: -19.5,-26.5 + pos: -6.5,28.5 parent: 4812 - - uid: 7387 + - uid: 2457 components: - type: Transform - pos: -21.5,-22.5 + pos: -5.5,28.5 parent: 4812 - - uid: 7467 + - uid: 2632 components: - type: Transform - pos: -8.5,-34.5 + pos: 1.5,28.5 parent: 4812 - - uid: 7468 + - uid: 2633 components: - type: Transform - pos: -7.5,-34.5 + pos: 0.5,30.5 parent: 4812 - - uid: 7469 + - uid: 2644 components: - type: Transform - pos: -6.5,-34.5 + pos: 1.5,30.5 parent: 4812 - - uid: 7470 + - uid: 2834 components: - type: Transform - pos: -5.5,-34.5 + pos: 11.5,32.5 parent: 4812 - - uid: 7471 + - uid: 2838 components: - type: Transform - pos: -5.5,-33.5 + pos: 13.5,32.5 parent: 4812 - - uid: 7472 + - uid: 3120 components: - type: Transform - pos: -5.5,-32.5 + pos: 12.5,32.5 parent: 4812 - - uid: 7473 + - uid: 3121 components: - type: Transform - pos: -5.5,-31.5 + pos: 12.5,31.5 parent: 4812 - - uid: 7474 + - uid: 3122 components: - type: Transform - pos: -5.5,-30.5 + pos: 12.5,30.5 parent: 4812 - - uid: 7475 + - uid: 3123 components: - type: Transform - pos: -5.5,-29.5 + pos: 12.5,29.5 parent: 4812 - - uid: 7476 + - uid: 3124 components: - type: Transform - pos: -5.5,-28.5 + pos: 12.5,28.5 parent: 4812 - - uid: 7477 + - uid: 3125 components: - type: Transform - pos: -5.5,-27.5 + pos: 12.5,27.5 parent: 4812 - - uid: 7478 + - uid: 3126 components: - type: Transform - pos: -5.5,-26.5 + pos: 12.5,26.5 parent: 4812 - - uid: 7479 + - uid: 3127 components: - type: Transform - pos: -5.5,-25.5 + pos: 12.5,25.5 parent: 4812 - - uid: 7480 + - uid: 3128 components: - type: Transform - pos: -5.5,-24.5 + pos: 12.5,24.5 parent: 4812 - - uid: 7481 + - uid: 3129 components: - type: Transform - pos: -5.5,-23.5 + pos: 13.5,24.5 parent: 4812 - - uid: 7482 + - uid: 3130 components: - type: Transform - pos: -5.5,-22.5 + pos: 14.5,24.5 parent: 4812 - - uid: 7483 + - uid: 3131 components: - type: Transform - pos: -5.5,-21.5 + pos: 15.5,24.5 parent: 4812 - - uid: 7484 + - uid: 3132 components: - type: Transform - pos: -4.5,-21.5 + pos: 16.5,24.5 parent: 4812 - - uid: 7485 + - uid: 3133 components: - type: Transform - pos: -3.5,-21.5 + pos: 17.5,24.5 parent: 4812 - - uid: 7486 + - uid: 3134 components: - type: Transform - pos: -2.5,-21.5 + pos: 17.5,23.5 parent: 4812 - - uid: 7487 + - uid: 3135 components: - type: Transform - pos: -1.5,-21.5 + pos: 17.5,22.5 parent: 4812 - - uid: 7488 + - uid: 3265 components: - type: Transform - pos: -1.5,-20.5 + pos: -24.5,-25.5 parent: 4812 - - uid: 7986 + - uid: 3734 components: - type: Transform - pos: -36.5,13.5 + pos: -23.5,-25.5 parent: 4812 - - uid: 7987 + - uid: 3735 components: - type: Transform - pos: -36.5,12.5 + pos: -25.5,-25.5 parent: 4812 - - uid: 7988 + - uid: 3884 components: - type: Transform - pos: -36.5,11.5 + pos: 13.5,47.5 parent: 4812 - - uid: 7989 + - uid: 3885 components: - type: Transform - pos: -35.5,11.5 + pos: 13.5,46.5 parent: 4812 - - uid: 7990 + - uid: 3886 components: - type: Transform - pos: -34.5,11.5 + pos: 13.5,45.5 parent: 4812 - - uid: 7991 + - uid: 3887 components: - type: Transform - pos: -33.5,11.5 + pos: 12.5,45.5 parent: 4812 - - uid: 7992 + - uid: 3888 components: - type: Transform - pos: -32.5,11.5 + pos: 11.5,45.5 parent: 4812 - - uid: 7993 + - uid: 3889 components: - type: Transform - pos: -31.5,11.5 + pos: 10.5,45.5 parent: 4812 - - uid: 7994 + - uid: 3890 components: - type: Transform - pos: -31.5,10.5 + pos: 10.5,46.5 parent: 4812 - - uid: 7995 + - uid: 3891 components: - type: Transform - pos: -31.5,9.5 + pos: 10.5,47.5 parent: 4812 - - uid: 7996 + - uid: 3892 components: - type: Transform - pos: -31.5,8.5 + pos: 10.5,48.5 parent: 4812 - - uid: 7997 + - uid: 3893 components: - type: Transform - pos: -31.5,7.5 + pos: 10.5,49.5 parent: 4812 - - uid: 7998 + - uid: 3894 components: - type: Transform - pos: -32.5,7.5 + pos: 10.5,50.5 parent: 4812 - - uid: 7999 + - uid: 3895 components: - type: Transform - pos: -33.5,7.5 + pos: 11.5,50.5 parent: 4812 - - uid: 8000 + - uid: 3896 components: - type: Transform - pos: -34.5,7.5 + pos: 11.5,51.5 parent: 4812 - - uid: 8001 + - uid: 4012 components: - type: Transform - pos: -35.5,7.5 + pos: -15.5,-17.5 parent: 4812 - - uid: 8002 + - uid: 4247 components: - type: Transform - pos: -36.5,7.5 + pos: 17.5,2.5 parent: 4812 - - uid: 8003 + - uid: 4248 components: - type: Transform - pos: -37.5,7.5 + pos: 18.5,2.5 parent: 4812 - - uid: 8004 + - uid: 4249 components: - type: Transform - pos: -37.5,8.5 + pos: 19.5,2.5 parent: 4812 - - uid: 8005 + - uid: 4250 components: - type: Transform - pos: -30.5,11.5 + pos: 19.5,1.5 parent: 4812 - - uid: 8006 + - uid: 4251 components: - type: Transform - pos: -29.5,11.5 + pos: 19.5,0.5 parent: 4812 - - uid: 8007 + - uid: 4252 components: - type: Transform - pos: -29.5,12.5 + pos: 19.5,-0.5 parent: 4812 - - uid: 8008 + - uid: 4253 components: - type: Transform - pos: -29.5,13.5 + pos: 20.5,-0.5 parent: 4812 - - uid: 8009 + - uid: 4254 components: - type: Transform - pos: -29.5,14.5 + pos: 21.5,-0.5 parent: 4812 - - uid: 8010 + - uid: 4255 components: - type: Transform - pos: -29.5,15.5 + pos: 22.5,-0.5 parent: 4812 - - uid: 8011 + - uid: 4256 components: - type: Transform - pos: -29.5,16.5 + pos: 22.5,-1.5 parent: 4812 - - uid: 8012 + - uid: 4806 components: - type: Transform - pos: -29.5,17.5 + pos: -16.5,-24.5 parent: 4812 - - uid: 8013 + - uid: 4813 components: - type: Transform - pos: -29.5,18.5 + pos: -16.5,-22.5 parent: 4812 - - uid: 8014 + - uid: 4870 components: - type: Transform - pos: -29.5,19.5 + pos: -18.5,-20.5 parent: 4812 - - uid: 8015 + - uid: 4914 components: - type: Transform - pos: -28.5,19.5 + pos: -17.5,-20.5 parent: 4812 - - uid: 8016 + - uid: 4915 components: - type: Transform - pos: -27.5,19.5 + pos: -16.5,-20.5 parent: 4812 - - uid: 8017 + - uid: 4945 components: - type: Transform - pos: -26.5,19.5 + pos: -18.5,-19.5 parent: 4812 - - uid: 8018 + - uid: 4956 components: - type: Transform - pos: -25.5,19.5 + pos: -20.5,-26.5 parent: 4812 - - uid: 8019 + - uid: 4957 components: - type: Transform - pos: -24.5,19.5 + pos: -22.5,-26.5 parent: 4812 - - uid: 8020 + - uid: 4959 components: - type: Transform - pos: -24.5,20.5 + pos: -23.5,-25.5 parent: 4812 - - uid: 8021 + - uid: 4960 components: - type: Transform - pos: -28.5,16.5 + pos: -18.5,-27.5 parent: 4812 - - uid: 8022 + - uid: 4965 components: - type: Transform - pos: -27.5,16.5 + pos: -18.5,-28.5 parent: 4812 - - uid: 8023 + - uid: 4967 components: - type: Transform - pos: -26.5,16.5 + pos: -16.5,-25.5 parent: 4812 - - uid: 8024 + - uid: 4974 components: - type: Transform - pos: -25.5,16.5 + pos: -21.5,-26.5 parent: 4812 - - uid: 8025 + - uid: 4975 components: - type: Transform - pos: -24.5,16.5 + pos: -16.5,-23.5 parent: 4812 - - uid: 8026 + - uid: 4995 components: - type: Transform - pos: -24.5,17.5 + pos: -15.5,-19.5 parent: 4812 - - uid: 8027 + - uid: 5972 components: - type: Transform - pos: -27.5,17.5 + pos: 16.5,-30.5 parent: 4812 - - uid: 8028 + - uid: 5973 components: - type: Transform - pos: -27.5,20.5 + pos: 15.5,-30.5 parent: 4812 - - uid: 8029 + - uid: 5974 components: - type: Transform - pos: -29.5,10.5 + pos: 15.5,-31.5 parent: 4812 - - uid: 8030 + - uid: 5975 components: - type: Transform - pos: -28.5,10.5 + pos: 15.5,-32.5 parent: 4812 - - uid: 8031 + - uid: 5976 components: - type: Transform - pos: -27.5,10.5 + pos: 15.5,-33.5 parent: 4812 - - uid: 8032 + - uid: 5977 components: - type: Transform - pos: -26.5,10.5 + pos: 16.5,-33.5 parent: 4812 - - uid: 8033 + - uid: 5978 components: - type: Transform - pos: -25.5,10.5 + pos: 17.5,-33.5 parent: 4812 - - uid: 8034 + - uid: 5979 components: - type: Transform - pos: -24.5,10.5 + pos: 18.5,-33.5 parent: 4812 - - uid: 8035 + - uid: 5980 components: - type: Transform - pos: -32.5,10.5 + pos: 18.5,-32.5 parent: 4812 - - uid: 8036 + - uid: 5981 components: - type: Transform - pos: -32.5,12.5 + pos: 18.5,-31.5 parent: 4812 - - uid: 8037 + - uid: 5982 components: - type: Transform - pos: -30.5,14.5 + pos: 18.5,-30.5 parent: 4812 - - uid: 8038 + - uid: 5983 components: - type: Transform - pos: -31.5,14.5 + pos: 18.5,-29.5 parent: 4812 - - uid: 8039 + - uid: 5984 components: - type: Transform - pos: -32.5,14.5 + pos: 18.5,-28.5 parent: 4812 - - uid: 8040 + - uid: 5985 components: - type: Transform - pos: -33.5,14.5 + pos: 18.5,-27.5 parent: 4812 - - uid: 8041 + - uid: 5986 components: - type: Transform - pos: -33.5,13.5 + pos: 18.5,-26.5 parent: 4812 - - uid: 8042 + - uid: 5987 components: - type: Transform - pos: -34.5,14.5 + pos: 18.5,-25.5 parent: 4812 - - uid: 8043 + - uid: 5988 components: - type: Transform - pos: -35.5,14.5 + pos: 18.5,-24.5 parent: 4812 - - uid: 8044 + - uid: 5989 components: - type: Transform - pos: -35.5,13.5 + pos: 18.5,-23.5 parent: 4812 - - uid: 8045 + - uid: 5990 components: - type: Transform - pos: -35.5,15.5 + pos: 18.5,-22.5 parent: 4812 - - uid: 8046 + - uid: 5991 components: - type: Transform - pos: -35.5,16.5 + pos: 18.5,-21.5 parent: 4812 - - uid: 8047 + - uid: 5992 components: - type: Transform - pos: -35.5,17.5 + pos: 18.5,-20.5 parent: 4812 - - uid: 8048 + - uid: 5993 components: - type: Transform - pos: -35.5,18.5 + pos: 17.5,-20.5 parent: 4812 - - uid: 8049 + - uid: 5994 components: - type: Transform - pos: -33.5,15.5 + pos: 16.5,-20.5 parent: 4812 - - uid: 8050 + - uid: 5995 components: - type: Transform - pos: -33.5,16.5 + pos: 15.5,-20.5 parent: 4812 - - uid: 8051 + - uid: 5996 components: - type: Transform - pos: -33.5,17.5 + pos: 14.5,-20.5 parent: 4812 - - uid: 8052 + - uid: 5997 components: - type: Transform - pos: -33.5,18.5 + pos: 13.5,-20.5 parent: 4812 - - uid: 8053 + - uid: 5998 components: - type: Transform - pos: -33.5,19.5 + pos: 12.5,-20.5 parent: 4812 - - uid: 8054 + - uid: 5999 components: - type: Transform - pos: -33.5,20.5 + pos: 11.5,-20.5 parent: 4812 - - uid: 8055 + - uid: 6000 components: - type: Transform - pos: -32.5,19.5 + pos: 10.5,-20.5 parent: 4812 - - uid: 8056 + - uid: 6001 components: - type: Transform - pos: -32.5,20.5 + pos: 9.5,-20.5 parent: 4812 - - uid: 8069 + - uid: 6002 components: - type: Transform - pos: -31.5,19.5 + pos: 8.5,-20.5 parent: 4812 - - uid: 8177 + - uid: 6003 components: - type: Transform - pos: -23.5,20.5 + pos: 7.5,-20.5 parent: 4812 - - uid: 8178 + - uid: 6004 components: - type: Transform - pos: -23.5,21.5 + pos: 6.5,-20.5 parent: 4812 - - uid: 8179 + - uid: 6005 components: - type: Transform - pos: -22.5,20.5 + pos: 6.5,-19.5 parent: 4812 - - uid: 8180 + - uid: 6006 components: - type: Transform - pos: -21.5,20.5 + pos: 19.5,-20.5 parent: 4812 - - uid: 8181 + - uid: 6007 components: - type: Transform - pos: -20.5,20.5 + pos: 20.5,-20.5 parent: 4812 - - uid: 8182 + - uid: 6008 components: - type: Transform - pos: -19.5,20.5 + pos: 21.5,-20.5 parent: 4812 - - uid: 8183 + - uid: 6009 components: - type: Transform - pos: -19.5,21.5 + pos: 22.5,-20.5 parent: 4812 - - uid: 8184 + - uid: 6010 components: - type: Transform - pos: -20.5,21.5 + pos: 22.5,-21.5 parent: 4812 - - uid: 8185 + - uid: 6011 components: - type: Transform - pos: -21.5,21.5 + pos: 22.5,-22.5 parent: 4812 - - uid: 8186 + - uid: 6012 components: - type: Transform - pos: -21.5,22.5 + pos: 23.5,-22.5 parent: 4812 - - uid: 8187 + - uid: 6013 components: - type: Transform - pos: -21.5,23.5 + pos: 24.5,-22.5 parent: 4812 - - uid: 8188 + - uid: 6014 components: - type: Transform - pos: -21.5,24.5 + pos: 25.5,-22.5 parent: 4812 - - uid: 8189 + - uid: 6015 components: - type: Transform - pos: -21.5,25.5 + pos: 26.5,-22.5 parent: 4812 - - uid: 8190 + - uid: 6016 components: - type: Transform - pos: -21.5,26.5 + pos: 27.5,-22.5 parent: 4812 - - uid: 8191 + - uid: 6017 components: - type: Transform - pos: -21.5,27.5 + pos: 28.5,-22.5 parent: 4812 - - uid: 8192 + - uid: 6018 components: - type: Transform - pos: -21.5,28.5 + pos: 28.5,-21.5 parent: 4812 - - uid: 8193 + - uid: 6051 components: - type: Transform - pos: -22.5,28.5 + pos: 13.5,-21.5 parent: 4812 - - uid: 8194 + - uid: 6065 components: - type: Transform - pos: -22.5,29.5 + pos: 28.5,-23.5 parent: 4812 - - uid: 8195 + - uid: 6635 components: - type: Transform - pos: -22.5,26.5 + pos: -30.5,19.5 parent: 4812 - - uid: 8196 + - uid: 6636 components: - type: Transform - pos: -23.5,26.5 + pos: -31.5,21.5 parent: 4812 - - uid: 8853 + - uid: 6639 components: - type: Transform - pos: 13.5,-19.5 + pos: -31.5,20.5 parent: 4812 - - uid: 8858 + - uid: 6640 components: - type: Transform - pos: 13.5,-18.5 + pos: -26.5,-25.5 parent: 4812 - - uid: 8878 + - uid: 6641 components: - type: Transform - pos: -24.5,-10.5 + pos: -27.5,-25.5 parent: 4812 - - uid: 8879 + - uid: 6660 components: - type: Transform - pos: -24.5,-11.5 + pos: -25.5,-23.5 parent: 4812 - - uid: 8880 + - uid: 6661 components: - type: Transform - pos: -25.5,-11.5 + pos: -24.5,-22.5 parent: 4812 - - uid: 8881 + - uid: 6664 components: - type: Transform - pos: -26.5,-11.5 + pos: -20.5,-22.5 parent: 4812 - - uid: 8882 + - uid: 6666 components: - type: Transform - pos: -27.5,-11.5 + pos: -25.5,-24.5 parent: 4812 - - uid: 8883 + - uid: 6668 components: - type: Transform - pos: -28.5,-11.5 + pos: -17.5,-22.5 parent: 4812 - - uid: 8884 + - uid: 6780 components: - type: Transform - pos: -29.5,-11.5 + pos: -10.5,-30.5 parent: 4812 - - uid: 8885 + - uid: 6782 components: - type: Transform - pos: -30.5,-11.5 + pos: -19.5,-22.5 parent: 4812 - - uid: 8886 + - uid: 6787 components: - type: Transform - pos: -31.5,-11.5 + pos: -16.5,-21.5 parent: 4812 - - uid: 8887 + - uid: 6902 components: - type: Transform - pos: -32.5,-11.5 + pos: -8.5,-31.5 parent: 4812 - - uid: 8888 + - uid: 6903 components: - type: Transform - pos: -33.5,-11.5 + pos: -8.5,-32.5 parent: 4812 - - uid: 8889 + - uid: 6904 components: - type: Transform - pos: -34.5,-11.5 + pos: -8.5,-33.5 parent: 4812 - - uid: 8890 + - uid: 6905 components: - type: Transform - pos: -35.5,-11.5 + pos: -8.5,-30.5 parent: 4812 - - uid: 8891 + - uid: 6906 components: - type: Transform - pos: -36.5,-11.5 + pos: -9.5,-32.5 parent: 4812 - - uid: 8892 + - uid: 6907 components: - type: Transform - pos: -36.5,-12.5 + pos: -10.5,-32.5 parent: 4812 - - uid: 8893 + - uid: 6908 components: - type: Transform - pos: -36.5,-13.5 + pos: -11.5,-32.5 parent: 4812 - - uid: 8894 + - uid: 6909 components: - type: Transform - pos: -36.5,-14.5 + pos: -11.5,-31.5 parent: 4812 - - uid: 8895 + - uid: 6910 components: - type: Transform - pos: -36.5,-15.5 + pos: -11.5,-30.5 parent: 4812 - - uid: 8897 + - uid: 6911 components: - type: Transform - pos: -33.5,-24.5 + pos: -12.5,-30.5 parent: 4812 - - uid: 8898 + - uid: 6912 components: - type: Transform - pos: -34.5,-24.5 + pos: -13.5,-30.5 parent: 4812 - - uid: 8899 + - uid: 6913 components: - type: Transform - pos: -34.5,-23.5 + pos: -14.5,-30.5 parent: 4812 - - uid: 8900 + - uid: 6914 components: - type: Transform - pos: -34.5,-22.5 + pos: -15.5,-30.5 parent: 4812 - - uid: 8901 + - uid: 6915 components: - type: Transform - pos: -34.5,-21.5 + pos: -16.5,-30.5 parent: 4812 - - uid: 8902 + - uid: 6916 components: - type: Transform - pos: 13.5,-17.5 + pos: -17.5,-30.5 parent: 4812 - - uid: 8906 + - uid: 6917 components: - type: Transform - pos: 13.5,-16.5 + pos: -17.5,-31.5 parent: 4812 - - uid: 8967 + - uid: 7029 components: - type: Transform - pos: 13.5,-22.5 + pos: -22.5,-25.5 parent: 4812 - - uid: 8969 + - uid: 7062 components: - type: Transform - pos: 28.5,-24.5 + pos: -17.5,-15.5 parent: 4812 - - uid: 8971 + - uid: 7065 components: - type: Transform - pos: 28.5,-25.5 + pos: -15.5,-16.5 parent: 4812 - - uid: 8972 + - uid: 7183 components: - type: Transform - pos: 29.5,-25.5 + pos: -15.5,-20.5 parent: 4812 - - uid: 8973 + - uid: 7237 components: - type: Transform - pos: 30.5,-25.5 + pos: -15.5,-15.5 parent: 4812 - - uid: 8974 + - uid: 7238 components: - type: Transform - pos: 31.5,-25.5 + pos: -15.5,-14.5 parent: 4812 - - uid: 8975 + - uid: 7239 components: - type: Transform - pos: 32.5,-25.5 + pos: -16.5,-15.5 parent: 4812 - - uid: 8976 + - uid: 7257 components: - type: Transform - pos: 32.5,-26.5 + pos: -12.5,-26.5 parent: 4812 - - uid: 9014 + - uid: 7261 components: - type: Transform - pos: 32.5,-27.5 + pos: -10.5,-29.5 parent: 4812 - - uid: 9074 + - uid: 7263 components: - type: Transform - pos: 32.5,-28.5 + pos: -10.5,-25.5 parent: 4812 - - uid: 9089 + - uid: 7264 components: - type: Transform - pos: 32.5,-29.5 + pos: -18.5,-26.5 parent: 4812 - - uid: 9287 + - uid: 7265 components: - type: Transform - pos: -38.5,7.5 + pos: -10.5,-26.5 parent: 4812 - - uid: 9289 + - uid: 7266 components: - type: Transform - pos: -38.5,6.5 + pos: -11.5,-25.5 parent: 4812 - - uid: 9524 + - uid: 7270 components: - type: Transform - pos: 16.5,-19.5 + pos: -23.5,-22.5 parent: 4812 - - uid: 9580 + - uid: 7271 components: - type: Transform - pos: 16.5,-18.5 + pos: -25.5,-22.5 parent: 4812 - - uid: 9581 + - uid: 7274 components: - type: Transform - pos: 16.5,-17.5 + pos: -14.5,-26.5 parent: 4812 - - uid: 9582 + - uid: 7275 components: - type: Transform - pos: 16.5,-16.5 + pos: -15.5,-26.5 parent: 4812 - - uid: 9583 + - uid: 7277 components: - type: Transform - pos: 17.5,-16.5 + pos: -11.5,-26.5 parent: 4812 - - uid: 10001 + - uid: 7286 components: - type: Transform - pos: -34.5,-20.5 + pos: -22.5,-22.5 parent: 4812 - - uid: 10002 + - uid: 7338 components: - type: Transform - pos: -35.5,-20.5 + pos: -13.5,-26.5 parent: 4812 - - uid: 10003 + - uid: 7339 components: - type: Transform - pos: -36.5,-20.5 + pos: -16.5,-26.5 parent: 4812 - - uid: 10004 + - uid: 7341 components: - type: Transform - pos: -37.5,-20.5 + pos: -17.5,-26.5 parent: 4812 - - uid: 10005 + - uid: 7342 components: - type: Transform - pos: -38.5,-20.5 + pos: -10.5,-28.5 parent: 4812 - - uid: 10006 + - uid: 7345 components: - type: Transform - pos: -39.5,-20.5 + pos: -10.5,-27.5 parent: 4812 - - uid: 10007 + - uid: 7348 components: - type: Transform - pos: -40.5,-20.5 + pos: -18.5,-22.5 parent: 4812 - - uid: 10008 + - uid: 7384 components: - type: Transform - pos: -41.5,-20.5 + pos: -19.5,-26.5 parent: 4812 - - uid: 10009 + - uid: 7387 components: - type: Transform - pos: -42.5,-20.5 + pos: -21.5,-22.5 parent: 4812 - - uid: 10010 + - uid: 7467 components: - type: Transform - pos: -43.5,-20.5 + pos: -8.5,-34.5 parent: 4812 - - uid: 10011 + - uid: 7468 components: - type: Transform - pos: -44.5,-20.5 + pos: -7.5,-34.5 parent: 4812 - - uid: 10012 + - uid: 7469 components: - type: Transform - pos: -45.5,-20.5 + pos: -6.5,-34.5 parent: 4812 - - uid: 10013 + - uid: 7470 components: - type: Transform - pos: -46.5,-20.5 + pos: -5.5,-34.5 parent: 4812 - - uid: 10014 + - uid: 7471 components: - type: Transform - pos: -47.5,-20.5 + pos: -5.5,-33.5 parent: 4812 - - uid: 10015 + - uid: 7472 components: - type: Transform - pos: -48.5,-20.5 + pos: -5.5,-32.5 parent: 4812 - - uid: 10016 + - uid: 7473 components: - type: Transform - pos: -48.5,-19.5 + pos: -5.5,-31.5 parent: 4812 - - uid: 10017 + - uid: 7474 components: - type: Transform - pos: -36.5,-19.5 + pos: -5.5,-30.5 parent: 4812 - - uid: 10018 + - uid: 7475 components: - type: Transform - pos: -36.5,-18.5 + pos: -5.5,-29.5 parent: 4812 - - uid: 10019 + - uid: 7476 components: - type: Transform - pos: -36.5,-17.5 + pos: -5.5,-28.5 parent: 4812 - - uid: 10020 + - uid: 7477 components: - type: Transform - pos: -36.5,-16.5 + pos: -5.5,-27.5 parent: 4812 - - uid: 10022 + - uid: 7478 components: - type: Transform - pos: -44.5,-19.5 + pos: -5.5,-26.5 parent: 4812 - - uid: 10023 + - uid: 7479 components: - type: Transform - pos: -44.5,-18.5 + pos: -5.5,-25.5 parent: 4812 - - uid: 10024 + - uid: 7480 components: - type: Transform - pos: -44.5,-17.5 + pos: -5.5,-24.5 parent: 4812 - - uid: 10025 + - uid: 7481 components: - type: Transform - pos: -44.5,-16.5 + pos: -5.5,-23.5 parent: 4812 - - uid: 10026 + - uid: 7482 components: - type: Transform - pos: -44.5,-15.5 + pos: -5.5,-22.5 parent: 4812 - - uid: 10027 + - uid: 7483 components: - type: Transform - pos: -44.5,-14.5 + pos: -5.5,-21.5 parent: 4812 - - uid: 10028 + - uid: 7484 components: - type: Transform - pos: -44.5,-13.5 + pos: -4.5,-21.5 parent: 4812 - - uid: 10029 + - uid: 7485 components: - type: Transform - pos: -44.5,-12.5 + pos: -3.5,-21.5 parent: 4812 - - uid: 10030 + - uid: 7486 components: - type: Transform - pos: -44.5,-11.5 + pos: -2.5,-21.5 parent: 4812 - - uid: 10031 + - uid: 7487 components: - type: Transform - pos: -44.5,-10.5 + pos: -1.5,-21.5 parent: 4812 - - uid: 10032 + - uid: 7488 components: - type: Transform - pos: -44.5,-9.5 + pos: -1.5,-20.5 parent: 4812 - - uid: 10033 + - uid: 7986 components: - type: Transform - pos: -44.5,-8.5 + pos: -36.5,13.5 parent: 4812 - - uid: 10034 + - uid: 7987 components: - type: Transform - pos: -44.5,-7.5 + pos: -36.5,12.5 parent: 4812 - - uid: 10035 + - uid: 7988 components: - type: Transform - pos: -44.5,-6.5 + pos: -36.5,11.5 parent: 4812 - - uid: 10036 + - uid: 7989 components: - type: Transform - pos: -43.5,-6.5 + pos: -35.5,11.5 parent: 4812 - - uid: 10037 + - uid: 7990 components: - type: Transform - pos: -42.5,-6.5 + pos: -34.5,11.5 parent: 4812 - - uid: 10038 + - uid: 7991 components: - type: Transform - pos: -41.5,-6.5 + pos: -33.5,11.5 parent: 4812 - - uid: 10039 + - uid: 7992 components: - type: Transform - pos: -41.5,-5.5 + pos: -32.5,11.5 parent: 4812 - - uid: 10040 + - uid: 7993 components: - type: Transform - pos: -41.5,-4.5 + pos: -31.5,11.5 parent: 4812 - - uid: 10184 + - uid: 7994 components: - type: Transform - pos: -50.5,-25.5 + pos: -31.5,10.5 parent: 4812 - - uid: 10185 + - uid: 7995 components: - type: Transform - pos: -50.5,-24.5 + pos: -31.5,9.5 parent: 4812 - - uid: 10186 + - uid: 7996 components: - type: Transform - pos: -51.5,-24.5 + pos: -31.5,8.5 parent: 4812 - - uid: 10187 + - uid: 7997 components: - type: Transform - pos: -51.5,-23.5 + pos: -31.5,7.5 parent: 4812 - - uid: 10188 + - uid: 7998 components: - type: Transform - pos: -51.5,-22.5 + pos: -32.5,7.5 parent: 4812 - - uid: 10189 + - uid: 7999 components: - type: Transform - pos: -51.5,-21.5 + pos: -33.5,7.5 parent: 4812 - - uid: 10652 + - uid: 8000 components: - type: Transform - pos: -53.5,-13.5 + pos: -34.5,7.5 parent: 4812 - - uid: 10653 + - uid: 8001 components: - type: Transform - pos: -53.5,-12.5 + pos: -35.5,7.5 parent: 4812 - - uid: 10654 + - uid: 8002 components: - type: Transform - pos: -54.5,-12.5 + pos: -36.5,7.5 parent: 4812 - - uid: 10655 + - uid: 8003 components: - type: Transform - pos: -55.5,-12.5 + pos: -37.5,7.5 parent: 4812 - - uid: 11151 + - uid: 8004 components: - type: Transform - pos: 14.5,-33.5 + pos: -37.5,8.5 parent: 4812 - - uid: 11152 + - uid: 8005 components: - type: Transform - pos: 13.5,-33.5 + pos: -30.5,11.5 parent: 4812 - - uid: 11153 + - uid: 8006 components: - type: Transform - pos: 12.5,-33.5 + pos: -29.5,11.5 parent: 4812 - - uid: 11154 + - uid: 8007 components: - type: Transform - pos: 12.5,-32.5 + pos: -29.5,12.5 parent: 4812 - - uid: 11155 + - uid: 8008 components: - type: Transform - pos: 12.5,-31.5 + pos: -29.5,13.5 parent: 4812 - - uid: 11156 + - uid: 8009 components: - type: Transform - pos: 12.5,-30.5 + pos: -29.5,14.5 parent: 4812 - - uid: 11157 + - uid: 8010 components: - type: Transform - pos: 11.5,-30.5 + pos: -29.5,15.5 parent: 4812 - - uid: 11158 + - uid: 8011 components: - type: Transform - pos: 10.5,-30.5 + pos: -29.5,16.5 parent: 4812 - - uid: 11159 + - uid: 8012 components: - type: Transform - pos: 9.5,-30.5 + pos: -29.5,17.5 parent: 4812 - - uid: 11160 + - uid: 8013 components: - type: Transform - pos: 8.5,-30.5 + pos: -29.5,18.5 parent: 4812 - - uid: 11161 + - uid: 8014 components: - type: Transform - pos: 8.5,-31.5 + pos: -29.5,19.5 parent: 4812 - - uid: 11162 + - uid: 8015 components: - type: Transform - pos: 8.5,-32.5 + pos: -28.5,19.5 parent: 4812 - - uid: 11163 + - uid: 8016 components: - type: Transform - pos: 8.5,-33.5 + pos: -27.5,19.5 parent: 4812 - - uid: 11164 + - uid: 8017 components: - type: Transform - pos: 8.5,-34.5 + pos: -26.5,19.5 parent: 4812 - - uid: 11165 + - uid: 8018 components: - type: Transform - pos: 8.5,-35.5 + pos: -25.5,19.5 parent: 4812 - - uid: 11166 + - uid: 8019 components: - type: Transform - pos: 9.5,-35.5 + pos: -24.5,19.5 parent: 4812 - - uid: 11167 + - uid: 8020 components: - type: Transform - pos: 10.5,-35.5 + pos: -24.5,20.5 parent: 4812 - - uid: 11438 + - uid: 8021 components: - type: Transform - pos: 30.5,-39.5 + pos: -28.5,16.5 parent: 4812 - - uid: 11439 + - uid: 8022 components: - type: Transform - pos: 30.5,-38.5 + pos: -27.5,16.5 parent: 4812 - - uid: 11440 + - uid: 8023 components: - type: Transform - pos: 30.5,-37.5 + pos: -26.5,16.5 parent: 4812 -- proto: CableMVStack - entities: - - uid: 8586 + - uid: 8024 components: - type: Transform - pos: -16.577534,7.6930285 + pos: -25.5,16.5 parent: 4812 - - uid: 11954 + - uid: 8025 components: - type: Transform - pos: -10.530096,15.7538185 + pos: -24.5,16.5 parent: 4812 - - uid: 11955 + - uid: 8026 components: - type: Transform - pos: -10.530096,15.7538185 + pos: -24.5,17.5 parent: 4812 -- proto: CableTerminal - entities: - - uid: 3794 + - uid: 8027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,46.5 + pos: -27.5,17.5 parent: 4812 - - uid: 8736 + - uid: 8028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-3.5 + pos: -27.5,20.5 parent: 4812 - - uid: 8737 + - uid: 8029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-3.5 + pos: -29.5,10.5 parent: 4812 - - uid: 10167 + - uid: 8030 components: - type: Transform - pos: -53.5,-24.5 + pos: -28.5,10.5 parent: 4812 - - uid: 10648 + - uid: 8031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-12.5 + pos: -27.5,10.5 parent: 4812 - - uid: 11393 + - uid: 8032 components: - type: Transform - pos: 33.5,-38.5 + pos: -26.5,10.5 parent: 4812 -- proto: CandyBowl - entities: - - uid: 10667 + - uid: 8033 components: - type: Transform - pos: -9.517075,-13.504629 + pos: -25.5,10.5 parent: 4812 -- proto: CapacitorStockPart - entities: - - uid: 6210 + - uid: 8034 components: - type: Transform - pos: 7.701914,-18.299206 + pos: -24.5,10.5 parent: 4812 - - uid: 6211 + - uid: 8035 components: - type: Transform - pos: 7.451914,-18.299206 + pos: -32.5,10.5 parent: 4812 - - uid: 6212 + - uid: 8036 components: - type: Transform - pos: 7.5679626,-16.149172 + pos: -32.5,12.5 parent: 4812 -- proto: CaptainIDCard - entities: - - uid: 2588 + - uid: 8037 components: - type: Transform - pos: -12.545029,27.590694 + pos: -30.5,14.5 parent: 4812 -- proto: CarbonDioxideCanister - entities: - - uid: 9453 + - uid: 8038 components: - type: Transform - pos: -53.5,5.5 + pos: -31.5,14.5 parent: 4812 -- proto: Carpet - entities: - - uid: 1739 + - uid: 8039 components: - type: Transform - pos: -9.5,8.5 + pos: -32.5,14.5 parent: 4812 - - uid: 1740 + - uid: 8040 components: - type: Transform - pos: -9.5,7.5 + pos: -33.5,14.5 parent: 4812 - - uid: 1741 + - uid: 8041 components: - type: Transform - pos: -9.5,6.5 + pos: -33.5,13.5 parent: 4812 - - uid: 1742 + - uid: 8042 components: - type: Transform - pos: -9.5,5.5 + pos: -34.5,14.5 parent: 4812 - - uid: 1743 + - uid: 8043 components: - type: Transform - pos: -9.5,4.5 + pos: -35.5,14.5 parent: 4812 - - uid: 1744 + - uid: 8044 components: - type: Transform - pos: -8.5,8.5 + pos: -35.5,13.5 parent: 4812 - - uid: 1745 + - uid: 8045 components: - type: Transform - pos: -8.5,7.5 + pos: -35.5,15.5 parent: 4812 - - uid: 1746 + - uid: 8046 components: - type: Transform - pos: -8.5,6.5 + pos: -35.5,16.5 parent: 4812 - - uid: 1747 + - uid: 8047 components: - type: Transform - pos: -8.5,5.5 + pos: -35.5,17.5 parent: 4812 - - uid: 1748 + - uid: 8048 components: - type: Transform - pos: -8.5,4.5 + pos: -35.5,18.5 parent: 4812 - - uid: 5377 + - uid: 8049 components: - type: Transform - pos: 19.5,-17.5 + pos: -33.5,15.5 parent: 4812 - - uid: 5378 + - uid: 8050 components: - type: Transform - pos: 19.5,-16.5 + pos: -33.5,16.5 parent: 4812 - - uid: 5379 + - uid: 8051 components: - type: Transform - pos: 20.5,-16.5 + pos: -33.5,17.5 parent: 4812 - - uid: 5380 + - uid: 8052 components: - type: Transform - pos: 20.5,-17.5 + pos: -33.5,18.5 parent: 4812 - - uid: 5381 + - uid: 8053 components: - type: Transform - pos: 19.5,-15.5 + pos: -33.5,19.5 parent: 4812 - - uid: 5382 + - uid: 8054 components: - type: Transform - pos: 20.5,-15.5 + pos: -33.5,20.5 parent: 4812 - - uid: 6400 + - uid: 8055 components: - type: Transform - pos: -3.5,-18.5 + pos: -32.5,19.5 parent: 4812 - - uid: 6401 + - uid: 8056 components: - type: Transform - pos: -3.5,-17.5 + pos: -32.5,20.5 parent: 4812 - - uid: 6402 + - uid: 8069 components: - type: Transform - pos: -3.5,-16.5 + pos: -31.5,19.5 parent: 4812 - - uid: 6403 + - uid: 8177 components: - type: Transform - pos: -2.5,-18.5 + pos: -23.5,20.5 parent: 4812 - - uid: 6404 + - uid: 8178 components: - type: Transform - pos: -2.5,-17.5 + pos: -23.5,21.5 parent: 4812 - - uid: 6405 + - uid: 8179 components: - type: Transform - pos: -2.5,-16.5 + pos: -22.5,20.5 parent: 4812 - - uid: 6406 + - uid: 8180 components: - type: Transform - pos: -1.5,-18.5 + pos: -21.5,20.5 parent: 4812 - - uid: 6407 + - uid: 8181 components: - type: Transform - pos: -1.5,-17.5 + pos: -20.5,20.5 parent: 4812 - - uid: 6408 + - uid: 8182 components: - type: Transform - pos: -1.5,-16.5 + pos: -19.5,20.5 parent: 4812 - - uid: 7162 + - uid: 8183 components: - type: Transform - pos: -25.5,-15.5 + pos: -19.5,21.5 parent: 4812 - - uid: 7163 + - uid: 8184 components: - type: Transform - pos: -25.5,-16.5 + pos: -20.5,21.5 parent: 4812 - - uid: 7164 + - uid: 8185 components: - type: Transform - pos: -24.5,-15.5 + pos: -21.5,21.5 parent: 4812 - - uid: 7165 + - uid: 8186 components: - type: Transform - pos: -24.5,-16.5 + pos: -21.5,22.5 parent: 4812 - - uid: 7166 + - uid: 8187 components: - type: Transform - pos: -23.5,-15.5 + pos: -21.5,23.5 parent: 4812 - - uid: 7167 + - uid: 8188 components: - type: Transform - pos: -23.5,-16.5 + pos: -21.5,24.5 parent: 4812 - - uid: 9062 + - uid: 8189 components: - type: Transform - pos: -30.5,-39.5 + pos: -21.5,25.5 parent: 4812 - - uid: 9063 + - uid: 8190 components: - type: Transform - pos: -29.5,-39.5 + pos: -21.5,26.5 parent: 4812 -- proto: CarpetBlack - entities: - - uid: 11360 + - uid: 8191 components: - type: Transform - pos: 36.5,-34.5 + pos: -21.5,27.5 parent: 4812 - - uid: 11361 + - uid: 8192 components: - type: Transform - pos: 36.5,-33.5 + pos: -21.5,28.5 parent: 4812 - - uid: 11362 + - uid: 8193 components: - type: Transform - pos: 37.5,-33.5 + pos: -22.5,28.5 parent: 4812 - - uid: 11363 + - uid: 8194 components: - type: Transform - pos: 37.5,-34.5 + pos: -22.5,29.5 parent: 4812 -- proto: CarpetBlue - entities: - - uid: 2591 + - uid: 8195 components: - type: Transform - pos: -12.5,28.5 + pos: -22.5,26.5 parent: 4812 - - uid: 2592 + - uid: 8196 components: - type: Transform - pos: -12.5,29.5 + pos: -23.5,26.5 parent: 4812 - - uid: 2593 + - uid: 8853 components: - type: Transform - pos: -11.5,29.5 + pos: 13.5,-19.5 parent: 4812 - - uid: 2594 + - uid: 8858 components: - type: Transform - pos: -11.5,28.5 + pos: 13.5,-18.5 parent: 4812 - - uid: 2611 + - uid: 8878 components: - type: Transform - pos: -13.5,22.5 + pos: -24.5,-10.5 parent: 4812 - - uid: 2613 + - uid: 8879 components: - type: Transform - pos: -13.5,23.5 + pos: -24.5,-11.5 parent: 4812 - - uid: 2614 + - uid: 8880 components: - type: Transform - pos: -13.5,24.5 + pos: -25.5,-11.5 parent: 4812 - - uid: 2615 + - uid: 8881 components: - type: Transform - pos: -12.5,22.5 + pos: -26.5,-11.5 parent: 4812 - - uid: 2616 + - uid: 8882 components: - type: Transform - pos: -12.5,23.5 + pos: -27.5,-11.5 parent: 4812 - - uid: 2617 + - uid: 8883 components: - type: Transform - pos: -12.5,24.5 + pos: -28.5,-11.5 parent: 4812 - - uid: 2618 + - uid: 8884 components: - type: Transform - pos: -11.5,22.5 + pos: -29.5,-11.5 parent: 4812 - - uid: 2619 + - uid: 8885 components: - type: Transform - pos: -11.5,23.5 + pos: -30.5,-11.5 parent: 4812 - - uid: 2620 + - uid: 8886 components: - type: Transform - pos: -11.5,24.5 + pos: -31.5,-11.5 parent: 4812 -- proto: CarpetChapel - entities: - - uid: 6984 + - uid: 8887 components: - type: Transform - pos: -17.5,-33.5 + pos: -32.5,-11.5 parent: 4812 - - uid: 6985 + - uid: 8888 components: - type: Transform - pos: -15.5,-33.5 + pos: -33.5,-11.5 parent: 4812 - - uid: 6986 + - uid: 8889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 + pos: -34.5,-11.5 parent: 4812 - - uid: 6987 + - uid: 8890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 + pos: -35.5,-11.5 parent: 4812 - - uid: 6988 + - uid: 8891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 + pos: -36.5,-11.5 parent: 4812 - - uid: 6989 + - uid: 8892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 + pos: -36.5,-12.5 parent: 4812 - - uid: 6990 + - uid: 8893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-35.5 + pos: -36.5,-13.5 parent: 4812 - - uid: 6991 + - uid: 8894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-35.5 + pos: -36.5,-14.5 parent: 4812 - - uid: 6992 + - uid: 8895 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-32.5 + pos: -36.5,-15.5 parent: 4812 - - uid: 6993 + - uid: 8897 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-32.5 + pos: -33.5,-24.5 parent: 4812 - - uid: 6994 + - uid: 8898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-33.5 + pos: -34.5,-24.5 parent: 4812 - - uid: 6995 + - uid: 8899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 + pos: -34.5,-23.5 parent: 4812 - - uid: 6996 + - uid: 8900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 + pos: -34.5,-22.5 parent: 4812 - - uid: 6997 + - uid: 8901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 + pos: -34.5,-21.5 parent: 4812 - - uid: 6998 + - uid: 8902 components: - type: Transform - pos: -17.5,-36.5 + pos: 13.5,-17.5 parent: 4812 - - uid: 6999 + - uid: 8906 components: - type: Transform - pos: -15.5,-36.5 + pos: 13.5,-16.5 parent: 4812 -- proto: CarpetGreen - entities: - - uid: 7156 + - uid: 8967 components: - type: Transform - pos: -31.5,-17.5 + pos: 13.5,-22.5 parent: 4812 - - uid: 7157 + - uid: 8969 components: - type: Transform - pos: -31.5,-16.5 + pos: 28.5,-24.5 parent: 4812 - - uid: 7158 + - uid: 8971 components: - type: Transform - pos: -30.5,-17.5 + pos: 28.5,-25.5 parent: 4812 - - uid: 7159 + - uid: 8972 components: - type: Transform - pos: -30.5,-16.5 + pos: 29.5,-25.5 parent: 4812 - - uid: 8279 + - uid: 8973 components: - type: Transform - pos: -18.5,14.5 + pos: 30.5,-25.5 parent: 4812 - - uid: 8280 + - uid: 8974 components: - type: Transform - pos: -18.5,15.5 + pos: 31.5,-25.5 parent: 4812 - - uid: 8281 + - uid: 8975 components: - type: Transform - pos: -17.5,15.5 + pos: 32.5,-25.5 parent: 4812 - - uid: 8282 + - uid: 8976 components: - type: Transform - pos: -17.5,14.5 + pos: 32.5,-26.5 parent: 4812 - - uid: 9082 + - uid: 9014 components: - type: Transform - pos: -30.5,-36.5 + pos: 32.5,-27.5 parent: 4812 - - uid: 9083 + - uid: 9074 components: - type: Transform - pos: -30.5,-37.5 + pos: 32.5,-28.5 parent: 4812 - - uid: 9084 + - uid: 9089 components: - type: Transform - pos: -31.5,-37.5 + pos: 32.5,-29.5 parent: 4812 - - uid: 9085 + - uid: 9287 components: - type: Transform - pos: -31.5,-36.5 + pos: -38.5,7.5 parent: 4812 -- proto: CarpetOrange - entities: - - uid: 1657 + - uid: 9289 components: - type: Transform - pos: 6.5,8.5 + pos: -38.5,6.5 parent: 4812 - - uid: 1661 + - uid: 9347 components: - type: Transform - pos: 6.5,9.5 + pos: -38.5,4.5 parent: 4812 - - uid: 1662 + - uid: 9524 components: - type: Transform - pos: 7.5,9.5 + pos: 16.5,-19.5 parent: 4812 - - uid: 1663 + - uid: 9580 components: - type: Transform - pos: 7.5,8.5 + pos: 16.5,-18.5 parent: 4812 -- proto: CarpetPurple - entities: - - uid: 277 + - uid: 9581 components: - type: Transform - pos: -18.5,-0.5 + pos: 16.5,-17.5 parent: 4812 - - uid: 2635 + - uid: 9582 components: - type: Transform - pos: -3.5,28.5 + pos: 16.5,-16.5 parent: 4812 - - uid: 2636 + - uid: 9583 components: - type: Transform - pos: -3.5,29.5 + pos: 17.5,-16.5 parent: 4812 - - uid: 2637 + - uid: 10001 components: - type: Transform - pos: -2.5,29.5 + pos: -34.5,-20.5 parent: 4812 - - uid: 2638 + - uid: 10002 components: - type: Transform - pos: -2.5,28.5 + pos: -35.5,-20.5 parent: 4812 - - uid: 2639 + - uid: 10003 components: - type: Transform - pos: -1.5,28.5 + pos: -36.5,-20.5 parent: 4812 - - uid: 2640 + - uid: 10004 components: - type: Transform - pos: -1.5,29.5 + pos: -37.5,-20.5 parent: 4812 - - uid: 6294 + - uid: 10005 components: - type: Transform - pos: 25.5,-20.5 + pos: -38.5,-20.5 parent: 4812 - - uid: 6295 + - uid: 10006 components: - type: Transform - pos: 25.5,-19.5 + pos: -39.5,-20.5 parent: 4812 - - uid: 6296 + - uid: 10007 components: - type: Transform - pos: 25.5,-18.5 + pos: -40.5,-20.5 parent: 4812 - - uid: 6297 + - uid: 10008 components: - type: Transform - pos: 26.5,-20.5 + pos: -41.5,-20.5 parent: 4812 - - uid: 6298 + - uid: 10009 components: - type: Transform - pos: 26.5,-19.5 + pos: -42.5,-20.5 parent: 4812 - - uid: 6299 + - uid: 10010 components: - type: Transform - pos: 26.5,-18.5 + pos: -43.5,-20.5 parent: 4812 - - uid: 6300 + - uid: 10011 components: - type: Transform - pos: 27.5,-20.5 + pos: -44.5,-20.5 parent: 4812 - - uid: 6301 + - uid: 10012 components: - type: Transform - pos: 27.5,-19.5 + pos: -45.5,-20.5 parent: 4812 - - uid: 6302 + - uid: 10013 components: - type: Transform - pos: 27.5,-18.5 + pos: -46.5,-20.5 parent: 4812 -- proto: CarpetSBlue - entities: - - uid: 2546 + - uid: 10014 components: - type: Transform - pos: 6.5,28.5 + pos: -47.5,-20.5 parent: 4812 - - uid: 2547 + - uid: 10015 components: - type: Transform - pos: 6.5,29.5 + pos: -48.5,-20.5 parent: 4812 - - uid: 2548 + - uid: 10016 components: - type: Transform - pos: 7.5,29.5 + pos: -48.5,-19.5 parent: 4812 - - uid: 2549 + - uid: 10017 components: - type: Transform - pos: 7.5,28.5 + pos: -36.5,-19.5 parent: 4812 - - uid: 2550 + - uid: 10018 components: - type: Transform - pos: 9.5,24.5 + pos: -36.5,-18.5 parent: 4812 - - uid: 2551 + - uid: 10019 components: - type: Transform - pos: 8.5,24.5 + pos: -36.5,-17.5 parent: 4812 - - uid: 2552 + - uid: 10020 components: - type: Transform - pos: 7.5,24.5 + pos: -36.5,-16.5 parent: 4812 - - uid: 2553 + - uid: 10022 components: - type: Transform - pos: 7.5,25.5 + pos: -44.5,-19.5 parent: 4812 - - uid: 2554 + - uid: 10023 components: - type: Transform - pos: 8.5,25.5 + pos: -44.5,-18.5 parent: 4812 - - uid: 2555 + - uid: 10024 components: - type: Transform - pos: 9.5,25.5 + pos: -44.5,-17.5 parent: 4812 -- proto: Catwalk - entities: - - uid: 1542 + - uid: 10025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,4.5 + pos: -44.5,-16.5 parent: 4812 - - uid: 1545 + - uid: 10026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: -44.5,-15.5 parent: 4812 - - uid: 1548 + - uid: 10027 components: - type: Transform - pos: 2.5,11.5 + pos: -44.5,-14.5 parent: 4812 - - uid: 1550 + - uid: 10028 components: - type: Transform - pos: 2.5,12.5 + pos: -44.5,-13.5 parent: 4812 - - uid: 1551 + - uid: 10029 components: - type: Transform - pos: 2.5,13.5 + pos: -44.5,-12.5 parent: 4812 - - uid: 1553 + - uid: 10030 components: - type: Transform - pos: 1.5,14.5 + pos: -44.5,-11.5 parent: 4812 - - uid: 3101 + - uid: 10031 components: - type: Transform - pos: 3.5,11.5 + pos: -44.5,-10.5 parent: 4812 - - uid: 3102 + - uid: 10032 components: - type: Transform - pos: 4.5,11.5 + pos: -44.5,-9.5 parent: 4812 - - uid: 3103 + - uid: 10033 components: - type: Transform - pos: 5.5,11.5 + pos: -44.5,-8.5 parent: 4812 - - uid: 3104 + - uid: 10034 components: - type: Transform - pos: 6.5,11.5 + pos: -44.5,-7.5 parent: 4812 - - uid: 3105 + - uid: 10035 components: - type: Transform - pos: 7.5,11.5 + pos: -44.5,-6.5 parent: 4812 - - uid: 3106 + - uid: 10036 components: - type: Transform - pos: 8.5,11.5 + pos: -43.5,-6.5 parent: 4812 - - uid: 3107 + - uid: 10037 components: - type: Transform - pos: 9.5,10.5 + pos: -42.5,-6.5 parent: 4812 - - uid: 3108 + - uid: 10038 components: - type: Transform - pos: 9.5,9.5 + pos: -41.5,-6.5 parent: 4812 - - uid: 3109 + - uid: 10039 components: - type: Transform - pos: 9.5,8.5 + pos: -41.5,-5.5 parent: 4812 - - uid: 3110 + - uid: 10040 components: - type: Transform - pos: 9.5,7.5 + pos: -41.5,-4.5 parent: 4812 - - uid: 3111 + - uid: 10184 components: - type: Transform - pos: 9.5,6.5 + pos: -50.5,-25.5 parent: 4812 - - uid: 3112 + - uid: 10185 components: - type: Transform - pos: 9.5,4.5 + pos: -50.5,-24.5 parent: 4812 - - uid: 3362 + - uid: 10186 components: - type: Transform - pos: 12.5,22.5 + pos: -51.5,-24.5 parent: 4812 - - uid: 3363 + - uid: 10187 components: - type: Transform - pos: 12.5,23.5 + pos: -51.5,-23.5 parent: 4812 - - uid: 3364 + - uid: 10188 components: - type: Transform - pos: 12.5,26.5 + pos: -51.5,-22.5 parent: 4812 - - uid: 3365 + - uid: 10189 components: - type: Transform - pos: 12.5,27.5 + pos: -51.5,-21.5 parent: 4812 - - uid: 3366 + - uid: 10415 components: - type: Transform - pos: 12.5,28.5 + pos: -38.5,2.5 parent: 4812 - - uid: 3367 + - uid: 10652 components: - type: Transform - pos: 12.5,29.5 + pos: -53.5,-13.5 parent: 4812 - - uid: 3368 + - uid: 10653 components: - type: Transform - pos: 12.5,30.5 + pos: -53.5,-12.5 parent: 4812 - - uid: 3471 + - uid: 10654 components: - type: Transform - pos: 3.5,41.5 + pos: -54.5,-12.5 parent: 4812 - - uid: 3472 + - uid: 10655 components: - type: Transform - pos: 3.5,42.5 + pos: -55.5,-12.5 parent: 4812 - - uid: 3473 + - uid: 10684 components: - type: Transform - pos: 3.5,43.5 + pos: -44.5,5.5 parent: 4812 - - uid: 3477 + - uid: 10692 components: - type: Transform - pos: 6.5,42.5 + pos: -45.5,3.5 parent: 4812 - - uid: 3478 + - uid: 11151 components: - type: Transform - pos: 6.5,41.5 + pos: 14.5,-33.5 parent: 4812 - - uid: 3479 + - uid: 11152 components: - type: Transform - pos: 6.5,40.5 + pos: 13.5,-33.5 parent: 4812 - - uid: 3480 + - uid: 11153 components: - type: Transform - pos: 6.5,39.5 + pos: 12.5,-33.5 parent: 4812 - - uid: 3481 + - uid: 11154 components: - type: Transform - pos: 6.5,38.5 + pos: 12.5,-32.5 parent: 4812 - - uid: 3482 + - uid: 11155 components: - type: Transform - pos: 6.5,37.5 + pos: 12.5,-31.5 parent: 4812 - - uid: 3483 + - uid: 11156 components: - type: Transform - pos: 6.5,36.5 + pos: 12.5,-30.5 parent: 4812 - - uid: 3484 + - uid: 11157 components: - type: Transform - pos: 6.5,35.5 + pos: 11.5,-30.5 parent: 4812 - - uid: 3485 + - uid: 11158 components: - type: Transform - pos: 6.5,34.5 + pos: 10.5,-30.5 parent: 4812 - - uid: 4487 + - uid: 11159 components: - type: Transform - pos: 17.5,4.5 + pos: 9.5,-30.5 parent: 4812 - - uid: 4488 + - uid: 11160 components: - type: Transform - pos: 16.5,4.5 + pos: 8.5,-30.5 parent: 4812 - - uid: 4591 + - uid: 11161 components: - type: Transform - pos: 19.5,-7.5 + pos: 8.5,-31.5 parent: 4812 - - uid: 4592 + - uid: 11162 components: - type: Transform - pos: 18.5,-7.5 + pos: 8.5,-32.5 parent: 4812 - - uid: 4593 + - uid: 11163 components: - type: Transform - pos: 17.5,-7.5 + pos: 8.5,-33.5 parent: 4812 - - uid: 4860 + - uid: 11164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 + pos: 8.5,-34.5 parent: 4812 - - uid: 4931 + - uid: 11165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 + pos: 8.5,-35.5 parent: 4812 - - uid: 4932 + - uid: 11166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 + pos: 9.5,-35.5 parent: 4812 - - uid: 4950 + - uid: 11167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 + pos: 10.5,-35.5 parent: 4812 - - uid: 4951 + - uid: 11438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 + pos: 30.5,-39.5 parent: 4812 - - uid: 6170 + - uid: 11439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: 30.5,-38.5 parent: 4812 - - uid: 6368 + - uid: 11440 components: - type: Transform - pos: 16.5,-18.5 + pos: 30.5,-37.5 parent: 4812 - - uid: 6369 + - uid: 12131 components: - type: Transform - pos: 16.5,-17.5 + pos: -38.5,0.5 parent: 4812 - - uid: 6370 + - uid: 12134 components: - type: Transform - pos: 16.5,-16.5 + pos: -38.5,1.5 parent: 4812 - - uid: 6371 + - uid: 12381 components: - type: Transform - pos: 16.5,-15.5 + pos: -39.5,0.5 parent: 4812 - - uid: 6372 + - uid: 12655 components: - type: Transform - pos: 15.5,-14.5 + pos: -45.5,5.5 parent: 4812 - - uid: 6373 + - uid: 12699 components: - type: Transform - pos: 14.5,-14.5 + pos: 22.5,0.5 parent: 4812 - - uid: 6374 + - uid: 12700 components: - type: Transform - pos: 13.5,-14.5 + pos: 23.5,0.5 parent: 4812 - - uid: 6375 + - uid: 12701 components: - type: Transform - pos: 18.5,-32.5 + pos: 24.5,0.5 parent: 4812 - - uid: 6376 + - uid: 12702 components: - type: Transform - pos: 18.5,-31.5 + pos: 24.5,-0.5 parent: 4812 - - uid: 6377 + - uid: 12703 components: - type: Transform - pos: 18.5,-30.5 + pos: 24.5,-1.5 parent: 4812 - - uid: 6378 + - uid: 12704 components: - type: Transform - pos: 18.5,-29.5 + pos: 24.5,-2.5 parent: 4812 - - uid: 6379 + - uid: 12705 components: - type: Transform - pos: 18.5,-28.5 + pos: 25.5,-2.5 parent: 4812 - - uid: 6380 + - uid: 12706 components: - type: Transform - pos: 17.5,-33.5 + pos: 26.5,-2.5 parent: 4812 - - uid: 6381 + - uid: 12707 components: - type: Transform - pos: 16.5,-33.5 + pos: 27.5,-2.5 parent: 4812 - - uid: 6383 + - uid: 12708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 + pos: 28.5,-2.5 parent: 4812 - - uid: 8610 + - uid: 12709 components: - type: Transform - pos: 9.5,-8.5 + pos: 29.5,-2.5 parent: 4812 - - uid: 8611 + - uid: 12710 components: - type: Transform - pos: 9.5,-7.5 + pos: 30.5,-2.5 parent: 4812 - - uid: 8612 + - uid: 12711 components: - type: Transform - pos: 9.5,-6.5 + pos: 31.5,-2.5 parent: 4812 - - uid: 8613 + - uid: 12712 components: - type: Transform - pos: 9.5,-5.5 + pos: 32.5,-2.5 parent: 4812 - - uid: 8614 + - uid: 12713 components: - type: Transform - pos: 9.5,-4.5 + pos: 34.5,-2.5 parent: 4812 - - uid: 8615 + - uid: 12714 components: - type: Transform - pos: 9.5,-3.5 + pos: 33.5,-2.5 parent: 4812 - - uid: 8616 + - uid: 12715 components: - type: Transform - pos: 9.5,-2.5 + pos: 38.5,-2.5 parent: 4812 - - uid: 8617 + - uid: 12716 components: - type: Transform - pos: 9.5,-0.5 + pos: 37.5,-2.5 parent: 4812 - - uid: 8618 + - uid: 12717 components: - type: Transform - pos: 9.5,0.5 + pos: 36.5,-2.5 parent: 4812 - - uid: 8619 + - uid: 12718 components: - type: Transform - pos: 9.5,1.5 + pos: 35.5,-2.5 parent: 4812 - - uid: 8620 + - uid: 12720 components: - type: Transform - pos: 9.5,2.5 + pos: 38.5,-3.5 parent: 4812 - - uid: 9429 + - uid: 12721 components: - type: Transform - pos: -49.5,0.5 + pos: 38.5,-4.5 parent: 4812 - - uid: 9430 + - uid: 12783 components: - type: Transform - pos: -49.5,1.5 + pos: -53.5,8.5 parent: 4812 - - uid: 9431 + - uid: 12944 components: - type: Transform - pos: -49.5,2.5 + pos: -41.5,0.5 parent: 4812 - - uid: 9432 + - uid: 13072 components: - type: Transform - pos: -49.5,3.5 + pos: -47.5,8.5 parent: 4812 - - uid: 9433 + - uid: 13078 components: - type: Transform - pos: -49.5,4.5 + pos: -45.5,7.5 parent: 4812 - - uid: 9434 + - uid: 13086 components: - type: Transform - pos: -49.5,5.5 + pos: -45.5,6.5 parent: 4812 - - uid: 9435 + - uid: 13148 components: - type: Transform - pos: -49.5,6.5 + pos: -38.5,5.5 parent: 4812 - - uid: 9436 + - uid: 13211 components: - type: Transform - pos: -49.5,7.5 + pos: -46.5,8.5 parent: 4812 - - uid: 9437 + - uid: 13212 components: - type: Transform - pos: -49.5,8.5 + pos: -45.5,8.5 parent: 4812 - - uid: 9438 + - uid: 13216 components: - type: Transform - pos: -49.5,9.5 + pos: -48.5,8.5 parent: 4812 - - uid: 9439 + - uid: 13358 components: - type: Transform - pos: -49.5,10.5 + pos: -43.5,5.5 parent: 4812 - - uid: 9440 + - uid: 13361 components: - type: Transform - pos: -49.5,11.5 + pos: -43.5,4.5 parent: 4812 - - uid: 9441 + - uid: 13366 components: - type: Transform - pos: -49.5,12.5 + pos: -43.5,3.5 parent: 4812 - - uid: 9532 + - uid: 13436 components: - type: Transform - pos: -49.5,-4.5 + pos: -52.5,8.5 parent: 4812 - - uid: 9533 + - uid: 13447 components: - type: Transform - pos: -48.5,-4.5 + pos: -49.5,8.5 parent: 4812 - - uid: 9534 + - uid: 13448 components: - type: Transform - pos: -47.5,-4.5 + pos: -42.5,0.5 parent: 4812 - - uid: 9556 + - uid: 13453 components: - type: Transform - pos: -45.5,14.5 + pos: -50.5,8.5 parent: 4812 - - uid: 9557 + - uid: 13454 components: - type: Transform - pos: -44.5,14.5 + pos: -51.5,8.5 parent: 4812 - - uid: 9558 + - uid: 13455 components: - type: Transform - pos: -43.5,14.5 + pos: -53.5,6.5 parent: 4812 - - uid: 9700 + - uid: 13459 components: - type: Transform - pos: -36.5,-5.5 + pos: -40.5,0.5 parent: 4812 - - uid: 9701 + - uid: 13506 components: - type: Transform - pos: -36.5,-4.5 + pos: -43.5,0.5 parent: 4812 - - uid: 9702 + - uid: 13511 components: - type: Transform - pos: -36.5,-3.5 + pos: -43.5,2.5 parent: 4812 - - uid: 9703 + - uid: 13518 components: - type: Transform - pos: -36.5,-2.5 + pos: -43.5,1.5 parent: 4812 - - uid: 9704 + - uid: 13543 components: - type: Transform - pos: -36.5,-1.5 + pos: -38.5,3.5 parent: 4812 - - uid: 9705 + - uid: 13596 components: - type: Transform - pos: -36.5,-0.5 + pos: -53.5,7.5 parent: 4812 - - uid: 9932 + - uid: 13671 components: - type: Transform - pos: -40.5,-17.5 + pos: -54.5,6.5 parent: 4812 - - uid: 9933 + - uid: 13672 components: - type: Transform - pos: -40.5,-16.5 + pos: -55.5,6.5 parent: 4812 - - uid: 9934 +- proto: CableMVStack + entities: + - uid: 8586 components: - type: Transform - pos: -40.5,-15.5 + pos: -16.577534,7.6930285 parent: 4812 - - uid: 9935 + - uid: 11954 components: - type: Transform - pos: -40.5,-14.5 + pos: -10.530096,15.7538185 parent: 4812 - - uid: 9936 + - uid: 11955 components: - type: Transform - pos: -40.5,-13.5 + pos: -10.530096,15.7538185 parent: 4812 - - uid: 9937 +- proto: CableTerminal + entities: + - uid: 3794 components: - type: Transform - pos: -40.5,-12.5 + rot: 3.141592653589793 rad + pos: 14.5,46.5 parent: 4812 - - uid: 9938 + - uid: 5546 components: - type: Transform - pos: -40.5,-11.5 + rot: 3.141592653589793 rad + pos: -44.5,-3.5 parent: 4812 - - uid: 10277 + - uid: 6363 components: - type: Transform - pos: -70.5,-22.5 + rot: 3.141592653589793 rad + pos: -45.5,-3.5 parent: 4812 - - uid: 10278 + - uid: 10167 components: - type: Transform - pos: -69.5,-22.5 + pos: -53.5,-24.5 parent: 4812 - - uid: 10279 + - uid: 10648 components: - type: Transform - pos: -68.5,-22.5 + rot: 3.141592653589793 rad + pos: -47.5,-12.5 parent: 4812 - - uid: 10280 + - uid: 11393 components: - type: Transform - pos: -67.5,-22.5 + pos: 33.5,-38.5 parent: 4812 - - uid: 10281 +- proto: CandyBowl + entities: + - uid: 10667 components: - type: Transform - pos: -66.5,-22.5 + pos: -9.517075,-13.504629 parent: 4812 - - uid: 10282 +- proto: CapacitorStockPart + entities: + - uid: 6210 components: - type: Transform - pos: -65.5,-22.5 + pos: 7.701914,-18.299206 parent: 4812 - - uid: 10283 + - uid: 6211 components: - type: Transform - pos: -64.5,-22.5 + pos: 7.451914,-18.299206 parent: 4812 - - uid: 10284 + - uid: 6212 components: - type: Transform - pos: -63.5,-22.5 + pos: 7.5679626,-16.149172 parent: 4812 - - uid: 10285 +- proto: CaptainIDCard + entities: + - uid: 2588 components: - type: Transform - pos: -62.5,-22.5 + pos: -12.545029,27.590694 parent: 4812 - - uid: 10286 +- proto: CarbonDioxideCanister + entities: + - uid: 9133 components: - type: Transform - pos: -61.5,-22.5 + pos: -46.5,18.5 parent: 4812 - - uid: 10287 + - uid: 13612 components: - type: Transform - pos: -60.5,-22.5 + pos: -51.5,0.5 parent: 4812 - - uid: 10288 +- proto: Carpet + entities: + - uid: 1739 components: - type: Transform - pos: -59.5,-22.5 + pos: -9.5,8.5 parent: 4812 - - uid: 10289 + - uid: 1740 components: - type: Transform - pos: -58.5,-22.5 + pos: -9.5,7.5 parent: 4812 - - uid: 10290 + - uid: 1741 components: - type: Transform - pos: -57.5,-22.5 + pos: -9.5,6.5 parent: 4812 - - uid: 10291 + - uid: 1742 components: - type: Transform - pos: -60.5,-21.5 + pos: -9.5,5.5 parent: 4812 - - uid: 10292 + - uid: 1743 components: - type: Transform - pos: -60.5,-20.5 + pos: -9.5,4.5 parent: 4812 - - uid: 10293 + - uid: 1744 components: - type: Transform - pos: -60.5,-19.5 + pos: -8.5,8.5 parent: 4812 - - uid: 10294 + - uid: 1745 components: - type: Transform - pos: -60.5,-18.5 + pos: -8.5,7.5 parent: 4812 - - uid: 10295 + - uid: 1746 components: - type: Transform - pos: -64.5,-18.5 + pos: -8.5,6.5 parent: 4812 - - uid: 10296 + - uid: 1747 components: - type: Transform - pos: -64.5,-19.5 + pos: -8.5,5.5 parent: 4812 - - uid: 10297 + - uid: 1748 components: - type: Transform - pos: -64.5,-20.5 + pos: -8.5,4.5 parent: 4812 - - uid: 10298 + - uid: 5377 components: - type: Transform - pos: -64.5,-21.5 + pos: 19.5,-17.5 parent: 4812 - - uid: 10299 + - uid: 5378 components: - type: Transform - pos: -68.5,-21.5 + pos: 19.5,-16.5 parent: 4812 - - uid: 10300 + - uid: 5379 components: - type: Transform - pos: -68.5,-20.5 + pos: 20.5,-16.5 parent: 4812 - - uid: 10301 + - uid: 5380 components: - type: Transform - pos: -68.5,-19.5 + pos: 20.5,-17.5 parent: 4812 - - uid: 10302 + - uid: 5381 components: - type: Transform - pos: -68.5,-18.5 + pos: 19.5,-15.5 parent: 4812 - - uid: 10303 + - uid: 5382 components: - type: Transform - pos: -68.5,-23.5 + pos: 20.5,-15.5 parent: 4812 - - uid: 10304 + - uid: 6400 components: - type: Transform - pos: -68.5,-24.5 + pos: -3.5,-18.5 parent: 4812 - - uid: 10305 + - uid: 6401 components: - type: Transform - pos: -68.5,-25.5 + pos: -3.5,-17.5 parent: 4812 - - uid: 10306 + - uid: 6402 components: - type: Transform - pos: -68.5,-26.5 + pos: -3.5,-16.5 parent: 4812 - - uid: 10307 + - uid: 6403 components: - type: Transform - pos: -64.5,-26.5 + pos: -2.5,-18.5 parent: 4812 - - uid: 10308 + - uid: 6404 components: - type: Transform - pos: -64.5,-25.5 + pos: -2.5,-17.5 parent: 4812 - - uid: 10309 + - uid: 6405 components: - type: Transform - pos: -64.5,-24.5 + pos: -2.5,-16.5 parent: 4812 - - uid: 10310 + - uid: 6406 components: - type: Transform - pos: -64.5,-23.5 + pos: -1.5,-18.5 parent: 4812 - - uid: 10311 + - uid: 6407 components: - type: Transform - pos: -60.5,-26.5 + pos: -1.5,-17.5 parent: 4812 - - uid: 10312 + - uid: 6408 components: - type: Transform - pos: -60.5,-25.5 + pos: -1.5,-16.5 parent: 4812 - - uid: 10313 + - uid: 7162 components: - type: Transform - pos: -60.5,-24.5 + pos: -25.5,-15.5 parent: 4812 - - uid: 10314 + - uid: 7163 components: - type: Transform - pos: -60.5,-23.5 + pos: -25.5,-16.5 parent: 4812 - - uid: 10566 + - uid: 7164 components: - type: Transform - pos: -30.5,-25.5 + pos: -24.5,-15.5 parent: 4812 - - uid: 10567 + - uid: 7165 components: - type: Transform - pos: -31.5,-25.5 + pos: -24.5,-16.5 parent: 4812 - - uid: 10568 + - uid: 7166 components: - type: Transform - pos: -32.5,-25.5 + pos: -23.5,-15.5 parent: 4812 - - uid: 10569 + - uid: 7167 components: - type: Transform - pos: -33.5,-25.5 + pos: -23.5,-16.5 parent: 4812 - - uid: 10570 + - uid: 9062 components: - type: Transform - pos: -10.5,-32.5 + pos: -30.5,-39.5 parent: 4812 - - uid: 10571 + - uid: 9063 components: - type: Transform - pos: -10.5,-31.5 + pos: -29.5,-39.5 parent: 4812 - - uid: 10572 +- proto: CarpetBlack + entities: + - uid: 11360 components: - type: Transform - pos: -11.5,-30.5 + pos: 36.5,-34.5 parent: 4812 - - uid: 10573 + - uid: 11361 components: - type: Transform - pos: -12.5,-30.5 + pos: 36.5,-33.5 parent: 4812 - - uid: 10574 + - uid: 11362 components: - type: Transform - pos: -13.5,-30.5 + pos: 37.5,-33.5 parent: 4812 - - uid: 10575 + - uid: 11363 components: - type: Transform - pos: -14.5,-30.5 + pos: 37.5,-34.5 parent: 4812 - - uid: 10576 +- proto: CarpetBlue + entities: + - uid: 2591 components: - type: Transform - pos: -15.5,-30.5 + pos: -12.5,28.5 parent: 4812 - - uid: 10577 + - uid: 2592 components: - type: Transform - pos: -16.5,-30.5 + pos: -12.5,29.5 parent: 4812 - - uid: 10578 + - uid: 2593 components: - type: Transform - pos: -17.5,-30.5 + pos: -11.5,29.5 parent: 4812 - - uid: 10579 + - uid: 2594 components: - type: Transform - pos: -18.5,-30.5 + pos: -11.5,28.5 parent: 4812 - - uid: 10580 + - uid: 2611 components: - type: Transform - pos: -19.5,-30.5 + pos: -13.5,22.5 parent: 4812 - - uid: 10582 + - uid: 2613 components: - type: Transform - pos: -21.5,-30.5 + pos: -13.5,23.5 parent: 4812 - - uid: 10583 + - uid: 2614 components: - type: Transform - pos: -22.5,-30.5 + pos: -13.5,24.5 parent: 4812 - - uid: 10584 + - uid: 2615 components: - type: Transform - pos: -23.5,-30.5 + pos: -12.5,22.5 parent: 4812 - - uid: 10587 + - uid: 2616 components: - type: Transform - pos: -34.5,-24.5 + pos: -12.5,23.5 parent: 4812 - - uid: 10588 + - uid: 2617 components: - type: Transform - pos: -34.5,-23.5 + pos: -12.5,24.5 parent: 4812 - - uid: 10589 + - uid: 2618 components: - type: Transform - pos: -34.5,-22.5 + pos: -11.5,22.5 parent: 4812 - - uid: 10590 + - uid: 2619 components: - type: Transform - pos: -34.5,-21.5 + pos: -11.5,23.5 parent: 4812 - - uid: 10593 + - uid: 2620 components: - type: Transform - pos: -38.5,-20.5 + pos: -11.5,24.5 parent: 4812 - - uid: 10594 +- proto: CarpetChapel + entities: + - uid: 6984 components: - type: Transform - pos: -39.5,-20.5 + pos: -17.5,-33.5 parent: 4812 - - uid: 10595 + - uid: 6985 components: - type: Transform - pos: -40.5,-20.5 + pos: -15.5,-33.5 parent: 4812 - - uid: 10596 + - uid: 6986 components: - type: Transform - pos: -41.5,-20.5 + rot: -1.5707963267948966 rad + pos: -17.5,-32.5 parent: 4812 - - uid: 10597 + - uid: 6987 components: - type: Transform - pos: -42.5,-20.5 + rot: -1.5707963267948966 rad + pos: -15.5,-32.5 parent: 4812 - - uid: 10598 + - uid: 6988 components: - type: Transform - pos: -43.5,-20.5 + rot: -1.5707963267948966 rad + pos: -17.5,-35.5 parent: 4812 - - uid: 10618 + - uid: 6989 components: - type: Transform - pos: -36.5,-19.5 + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 parent: 4812 - - uid: 10619 + - uid: 6990 components: - type: Transform - pos: -36.5,-18.5 + rot: 3.141592653589793 rad + pos: -16.5,-35.5 parent: 4812 - - uid: 10620 + - uid: 6991 components: - type: Transform - pos: -36.5,-17.5 + rot: 3.141592653589793 rad + pos: -14.5,-35.5 parent: 4812 - - uid: 10621 + - uid: 6992 components: - type: Transform - pos: -36.5,-16.5 + rot: 3.141592653589793 rad + pos: -14.5,-32.5 parent: 4812 - - uid: 10622 + - uid: 6993 components: - type: Transform - pos: -36.5,-15.5 + rot: 3.141592653589793 rad + pos: -16.5,-32.5 parent: 4812 - - uid: 10623 + - uid: 6994 components: - type: Transform - pos: -36.5,-14.5 + rot: 1.5707963267948966 rad + pos: -16.5,-33.5 parent: 4812 - - uid: 10624 + - uid: 6995 components: - type: Transform - pos: -36.5,-13.5 + rot: 1.5707963267948966 rad + pos: -14.5,-33.5 parent: 4812 - - uid: 10625 + - uid: 6996 components: - type: Transform - pos: -36.5,-12.5 + rot: 1.5707963267948966 rad + pos: -14.5,-36.5 parent: 4812 - - uid: 10626 + - uid: 6997 components: - type: Transform - pos: -36.5,-11.5 + rot: 1.5707963267948966 rad + pos: -16.5,-36.5 parent: 4812 - - uid: 10627 + - uid: 6998 components: - type: Transform - pos: -48.5,-22.5 + pos: -17.5,-36.5 parent: 4812 - - uid: 10628 + - uid: 6999 components: - type: Transform - pos: -47.5,-22.5 + pos: -15.5,-36.5 parent: 4812 - - uid: 10629 +- proto: CarpetGreen + entities: + - uid: 7156 components: - type: Transform - pos: -46.5,-22.5 + pos: -31.5,-17.5 parent: 4812 - - uid: 10630 + - uid: 7157 components: - type: Transform - pos: -45.5,-21.5 + pos: -31.5,-16.5 parent: 4812 - - uid: 10631 + - uid: 7158 components: - type: Transform - pos: -44.5,-20.5 + pos: -30.5,-17.5 parent: 4812 - - uid: 10870 + - uid: 7159 components: - type: Transform - pos: -30.5,7.5 + pos: -30.5,-16.5 parent: 4812 - - uid: 10871 + - uid: 8279 components: - type: Transform - pos: -31.5,7.5 + pos: -18.5,14.5 parent: 4812 - - uid: 10872 + - uid: 8280 components: - type: Transform - pos: -32.5,7.5 + pos: -18.5,15.5 parent: 4812 - - uid: 10874 + - uid: 8281 components: - type: Transform - pos: -33.5,7.5 + pos: -17.5,15.5 parent: 4812 - - uid: 10875 + - uid: 8282 components: - type: Transform - pos: -34.5,7.5 + pos: -17.5,14.5 parent: 4812 - - uid: 11252 + - uid: 9082 components: - type: Transform - pos: 9.5,-36.5 + pos: -30.5,-36.5 parent: 4812 - - uid: 11253 + - uid: 9083 components: - type: Transform - pos: 9.5,-35.5 + pos: -30.5,-37.5 parent: 4812 - - uid: 11254 + - uid: 9084 components: - type: Transform - pos: 9.5,-34.5 + pos: -31.5,-37.5 parent: 4812 - - uid: 11255 + - uid: 9085 components: - type: Transform - pos: 9.5,-33.5 + pos: -31.5,-36.5 parent: 4812 - - uid: 11257 +- proto: CarpetOrange + entities: + - uid: 1657 components: - type: Transform - pos: 14.5,-33.5 + pos: 6.5,8.5 parent: 4812 - - uid: 11258 + - uid: 1661 components: - type: Transform - pos: 13.5,-33.5 + pos: 6.5,9.5 parent: 4812 - - uid: 11423 + - uid: 1662 components: - type: Transform - pos: 19.5,-33.5 + pos: 7.5,9.5 parent: 4812 - - uid: 11424 + - uid: 1663 components: - type: Transform - pos: 21.5,-33.5 + pos: 7.5,8.5 parent: 4812 - - uid: 11425 +- proto: CarpetPurple + entities: + - uid: 277 components: - type: Transform - pos: 22.5,-33.5 + pos: -18.5,-0.5 parent: 4812 - - uid: 11426 + - uid: 2635 components: - type: Transform - pos: 20.5,-33.5 + pos: -3.5,28.5 parent: 4812 - - uid: 11427 + - uid: 2636 components: - type: Transform - pos: 24.5,-33.5 + pos: -3.5,29.5 parent: 4812 - - uid: 11428 + - uid: 2637 components: - type: Transform - pos: 25.5,-33.5 + pos: -2.5,29.5 parent: 4812 - - uid: 11429 + - uid: 2638 components: - type: Transform - pos: 26.5,-33.5 + pos: -2.5,28.5 parent: 4812 - - uid: 11430 + - uid: 2639 components: - type: Transform - pos: 27.5,-33.5 + pos: -1.5,28.5 parent: 4812 - - uid: 11431 + - uid: 2640 components: - type: Transform - pos: 28.5,-33.5 + pos: -1.5,29.5 parent: 4812 - - uid: 11432 + - uid: 6294 components: - type: Transform - pos: 29.5,-33.5 + pos: 25.5,-20.5 parent: 4812 - - uid: 11433 + - uid: 6295 components: - type: Transform - pos: 30.5,-33.5 + pos: 25.5,-19.5 parent: 4812 - - uid: 11578 + - uid: 6296 components: - type: Transform - pos: 39.5,-36.5 + pos: 25.5,-18.5 parent: 4812 - - uid: 11579 + - uid: 6297 components: - type: Transform - pos: 40.5,-36.5 + pos: 26.5,-20.5 parent: 4812 - - uid: 11580 + - uid: 6298 components: - type: Transform - pos: 41.5,-36.5 + pos: 26.5,-19.5 parent: 4812 - - uid: 11581 + - uid: 6299 components: - type: Transform - pos: 42.5,-36.5 + pos: 26.5,-18.5 parent: 4812 - - uid: 11582 + - uid: 6300 components: - type: Transform - pos: 43.5,-36.5 + pos: 27.5,-20.5 parent: 4812 - - uid: 11583 + - uid: 6301 components: - type: Transform - pos: 44.5,-36.5 + pos: 27.5,-19.5 parent: 4812 - - uid: 11584 + - uid: 6302 components: - type: Transform - pos: 45.5,-36.5 + pos: 27.5,-18.5 parent: 4812 - - uid: 11585 +- proto: CarpetSBlue + entities: + - uid: 2546 components: - type: Transform - pos: 46.5,-36.5 + pos: 6.5,28.5 parent: 4812 - - uid: 11586 + - uid: 2547 components: - type: Transform - pos: 47.5,-36.5 + pos: 6.5,29.5 parent: 4812 - - uid: 11587 + - uid: 2548 components: - type: Transform - pos: 48.5,-36.5 + pos: 7.5,29.5 parent: 4812 - - uid: 11588 + - uid: 2549 components: - type: Transform - pos: 49.5,-36.5 + pos: 7.5,28.5 parent: 4812 - - uid: 11589 + - uid: 2550 components: - type: Transform - pos: 50.5,-36.5 + pos: 9.5,24.5 parent: 4812 - - uid: 11590 + - uid: 2551 components: - type: Transform - pos: 51.5,-36.5 + pos: 8.5,24.5 parent: 4812 - - uid: 11591 + - uid: 2552 components: - type: Transform - pos: 52.5,-36.5 + pos: 7.5,24.5 parent: 4812 - - uid: 11592 + - uid: 2553 components: - type: Transform - pos: 50.5,-35.5 + pos: 7.5,25.5 parent: 4812 - - uid: 11593 + - uid: 2554 components: - type: Transform - pos: 50.5,-34.5 + pos: 8.5,25.5 parent: 4812 - - uid: 11594 + - uid: 2555 components: - type: Transform - pos: 50.5,-33.5 + pos: 9.5,25.5 parent: 4812 - - uid: 11595 +- proto: Catwalk + entities: + - uid: 1542 components: - type: Transform - pos: 50.5,-32.5 + rot: -1.5707963267948966 rad + pos: 8.5,4.5 parent: 4812 - - uid: 11596 + - uid: 1545 components: - type: Transform - pos: 46.5,-35.5 + rot: -1.5707963267948966 rad + pos: 6.5,4.5 parent: 4812 - - uid: 11597 + - uid: 1548 components: - type: Transform - pos: 46.5,-34.5 + pos: 2.5,11.5 parent: 4812 - - uid: 11598 + - uid: 1550 components: - type: Transform - pos: 46.5,-33.5 + pos: 2.5,12.5 parent: 4812 - - uid: 11599 + - uid: 1551 components: - type: Transform - pos: 46.5,-32.5 + pos: 2.5,13.5 parent: 4812 - - uid: 11600 + - uid: 1553 components: - type: Transform - pos: 42.5,-35.5 + pos: 1.5,14.5 parent: 4812 - - uid: 11601 + - uid: 1934 components: - type: Transform - pos: 42.5,-34.5 + pos: -48.5,-3.5 parent: 4812 - - uid: 11602 + - uid: 2905 components: - type: Transform - pos: 42.5,-33.5 + rot: 3.141592653589793 rad + pos: 7.5,35.5 parent: 4812 - - uid: 11603 + - uid: 3101 components: - type: Transform - pos: 42.5,-32.5 + pos: 3.5,11.5 parent: 4812 - - uid: 11604 + - uid: 3102 components: - type: Transform - pos: 42.5,-40.5 + pos: 4.5,11.5 parent: 4812 - - uid: 11605 + - uid: 3103 components: - type: Transform - pos: 42.5,-39.5 + pos: 5.5,11.5 parent: 4812 - - uid: 11606 + - uid: 3104 components: - type: Transform - pos: 42.5,-38.5 + pos: 6.5,11.5 parent: 4812 - - uid: 11607 + - uid: 3105 components: - type: Transform - pos: 42.5,-37.5 + pos: 7.5,11.5 parent: 4812 - - uid: 11608 + - uid: 3106 components: - type: Transform - pos: 46.5,-40.5 + pos: 8.5,11.5 parent: 4812 - - uid: 11609 + - uid: 3107 components: - type: Transform - pos: 46.5,-39.5 + pos: 9.5,10.5 parent: 4812 - - uid: 11610 + - uid: 3108 components: - type: Transform - pos: 46.5,-38.5 + pos: 9.5,9.5 parent: 4812 - - uid: 11611 + - uid: 3109 components: - type: Transform - pos: 46.5,-37.5 + pos: 9.5,8.5 parent: 4812 - - uid: 11612 + - uid: 3110 components: - type: Transform - pos: 50.5,-40.5 + pos: 9.5,7.5 parent: 4812 - - uid: 11613 + - uid: 3111 components: - type: Transform - pos: 50.5,-39.5 + pos: 9.5,6.5 parent: 4812 - - uid: 11614 + - uid: 3112 components: - type: Transform - pos: 50.5,-38.5 + pos: 9.5,4.5 parent: 4812 - - uid: 11615 + - uid: 3362 components: - type: Transform - pos: 50.5,-37.5 + pos: 12.5,22.5 parent: 4812 - - uid: 11619 + - uid: 3363 components: - type: Transform - pos: 37.5,-36.5 + pos: 12.5,23.5 parent: 4812 - - uid: 11620 + - uid: 3364 components: - type: Transform - pos: 36.5,-36.5 + pos: 12.5,26.5 parent: 4812 - - uid: 11814 + - uid: 3365 components: - type: Transform - pos: -17.5,-3.5 + pos: 12.5,27.5 parent: 4812 - - uid: 11815 + - uid: 3366 components: - type: Transform - pos: -18.5,-3.5 + pos: 12.5,28.5 parent: 4812 - - uid: 11816 + - uid: 3367 components: - type: Transform - pos: -19.5,-3.5 + pos: 12.5,29.5 parent: 4812 - - uid: 11817 + - uid: 3368 components: - type: Transform - pos: -15.5,-3.5 + pos: 12.5,30.5 parent: 4812 - - uid: 11818 + - uid: 3459 components: - type: Transform - pos: -14.5,-3.5 + rot: 1.5707963267948966 rad + pos: 4.5,40.5 parent: 4812 - - uid: 11819 + - uid: 3471 components: - type: Transform - pos: -13.5,-3.5 + pos: 3.5,41.5 parent: 4812 - - uid: 11820 + - uid: 3472 components: - type: Transform - pos: -12.5,-2.5 + pos: 3.5,42.5 parent: 4812 - - uid: 11821 + - uid: 3473 components: - type: Transform - pos: -12.5,-1.5 + pos: 3.5,43.5 parent: 4812 - - uid: 11822 + - uid: 3477 components: - type: Transform - pos: -12.5,-0.5 + pos: 6.5,42.5 parent: 4812 - - uid: 11823 + - uid: 3478 components: - type: Transform - pos: -12.5,0.5 + pos: 6.5,41.5 parent: 4812 - - uid: 11824 + - uid: 3479 components: - type: Transform - pos: -12.5,1.5 + pos: 6.5,40.5 parent: 4812 - - uid: 11825 + - uid: 3480 components: - type: Transform - pos: -12.5,2.5 + pos: 6.5,39.5 parent: 4812 - - uid: 11826 + - uid: 3481 components: - type: Transform - pos: -12.5,3.5 + pos: 6.5,38.5 parent: 4812 - - uid: 11827 + - uid: 3482 components: - type: Transform - pos: -12.5,4.5 + pos: 6.5,37.5 parent: 4812 - - uid: 11828 + - uid: 3483 components: - type: Transform - pos: -12.5,5.5 + pos: 6.5,36.5 parent: 4812 - - uid: 11829 + - uid: 3484 components: - type: Transform - pos: -12.5,6.5 + pos: 6.5,35.5 parent: 4812 - - uid: 11830 + - uid: 3485 components: - type: Transform - pos: -12.5,7.5 + pos: 6.5,34.5 parent: 4812 - - uid: 11831 + - uid: 4078 components: - type: Transform - pos: -12.5,8.5 + pos: -41.5,6.5 parent: 4812 - - uid: 11832 + - uid: 4197 components: - type: Transform - pos: -6.5,13.5 + rot: -1.5707963267948966 rad + pos: 55.5,0.5 parent: 4812 - - uid: 11833 + - uid: 4202 components: - type: Transform - pos: -7.5,13.5 + rot: -1.5707963267948966 rad + pos: 57.5,0.5 parent: 4812 - - uid: 11834 + - uid: 4316 components: - type: Transform - pos: -8.5,13.5 + rot: 3.141592653589793 rad + pos: 33.5,15.5 parent: 4812 - - uid: 11835 + - uid: 4317 components: - type: Transform - pos: -9.5,13.5 + rot: -1.5707963267948966 rad + pos: 64.5,-1.5 parent: 4812 - - uid: 11836 + - uid: 4487 components: - type: Transform - pos: -10.5,13.5 + pos: 17.5,4.5 parent: 4812 - - uid: 11837 + - uid: 4488 components: - type: Transform - pos: -11.5,13.5 + pos: 16.5,4.5 parent: 4812 -- proto: Chair - entities: - - uid: 3239 + - uid: 4549 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,13.5 + pos: -13.5,-43.5 parent: 4812 - - uid: 3240 + - uid: 4552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 + rot: -1.5707963267948966 rad + pos: 47.5,0.5 parent: 4812 - - uid: 3241 + - uid: 4553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 + rot: -1.5707963267948966 rad + pos: 49.5,0.5 parent: 4812 - - uid: 3242 + - uid: 4591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,13.5 + pos: 19.5,-7.5 parent: 4812 - - uid: 3243 + - uid: 4592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,13.5 + pos: 18.5,-7.5 parent: 4812 - - uid: 4551 + - uid: 4593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 + pos: 17.5,-7.5 parent: 4812 - - uid: 4552 + - uid: 4860 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-3.5 + pos: -24.5,-30.5 parent: 4812 - - uid: 4553 + - uid: 4931 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-2.5 + pos: -29.5,-30.5 parent: 4812 - - uid: 4554 + - uid: 4932 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-1.5 + pos: -25.5,-30.5 parent: 4812 - - uid: 4555 + - uid: 4950 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-0.5 + pos: -28.5,-30.5 parent: 4812 - - uid: 4556 + - uid: 4951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 parent: 4812 - - uid: 4557 + - uid: 6170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-3.5 + rot: -1.5707963267948966 rad + pos: 7.5,4.5 parent: 4812 - - uid: 4558 + - uid: 6368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 + pos: 16.5,-18.5 parent: 4812 - - uid: 4559 + - uid: 6369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 + pos: 16.5,-17.5 parent: 4812 - - uid: 4560 + - uid: 6370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + pos: 16.5,-16.5 parent: 4812 - - uid: 4565 + - uid: 6371 components: - type: Transform - pos: 29.5,4.5 + pos: 16.5,-15.5 parent: 4812 - - uid: 4566 + - uid: 6372 components: - type: Transform - pos: 30.5,4.5 + pos: 15.5,-14.5 parent: 4812 - - uid: 4567 + - uid: 6373 components: - type: Transform - pos: 31.5,4.5 + pos: 14.5,-14.5 parent: 4812 - - uid: 4568 + - uid: 6374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,3.5 + pos: 13.5,-14.5 parent: 4812 - - uid: 5065 + - uid: 6375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-47.5 + pos: 18.5,-32.5 parent: 4812 - - uid: 5066 + - uid: 6376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-46.5 + pos: 18.5,-31.5 parent: 4812 - - uid: 5375 + - uid: 6377 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-17.5 + pos: 18.5,-30.5 parent: 4812 - - uid: 7214 + - uid: 6378 components: - type: Transform - pos: -8.5,-20.5 + pos: 18.5,-29.5 parent: 4812 - - uid: 7439 + - uid: 6379 components: - type: Transform - pos: -24.5,-22.5 + pos: 18.5,-28.5 parent: 4812 - - uid: 7440 + - uid: 6380 components: - type: Transform - pos: -25.5,-22.5 + pos: 17.5,-33.5 parent: 4812 - - uid: 8289 + - uid: 6381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,14.5 + pos: 16.5,-33.5 parent: 4812 - - uid: 8290 + - uid: 6383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,14.5 + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 parent: 4812 - - uid: 8291 + - uid: 7398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,15.5 + rot: -1.5707963267948966 rad + pos: -59.5,7.5 parent: 4812 - - uid: 8292 + - uid: 8552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,15.5 + rot: -1.5707963267948966 rad + pos: 64.5,-3.5 parent: 4812 - - uid: 8293 + - uid: 8610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,17.5 + pos: 9.5,-8.5 parent: 4812 - - uid: 8302 + - uid: 8611 components: - type: Transform - pos: -19.5,19.5 + pos: 9.5,-7.5 parent: 4812 - - uid: 8303 + - uid: 8612 components: - type: Transform - pos: -18.5,19.5 + pos: 9.5,-6.5 parent: 4812 - - uid: 8418 + - uid: 8613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-23.5 + pos: 9.5,-5.5 parent: 4812 - - uid: 8437 + - uid: 8614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,10.5 + pos: 9.5,-4.5 parent: 4812 - - uid: 8438 + - uid: 8615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,10.5 + pos: 9.5,-3.5 parent: 4812 - - uid: 8445 + - uid: 8616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,17.5 + pos: 9.5,-2.5 parent: 4812 - - uid: 8446 + - uid: 8617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,18.5 + pos: 9.5,-0.5 parent: 4812 - - uid: 8851 + - uid: 8618 components: - type: Transform - pos: 23.5,13.5 + pos: 9.5,0.5 parent: 4812 - - uid: 10732 + - uid: 8619 components: - type: Transform - pos: -43.5,-6.5 + pos: 9.5,1.5 parent: 4812 - - uid: 10733 + - uid: 8620 components: - type: Transform - pos: -42.5,-6.5 + pos: 9.5,2.5 parent: 4812 - - uid: 10734 + - uid: 8637 components: - type: Transform - pos: -41.5,-6.5 + rot: -1.5707963267948966 rad + pos: 55.5,-5.5 parent: 4812 - - uid: 10735 + - uid: 8730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,7.5 parent: 4812 - - uid: 10736 + - uid: 8786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-8.5 + rot: -1.5707963267948966 rad + pos: -58.5,7.5 parent: 4812 - - uid: 10737 + - uid: 8810 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-8.5 + rot: -1.5707963267948966 rad + pos: -57.5,7.5 parent: 4812 - - uid: 10909 + - uid: 8832 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-24.5 + pos: -56.5,8.5 parent: 4812 - - uid: 10910 + - uid: 9050 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-23.5 + pos: -48.5,-2.5 parent: 4812 - - uid: 10911 + - uid: 9131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-24.5 + rot: -1.5707963267948966 rad + pos: -56.5,9.5 parent: 4812 - - uid: 11773 + - uid: 9150 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-15.5 + pos: -60.5,7.5 parent: 4812 - - uid: 11774 + - uid: 9221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-17.5 + pos: -37.5,2.5 parent: 4812 - - uid: 11841 + - uid: 9302 components: - type: Transform - pos: -8.5,14.5 + pos: -41.5,9.5 parent: 4812 - - uid: 11846 + - uid: 9303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,11.5 + pos: -41.5,14.5 parent: 4812 - - uid: 11877 + - uid: 9306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 + pos: -44.5,14.5 parent: 4812 - - uid: 11878 + - uid: 9309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 + pos: -52.5,14.5 parent: 4812 - - uid: 11885 + - uid: 9310 components: - type: Transform - pos: 6.5,12.5 + pos: -47.5,14.5 parent: 4812 - - uid: 11886 + - uid: 9313 components: - type: Transform - pos: 5.5,12.5 + pos: -45.5,14.5 parent: 4812 -- proto: ChairOfficeDark - entities: - - uid: 310 + - uid: 9315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 + pos: -46.5,14.5 parent: 4812 - - uid: 2508 + - uid: 9316 components: - type: Transform - pos: 9.5,24.5 + pos: -48.5,0.5 parent: 4812 - - uid: 2665 + - uid: 9318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,34.5 + pos: -49.5,14.5 parent: 4812 - - uid: 2666 + - uid: 9319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,34.5 + pos: -51.5,14.5 parent: 4812 - - uid: 2667 + - uid: 9330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,33.5 + pos: -43.5,14.5 parent: 4812 - - uid: 2686 + - uid: 9331 components: - type: Transform - pos: -7.5,33.5 + pos: -42.5,14.5 parent: 4812 - - uid: 3237 + - uid: 9333 components: - type: Transform - pos: 15.5,17.5 + pos: -41.5,8.5 parent: 4812 - - uid: 3238 + - uid: 9339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,20.5 + pos: -48.5,1.5 parent: 4812 - - uid: 3704 + - uid: 9346 components: - type: Transform - pos: 17.5,30.5 + rot: 1.5707963267948966 rad + pos: -41.5,7.5 parent: 4812 - - uid: 4569 + - uid: 9348 components: - type: Transform - pos: 28.5,2.5 + pos: -41.5,10.5 parent: 4812 - - uid: 5371 + - uid: 9373 components: - type: Transform - pos: 19.5,-15.5 + pos: -37.5,1.5 parent: 4812 - - uid: 6288 + - uid: 9374 components: - type: Transform - pos: 26.5,-18.5 + pos: -50.5,14.5 parent: 4812 - - uid: 6320 + - uid: 9375 components: - type: Transform - pos: 23.5,-26.5 + pos: -53.5,14.5 parent: 4812 - - uid: 6475 + - uid: 9376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 + pos: -39.5,3.5 parent: 4812 - - uid: 7037 + - uid: 9417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-39.5 + rot: -1.5707963267948966 rad + pos: -56.5,12.5 parent: 4812 - - uid: 7038 + - uid: 9476 components: - type: Transform - pos: -23.5,-37.5 + pos: -39.5,4.5 parent: 4812 - - uid: 7071 + - uid: 9477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 + pos: -39.5,5.5 parent: 4812 - - uid: 7072 + - uid: 9682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 + rot: 3.141592653589793 rad + pos: 34.5,15.5 parent: 4812 - - uid: 7073 + - uid: 9700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 + pos: -36.5,-5.5 parent: 4812 - - uid: 7074 + - uid: 9701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 + pos: -36.5,-4.5 parent: 4812 - - uid: 7075 + - uid: 9702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-19.5 + pos: -36.5,-3.5 parent: 4812 - - uid: 7076 + - uid: 9703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 + pos: -36.5,-2.5 parent: 4812 - - uid: 8278 + - uid: 9704 components: - type: Transform - pos: -17.5,15.5 + pos: -36.5,-1.5 parent: 4812 - - uid: 8338 + - uid: 9705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,15.5 + pos: -36.5,-0.5 parent: 4812 - - uid: 8366 + - uid: 9935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,11.5 + pos: -40.5,-14.5 parent: 4812 - - uid: 9575 + - uid: 9936 components: - type: Transform - pos: -30.5,1.5 + pos: -40.5,-13.5 parent: 4812 - - uid: 9878 + - uid: 9937 components: - type: Transform - pos: -49.5,-7.5 + pos: -40.5,-12.5 parent: 4812 - - uid: 10666 + - uid: 9938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-9.5 + pos: -40.5,-11.5 parent: 4812 - - uid: 10698 + - uid: 10277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-5.5 + pos: -70.5,-22.5 parent: 4812 - - uid: 11869 + - uid: 10278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,11.5 + pos: -69.5,-22.5 parent: 4812 - - uid: 11870 + - uid: 10279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,11.5 + pos: -68.5,-22.5 parent: 4812 - - uid: 11871 + - uid: 10280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,11.5 + pos: -67.5,-22.5 parent: 4812 - - uid: 12112 + - uid: 10281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 + pos: -66.5,-22.5 parent: 4812 -- proto: ChairOfficeLight - entities: - - uid: 4595 + - uid: 10282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-26.5 + pos: -65.5,-22.5 parent: 4812 - - uid: 4973 + - uid: 10283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 + pos: -64.5,-22.5 parent: 4812 - - uid: 6179 + - uid: 10284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-15.5 + pos: -63.5,-22.5 parent: 4812 - - uid: 6180 + - uid: 10285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-14.5 + pos: -62.5,-22.5 parent: 4812 - - uid: 6216 + - uid: 10286 components: - type: Transform - pos: 3.5,-23.5 + pos: -61.5,-22.5 parent: 4812 - - uid: 6344 + - uid: 10287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-25.5 + pos: -60.5,-22.5 parent: 4812 - - uid: 6619 + - uid: 10288 components: - type: Transform - pos: -11.5,-18.5 + pos: -59.5,-22.5 parent: 4812 - - uid: 6620 + - uid: 10289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-14.5 + pos: -58.5,-22.5 parent: 4812 - - uid: 8444 + - uid: 10290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-26.5 + pos: -57.5,-22.5 parent: 4812 - - uid: 11148 + - uid: 10291 components: - type: Transform - pos: 9.5,-43.5 + pos: -60.5,-21.5 parent: 4812 -- proto: ChairWood - entities: - - uid: 1052 + - uid: 10292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 + pos: -60.5,-20.5 parent: 4812 - - uid: 1053 + - uid: 10293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 + pos: -60.5,-19.5 parent: 4812 - - uid: 1054 + - uid: 10294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 + pos: -60.5,-18.5 parent: 4812 - - uid: 1055 + - uid: 10295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 + pos: -64.5,-18.5 parent: 4812 - - uid: 1056 + - uid: 10296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 + pos: -64.5,-19.5 parent: 4812 - - uid: 1057 + - uid: 10297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 + pos: -64.5,-20.5 parent: 4812 - - uid: 1058 + - uid: 10298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,6.5 + pos: -64.5,-21.5 parent: 4812 - - uid: 1059 + - uid: 10299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 + pos: -68.5,-21.5 parent: 4812 - - uid: 1060 + - uid: 10300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 + pos: -68.5,-20.5 parent: 4812 - - uid: 1061 + - uid: 10301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 + pos: -68.5,-19.5 parent: 4812 - - uid: 1062 + - uid: 10302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,8.5 + pos: -68.5,-18.5 parent: 4812 - - uid: 1626 + - uid: 10303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 + pos: -68.5,-23.5 parent: 4812 - - uid: 4659 + - uid: 10304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 + pos: -68.5,-24.5 parent: 4812 - - uid: 5226 + - uid: 10305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 + pos: -68.5,-25.5 parent: 4812 - - uid: 5227 + - uid: 10306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 + pos: -68.5,-26.5 parent: 4812 - - uid: 5228 + - uid: 10307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,1.5 + pos: -64.5,-26.5 parent: 4812 - - uid: 5230 + - uid: 10308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,2.5 + pos: -64.5,-25.5 parent: 4812 - - uid: 5231 + - uid: 10309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 + pos: -64.5,-24.5 parent: 4812 - - uid: 6797 + - uid: 10310 components: - type: Transform - pos: -20.5,-38.5 + pos: -64.5,-23.5 parent: 4812 - - uid: 6798 + - uid: 10311 components: - type: Transform - pos: -19.5,-38.5 + pos: -60.5,-26.5 parent: 4812 - - uid: 7007 + - uid: 10312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 + pos: -60.5,-25.5 parent: 4812 - - uid: 7008 + - uid: 10313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 + pos: -60.5,-24.5 parent: 4812 - - uid: 7009 + - uid: 10314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-32.5 + pos: -60.5,-23.5 parent: 4812 - - uid: 7010 + - uid: 10566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 + pos: -30.5,-25.5 parent: 4812 - - uid: 7011 + - uid: 10567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 + pos: -31.5,-25.5 parent: 4812 - - uid: 7012 + - uid: 10568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-36.5 + pos: -32.5,-25.5 parent: 4812 - - uid: 7013 + - uid: 10569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-36.5 + pos: -33.5,-25.5 parent: 4812 - - uid: 7014 + - uid: 10570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-36.5 + pos: -10.5,-32.5 parent: 4812 - - uid: 7015 + - uid: 10571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 + pos: -10.5,-31.5 parent: 4812 - - uid: 7016 + - uid: 10572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 + pos: -11.5,-30.5 parent: 4812 - - uid: 7160 + - uid: 10573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 + pos: -12.5,-30.5 parent: 4812 - - uid: 7168 + - uid: 10574 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-15.5 + pos: -13.5,-30.5 parent: 4812 - - uid: 10502 + - uid: 10575 components: - type: Transform - pos: -33.5,-27.5 + pos: -14.5,-30.5 parent: 4812 - - uid: 10503 + - uid: 10576 components: - type: Transform - pos: -32.5,-27.5 + pos: -15.5,-30.5 parent: 4812 - - uid: 10504 + - uid: 10577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-29.5 + pos: -16.5,-30.5 parent: 4812 - - uid: 10505 + - uid: 10578 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-29.5 + pos: -17.5,-30.5 parent: 4812 - - uid: 10506 + - uid: 10579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-28.5 + pos: -18.5,-30.5 parent: 4812 - - uid: 10507 + - uid: 10580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-28.5 + pos: -19.5,-30.5 parent: 4812 -- proto: ChanterelleSeeds - entities: - - uid: 1522 + - uid: 10582 components: - type: Transform - pos: -13.5,-7.5 + pos: -21.5,-30.5 parent: 4812 - - uid: 11296 + - uid: 10583 components: - type: Transform - pos: 16.50683,-36.589657 + pos: -22.5,-30.5 parent: 4812 -- proto: CheapRollerBed - entities: - - uid: 7588 + - uid: 10584 components: - type: Transform - pos: -19.499699,-23.348194 + pos: -23.5,-30.5 parent: 4812 - - uid: 7655 + - uid: 10587 components: - type: Transform - pos: -20.546574,-23.33257 + pos: -34.5,-24.5 parent: 4812 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 3226 + - uid: 10588 components: - type: Transform - pos: -17.562876,-25.168678 + pos: -34.5,-23.5 parent: 4812 - - uid: 8850 + - uid: 10589 components: - type: Transform - pos: -17.5785,-25.512428 + pos: -34.5,-22.5 parent: 4812 -- proto: ChemDispenser - entities: - - uid: 6604 + - uid: 10590 components: - type: Transform - pos: -12.5,-18.5 + pos: -34.5,-21.5 parent: 4812 - - uid: 6605 + - uid: 10593 components: - type: Transform - pos: -8.5,-14.5 + pos: -38.5,-20.5 parent: 4812 -- proto: ChemistryEmptyBottle01 - entities: - - uid: 7581 + - uid: 10594 components: - type: Transform - pos: -15.593227,-23.348886 + pos: -39.5,-20.5 parent: 4812 - - uid: 7584 + - uid: 10595 components: - type: Transform - pos: -15.530727,-23.473886 + pos: -40.5,-20.5 parent: 4812 -- proto: ChemistryHotplate - entities: - - uid: 12473 + - uid: 10596 components: - type: Transform - pos: -10.5,-18.5 + pos: -41.5,-20.5 parent: 4812 -- proto: ChemMaster - entities: - - uid: 6606 + - uid: 10597 components: - type: Transform - pos: -8.5,-15.5 + pos: -42.5,-20.5 parent: 4812 - - uid: 6607 + - uid: 10598 components: - type: Transform - pos: -12.5,-17.5 + pos: -43.5,-20.5 parent: 4812 -- proto: ChessBoard - entities: - - uid: 11880 + - uid: 10618 components: - type: Transform - pos: -2.493187,-34.40246 + pos: -36.5,-19.5 parent: 4812 -- proto: Cigar - entities: - - uid: 5385 + - uid: 10619 components: - type: Transform - pos: 18.601286,-15.579714 + pos: -36.5,-18.5 parent: 4812 - - uid: 5386 + - uid: 10620 components: - type: Transform - pos: 18.601286,-15.439089 + pos: -36.5,-17.5 parent: 4812 -- proto: CigarCase - entities: - - uid: 1758 + - uid: 10621 components: - type: Transform - pos: -6.558632,4.639101 + pos: -36.5,-16.5 parent: 4812 - - uid: 6413 + - uid: 10622 components: - type: Transform - pos: -0.43434072,-15.356113 + pos: -36.5,-15.5 parent: 4812 -- proto: Cigarette - entities: - - uid: 12373 + - uid: 10623 components: - type: Transform - pos: 4.34406,-34.161045 + pos: -36.5,-14.5 parent: 4812 -- proto: CigarGold - entities: - - uid: 2674 + - uid: 10624 components: - type: Transform - pos: -2.4733105,29.66387 + pos: -36.5,-13.5 parent: 4812 - - uid: 2675 + - uid: 10625 components: - type: Transform - pos: -2.4108105,29.491995 + pos: -36.5,-12.5 parent: 4812 -- proto: CigarGoldCase - entities: - - uid: 2719 + - uid: 10626 components: - type: Transform - pos: -5.477762,22.691704 + pos: -36.5,-11.5 parent: 4812 -- proto: CigCartonRed - entities: - - uid: 11843 + - uid: 10627 components: - type: Transform - pos: -7.4943094,12.705126 + pos: -48.5,-22.5 parent: 4812 -- proto: CircuitImprinter - entities: - - uid: 6184 + - uid: 10628 components: - type: Transform - pos: 5.5,-17.5 + pos: -47.5,-22.5 parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold - - uid: 6233 + - uid: 10629 components: - type: Transform - pos: 13.5,-26.5 + pos: -46.5,-22.5 parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold -- proto: CleanerDispenser - entities: - - uid: 8493 + - uid: 10630 components: - type: Transform - pos: -20.5,-5.5 + pos: -45.5,-21.5 parent: 4812 -- proto: ClosetBombFilled - entities: - - uid: 6331 + - uid: 10631 components: - type: Transform - pos: 28.5,-22.5 + pos: -44.5,-20.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetChefFilled - entities: - - uid: 1568 + - uid: 10752 components: - type: Transform - pos: 4.5,0.5 + rot: 3.141592653589793 rad + pos: 31.5,15.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1676 + - uid: 10870 components: - type: Transform - pos: 3.5,13.5 + pos: -30.5,7.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1795 + - uid: 10871 components: - type: Transform - pos: 0.5,17.5 + pos: -31.5,7.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2677 + - uid: 10872 components: - type: Transform - pos: -8.5,33.5 + pos: -32.5,7.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2845 + - uid: 10874 components: - type: Transform - pos: -18.5,31.5 + pos: -33.5,7.5 parent: 4812 - - uid: 3786 + - uid: 10875 components: - type: Transform - pos: 3.5,46.5 + pos: -34.5,7.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4484 + - uid: 11252 components: - type: Transform - pos: 20.5,11.5 + pos: 9.5,-36.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4522 + - uid: 11253 components: - type: Transform - pos: 13.5,4.5 + pos: 9.5,-35.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4540 + - uid: 11254 components: - type: Transform - pos: 15.5,-5.5 + pos: 9.5,-34.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4599 + - uid: 11255 components: - type: Transform - pos: 13.5,-6.5 + pos: 9.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4725 + - uid: 11257 components: - type: Transform - pos: -10.5,-55.5 + pos: 14.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6421 + - uid: 11258 components: - type: Transform - pos: 2.5,-31.5 + pos: 13.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7616 + - uid: 11423 components: - type: Transform - pos: -15.5,-13.5 + pos: 19.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9632 + - uid: 11424 components: - type: Transform - pos: -48.5,-25.5 + pos: 21.5,-33.5 parent: 4812 - - uid: 10407 + - uid: 11425 components: - type: Transform - pos: -55.5,-23.5 + pos: 22.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10455 + - uid: 11426 components: - type: Transform - pos: -45.5,-19.5 + pos: 20.5,-33.5 parent: 4812 - - uid: 10876 + - uid: 11427 components: - type: Transform - pos: -32.5,8.5 + pos: 24.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11461 + - uid: 11428 components: - type: Transform - pos: 36.5,-37.5 + pos: 25.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 9631 + - uid: 11429 components: - type: Transform - pos: -12.5,-38.5 + pos: 26.5,-33.5 parent: 4812 -- proto: ClosetFireFilled - entities: - - uid: 1514 + - uid: 11430 components: - type: Transform - pos: 1.5,-10.5 + pos: 27.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1796 + - uid: 11431 components: - type: Transform - pos: 0.5,16.5 + pos: 28.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 3674 + - uid: 11432 components: - type: Transform - pos: 3.5,49.5 + pos: 29.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4483 + - uid: 11433 components: - type: Transform - pos: 22.5,1.5 + pos: 30.5,-33.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - uid: 11578 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 4812 + - uid: 11579 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 4812 + - uid: 11580 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 4812 + - uid: 11581 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 4812 + - uid: 11582 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 4812 + - uid: 11583 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 4812 + - uid: 11584 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 4812 + - uid: 11585 + components: + - type: Transform + pos: 46.5,-36.5 + parent: 4812 + - uid: 11586 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 4812 + - uid: 11587 + components: + - type: Transform + pos: 48.5,-36.5 + parent: 4812 + - uid: 11588 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 4812 + - uid: 11589 + components: + - type: Transform + pos: 50.5,-36.5 + parent: 4812 + - uid: 11590 + components: + - type: Transform + pos: 51.5,-36.5 + parent: 4812 + - uid: 11591 + components: + - type: Transform + pos: 52.5,-36.5 + parent: 4812 + - uid: 11592 + components: + - type: Transform + pos: 50.5,-35.5 + parent: 4812 + - uid: 11593 + components: + - type: Transform + pos: 50.5,-34.5 + parent: 4812 + - uid: 11594 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 4812 + - uid: 11595 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 4812 + - uid: 11596 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 4812 + - uid: 11597 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 4812 + - uid: 11598 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 4812 + - uid: 11599 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 4812 + - uid: 11600 + components: + - type: Transform + pos: 42.5,-35.5 + parent: 4812 + - uid: 11601 + components: + - type: Transform + pos: 42.5,-34.5 + parent: 4812 + - uid: 11602 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 4812 + - uid: 11603 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 4812 + - uid: 11604 + components: + - type: Transform + pos: 42.5,-40.5 + parent: 4812 + - uid: 11605 + components: + - type: Transform + pos: 42.5,-39.5 + parent: 4812 + - uid: 11606 + components: + - type: Transform + pos: 42.5,-38.5 + parent: 4812 + - uid: 11607 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 4812 + - uid: 11608 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 4812 + - uid: 11609 + components: + - type: Transform + pos: 46.5,-39.5 + parent: 4812 + - uid: 11610 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 4812 + - uid: 11611 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 4812 + - uid: 11612 + components: + - type: Transform + pos: 50.5,-40.5 + parent: 4812 + - uid: 11613 + components: + - type: Transform + pos: 50.5,-39.5 + parent: 4812 + - uid: 11614 + components: + - type: Transform + pos: 50.5,-38.5 + parent: 4812 + - uid: 11615 + components: + - type: Transform + pos: 50.5,-37.5 + parent: 4812 + - uid: 11619 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 4812 + - uid: 11620 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 4812 + - uid: 11814 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 4812 + - uid: 11815 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 4812 + - uid: 11816 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 4812 + - uid: 11817 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 4812 + - uid: 11818 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 4812 + - uid: 11819 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 4812 + - uid: 11820 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 4812 + - uid: 11821 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 4812 + - uid: 11822 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 4812 + - uid: 11823 + components: + - type: Transform + pos: -12.5,0.5 + parent: 4812 + - uid: 11824 + components: + - type: Transform + pos: -12.5,1.5 + parent: 4812 + - uid: 11825 + components: + - type: Transform + pos: -12.5,2.5 + parent: 4812 + - uid: 11826 + components: + - type: Transform + pos: -12.5,3.5 + parent: 4812 + - uid: 11827 + components: + - type: Transform + pos: -12.5,4.5 + parent: 4812 + - uid: 11828 + components: + - type: Transform + pos: -12.5,5.5 + parent: 4812 + - uid: 11829 + components: + - type: Transform + pos: -12.5,6.5 + parent: 4812 + - uid: 11830 + components: + - type: Transform + pos: -12.5,7.5 + parent: 4812 + - uid: 11831 + components: + - type: Transform + pos: -12.5,8.5 + parent: 4812 + - uid: 11832 + components: + - type: Transform + pos: -6.5,13.5 + parent: 4812 + - uid: 11833 + components: + - type: Transform + pos: -7.5,13.5 + parent: 4812 + - uid: 11834 + components: + - type: Transform + pos: -8.5,13.5 + parent: 4812 + - uid: 11835 + components: + - type: Transform + pos: -9.5,13.5 + parent: 4812 + - uid: 11836 + components: + - type: Transform + pos: -10.5,13.5 + parent: 4812 + - uid: 11837 + components: + - type: Transform + pos: -11.5,13.5 + parent: 4812 + - uid: 12068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 4812 + - uid: 12473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-15.5 + parent: 4812 + - uid: 12593 + components: + - type: Transform + pos: -48.5,14.5 + parent: 4812 + - uid: 12613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 4812 + - uid: 12671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 4812 + - uid: 12782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,11.5 + parent: 4812 + - uid: 12997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,40.5 + parent: 4812 + - uid: 13048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 4812 + - uid: 13054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 4812 + - uid: 13076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 4812 + - uid: 13134 + components: + - type: Transform + pos: 16.5,40.5 + parent: 4812 + - uid: 13136 + components: + - type: Transform + pos: 16.5,39.5 + parent: 4812 + - uid: 13140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,40.5 + parent: 4812 + - uid: 13142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,35.5 + parent: 4812 + - uid: 13143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 4812 + - uid: 13144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,35.5 + parent: 4812 + - uid: 13145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,35.5 + parent: 4812 + - uid: 13168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-43.5 + parent: 4812 + - uid: 13170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-50.5 + parent: 4812 + - uid: 13171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-50.5 + parent: 4812 + - uid: 13172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-57.5 + parent: 4812 + - uid: 13173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-57.5 + parent: 4812 + - uid: 13438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,10.5 + parent: 4812 + - uid: 13513 + components: + - type: Transform + pos: -49.5,3.5 + parent: 4812 + - uid: 13515 + components: + - type: Transform + pos: -50.5,3.5 + parent: 4812 + - uid: 13526 + components: + - type: Transform + pos: -52.5,3.5 + parent: 4812 + - uid: 13541 + components: + - type: Transform + pos: -48.5,3.5 + parent: 4812 + - uid: 13548 + components: + - type: Transform + pos: -48.5,2.5 + parent: 4812 + - uid: 13554 + components: + - type: Transform + pos: -51.5,3.5 + parent: 4812 + - uid: 13645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,2.5 + parent: 4812 + - uid: 13646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,1.5 + parent: 4812 + - uid: 13647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,4.5 + parent: 4812 + - uid: 13648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,3.5 + parent: 4812 + - uid: 13657 + components: + - type: Transform + pos: -43.5,5.5 + parent: 4812 + - uid: 13658 + components: + - type: Transform + pos: -44.5,5.5 + parent: 4812 + - uid: 13659 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 +- proto: Chair + entities: + - uid: 3239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 4812 + - uid: 3240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 4812 + - uid: 3241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 4812 + - uid: 3242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 4812 + - uid: 3243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 4812 + - uid: 4119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 4812 + - uid: 4135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 4812 + - uid: 4384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-4.5 + parent: 4812 + - uid: 4392 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 4812 + - uid: 4418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-7.5 + parent: 4812 + - uid: 4420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 4812 + - uid: 4421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 4812 + - uid: 4422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 4812 + - uid: 4555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 4812 + - uid: 4556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-4.5 + parent: 4812 + - uid: 4565 + components: + - type: Transform + pos: 29.5,4.5 + parent: 4812 + - uid: 4566 + components: + - type: Transform + pos: 30.5,4.5 + parent: 4812 + - uid: 4567 + components: + - type: Transform + pos: 31.5,4.5 + parent: 4812 + - uid: 4568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 4812 + - uid: 5065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 4812 + - uid: 5066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 4812 + - uid: 5375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-17.5 + parent: 4812 + - uid: 7214 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 4812 + - uid: 7439 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 4812 + - uid: 7440 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 4812 + - uid: 8289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 4812 + - uid: 8290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,14.5 + parent: 4812 + - uid: 8291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,15.5 + parent: 4812 + - uid: 8292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 4812 + - uid: 8293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,17.5 + parent: 4812 + - uid: 8302 + components: + - type: Transform + pos: -19.5,19.5 + parent: 4812 + - uid: 8303 + components: + - type: Transform + pos: -18.5,19.5 + parent: 4812 + - uid: 8418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-23.5 + parent: 4812 + - uid: 8437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 4812 + - uid: 8438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 4812 + - uid: 8445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,17.5 + parent: 4812 + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 4812 + - uid: 9225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,16.5 + parent: 4812 + - uid: 9566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 4812 + - uid: 10732 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 4812 + - uid: 10733 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 4812 + - uid: 10734 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 4812 + - uid: 10735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 4812 + - uid: 10736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 4812 + - uid: 10737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 4812 + - uid: 10739 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 4812 + - uid: 10909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-24.5 + parent: 4812 + - uid: 10910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 4812 + - uid: 10911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-24.5 + parent: 4812 + - uid: 11773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 4812 + - uid: 11774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 4812 + - uid: 11841 + components: + - type: Transform + pos: -8.5,14.5 + parent: 4812 + - uid: 11846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 4812 + - uid: 11877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 4812 + - uid: 11878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 4812 + - uid: 11885 + components: + - type: Transform + pos: 6.5,12.5 + parent: 4812 + - uid: 11886 + components: + - type: Transform + pos: 5.5,12.5 + parent: 4812 + - uid: 12393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 4812 + - uid: 13126 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 4812 + - uid: 13177 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 4812 + - uid: 13325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 4812 + - uid: 13410 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 4812 + - uid: 13641 + components: + - type: Transform + pos: -45.5,4.5 + parent: 4812 + - uid: 13642 + components: + - type: Transform + pos: -44.5,4.5 + parent: 4812 + - uid: 13643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,2.5 + parent: 4812 + - uid: 13644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 4812 +- proto: ChairOfficeDark + entities: + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 4812 + - uid: 2508 + components: + - type: Transform + pos: 9.5,24.5 + parent: 4812 + - uid: 2665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 4812 + - uid: 2666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,34.5 + parent: 4812 + - uid: 2667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 4812 + - uid: 2686 + components: + - type: Transform + pos: -7.5,33.5 + parent: 4812 + - uid: 3237 + components: + - type: Transform + pos: 15.5,17.5 + parent: 4812 + - uid: 3238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 4812 + - uid: 3704 + components: + - type: Transform + pos: 17.5,30.5 + parent: 4812 + - uid: 4569 + components: + - type: Transform + pos: 28.5,2.5 + parent: 4812 + - uid: 5371 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 4812 + - uid: 6288 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 4812 + - uid: 6320 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 4812 + - uid: 6475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 4812 + - uid: 7037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-39.5 + parent: 4812 + - uid: 7038 + components: + - type: Transform + pos: -23.5,-37.5 + parent: 4812 + - uid: 7071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 4812 + - uid: 7072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 4812 + - uid: 7073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 4812 + - uid: 7074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 4812 + - uid: 7075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-19.5 + parent: 4812 + - uid: 7076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 4812 + - uid: 8278 + components: + - type: Transform + pos: -17.5,15.5 + parent: 4812 + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 4812 + - uid: 8366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 4812 + - uid: 9575 + components: + - type: Transform + pos: -30.5,1.5 + parent: 4812 + - uid: 9878 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 4812 + - uid: 10666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-9.5 + parent: 4812 + - uid: 10698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 4812 + - uid: 11869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 4812 + - uid: 11870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 4812 + - uid: 11871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 4812 + - uid: 13423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-2.5 + parent: 4812 +- proto: ChairOfficeLight + entities: + - uid: 4595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 4812 + - uid: 4973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 4812 + - uid: 6179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 4812 + - uid: 6180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 4812 + - uid: 6216 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 4812 + - uid: 6344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 4812 + - uid: 6619 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 4812 + - uid: 6620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 4812 + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 4812 + - uid: 11148 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 4812 + - uid: 12667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-25.5 + parent: 4812 +- proto: ChairWood + entities: + - uid: 1052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 4812 + - uid: 1053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 4812 + - uid: 1054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 4812 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 4812 + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 4812 + - uid: 1057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 4812 + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 4812 + - uid: 1059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 4812 + - uid: 1060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 4812 + - uid: 1061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 4812 + - uid: 1062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 4812 + - uid: 1626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 4812 + - uid: 4659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 4812 + - uid: 5226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 4812 + - uid: 5227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 4812 + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 4812 + - uid: 5230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 4812 + - uid: 5231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 4812 + - uid: 6797 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 4812 + - uid: 6798 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 4812 + - uid: 7007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 4812 + - uid: 7008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 4812 + - uid: 7009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 4812 + - uid: 7010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 4812 + - uid: 7011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 4812 + - uid: 7012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 4812 + - uid: 7013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 4812 + - uid: 7014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 4812 + - uid: 7015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 4812 + - uid: 7016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 4812 + - uid: 7160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 4812 + - uid: 7168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 4812 + - uid: 10502 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 4812 + - uid: 10503 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 4812 + - uid: 10504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-29.5 + parent: 4812 + - uid: 10505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-29.5 + parent: 4812 + - uid: 10506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-28.5 + parent: 4812 + - uid: 10507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-28.5 + parent: 4812 +- proto: ChanterelleSeeds + entities: + - uid: 1522 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 4812 + - uid: 11296 + components: + - type: Transform + pos: 16.50683,-36.589657 + parent: 4812 +- proto: CheapRollerBed + entities: + - uid: 7588 + components: + - type: Transform + pos: -19.499699,-23.348194 + parent: 4812 + - uid: 7655 + components: + - type: Transform + pos: -20.546574,-23.33257 + parent: 4812 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 3226 + components: + - type: Transform + pos: -17.562876,-25.168678 + parent: 4812 + - uid: 8850 + components: + - type: Transform + pos: -17.5785,-25.512428 + parent: 4812 +- proto: CheckerBoard + entities: + - uid: 12685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 4812 +- proto: ChemDispenser + entities: + - uid: 6605 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 4812 + - uid: 6652 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 4812 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 7581 + components: + - type: Transform + pos: -15.593227,-23.348886 + parent: 4812 + - uid: 7584 + components: + - type: Transform + pos: -15.530727,-23.473886 + parent: 4812 +- proto: ChemistryHotplate + entities: + - uid: 6607 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 4812 +- proto: ChemMaster + entities: + - uid: 12045 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 4812 + - uid: 13332 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 4812 +- proto: ChessBoard + entities: + - uid: 11880 + components: + - type: Transform + pos: -2.493187,-34.40246 + parent: 4812 +- proto: Cigar + entities: + - uid: 5385 + components: + - type: Transform + pos: 18.601286,-15.579714 + parent: 4812 + - uid: 5386 + components: + - type: Transform + pos: 18.601286,-15.439089 + parent: 4812 +- proto: CigarCase + entities: + - uid: 1758 + components: + - type: Transform + pos: -6.558632,4.639101 + parent: 4812 + - uid: 6413 + components: + - type: Transform + pos: -0.43434072,-15.356113 + parent: 4812 +- proto: Cigarette + entities: + - uid: 12373 + components: + - type: Transform + pos: 4.34406,-34.161045 + parent: 4812 +- proto: CigarGold + entities: + - uid: 2674 + components: + - type: Transform + pos: -2.4733105,29.66387 + parent: 4812 + - uid: 2675 + components: + - type: Transform + pos: -2.4108105,29.491995 + parent: 4812 +- proto: CigarGoldCase + entities: + - uid: 2719 + components: + - type: Transform + pos: -5.477762,22.691704 + parent: 4812 +- proto: CigCartonRed + entities: + - uid: 11843 + components: + - type: Transform + pos: -7.4943094,12.705126 + parent: 4812 +- proto: CircuitImprinter + entities: + - uid: 6184 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Gold + - uid: 6233 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Gold +- proto: CleanerDispenser + entities: + - uid: 8493 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 4812 +- proto: ClosetBombFilled + entities: + - uid: 6331 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetChefFilled + entities: + - uid: 1568 + components: + - type: Transform + pos: 4.5,0.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1676 + components: + - type: Transform + pos: 3.5,13.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1795 + components: + - type: Transform + pos: 0.5,17.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 2677 + components: + - type: Transform + pos: -8.5,33.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 2845 + components: + - type: Transform + pos: -18.5,31.5 + parent: 4812 + - uid: 3786 + components: + - type: Transform + pos: 3.5,46.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4322 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 4812 + - uid: 4484 + components: + - type: Transform + pos: 20.5,11.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4522 + components: + - type: Transform + pos: 13.5,4.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4540 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4599 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4725 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6421 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7616 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9632 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 4812 + - uid: 10407 + components: + - type: Transform + pos: -55.5,-23.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10455 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 4812 + - uid: 10876 + components: + - type: Transform + pos: -32.5,8.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11461 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12920 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 4812 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 9631 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 4812 +- proto: ClosetFireFilled + entities: + - uid: 1514 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1796 + components: + - type: Transform + pos: 0.5,16.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 3180 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 4812 + - uid: 3674 + components: + - type: Transform + pos: 3.5,49.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4483 + components: + - type: Transform + pos: 22.5,1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7615 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8456 + components: + - type: Transform + pos: -16.5,31.5 + parent: 4812 + - uid: 9688 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9690 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12474 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13185 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 4812 +- proto: ClosetJanitorFilled + entities: + - uid: 1486 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3JanitorFilled + entities: + - uid: 1479 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3ScienceFilled + entities: + - uid: 6310 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11149 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3SecurityFilled + entities: + - uid: 8423 + components: + - type: Transform + pos: -33.5,10.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3VirologyFilled + entities: + - uid: 8869 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetLegalFilled + entities: + - uid: 8477 + components: + - type: Transform + pos: -16.5,15.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 9068 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10527 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10900 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 - 0 - 0 - 0 - 0 - - uid: 7615 + - 0 + - uid: 11309 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11882 + components: + - type: Transform + pos: 9.5,12.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6358 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9686 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9687 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11775 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetSteelBase + entities: + - uid: 11811 + components: + - type: Transform + pos: -15.5,0.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetWallAtmospherics + entities: + - uid: 9554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,20.5 + parent: 4812 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9555 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 12375 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 11745 + components: + - type: Transform + pos: 5.5,3.5 + parent: 4812 + - uid: 12376 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetWallOrange + entities: + - uid: 12377 + components: + - type: Transform + pos: -25.5,21.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12378 + components: + - type: Transform + pos: -25.5,18.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12379 + components: + - type: Transform + pos: -31.5,28.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12380 + components: + - type: Transform + pos: -27.5,28.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClothingBackpackClown + entities: + - uid: 9198 + components: + - type: Transform + pos: -10.304824,1.6229031 + parent: 4812 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 7428 + components: + - type: Transform + pos: -22.535873,-28.341772 + parent: 4812 +- proto: ClothingBeltChampion + entities: + - uid: 2715 + components: + - type: Transform + pos: -5.571512,24.066704 + parent: 4812 +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 9061 + components: + - type: Transform + pos: -28.553808,-33.515636 + parent: 4812 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 3371 + components: + - type: Transform + pos: 19.574245,21.55511 + parent: 4812 + - uid: 10714 + components: + - type: Transform + pos: -31.802395,-7.4187636 + parent: 4812 + - uid: 12498 + components: + - type: Transform + pos: 5.5994864,-28.47739 + parent: 4812 +- proto: ClothingEyesEyepatch + entities: + - uid: 9657 + components: + - type: Transform + pos: 25.533524,-9.424093 + parent: 4812 + - uid: 12144 + components: + - type: Transform + pos: -14.245123,35.0185 + parent: 473 +- proto: ClothingEyesGlasses + entities: + - uid: 6205 + components: + - type: Transform + pos: 3.4675388,-14.361706 + parent: 4812 + - uid: 6337 + components: + - type: Transform + pos: 25.449461,-19.268694 + parent: 4812 + - uid: 11851 + components: + - type: Transform + pos: 10.561617,-44.322975 + parent: 4812 + - uid: 12497 + components: + - type: Transform + pos: 9.501655,-16.456053 + parent: 4812 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 1655 + components: + - type: Transform + pos: 5.544427,8.548626 + parent: 4812 + - uid: 5383 + components: + - type: Transform + pos: 19.570036,-18.407839 + parent: 4812 +- proto: ClothingEyesHudBeer + entities: + - uid: 10683 + components: + - type: Transform + pos: -9.466419,-48.16831 + parent: 4812 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 10769 + components: + - type: Transform + pos: -43.49446,-7.521168 + parent: 4812 +- proto: ClothingEyesHudMedical + entities: + - uid: 7586 + components: + - type: Transform + pos: -14.516666,-20.606585 + parent: 4812 + - uid: 7587 + components: + - type: Transform + pos: -14.766666,-20.481499 + parent: 4812 +- proto: ClothingEyesHudSecurity + entities: + - uid: 8443 + components: + - type: Transform + pos: -36.423813,15.378265 + parent: 4812 +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 11853 + components: + - type: Transform + pos: 12.884244,-36.874004 + parent: 4812 +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 1495 + components: + - type: Transform + pos: -23.466429,-7.3899465 + parent: 4812 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8601 + components: + - type: Transform + pos: -18.439812,9.940453 + parent: 4812 + - uid: 10706 + components: + - type: Transform + pos: -32.450558,-7.5008273 + parent: 4812 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 8419 + components: + - type: Transform + pos: -19.480015,-25.463383 + parent: 4812 + - uid: 9033 + components: + - type: Transform + pos: -39.79441,-35.343323 + parent: 4812 +- proto: ClothingHandsGlovesRobohands + entities: + - uid: 6349 + components: + - type: Transform + pos: 5.5434675,-25.370066 + parent: 4812 +- proto: ClothingHeadFishCap + entities: + - uid: 9567 + components: + - type: Transform + pos: 13.508905,-4.30057 + parent: 4812 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 9195 + components: + - type: Transform + pos: -33.510674,-34.64361 + parent: 4812 + - uid: 11099 + components: + - type: Transform + pos: 7.610162,-44.413692 + parent: 4812 +- proto: ClothingHeadHatBeaverHat + entities: + - uid: 6385 + components: + - type: Transform + pos: 13.532155,-11.236504 + parent: 4812 +- proto: ClothingHeadHatBeretWarden + entities: + - uid: 12145 + components: + - type: Transform + pos: -35.744057,17.561283 + parent: 4812 +- proto: ClothingHeadHatCone + entities: + - uid: 11339 + components: + - type: Transform + pos: 8.449844,17.514982 + parent: 4812 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 10608 + components: + - type: Transform + pos: -36.481308,-25.464363 + parent: 4812 + - uid: 11809 + components: + - type: Transform + pos: -14.4824505,-0.22820306 + parent: 4812 +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 1757 + components: + - type: Transform + pos: -6.558632,8.592226 + parent: 4812 +- proto: ClothingHeadHatFez + entities: + - uid: 10914 + components: + - type: Transform + pos: -44.596,-23.407698 + parent: 4812 + - uid: 10915 + components: + - type: Transform + pos: -44.4085,-23.673323 + parent: 4812 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 7254 + components: + - type: Transform + pos: -24.594517,-34.532703 + parent: 4812 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 12119 + components: + - type: Transform + pos: -46.503944,-1.1517658 + parent: 4812 + - type: HandheldLight + toggleActionEntity: 9534 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9534 + - type: ActionsContainer +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 12120 + components: + - type: Transform + pos: -41.401306,-7.235723 + parent: 4812 +- proto: ClothingHeadHatOutlawHat + entities: + - uid: 9510 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatPaper + entities: + - uid: 11856 + components: + - type: Transform + pos: -27.456482,29.23433 + parent: 4812 +- proto: ClothingHeadHatPirate + entities: + - uid: 11933 + components: + - type: Transform + pos: -21.445757,35.638134 + parent: 4812 +- proto: ClothingHeadHatPumpkin + entities: + - uid: 11858 + components: + - type: Transform + pos: -18.486109,-5.5083795 + parent: 4812 +- proto: ClothingHeadHatTophat + entities: + - uid: 10924 + components: + - type: Transform + parent: 10921 + - type: Physics + canCollide: False +- proto: ClothingHeadHatTrucker + entities: + - uid: 1460 + components: + - type: Transform + pos: -18.506594,-5.4646573 + parent: 4812 +- proto: ClothingHeadHatUshanka + entities: + - uid: 11778 + components: + - type: Transform + pos: 30.766603,-32.390636 + parent: 4812 + - uid: 11779 + components: + - type: Transform + pos: 30.360353,-32.65626 + parent: 4812 +- proto: ClothingHeadHatWelding + entities: + - uid: 6238 + components: + - type: Transform + pos: 15.515093,-23.391537 + parent: 4812 + - uid: 8600 + components: + - type: Transform + pos: -20.141129,12.59749 + parent: 4812 +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 10726 + components: + - type: Transform + pos: -24.496122,-31.384293 + parent: 4812 + - uid: 11469 + components: + - type: Transform + pos: 28.533575,-35.71058 + parent: 4812 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 10725 + components: + - type: Transform + pos: -36.26352,8.306009 + parent: 4812 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 10727 + components: + - type: Transform + pos: 15.568787,-6.463143 + parent: 4812 +- proto: ClothingHeadHatWitch1 + entities: + - uid: 1753 + components: + - type: Transform + pos: -10.496132,3.670351 + parent: 4812 +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 11672 + components: + - type: Transform + pos: 28.730742,-41.454163 + parent: 4812 +- proto: ClothingHeadHelmetTemplar + entities: + - uid: 11881 + components: + - type: Transform + pos: -1.477562,-34.543083 + parent: 4812 +- proto: ClothingHeadsetEngineering + entities: + - uid: 10764 + components: + - type: Transform + pos: -43.456604,-7.425037 + parent: 4812 +- proto: ClothingHeadsetMining + entities: + - uid: 8788 + components: + - type: Transform + pos: -35.24849,-39.264732 + parent: 4812 +- proto: ClothingMaskBreath + entities: + - uid: 11789 + components: + - type: Transform + pos: 22.374546,-32.47262 + parent: 4812 +- proto: ClothingMaskBreathMedical + entities: + - uid: 8863 + components: + - type: Transform + pos: 14.451679,-40.556843 + parent: 4812 +- proto: ClothingMaskGas + entities: + - uid: 4496 + components: + - type: Transform + pos: 19.554443,6.484804 + parent: 4812 + - uid: 4542 + components: + - type: Transform + pos: 21.65161,-6.5808167 + parent: 4812 + - uid: 11790 + components: + - type: Transform + pos: 22.624546,-32.62887 + parent: 4812 +- proto: ClothingMaskGasCentcom + entities: + - uid: 11677 + components: + - type: Transform + pos: 25.527617,-40.28087 + parent: 4812 +- proto: ClothingMaskGasExplorer + entities: + - uid: 11015 + components: + - type: Transform + pos: 35.488716,-30.534061 + parent: 4812 +- proto: ClothingNeckBling + entities: + - uid: 2717 + components: + - type: Transform + pos: -5.415262,24.019829 + parent: 4812 +- proto: ClothingNeckCloakMiner + entities: + - uid: 12989 + components: + - type: Transform + pos: 65.5,-25.5 + parent: 4812 +- proto: ClothingNeckCloakTrans + entities: + - uid: 4827 + components: + - type: Transform + pos: 38.546867,-26.403046 + parent: 4812 +- proto: ClothingNeckHeadphones + entities: + - uid: 9196 + components: + - type: Transform + pos: -22.35473,0.53885174 + parent: 4812 + - uid: 11854 + components: + - type: Transform + pos: -0.5106895,-15.532991 + parent: 4812 +- proto: ClothingNeckIntersexPin + entities: + - uid: 12511 + components: + - type: Transform + pos: 19.693497,8.613337 + parent: 4812 +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 12513 + components: + - type: Transform + pos: 8.410957,-44.59256 + parent: 4812 +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 8417 + components: + - type: Transform + pos: -14.544858,-25.307133 + parent: 4812 + - uid: 11338 + components: + - type: Transform + pos: -33.593323,-36.57982 + parent: 4812 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 7133 + components: + - type: Transform + pos: -30.568611,-23.475061 + parent: 4812 +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 11335 + components: + - type: Transform + pos: -1.4543457,-27.446754 + parent: 4812 + - uid: 12365 + components: + - type: Transform + pos: -68.52162,-28.692625 + parent: 4812 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 9557 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckStethoscope + entities: + - uid: 7580 + components: + - type: Transform + pos: -18.561977,-20.380136 + parent: 4812 +- proto: ClothingNeckTieRed + entities: + - uid: 10922 + components: + - type: Transform + parent: 10921 + - type: Physics + canCollide: False + - uid: 11808 + components: + - type: Transform + pos: -14.6855755,-0.43132806 + parent: 4812 +- proto: ClothingNeckTransPin + entities: + - uid: 12515 + components: + - type: Transform + pos: -14.357392,4.331708 + parent: 4812 +- proto: ClothingOuterApron + entities: + - uid: 10913 + components: + - type: Transform + pos: -43.53869,-26.441507 + parent: 4812 +- proto: ClothingOuterArmorBasic + entities: + - uid: 9636 + components: + - type: Transform + pos: -33.593445,20.66048 + parent: 4812 + - uid: 9658 + components: + - type: Transform + pos: -33.593445,20.66048 + parent: 4812 + - uid: 9971 + components: + - type: Transform + pos: -33.593445,20.66048 + parent: 4812 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 9972 + components: + - type: Transform + pos: -35.562195,19.41048 + parent: 4812 + - uid: 9990 + components: + - type: Transform + pos: -35.562195,19.41048 + parent: 4812 + - uid: 9992 + components: + - type: Transform + pos: -35.562195,19.41048 + parent: 4812 +- proto: ClothingOuterArmorReflective + entities: + - uid: 10685 + components: + - type: Transform + pos: -33.364815,20.521324 + parent: 4812 +- proto: ClothingOuterArmorRiot + entities: + - uid: 10958 + components: + - type: Transform + pos: -33.39286,20.650888 + parent: 4812 + - uid: 10976 + components: + - type: Transform + pos: -33.627235,20.729013 + parent: 4812 +- proto: ClothingOuterCoatBomber + entities: + - uid: 10905 + components: + - type: Transform + pos: -30.486824,-12.450464 + parent: 4812 +- proto: ClothingOuterCoatDetectiveLoadout + entities: + - uid: 11805 + components: + - type: Transform + pos: -14.486766,-0.42116833 + parent: 4812 +- proto: ClothingOuterCoatGentle + entities: + - uid: 6193 + components: + - type: Transform + pos: 13.531586,-11.381834 + parent: 4812 +- proto: ClothingOuterCoatJensen + entities: + - uid: 9193 + components: + - type: Transform + pos: -13.455734,5.5269423 + parent: 4812 +- proto: ClothingOuterCoatPirate + entities: + - uid: 11934 + components: + - type: Transform + pos: -23.764275,32.548626 + parent: 4812 +- proto: ClothingOuterGhostSheet + entities: + - uid: 11262 + components: + - type: Transform + pos: 37.373894,-34.471485 + parent: 4812 +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 6765 + components: + - type: Transform + parent: 3441 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 10602 + components: + - type: Transform + pos: -36.600456,17.618195 + parent: 4812 + - uid: 12429 + components: + - type: Transform + pos: -36.45983,17.524445 + parent: 4812 +- proto: ClothingOuterHardsuitSpatio + entities: + - uid: 12424 + components: + - type: Transform + pos: -52.87503,-18.445377 + parent: 4812 +- proto: ClothingOuterHoodieBlack + entities: + - uid: 11468 + components: + - type: Transform + pos: 37.580452,-32.58558 + parent: 4812 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 11671 + components: + - type: Transform + pos: 28.696922,-41.322342 + parent: 4812 +- proto: ClothingOuterVestHazard + entities: + - uid: 12117 + components: + - type: Transform + pos: -46.33728,-1.485331 + parent: 4812 + - uid: 12118 + components: + - type: Transform + pos: -46.660194,-1.4749074 + parent: 4812 +- proto: ClothingShoesBootsJack + entities: + - uid: 9194 + components: + - type: Transform + pos: 15.452381,-15.575151 + parent: 4812 + - uid: 12364 + components: + - type: Transform + pos: 2.5661945,-37.272846 + parent: 4812 +- proto: ClothingShoesBootsMag + entities: + - uid: 1688 + components: + - type: Transform + pos: 5.3844786,14.708496 + parent: 4812 + - uid: 1689 + components: + - type: Transform + pos: 5.5251036,14.520996 + parent: 4812 + - uid: 10772 + components: + - type: Transform + pos: -30.706427,-9.213518 + parent: 4812 + - uid: 10773 + components: + - type: Transform + pos: -30.264002,-9.749746 + parent: 4812 +- proto: ClothingShoesBootsWork + entities: + - uid: 8784 + components: + - type: MetaData + desc: These look like workboots but... they feel expensive. + name: Nimbs + - type: Transform + pos: -34.496048,-16.64644 + parent: 4812 +- proto: ClothingShoesFlippers + entities: + - uid: 11850 + components: + - type: Transform + pos: 4.561617,-41.479225 + parent: 4812 +- proto: ClothingShoesLeather + entities: + - uid: 8864 + components: + - type: Transform + pos: 35.476944,-33.759735 + parent: 4812 + - uid: 12465 + components: + - type: Transform + pos: -36.627586,29.207901 + parent: 4812 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 11810 + components: + - type: Transform + pos: -14.4668255,-1.6813283 + parent: 4812 +- proto: ClothingShoesTourist + entities: + - uid: 1555 + components: + - type: Transform + pos: -9.419544,-48.840183 + parent: 4812 +- proto: ClothingUnderSocksBee + entities: + - uid: 11333 + components: + - type: Transform + pos: 22.487274,-37.39112 + parent: 4812 +- proto: ClothingUnderSocksCoder + entities: + - uid: 11332 + components: + - type: Transform + pos: 14.5012665,-31.61288 + parent: 4812 +- proto: ClothingUniformColorRainbow + entities: + - uid: 1570 + components: + - type: Transform + pos: 14.528925,6.523329 + parent: 4812 +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 10607 + components: + - type: Transform + pos: -36.403183,-24.261238 + parent: 4812 +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 9053 + components: + - type: Transform + pos: -28.506933,-33.546886 + parent: 4812 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 8379 + components: + - type: Transform + pos: 12.547598,-44.418983 + parent: 4812 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 10606 + components: + - type: Transform + pos: -36.543808,-24.229988 + parent: 4812 +- proto: ClothingUniformJumpsuitHawaiBlack + entities: + - uid: 1564 + components: + - type: Transform + pos: -9.44705,-48.485367 + parent: 4812 +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 9060 + components: + - type: Transform + pos: -28.538183,-33.56251 + parent: 4812 +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 10968 + components: + - type: Transform + pos: -36.533836,29.489151 + parent: 4812 +- proto: ClothingUniformJumpsuitSecBlue + entities: + - uid: 10923 + components: + - type: Transform + parent: 10921 + - type: Physics + canCollide: False +- proto: ClothingUniformOveralls + entities: + - uid: 11855 + components: + - type: Transform + pos: 17.403048,-37.515766 + parent: 4812 +- proto: ComfyChair + entities: + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 4812 + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 4812 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 4812 + - uid: 1533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 4812 + - uid: 1750 + components: + - type: Transform + pos: -8.5,7.5 + parent: 4812 + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 4812 + - uid: 2507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,24.5 + parent: 4812 + - uid: 2587 + components: + - type: Transform + pos: -12.5,28.5 + parent: 4812 + - uid: 2603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,23.5 + parent: 4812 + - uid: 2604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,22.5 + parent: 4812 + - uid: 2605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 4812 + - uid: 2641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 4812 + - uid: 2642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,28.5 + parent: 4812 + - uid: 2646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 4812 + - uid: 2647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,29.5 + parent: 4812 + - uid: 2648 + components: + - type: Transform + pos: -2.5,30.5 + parent: 4812 + - uid: 2664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,34.5 + parent: 4812 + - uid: 5366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 4812 + - uid: 6351 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 4812 + - uid: 6352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 4812 + - uid: 6392 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 4812 + - uid: 6393 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 4812 + - uid: 6394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 4812 + - uid: 6395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 4812 + - uid: 6396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 4812 + - uid: 6397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 4812 + - uid: 6398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 4812 + - uid: 6399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 4812 + - uid: 7044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 4812 + - uid: 7089 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 4812 + - uid: 8254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,27.5 + parent: 4812 + - uid: 8260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 4812 + - uid: 8261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,23.5 + parent: 4812 + - uid: 8262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,24.5 + parent: 4812 + - uid: 8393 + components: + - type: Transform + pos: -25.5,31.5 + parent: 4812 + - uid: 9047 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 4812 + - uid: 9057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 4812 + - uid: 9058 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 4812 + - uid: 9059 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 4812 + - uid: 11353 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 4812 + - uid: 11464 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 4812 + - uid: 11465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-31.5 + parent: 4812 + - uid: 11784 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 4812 + - uid: 11804 + components: + - type: Transform + pos: -14.5,0.5 + parent: 4812 + - uid: 13139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 4812 +- proto: CommandmentCircuitBoard + entities: + - uid: 12653 + components: + - type: Transform + pos: 11.589803,43.5258 + parent: 4812 +- proto: CommsComputerCircuitboard + entities: + - uid: 2730 + components: + - type: Transform + pos: 22.5,8.5 + parent: 4812 +- proto: ComputerAlert + entities: + - uid: 2708 + components: + - type: Transform + pos: -2.5,24.5 + parent: 4812 + - uid: 2911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,1.5 + parent: 4812 +- proto: ComputerAnalysisConsole + entities: + - uid: 6313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 6319: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 4921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-28.5 + parent: 4812 + - uid: 6166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-28.5 + parent: 4812 + - uid: 6682 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 4812 + - uid: 7445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 4812 +- proto: ComputerCargoBounty + entities: + - uid: 9587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 4812 +- proto: ComputerCargoOrders + entities: + - uid: 2752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 4812 + - uid: 3757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 4812 +- proto: ComputerCargoShuttle + entities: + - uid: 2760 components: - type: Transform - pos: -16.5,-13.5 + rot: -1.5707963267948966 rad + pos: 16.5,17.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8456 +- proto: ComputerComms + entities: + - uid: 2601 components: - type: Transform - pos: -16.5,31.5 + rot: 3.141592653589793 rad + pos: -13.5,22.5 parent: 4812 - - uid: 9688 + - uid: 2649 components: - type: Transform - pos: -38.5,-2.5 + pos: -2.5,35.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9690 +- proto: ComputerCrewMonitoring + entities: + - uid: 2505 components: - type: Transform - pos: -38.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,25.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12474 + - uid: 2656 components: - type: Transform - pos: -10.5,-54.5 + pos: -4.5,35.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetJanitorFilled + - uid: 4571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 4812 + - uid: 6474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 4812 + - uid: 7447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 4812 + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,24.5 + parent: 4812 + - uid: 9156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 4812 +- proto: ComputerCriminalRecords entities: - - uid: 1486 + - uid: 2659 components: - type: Transform - pos: -23.5,-8.5 + pos: 0.5,35.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetL3JanitorFilled + - uid: 4570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 4812 + - uid: 6473 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 4812 + - uid: 8263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,23.5 + parent: 4812 + - uid: 8331 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 + - uid: 8365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,10.5 + parent: 4812 +- proto: ComputerFrame + entities: + - uid: 11147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-44.5 + parent: 4812 +- proto: ComputerId + entities: + - uid: 2504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 4812 + - uid: 2602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,22.5 + parent: 4812 + - uid: 2658 + components: + - type: Transform + pos: -0.5,35.5 + parent: 4812 +- proto: ComputerMedicalRecords + entities: + - uid: 2657 + components: + - type: Transform + pos: -5.5,35.5 + parent: 4812 + - uid: 7454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 4812 +- proto: ComputerPowerMonitoring + entities: + - uid: 2654 + components: + - type: Transform + pos: 3.5,34.5 + parent: 4812 + - uid: 6021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 4812 + - uid: 10697 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 4812 + - uid: 12971 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 4812 +- proto: ComputerRadar + entities: + - uid: 12672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 4812 + - uid: 12975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,15.5 + parent: 4812 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 6185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 4812 + - uid: 6215 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 4812 + - uid: 6232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 4812 + - uid: 9665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 4812 +- proto: ComputerRoboticsControl + entities: + - uid: 1482 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 4812 +- proto: ComputerSalvageExpedition + entities: + - uid: 12656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 4812 +- proto: ComputerShuttleCargo + entities: + - uid: 2754 + components: + - type: Transform + pos: 17.5,27.5 + parent: 4812 + - uid: 3758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 4812 +- proto: ComputerSolarControl + entities: + - uid: 2655 + components: + - type: Transform + pos: 2.5,34.5 + parent: 4812 + - uid: 10322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-25.5 + parent: 4812 +- proto: ComputerStationRecords + entities: + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 4812 + - uid: 4799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 4812 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 4812 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2662 + components: + - type: Transform + pos: -7.5,34.5 + parent: 4812 + - uid: 4955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 4812 + - uid: 8332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 4812 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 12323 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 4812 +- proto: ComputerTelevision + entities: + - uid: 5370 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 4812 +- proto: ConveyorBelt + entities: + - uid: 2765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 4812 + - uid: 2771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,28.5 + parent: 4812 + - uid: 2863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 4812 + - uid: 2890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 4812 + - uid: 2896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,12.5 + parent: 4812 + - uid: 3013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,24.5 + parent: 4812 + - uid: 3014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,24.5 + parent: 4812 + - uid: 3028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,24.5 + parent: 4812 + - uid: 3029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,24.5 + parent: 4812 + - uid: 3033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,24.5 + parent: 4812 + - uid: 3043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,28.5 + parent: 4812 + - uid: 3046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 4812 + - uid: 3434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,12.5 + parent: 4812 + - uid: 3769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 4812 + - uid: 11235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 4812 + - uid: 13135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 4812 + - uid: 13282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,12.5 + parent: 4812 + - uid: 13283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,12.5 + parent: 4812 + - uid: 13289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,12.5 + parent: 4812 + - uid: 13290 + components: + - type: Transform + pos: 32.5,13.5 + parent: 4812 +- proto: CornSeeds + entities: + - uid: 9618 + components: + - type: Transform + pos: -42.51349,-28.44041 + parent: 4812 +- proto: CorporateCircuitBoard + entities: + - uid: 12643 + components: + - type: Transform + pos: 9.464803,43.510174 + parent: 4812 +- proto: CrateArtifactContainer + entities: + - uid: 7366 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 4812 +- proto: CrateCoffin + entities: + - uid: 9993 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 4812 +- proto: CrateEmergencyInternals entities: - - uid: 1479 + - uid: 8580 components: - type: Transform - pos: -21.5,-9.5 + pos: -16.5,9.5 parent: 4812 - type: EntityStorage air: @@ -29131,60 +33939,24 @@ entities: - 0 - 0 - 0 -- proto: ClosetL3ScienceFilled +- proto: CrateEmptySpawner entities: - - uid: 6310 + - uid: 3448 components: - type: Transform - pos: 21.5,-26.5 + pos: 14.5,23.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11149 + - uid: 4606 components: - type: Transform - pos: 7.5,-43.5 + pos: 18.5,11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetL3SecurityFilled +- proto: CrateEngineeringAMEJar entities: - - uid: 8423 + - uid: 10776 components: - type: Transform - pos: -33.5,10.5 + pos: -38.5,-10.5 parent: 4812 - type: EntityStorage air: @@ -29204,12 +33976,12 @@ entities: - 0 - 0 - 0 -- proto: ClosetL3VirologyFilled +- proto: CrateEngineeringCableBulk entities: - - uid: 8869 + - uid: 4489 components: - type: Transform - pos: -34.5,-34.5 + pos: 19.5,2.5 parent: 4812 - type: EntityStorage air: @@ -29229,12 +34001,10 @@ entities: - 0 - 0 - 0 -- proto: ClosetLegalFilled - entities: - - uid: 8477 + - uid: 10705 components: - type: Transform - pos: -16.5,15.5 + pos: -29.5,-9.5 parent: 4812 - type: EntityStorage air: @@ -29254,12 +34024,10 @@ entities: - 0 - 0 - 0 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 9068 + - uid: 10723 components: - type: Transform - pos: -31.5,-35.5 + pos: -39.5,8.5 parent: 4812 - type: EntityStorage air: @@ -29279,10 +34047,12 @@ entities: - 0 - 0 - 0 - - uid: 10527 +- proto: CrateEngineeringCableHV + entities: + - uid: 10925 components: - type: Transform - pos: -41.5,-31.5 + pos: -50.5,-24.5 parent: 4812 - type: EntityStorage air: @@ -29302,19 +34072,24 @@ entities: - 0 - 0 - 0 - - uid: 10900 +- proto: CrateEngineeringSecure + entities: + - uid: 9425 components: + - type: MetaData + desc: 12 parts for the main body of an antimatter reactor, or for expanding an existing one. + name: packaged antimatter reactor crate - type: Transform - pos: -31.5,-12.5 + pos: -38.5,-11.5 parent: 4812 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14957 + temperature: 293.14673 moles: - - 1.6033952 - - 6.031821 + - 1.7243209 + - 6.4867315 - 0 - 0 - 0 @@ -29325,81 +34100,84 @@ entities: - 0 - 0 - 0 - - uid: 11309 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9442 + - 9441 + - 9440 + - 9439 + - 9437 + - 9436 + - 9435 + - 9434 + - 9432 + - 9431 + - 9430 + - 9429 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFilledSpawner + entities: + - uid: 3713 components: - type: Transform - pos: 26.5,-36.5 + pos: 14.5,27.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11882 + - uid: 3714 components: - type: Transform - pos: 9.5,12.5 + pos: 14.5,26.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetRadiationSuitFilled + - uid: 3715 + components: + - type: Transform + pos: 14.5,25.5 + parent: 4812 +- proto: CrateFreezer entities: - - uid: 6358 + - uid: 1728 components: - type: Transform - pos: 27.5,-22.5 + pos: 7.5,-7.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9686 + - uid: 4925 components: - type: Transform - pos: -40.5,-3.5 + pos: -19.5,-28.5 + parent: 4812 +- proto: CrateMedicalSurgery + entities: + - uid: 4926 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 4812 +- proto: CrateNPCHamlet + entities: + - uid: 12427 + components: + - type: Transform + pos: -1.5,34.5 + parent: 4812 +- proto: CrateSalvageEquipment + entities: + - uid: 13247 + components: + - type: Transform + pos: 28.5,14.5 + parent: 4812 +- proto: CrateScience + entities: + - uid: 12463 + components: + - type: Transform + pos: -35.5,25.5 parent: 4812 - type: EntityStorage air: @@ -29419,10 +34197,12 @@ entities: - 0 - 0 - 0 - - uid: 9687 +- proto: CrateScienceSecure + entities: + - uid: 6250 components: - type: Transform - pos: -40.5,-2.5 + pos: 12.5,-23.5 parent: 4812 - type: EntityStorage air: @@ -29442,10 +34222,10 @@ entities: - 0 - 0 - 0 - - uid: 11775 + - uid: 6251 components: - type: Transform - pos: -34.5,-14.5 + pos: 14.5,-23.5 parent: 4812 - type: EntityStorage air: @@ -29465,98 +34245,64 @@ entities: - 0 - 0 - 0 -- proto: ClosetSteelBase +- proto: CrateTrashCart entities: - - uid: 11811 + - uid: 6171 components: - type: Transform - pos: -15.5,0.5 + pos: 14.5,-15.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetWallAtmospherics + - uid: 6172 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 4812 + - uid: 6173 + components: + - type: Transform + pos: -29.413927,7.5544257 + parent: 4812 + - uid: 6174 + components: + - type: Transform + pos: 19.5,4.5 + parent: 4812 + - uid: 11472 + components: + - type: Transform + pos: 8.5,2.5 + parent: 4812 +- proto: CrateTrashCartJani entities: - - uid: 9099 + - uid: 6169 components: - type: Transform - pos: -55.5,5.5 + pos: -22.5,-3.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12381 -- proto: ClosetWallEmergencyFilledRandom +- proto: CrayonBox entities: - - uid: 12374 + - uid: 1718 components: - type: Transform - pos: 22.5,17.5 + pos: -10.378301,0.0073432922 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.3546504 - - 5.096066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12375 + - uid: 8405 components: - type: Transform - pos: 21.5,-1.5 + pos: -28.516111,30.589315 + parent: 4812 +- proto: Crematorium + entities: + - uid: 7228 + components: + - type: Transform + pos: -22.5,-32.5 parent: 4812 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14957 + temperature: 293.14954 moles: - 1.6033952 - 6.031821 @@ -29570,25207 +34316,25256 @@ entities: - 0 - 0 - 0 -- proto: ClosetWallFireFilledRandom +- proto: CrewMonitoringServer entities: - - uid: 11745 + - uid: 12115 components: - type: Transform - pos: 5.5,3.5 + pos: 12.5,-18.5 parent: 4812 - - uid: 12376 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 3469 components: - type: Transform - pos: 15.5,-1.5 + pos: 22.493902,3.436778 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetWallOrange +- proto: CrowbarRed entities: - - uid: 12377 + - uid: 4573 components: - type: Transform - pos: -25.5,21.5 + pos: 27.5,4.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12378 + - uid: 6350 components: - type: Transform - pos: -25.5,18.5 + pos: 5.526539,-28.44819 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12379 + - uid: 6480 components: - type: Transform - pos: -31.5,28.5 + pos: -2.4305947,-24.470394 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12380 + - uid: 8588 components: - type: Transform - pos: -27.5,28.5 + pos: -18.483784,12.505529 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingBackpackClown + - uid: 11330 + components: + - type: Transform + pos: 26.509838,-35.582523 + parent: 4812 +- proto: CryogenicSleepUnit entities: - - uid: 9198 + - uid: 10854 components: - type: Transform - pos: -10.304824,1.6229031 + pos: -20.5,5.5 parent: 4812 -- proto: ClothingBackpackDuffelSurgeryFilled +- proto: CryogenicSleepUnitSpawner entities: - - uid: 7428 + - uid: 10855 components: - type: Transform - pos: -22.535873,-28.341772 + pos: -20.5,4.5 parent: 4812 -- proto: ClothingBeltChampion +- proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 2715 + - uid: 3774 components: - type: Transform - pos: -5.571512,24.066704 + pos: -20.5,3.5 parent: 4812 -- proto: ClothingBeltMilitaryWebbing +- proto: CryoPod entities: - - uid: 9061 + - uid: 1937 components: - type: Transform - pos: -28.553808,-33.515636 + pos: -15.5,-25.5 parent: 4812 -- proto: ClothingBeltUtilityFilled + - uid: 7219 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 4812 +- proto: CryoxadoneBeakerSmall entities: - - uid: 3371 + - uid: 3269 components: - type: Transform - pos: 19.574245,21.55511 + pos: -14.53001,-25.469097 parent: 4812 - - uid: 10714 + - uid: 7151 components: - type: Transform - pos: -31.802395,-7.4187636 + pos: -14.264385,-25.312847 parent: 4812 - - uid: 12498 +- proto: CultAltarSpawner + entities: + - uid: 10980 + components: + - type: Transform + pos: -36.5,30.5 + parent: 4812 +- proto: CurtainsWhiteOpen + entities: + - uid: 12616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,27.5 + parent: 4812 +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 1723 + components: + - type: Transform + pos: -9.581426,-1.3989067 + parent: 4812 +- proto: DefaultStationBeaconAICore + entities: + - uid: 12477 components: - type: Transform - pos: 5.5994864,-28.47739 + pos: 10.5,53.5 parent: 4812 -- proto: ClothingEyesEyepatch +- proto: DefaultStationBeaconAISatellite entities: - - uid: 9657 + - uid: 12478 components: - type: Transform - pos: 25.533524,-9.424093 + pos: 6.5,46.5 parent: 4812 - - uid: 12144 +- proto: DefaultStationBeaconAME + entities: + - uid: 12503 components: - type: Transform - pos: -14.245123,35.0185 - parent: 473 -- proto: ClothingEyesGlasses + pos: -40.5,-14.5 + parent: 4812 +- proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 6205 + - uid: 12505 components: - type: Transform - pos: 3.4675388,-14.361706 + pos: 33.5,-25.5 parent: 4812 - - uid: 6337 +- proto: DefaultStationBeaconArmory + entities: + - uid: 9626 components: - type: Transform - pos: 25.449461,-19.268694 + pos: -34.5,20.5 parent: 4812 - - uid: 11851 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 10545 components: - type: Transform - pos: 10.561617,-44.322975 + pos: -11.5,-46.5 parent: 4812 - - uid: 12497 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 12336 components: - type: Transform - pos: 9.501655,-16.456053 + pos: 24.5,-29.5 parent: 4812 -- proto: ClothingEyesGlassesSunglasses +- proto: DefaultStationBeaconAtmospherics entities: - - uid: 1655 + - uid: 12335 components: - type: Transform - pos: 5.544427,8.548626 + pos: -31.5,2.5 parent: 4812 - - uid: 5383 + - uid: 13412 components: - type: Transform - pos: 19.570036,-18.407839 + pos: -40.5,4.5 parent: 4812 -- proto: ClothingEyesHudBeer +- proto: DefaultStationBeaconBar entities: - - uid: 10683 + - uid: 12514 components: - type: Transform - pos: -9.466419,-48.16831 + pos: 3.5,7.5 parent: 4812 -- proto: ClothingEyesHudDiagnostic +- proto: DefaultStationBeaconBotany entities: - - uid: 10769 + - uid: 12109 components: - type: Transform - pos: -43.49446,-7.521168 + pos: -13.5,-7.5 parent: 4812 -- proto: ClothingEyesHudMedical +- proto: DefaultStationBeaconBridge entities: - - uid: 7586 + - uid: 12071 components: - type: Transform - pos: -10.686977,-25.567636 + pos: -2.5,33.5 parent: 4812 - - uid: 7587 +- proto: DefaultStationBeaconBrig + entities: + - uid: 12073 components: - type: Transform - pos: -10.671352,-25.395761 + pos: -27.5,18.5 parent: 4812 -- proto: ClothingEyesHudSecurity +- proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 8443 + - uid: 12484 components: - type: Transform - pos: -36.423813,15.378265 + pos: -12.5,25.5 parent: 4812 -- proto: ClothingHandsGlovesColorGray +- proto: DefaultStationBeaconCargoBay entities: - - uid: 11853 + - uid: 12338 components: - type: Transform - pos: 12.884244,-36.874004 + pos: 18.5,25.5 parent: 4812 -- proto: ClothingHandsGlovesColorOrange +- proto: DefaultStationBeaconCargoReception entities: - - uid: 1495 + - uid: 12083 components: - type: Transform - pos: -23.466429,-7.3899465 + pos: 16.5,17.5 parent: 4812 -- proto: ClothingHandsGlovesColorYellow +- proto: DefaultStationBeaconCERoom entities: - - uid: 8601 + - uid: 9615 components: - type: Transform - pos: -18.453629,9.613115 + pos: -49.5,-8.5 parent: 4812 - - uid: 10706 +- proto: DefaultStationBeaconChapel + entities: + - uid: 12578 components: - type: Transform - pos: -32.450558,-7.5008273 + pos: -15.5,-34.5 parent: 4812 -- proto: ClothingHandsGlovesNitrile +- proto: DefaultStationBeaconChemistry entities: - - uid: 8419 + - uid: 12469 components: - type: Transform - pos: -19.480015,-25.463383 + pos: -10.5,-16.5 parent: 4812 - - uid: 9033 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 12106 components: - type: Transform - pos: -39.79441,-35.343323 + pos: -25.5,-26.5 parent: 4812 -- proto: ClothingHandsGlovesRobohands +- proto: DefaultStationBeaconCourtroom entities: - - uid: 6349 + - uid: 12111 components: - type: Transform - pos: 5.5434675,-25.370066 + pos: -18.5,16.5 parent: 4812 -- proto: ClothingHeadFishCap +- proto: DefaultStationBeaconCryonics entities: - - uid: 9567 + - uid: 9625 components: - type: Transform - pos: 13.508905,-4.30057 + pos: -15.5,-26.5 parent: 4812 -- proto: ClothingHeadHatAnimalHeadslime +- proto: DefaultStationBeaconCryosleep entities: - - uid: 9195 + - uid: 10856 components: - type: Transform - pos: -33.510674,-34.64361 + pos: -23.5,4.5 parent: 4812 - - uid: 11099 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 12110 components: - type: Transform - pos: 7.610162,-44.413692 + pos: 20.5,-15.5 parent: 4812 -- proto: ClothingHeadHatBeaverHat +- proto: DefaultStationBeaconDisposals entities: - - uid: 6385 + - uid: 12332 components: - type: Transform - pos: 13.532155,-11.236504 + pos: 9.5,-37.5 parent: 4812 -- proto: ClothingHeadHatBeretWarden +- proto: DefaultStationBeaconDorms entities: - - uid: 12145 + - uid: 12329 components: - type: Transform - pos: -35.744057,17.561283 + pos: -19.5,2.5 parent: 4812 -- proto: ClothingHeadHatCone +- proto: DefaultStationBeaconEngineering entities: - - uid: 11339 + - uid: 12581 components: - type: Transform - pos: 8.449844,17.514982 + pos: -31.5,-6.5 parent: 4812 -- proto: ClothingHeadHatFedoraBrown +- proto: DefaultStationBeaconEscapePod entities: - - uid: 10608 + - uid: 3980 components: - type: Transform - pos: -36.481308,-25.464363 + pos: -17.5,31.5 parent: 4812 - - uid: 11809 + - uid: 8475 components: - type: Transform - pos: -14.4824505,-0.22820306 + pos: -47.5,-25.5 parent: 4812 -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 1757 + - uid: 9633 components: - type: Transform - pos: -6.558632,8.592226 + pos: -12.5,-39.5 parent: 4812 -- proto: ClothingHeadHatFez +- proto: DefaultStationBeaconEvac entities: - - uid: 10914 - components: - - type: Transform - pos: -44.596,-23.407698 - parent: 4812 - - uid: 10915 + - uid: 12480 components: - type: Transform - pos: -44.4085,-23.673323 + pos: 28.5,-2.5 parent: 4812 -- proto: ClothingHeadHatFlowerWreath +- proto: DefaultStationBeaconEVAStorage entities: - - uid: 7254 + - uid: 12509 components: - type: Transform - pos: -24.594517,-34.532703 + pos: 7.5,15.5 parent: 4812 -- proto: ClothingHeadHatHardhatOrange +- proto: DefaultStationBeaconGravGen entities: - - uid: 12119 + - uid: 12101 components: - type: Transform - pos: -42.44835,-1.0036435 + pos: -53.5,-12.5 parent: 4812 -- proto: ClothingHeadHatHardhatYellow +- proto: DefaultStationBeaconHOPOffice entities: - - uid: 12120 + - uid: 12545 components: - type: Transform - pos: -41.401306,-7.235723 + pos: 7.5,25.5 parent: 4812 -- proto: ClothingHeadHatPaper +- proto: DefaultStationBeaconHOSRoom entities: - - uid: 11856 + - uid: 12337 components: - type: Transform - pos: -27.456482,29.23433 + pos: -21.5,25.5 parent: 4812 -- proto: ClothingHeadHatPirate +- proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 11933 + - uid: 10664 components: - type: Transform - pos: -21.445757,35.638134 + pos: -22.5,-8.5 parent: 4812 -- proto: ClothingHeadHatPumpkin +- proto: DefaultStationBeaconKitchen entities: - - uid: 11858 + - uid: 10548 components: - type: Transform - pos: -18.486109,-5.5083795 + pos: 4.5,-1.5 parent: 4812 -- proto: ClothingHeadHatTophat +- proto: DefaultStationBeaconLibrary entities: - - uid: 10924 + - uid: 12340 components: - type: Transform - parent: 10921 - - type: Physics - canCollide: False -- proto: ClothingHeadHatTrucker + pos: -27.5,-17.5 + parent: 4812 +- proto: DefaultStationBeaconMedbay entities: - - uid: 1460 + - uid: 12580 components: - type: Transform - pos: -18.506594,-5.4646573 + pos: -19.5,-21.5 parent: 4812 -- proto: ClothingHeadHatUshanka +- proto: DefaultStationBeaconMedical entities: - - uid: 11778 + - uid: 12577 components: - type: Transform - pos: 30.766603,-32.390636 + pos: -10.5,-22.5 parent: 4812 - - uid: 11779 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 12388 components: - type: Transform - pos: 30.360353,-32.65626 + pos: -19.5,-15.5 parent: 4812 -- proto: ClothingHeadHatWelding +- proto: DefaultStationBeaconPermaBrig entities: - - uid: 6238 + - uid: 12331 components: - type: Transform - pos: 15.515093,-23.391537 + pos: -28.5,28.5 parent: 4812 - - uid: 8600 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 9549 components: - type: Transform - pos: -20.141129,12.59749 + pos: -43.5,-3.5 parent: 4812 -- proto: ClothingHeadHatWeldingMaskFlame +- proto: DefaultStationBeaconQMRoom entities: - - uid: 10726 + - uid: 12504 components: - type: Transform - pos: -24.496122,-31.384293 + pos: 16.5,31.5 parent: 4812 - - uid: 11469 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 12415 components: - type: Transform - pos: 28.533575,-35.71058 + pos: 26.5,-19.5 parent: 4812 -- proto: ClothingHeadHatWeldingMaskFlameBlue +- proto: DefaultStationBeaconRND entities: - - uid: 10725 + - uid: 12507 components: - type: Transform - pos: -36.26352,8.306009 + pos: 4.5,-15.5 parent: 4812 -- proto: ClothingHeadHatWeldingMaskPainted +- proto: DefaultStationBeaconRobotics entities: - - uid: 10727 + - uid: 10546 components: - type: Transform - pos: 15.568787,-6.463143 + pos: 4.5,-25.5 parent: 4812 -- proto: ClothingHeadHatWitch1 - entities: - - uid: 1753 + - uid: 12508 components: - type: Transform - pos: -10.496132,3.670351 + pos: 14.5,-26.5 parent: 4812 -- proto: ClothingHeadHelmetSyndicate - entities: - - uid: 11672 + - uid: 12579 components: - type: Transform - pos: 28.730742,-41.454163 + pos: 4.5,-25.5 parent: 4812 -- proto: ClothingHeadHelmetTemplar +- proto: DefaultStationBeaconSalvage entities: - - uid: 11881 + - uid: 12979 components: - type: Transform - pos: -1.477562,-34.543083 + pos: 24.5,15.5 parent: 4812 -- proto: ClothingHeadsetEngineering +- proto: DefaultStationBeaconSecurity entities: - - uid: 10764 + - uid: 10547 components: - type: Transform - pos: -43.456604,-7.425037 + pos: -36.5,11.5 parent: 4812 -- proto: ClothingHeadsetMining - entities: - - uid: 8788 + - uid: 12517 components: - type: Transform - pos: -35.24849,-39.264732 + pos: -27.5,12.5 parent: 4812 -- proto: ClothingMaskBreath +- proto: DefaultStationBeaconSecurityCheckpoint entities: - - uid: 11789 + - uid: 12482 components: - type: Transform - pos: 22.374546,-32.47262 + pos: 31.5,2.5 parent: 4812 -- proto: ClothingMaskBreathMedical - entities: - - uid: 8863 + - uid: 12486 components: - type: Transform - pos: 14.451679,-40.556843 + pos: -2.5,-27.5 parent: 4812 -- proto: ClothingMaskGas +- proto: DefaultStationBeaconServerRoom entities: - - uid: 4496 + - uid: 12512 components: - type: Transform - pos: 19.554443,6.484804 + pos: 12.5,-18.5 parent: 4812 - - uid: 4542 +- proto: DefaultStationBeaconSolars + entities: + - uid: 12558 components: - type: Transform - pos: 21.65161,-6.5808167 + pos: -52.5,-24.5 parent: 4812 - - uid: 11790 + - uid: 12559 components: - type: Transform - pos: 22.624546,-32.62887 + pos: 32.5,-38.5 parent: 4812 -- proto: ClothingMaskGasCentcom +- proto: DefaultStationBeaconTechVault entities: - - uid: 11677 + - uid: 12483 components: - type: Transform - pos: 25.527617,-40.28087 + pos: 23.5,4.5 parent: 4812 -- proto: ClothingMaskGasExplorer +- proto: DefaultStationBeaconTEG entities: - - uid: 11015 + - uid: 13631 components: - type: Transform - pos: 35.488716,-30.534061 + pos: -54.5,3.5 parent: 4812 -- proto: ClothingNeckBling +- proto: DefaultStationBeaconTheater entities: - - uid: 2717 + - uid: 12481 components: - type: Transform - pos: -5.415262,24.019829 + pos: -8.5,6.5 parent: 4812 -- proto: ClothingNeckCloakTrans +- proto: DefaultStationBeaconToolRoom entities: - - uid: 4827 + - uid: 12334 components: - type: Transform - pos: 38.546867,-26.403046 + pos: -18.5,9.5 parent: 4812 -- proto: ClothingNeckHeadphones +- proto: DefaultStationBeaconVault entities: - - uid: 9196 + - uid: 12074 components: - type: Transform - pos: -22.35473,0.53885174 + pos: -2.5,24.5 parent: 4812 - - uid: 11854 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 12557 components: - type: Transform - pos: -0.5106895,-15.532991 + pos: -34.5,16.5 parent: 4812 -- proto: ClothingNeckIntersexPin +- proto: DefibrillatorCabinetFilled entities: - - uid: 12511 + - uid: 4815 components: - type: Transform - pos: 19.693497,8.613337 + pos: -5.5,12.5 parent: 4812 -- proto: ClothingNeckMantleHOS - entities: - - uid: 9197 + - uid: 4996 components: - type: Transform - pos: -21.425161,22.675072 + pos: -17.5,-19.5 parent: 4812 -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 12513 + - uid: 8376 components: - type: Transform - pos: 8.410957,-44.59256 + pos: -24.5,-21.5 parent: 4812 -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 8417 + - uid: 8378 components: - type: Transform - pos: -14.544858,-25.307133 + pos: -22.5,-24.5 parent: 4812 - - uid: 11338 + - uid: 8414 components: - type: Transform - pos: -33.593323,-36.57982 + rot: 1.5707963267948966 rad + pos: -18.5,-25.5 parent: 4812 -- proto: ClothingNeckScarfStripedGreen +- proto: DeskBell entities: - - uid: 7133 + - uid: 4800 components: - type: Transform - pos: -30.568611,-23.475061 + pos: 1.5,-2.5 parent: 4812 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 11335 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4801 components: - type: Transform - pos: -1.4543457,-27.446754 + pos: -6.5,-5.5 parent: 4812 - - uid: 12365 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4802 components: - type: Transform - pos: -68.52162,-28.692625 + pos: 2.5,-15.5 parent: 4812 -- proto: ClothingNeckStethoscope - entities: - - uid: 7580 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4803 components: - type: Transform - pos: -18.561977,-20.380136 + pos: 15.5,16.5 parent: 4812 -- proto: ClothingNeckTieRed - entities: - - uid: 10922 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4804 components: - type: Transform - parent: 10921 + pos: 10.5,22.5 + parent: 4812 - type: Physics canCollide: False - - uid: 11808 + bodyType: Static + - uid: 4805 components: - type: Transform - pos: -14.6855755,-0.43132806 + pos: -24.5,11.5 parent: 4812 -- proto: ClothingNeckTransPin + - type: Physics + canCollide: False + bodyType: Static +- proto: DiceBag entities: - - uid: 12515 + - uid: 7137 components: - type: Transform - pos: -14.357392,4.331708 + pos: -27.959236,-14.350061 parent: 4812 -- proto: ClothingOuterApron +- proto: DiseaseDiagnoser entities: - - uid: 10913 + - uid: 9018 components: - type: Transform - pos: -43.53869,-26.441507 + pos: -38.5,-35.5 parent: 4812 -- proto: ClothingOuterArmorBasic +- proto: DisposalBend entities: - - uid: 9636 + - uid: 1105 components: - type: Transform - pos: -33.593445,20.66048 + rot: 3.141592653589793 rad + pos: -9.5,-6.5 parent: 4812 - - uid: 9658 + - uid: 1119 components: - type: Transform - pos: -33.593445,20.66048 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 parent: 4812 - - uid: 9971 + - uid: 1120 components: - type: Transform - pos: -33.593445,20.66048 + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 parent: 4812 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 9972 + - uid: 1575 components: - type: Transform - pos: -35.562195,19.41048 + rot: -1.5707963267948966 rad + pos: 3.5,0.5 parent: 4812 - - uid: 9990 + - uid: 1576 components: - type: Transform - pos: -35.562195,19.41048 + pos: 3.5,2.5 parent: 4812 - - uid: 9992 + - uid: 1602 components: - type: Transform - pos: -35.562195,19.41048 + pos: -2.5,11.5 parent: 4812 -- proto: ClothingOuterArmorReflective - entities: - - uid: 10685 + - uid: 1607 components: - type: Transform - pos: -33.364815,20.521324 + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 parent: 4812 -- proto: ClothingOuterArmorRiot - entities: - - uid: 10958 + - uid: 1636 components: - type: Transform - pos: -33.39286,20.650888 + rot: 1.5707963267948966 rad + pos: -22.5,-6.5 parent: 4812 - - uid: 10976 + - uid: 1705 components: - type: Transform - pos: -33.627235,20.729013 - parent: 4812 -- proto: ClothingOuterCoatBomber - entities: - - uid: 10905 + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 4812 + - uid: 3292 components: - type: Transform - pos: -30.486824,-12.450464 + rot: -1.5707963267948966 rad + pos: 17.5,19.5 parent: 4812 -- proto: ClothingOuterCoatDetectiveLoadout - entities: - - uid: 11805 + - uid: 3343 components: - type: Transform - pos: -14.486766,-0.42116833 + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 parent: 4812 -- proto: ClothingOuterCoatGentle - entities: - - uid: 6193 + - uid: 3387 components: - type: Transform - pos: 13.531586,-11.381834 + rot: 3.141592653589793 rad + pos: -38.5,-8.5 parent: 4812 -- proto: ClothingOuterCoatJensen - entities: - - uid: 9193 + - uid: 3409 components: - type: Transform - pos: -13.455734,5.5269423 + rot: -1.5707963267948966 rad + pos: -33.5,-8.5 parent: 4812 -- proto: ClothingOuterCoatPirate - entities: - - uid: 11934 + - uid: 4180 components: - type: Transform - pos: -23.764275,32.548626 + rot: 3.141592653589793 rad + pos: 12.5,-2.5 parent: 4812 -- proto: ClothingOuterGhostSheet - entities: - - uid: 11262 + - uid: 4505 components: - type: Transform - pos: 37.373894,-34.471485 + rot: 1.5707963267948966 rad + pos: -5.5,19.5 parent: 4812 -- proto: ClothingOuterHardsuitSalvage - entities: - - uid: 6765 + - uid: 5862 components: - type: Transform - parent: 3441 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 10602 + rot: -1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 4812 + - uid: 5883 components: - type: Transform - pos: -36.600456,17.618195 + rot: 3.141592653589793 rad + pos: 8.5,-24.5 parent: 4812 - - uid: 12429 + - uid: 5887 components: - type: Transform - pos: -36.45983,17.524445 + pos: 8.5,-20.5 parent: 4812 -- proto: ClothingOuterHardsuitSpatio - entities: - - uid: 12424 + - uid: 5896 components: - type: Transform - pos: -52.87503,-18.445377 + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 parent: 4812 -- proto: ClothingOuterHoodieBlack - entities: - - uid: 11468 + - uid: 6432 components: - type: Transform - pos: 37.580452,-32.58558 + rot: 3.141592653589793 rad + pos: 0.5,-35.5 parent: 4812 -- proto: ClothingOuterSuitEmergency - entities: - - uid: 11671 + - uid: 7416 components: - type: Transform - pos: 28.696922,-41.322342 + rot: 3.141592653589793 rad + pos: -12.5,-21.5 parent: 4812 -- proto: ClothingOuterVestHazard - entities: - - uid: 12117 + - uid: 7590 components: - type: Transform - pos: -42.4796,-1.4880185 + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 parent: 4812 - - uid: 12118 + - uid: 9012 components: - type: Transform - pos: -42.370224,-1.6130185 + rot: -1.5707963267948966 rad + pos: -37.5,-37.5 parent: 4812 -- proto: ClothingShoesBootsJack - entities: - - uid: 9194 + - uid: 10781 components: - type: Transform - pos: 15.452381,-15.575151 + pos: -33.5,1.5 parent: 4812 - - uid: 12364 + - uid: 10804 components: - type: Transform - pos: 2.5661945,-37.272846 + rot: 3.141592653589793 rad + pos: -25.5,-11.5 parent: 4812 -- proto: ClothingShoesBootsMag - entities: - - uid: 1688 + - uid: 10811 components: - type: Transform - pos: 5.3844786,14.708496 + rot: 3.141592653589793 rad + pos: -28.5,14.5 parent: 4812 - - uid: 1689 + - uid: 10816 components: - type: Transform - pos: 5.5251036,14.520996 + pos: -23.5,14.5 parent: 4812 - - uid: 10772 + - uid: 10817 components: - type: Transform - pos: -30.706427,-9.213518 + rot: -1.5707963267948966 rad + pos: -23.5,7.5 parent: 4812 - - uid: 10773 + - uid: 10818 components: - type: Transform - pos: -30.264002,-9.749746 + rot: 1.5707963267948966 rad + pos: -25.5,7.5 parent: 4812 -- proto: ClothingShoesBootsWork - entities: - - uid: 8784 + - uid: 10843 components: - - type: MetaData - desc: These look like workboots but... they feel expensive. - name: Nimbs - type: Transform - pos: -34.496048,-16.64644 + pos: -20.5,1.5 parent: 4812 -- proto: ClothingShoesFlippers - entities: - - uid: 11850 + - uid: 11224 components: - type: Transform - pos: 4.561617,-41.479225 + pos: 9.5,-30.5 parent: 4812 -- proto: ClothingShoesLeather +- proto: DisposalJunction entities: - - uid: 8864 + - uid: 1700 components: - type: Transform - pos: 35.476944,-33.759735 + pos: -2.5,-0.5 parent: 4812 - - uid: 12465 + - uid: 3211 components: - type: Transform - pos: -36.627586,29.207901 + rot: -1.5707963267948966 rad + pos: 15.5,19.5 parent: 4812 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 11810 + - uid: 3299 components: - type: Transform - pos: -14.4668255,-1.6813283 + rot: 1.5707963267948966 rad + pos: -14.5,-11.5 parent: 4812 -- proto: ClothingShoesTourist - entities: - - uid: 1555 + - uid: 5849 components: - type: Transform - pos: -9.419544,-48.840183 + pos: 0.5,-21.5 parent: 4812 -- proto: ClothingUnderSocksBee - entities: - - uid: 11333 + - uid: 5891 components: - type: Transform - pos: 22.487274,-37.39112 + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 parent: 4812 -- proto: ClothingUnderSocksCoder - entities: - - uid: 11332 + - uid: 10795 components: - type: Transform - pos: 14.5012665,-31.61288 + pos: -25.5,-2.5 parent: 4812 -- proto: ClothingUniformColorRainbow - entities: - - uid: 1570 + - uid: 12818 components: - type: Transform - pos: 14.528925,6.523329 + rot: -1.5707963267948966 rad + pos: 31.5,-2.5 parent: 4812 -- proto: ClothingUniformJumpskirtDetective +- proto: DisposalJunctionFlipped entities: - - uid: 10607 + - uid: 1585 components: - type: Transform - pos: -36.403183,-24.261238 + pos: -2.5,-5.5 parent: 4812 -- proto: ClothingUniformJumpskirtOperative - entities: - - uid: 9053 + - uid: 1586 components: - type: Transform - pos: -28.506933,-33.546886 + pos: -2.5,2.5 parent: 4812 -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 8379 + - uid: 1614 components: - type: Transform - pos: 12.547598,-44.418983 + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 parent: 4812 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 10606 + - uid: 1615 components: - type: Transform - pos: -36.543808,-24.229988 + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 parent: 4812 -- proto: ClothingUniformJumpsuitHawaiBlack - entities: - - uid: 1564 + - uid: 1634 components: - type: Transform - pos: -9.44705,-48.485367 + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 parent: 4812 -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 9060 + - uid: 3982 components: - type: Transform - pos: -28.538183,-33.56251 + pos: 11.5,-1.5 parent: 4812 -- proto: ClothingUniformJumpsuitPsychologist - entities: - - uid: 10968 + - uid: 4179 components: - type: Transform - pos: -36.533836,29.489151 + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 parent: 4812 -- proto: ClothingUniformJumpsuitSecBlue - entities: - - uid: 10923 - components: - - type: Transform - parent: 10921 - - type: Physics - canCollide: False -- proto: ClothingUniformOveralls - entities: - - uid: 11855 + - uid: 5848 components: - type: Transform - pos: 17.403048,-37.515766 + pos: 0.5,-20.5 parent: 4812 -- proto: ComfyChair - entities: - - uid: 940 + - uid: 8349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 parent: 4812 - - uid: 941 + - uid: 10831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,6.5 + pos: -25.5,1.5 parent: 4812 - - uid: 942 +- proto: DisposalPipe + entities: + - uid: 1106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,7.5 + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 parent: 4812 - - uid: 1533 + - uid: 1107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-1.5 + pos: -7.5,-6.5 parent: 4812 - - uid: 1750 + - uid: 1108 components: - type: Transform - pos: -8.5,7.5 + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 parent: 4812 - - uid: 1751 + - uid: 1109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,5.5 + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 parent: 4812 - - uid: 2507 + - uid: 1110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,24.5 + pos: -4.5,-6.5 parent: 4812 - - uid: 2587 + - uid: 1111 components: - type: Transform - pos: -12.5,28.5 + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 parent: 4812 - - uid: 2603 + - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,23.5 + pos: -2.5,-6.5 parent: 4812 - - uid: 2604 + - uid: 1113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 parent: 4812 - - uid: 2605 + - uid: 1114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,23.5 + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 parent: 4812 - - uid: 2641 + - uid: 1115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,28.5 + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 parent: 4812 - - uid: 2642 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,28.5 + pos: 1.5,-6.5 parent: 4812 - - uid: 2646 + - uid: 1117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,29.5 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 parent: 4812 - - uid: 2647 + - uid: 1118 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,29.5 + pos: 3.5,-6.5 parent: 4812 - - uid: 2648 + - uid: 1122 components: - type: Transform - pos: -2.5,30.5 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 parent: 4812 - - uid: 2664 + - uid: 1123 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,34.5 + pos: 4.5,-4.5 parent: 4812 - - uid: 5366 + - uid: 1577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 + pos: 3.5,1.5 parent: 4812 - - uid: 6289 + - uid: 1578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 + rot: -1.5707963267948966 rad + pos: 2.5,2.5 parent: 4812 - - uid: 6351 + - uid: 1579 components: - type: Transform - pos: 9.5,-15.5 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 parent: 4812 - - uid: 6352 + - uid: 1580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-17.5 + rot: -1.5707963267948966 rad + pos: 0.5,2.5 parent: 4812 - - uid: 6392 + - uid: 1581 components: - type: Transform - pos: -3.5,-15.5 + rot: -1.5707963267948966 rad + pos: -0.5,2.5 parent: 4812 - - uid: 6393 + - uid: 1582 components: - type: Transform - pos: -1.5,-15.5 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 parent: 4812 - - uid: 6394 + - uid: 1583 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-16.5 + pos: -0.5,-5.5 parent: 4812 - - uid: 6395 + - uid: 1584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 4812 - - uid: 6396 + - uid: 1587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 + pos: -2.5,-4.5 parent: 4812 - - uid: 6397 + - uid: 1588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 + pos: -2.5,-3.5 parent: 4812 - - uid: 6398 + - uid: 1589 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-19.5 + pos: -2.5,-2.5 parent: 4812 - - uid: 6399 + - uid: 1590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-19.5 + pos: -2.5,-1.5 parent: 4812 - - uid: 7044 + - uid: 1592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 + pos: -2.5,0.5 parent: 4812 - - uid: 7089 + - uid: 1593 components: - type: Transform - pos: -31.5,-22.5 + pos: -2.5,1.5 parent: 4812 - - uid: 8254 + - uid: 1594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,27.5 + pos: -2.5,3.5 parent: 4812 - - uid: 8260 + - uid: 1595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,23.5 + pos: -2.5,4.5 parent: 4812 - - uid: 8261 + - uid: 1596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,23.5 + pos: -2.5,5.5 parent: 4812 - - uid: 8262 + - uid: 1597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,24.5 + pos: -2.5,6.5 parent: 4812 - - uid: 8393 + - uid: 1598 components: - type: Transform - pos: -25.5,31.5 + pos: -2.5,7.5 parent: 4812 - - uid: 9047 + - uid: 1599 components: - type: Transform - pos: -27.5,-40.5 + pos: -2.5,8.5 parent: 4812 - - uid: 9057 + - uid: 1600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-39.5 + pos: -2.5,9.5 parent: 4812 - - uid: 9058 + - uid: 1601 components: - type: Transform - pos: -31.5,-37.5 + pos: -2.5,10.5 parent: 4812 - - uid: 9059 + - uid: 1603 components: - type: Transform - pos: -30.5,-37.5 + rot: -1.5707963267948966 rad + pos: -3.5,11.5 parent: 4812 - - uid: 11353 + - uid: 1604 components: - type: Transform - pos: 37.5,-32.5 + rot: -1.5707963267948966 rad + pos: -4.5,11.5 parent: 4812 - - uid: 11464 + - uid: 1608 components: - type: Transform - pos: 32.5,-30.5 + pos: -10.5,-10.5 parent: 4812 - - uid: 11465 + - uid: 1609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-31.5 + pos: -2.5,-6.5 parent: 4812 - - uid: 11784 + - uid: 1610 components: - type: Transform - pos: 26.5,-32.5 + pos: -2.5,-7.5 parent: 4812 - - uid: 11804 + - uid: 1611 components: - type: Transform - pos: -14.5,0.5 + pos: -2.5,-8.5 parent: 4812 -- proto: CommandmentCircuitBoard - entities: - - uid: 12653 + - uid: 1612 components: - type: Transform - pos: 11.589803,43.5258 + pos: -2.5,-9.5 parent: 4812 -- proto: CommsComputerCircuitboard - entities: - - uid: 2730 + - uid: 1613 components: - type: Transform - pos: 22.5,8.5 + pos: -2.5,-10.5 parent: 4812 -- proto: ComputerAlert - entities: - - uid: 2708 + - uid: 1616 components: - type: Transform - pos: -2.5,24.5 + rot: 1.5707963267948966 rad + pos: -9.5,-11.5 parent: 4812 -- proto: ComputerAnalysisConsole - entities: - - uid: 6313 + - uid: 1617 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-26.5 + pos: -8.5,-11.5 parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 6319: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: computerBodyScanner - entities: - - uid: 4921 + - uid: 1618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-28.5 + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 parent: 4812 - - uid: 6166 + - uid: 1619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-28.5 + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 parent: 4812 - - uid: 6682 + - uid: 1620 components: - type: Transform - pos: -21.5,-25.5 + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 parent: 4812 - - uid: 7445 + - uid: 1621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 parent: 4812 -- proto: ComputerCargoBounty - entities: - - uid: 9587 + - uid: 1622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 parent: 4812 -- proto: ComputerCargoOrders - entities: - - uid: 2752 + - uid: 1623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,17.5 + pos: -11.5,-11.5 parent: 4812 - - uid: 3757 + - uid: 1624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,29.5 + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 parent: 4812 -- proto: ComputerCargoShuttle - entities: - - uid: 2760 + - uid: 1625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 + rot: 1.5707963267948966 rad + pos: -13.5,-11.5 parent: 4812 -- proto: ComputerComms - entities: - - uid: 2601 + - uid: 1627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,22.5 + rot: 1.5707963267948966 rad + pos: -15.5,-11.5 parent: 4812 - - uid: 2649 + - uid: 1628 components: - type: Transform - pos: -2.5,35.5 + rot: 1.5707963267948966 rad + pos: -16.5,-11.5 parent: 4812 -- proto: ComputerCrewMonitoring - entities: - - uid: 2505 + - uid: 1629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + rot: 1.5707963267948966 rad + pos: -17.5,-11.5 parent: 4812 - - uid: 2656 + - uid: 1630 components: - type: Transform - pos: -4.5,35.5 + rot: 1.5707963267948966 rad + pos: -18.5,-11.5 parent: 4812 - - uid: 4571 + - uid: 1631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,2.5 + rot: 1.5707963267948966 rad + pos: -19.5,-11.5 parent: 4812 - - uid: 6474 + - uid: 1632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-28.5 + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 parent: 4812 - - uid: 7447 + - uid: 1633 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-26.5 + pos: -21.5,-11.5 parent: 4812 - - uid: 7571 + - uid: 1637 components: - type: Transform - pos: -14.5,-20.5 + pos: -22.5,-10.5 parent: 4812 - - uid: 8264 + - uid: 1638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,24.5 + pos: -22.5,-9.5 parent: 4812 -- proto: ComputerCriminalRecords - entities: - - uid: 2659 + - uid: 1639 components: - type: Transform - pos: 0.5,35.5 + pos: -22.5,-8.5 parent: 4812 - - uid: 4570 + - uid: 1640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 + pos: -22.5,-7.5 parent: 4812 - - uid: 6473 + - uid: 1641 components: - type: Transform - pos: -3.5,-26.5 + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 parent: 4812 - - uid: 8263 + - uid: 1701 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,23.5 + pos: -3.5,-0.5 parent: 4812 - - uid: 8331 + - uid: 1702 components: - type: Transform - pos: -33.5,16.5 + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 parent: 4812 - - uid: 8365 + - uid: 1703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,10.5 + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 parent: 4812 -- proto: ComputerFrame - entities: - - uid: 6653 + - uid: 1704 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + pos: -6.5,-0.5 parent: 4812 - - uid: 11147 + - uid: 2941 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-44.5 + pos: 15.5,27.5 parent: 4812 -- proto: ComputerId - entities: - - uid: 2504 + - uid: 3007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 + rot: 3.141592653589793 rad + pos: 15.5,28.5 parent: 4812 - - uid: 2602 + - uid: 3030 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,22.5 + pos: 15.5,24.5 parent: 4812 - - uid: 2658 + - uid: 3145 components: - type: Transform - pos: -0.5,35.5 + rot: 3.141592653589793 rad + pos: 15.5,26.5 parent: 4812 -- proto: ComputerMedicalRecords - entities: - - uid: 2657 + - uid: 3194 components: - type: Transform - pos: -5.5,35.5 + rot: 3.141592653589793 rad + pos: 15.5,25.5 parent: 4812 - - uid: 7454 + - uid: 3207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-27.5 + rot: 3.141592653589793 rad + pos: 15.5,23.5 parent: 4812 -- proto: ComputerPowerMonitoring - entities: - - uid: 2654 + - uid: 3208 components: - type: Transform - pos: 3.5,34.5 + rot: 3.141592653589793 rad + pos: 15.5,20.5 parent: 4812 - - uid: 6021 + - uid: 3209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 + rot: 3.141592653589793 rad + pos: 15.5,21.5 parent: 4812 - - uid: 8756 + - uid: 3210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 + rot: 3.141592653589793 rad + pos: 15.5,22.5 parent: 4812 - - uid: 10697 + - uid: 3223 components: - type: Transform - pos: -29.5,-5.5 + pos: -33.5,-6.5 parent: 4812 -- proto: ComputerRadar - entities: - - uid: 3225 + - uid: 3227 components: - type: Transform - pos: 27.5,15.5 + pos: -33.5,-4.5 parent: 4812 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 6185 + - uid: 3293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 + rot: 3.141592653589793 rad + pos: 17.5,20.5 parent: 4812 - - uid: 6215 + - uid: 3294 components: - type: Transform - pos: 4.5,-25.5 + rot: 1.5707963267948966 rad + pos: 16.5,19.5 parent: 4812 - - uid: 6232 + - uid: 3296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 + rot: 1.5707963267948966 rad + pos: 14.5,19.5 parent: 4812 - - uid: 6287 + - uid: 3297 components: - type: Transform - pos: 26.5,-17.5 + rot: 1.5707963267948966 rad + pos: 13.5,19.5 parent: 4812 -- proto: ComputerRoboticsControl - entities: - - uid: 1482 + - uid: 3298 components: - type: Transform - pos: 25.5,-17.5 + rot: 1.5707963267948966 rad + pos: 12.5,19.5 parent: 4812 -- proto: ComputerSalvageExpedition - entities: - - uid: 7830 + - uid: 3300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,12.5 + pos: 11.5,18.5 parent: 4812 -- proto: ComputerShuttleCargo - entities: - - uid: 2754 + - uid: 3301 components: - type: Transform - pos: 17.5,27.5 + pos: 11.5,17.5 parent: 4812 - - uid: 3758 + - uid: 3302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,29.5 + pos: 11.5,16.5 parent: 4812 -- proto: ComputerSolarControl - entities: - - uid: 2655 + - uid: 3303 components: - type: Transform - pos: 2.5,34.5 + pos: 11.5,15.5 parent: 4812 - - uid: 10322 + - uid: 3304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-25.5 + pos: 11.5,14.5 parent: 4812 -- proto: ComputerStationRecords - entities: - - uid: 1077 + - uid: 3305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,10.5 + pos: 11.5,13.5 parent: 4812 - - uid: 4799 + - uid: 3306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 + pos: 11.5,12.5 parent: 4812 - - uid: 7199 + - uid: 3307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-28.5 + pos: 11.5,11.5 parent: 4812 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 2662 + - uid: 3308 components: - type: Transform - pos: -7.5,34.5 + pos: 11.5,10.5 parent: 4812 - - uid: 4955 + - uid: 3309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 + pos: 11.5,9.5 parent: 4812 - - uid: 8332 + - uid: 3310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,14.5 + pos: 11.5,8.5 parent: 4812 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 12323 + - uid: 3311 components: - type: Transform - pos: 5.5,-14.5 + pos: 11.5,7.5 parent: 4812 -- proto: ComputerTelevision - entities: - - uid: 5370 + - uid: 3312 components: - type: Transform - pos: 18.5,-14.5 + pos: 11.5,6.5 parent: 4812 -- proto: ConveyorBelt - entities: - - uid: 2765 + - uid: 3313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,28.5 + pos: 11.5,5.5 parent: 4812 - - uid: 2771 + - uid: 3314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,28.5 + pos: 11.5,4.5 parent: 4812 - - uid: 2863 + - uid: 3315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,28.5 + pos: 11.5,3.5 parent: 4812 - - uid: 3013 + - uid: 3316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,24.5 + pos: 11.5,2.5 parent: 4812 - - uid: 3014 + - uid: 3317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,24.5 + pos: 11.5,1.5 parent: 4812 - - uid: 3028 + - uid: 3318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,24.5 + pos: 11.5,0.5 parent: 4812 - - uid: 3029 + - uid: 3319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,24.5 + pos: 11.5,-0.5 parent: 4812 - - uid: 3033 + - uid: 3322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,24.5 + pos: 11.5,-3.5 parent: 4812 - - uid: 3043 + - uid: 3323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,28.5 + pos: 11.5,-4.5 parent: 4812 - - uid: 3046 + - uid: 3324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,28.5 + pos: 11.5,-5.5 parent: 4812 - - uid: 11235 + - uid: 3325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-38.5 + pos: 11.5,-6.5 parent: 4812 -- proto: CornSeeds - entities: - - uid: 9618 + - uid: 3326 components: - type: Transform - pos: -42.51349,-28.44041 + pos: 11.5,-7.5 parent: 4812 -- proto: CorporateCircuitBoard - entities: - - uid: 12643 + - uid: 3327 components: - type: Transform - pos: 9.464803,43.510174 + pos: 11.5,-8.5 parent: 4812 -- proto: CrateArtifactContainer - entities: - - uid: 7366 + - uid: 3328 components: - type: Transform - pos: 19.5,-26.5 + pos: 11.5,-9.5 parent: 4812 -- proto: CrateCoffin - entities: - - uid: 9993 + - uid: 3329 components: - type: Transform - pos: -23.5,-35.5 + pos: 11.5,-10.5 parent: 4812 -- proto: CrateEmergencyInternals - entities: - - uid: 8580 + - uid: 3330 components: - type: Transform - pos: -16.5,9.5 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEmptySpawner - entities: - - uid: 3448 + - uid: 3331 components: - type: Transform - pos: 14.5,23.5 + rot: -1.5707963267948966 rad + pos: -0.5,-11.5 parent: 4812 - - uid: 4606 + - uid: 3332 components: - type: Transform - pos: 18.5,11.5 + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 parent: 4812 -- proto: CrateEngineeringAMEJar - entities: - - uid: 10776 + - uid: 3333 components: - type: Transform - pos: -38.5,-10.5 + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 10777 + - uid: 3334 components: - type: Transform - pos: -38.5,-11.5 + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10779 + - uid: 3335 components: - type: Transform - pos: -38.5,-12.5 + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringCableBulk - entities: - - uid: 4489 + - uid: 3336 components: - type: Transform - pos: 19.5,2.5 + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10705 + - uid: 3337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 4812 + - uid: 3338 components: - type: Transform - pos: -29.5,-9.5 + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10723 + - uid: 3339 components: - type: Transform - pos: -39.5,8.5 + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringCableHV - entities: - - uid: 10925 + - uid: 3340 components: - type: Transform - pos: -50.5,-24.5 + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFilledSpawner - entities: - - uid: 3713 + - uid: 3341 components: - type: Transform - pos: 14.5,27.5 + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 parent: 4812 - - uid: 3714 + - uid: 3386 components: - type: Transform - pos: 14.5,26.5 + pos: -38.5,-7.5 parent: 4812 - - uid: 3715 + - uid: 3388 components: - type: Transform - pos: 14.5,25.5 + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 parent: 4812 -- proto: CrateFreezer - entities: - - uid: 1728 + - uid: 3389 components: - type: Transform - pos: 7.5,-7.5 + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 parent: 4812 - - uid: 4925 + - uid: 3410 components: - type: Transform - pos: -19.5,-28.5 + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 parent: 4812 -- proto: CrateMedicalSurgery - entities: - - uid: 4926 + - uid: 3411 components: - type: Transform - pos: -17.5,-28.5 + rot: -1.5707963267948966 rad + pos: -34.5,-8.5 parent: 4812 -- proto: CrateNPCHamlet - entities: - - uid: 12427 + - uid: 3419 components: - type: Transform - pos: -1.5,34.5 + pos: -33.5,-5.5 parent: 4812 -- proto: CrateSalvageEquipment - entities: - - uid: 3262 + - uid: 3420 components: - type: Transform - pos: 27.5,13.5 + pos: -33.5,-3.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateScience - entities: - - uid: 12463 + - uid: 3457 components: - type: Transform - pos: -35.5,25.5 + rot: 3.141592653589793 rad + pos: 15.5,30.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateScienceSecure - entities: - - uid: 6250 + - uid: 3458 components: - type: Transform - pos: 12.5,-23.5 + rot: 3.141592653589793 rad + pos: 15.5,29.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6251 + - uid: 3466 components: - type: Transform - pos: 14.5,-23.5 + pos: -33.5,-7.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateTrashCart - entities: - - uid: 6171 + - uid: 4211 components: - type: Transform - pos: 14.5,-15.5 + rot: -1.5707963267948966 rad + pos: 61.5,-2.5 parent: 4812 - - uid: 6172 + - uid: 4504 components: - type: Transform - pos: -34.5,-12.5 + rot: 3.141592653589793 rad + pos: -5.5,18.5 parent: 4812 - - uid: 6173 + - uid: 4506 components: - type: Transform - pos: -29.413927,7.5544257 + rot: 1.5707963267948966 rad + pos: -4.5,19.5 parent: 4812 - - uid: 6174 + - uid: 4507 components: - type: Transform - pos: 19.5,4.5 + rot: 1.5707963267948966 rad + pos: -3.5,19.5 parent: 4812 - - uid: 11472 + - uid: 4508 components: - type: Transform - pos: 8.5,2.5 + rot: 1.5707963267948966 rad + pos: -2.5,19.5 parent: 4812 -- proto: CrateTrashCartJani - entities: - - uid: 6169 + - uid: 4509 components: - type: Transform - pos: -22.5,-3.5 + rot: 1.5707963267948966 rad + pos: -1.5,19.5 parent: 4812 -- proto: CrayonBox - entities: - - uid: 1718 + - uid: 4510 components: - type: Transform - pos: -10.378301,0.0073432922 + rot: 1.5707963267948966 rad + pos: -0.5,19.5 parent: 4812 - - uid: 8405 + - uid: 4511 components: - type: Transform - pos: -28.516111,30.589315 + rot: 1.5707963267948966 rad + pos: 0.5,19.5 parent: 4812 -- proto: Crematorium - entities: - - uid: 7228 + - uid: 4512 components: - type: Transform - pos: -22.5,-32.5 + rot: 1.5707963267948966 rad + pos: 1.5,19.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer - entities: - - uid: 6290 + - uid: 4513 components: - type: Transform - pos: 12.5,-18.5 + rot: 1.5707963267948966 rad + pos: 2.5,19.5 parent: 4812 -- proto: Crowbar - entities: - - uid: 3469 + - uid: 4514 components: - type: Transform - pos: 22.493902,3.436778 + rot: 1.5707963267948966 rad + pos: 3.5,19.5 parent: 4812 -- proto: CrowbarRed - entities: - - uid: 4573 + - uid: 4515 components: - type: Transform - pos: 27.5,4.5 + rot: 1.5707963267948966 rad + pos: 4.5,19.5 parent: 4812 - - uid: 6350 + - uid: 4516 components: - type: Transform - pos: 5.526539,-28.44819 + rot: 1.5707963267948966 rad + pos: 5.5,19.5 parent: 4812 - - uid: 6480 + - uid: 4517 components: - type: Transform - pos: -2.4305947,-24.470394 + rot: 1.5707963267948966 rad + pos: 6.5,19.5 parent: 4812 - - uid: 8588 + - uid: 4518 components: - type: Transform - pos: -18.483784,12.505529 + rot: 1.5707963267948966 rad + pos: 7.5,19.5 parent: 4812 - - uid: 11330 + - uid: 4519 components: - type: Transform - pos: 26.509838,-35.582523 + rot: 1.5707963267948966 rad + pos: 8.5,19.5 parent: 4812 -- proto: CryogenicSleepUnit - entities: - - uid: 10854 + - uid: 4520 components: - type: Transform - pos: -20.5,5.5 + rot: 1.5707963267948966 rad + pos: 9.5,19.5 parent: 4812 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 10855 + - uid: 4521 components: - type: Transform - pos: -20.5,4.5 + rot: 1.5707963267948966 rad + pos: 10.5,19.5 parent: 4812 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 3774 + - uid: 5840 components: - type: Transform - pos: -20.5,3.5 + pos: 0.5,-12.5 parent: 4812 -- proto: CryoPod - entities: - - uid: 1937 + - uid: 5841 components: - type: Transform - pos: -15.5,-25.5 + pos: 0.5,-13.5 parent: 4812 - - uid: 7219 + - uid: 5842 components: - type: Transform - pos: -13.5,-25.5 + pos: 0.5,-14.5 parent: 4812 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 3269 + - uid: 5843 components: - type: Transform - pos: -14.53001,-25.469097 + pos: 0.5,-15.5 parent: 4812 - - uid: 7151 + - uid: 5844 components: - type: Transform - pos: -14.264385,-25.312847 + pos: 0.5,-16.5 parent: 4812 -- proto: CultAltarSpawner - entities: - - uid: 10980 + - uid: 5845 components: - type: Transform - pos: -36.5,30.5 + pos: 0.5,-17.5 parent: 4812 -- proto: CurtainsWhiteOpen - entities: - - uid: 12616 + - uid: 5846 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,27.5 + pos: 0.5,-18.5 parent: 4812 -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 1723 + - uid: 5847 components: - type: Transform - pos: -9.581426,-1.3989067 + pos: 0.5,-19.5 parent: 4812 -- proto: DefaultStationBeaconAICore - entities: - - uid: 12477 + - uid: 5850 components: - type: Transform - pos: 10.5,53.5 + pos: 0.5,-22.5 parent: 4812 -- proto: DefaultStationBeaconAISatellite - entities: - - uid: 12478 + - uid: 5851 components: - type: Transform - pos: 6.5,46.5 + pos: 0.5,-23.5 parent: 4812 -- proto: DefaultStationBeaconAME - entities: - - uid: 12503 + - uid: 5852 components: - type: Transform - pos: -40.5,-14.5 + pos: 0.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 12505 + - uid: 5853 components: - type: Transform - pos: 33.5,-25.5 + pos: 0.5,-25.5 parent: 4812 -- proto: DefaultStationBeaconArmory - entities: - - uid: 9626 + - uid: 5854 components: - type: Transform - pos: -34.5,20.5 + pos: 0.5,-26.5 parent: 4812 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 10545 + - uid: 5855 components: - type: Transform - pos: -11.5,-46.5 + pos: 0.5,-27.5 parent: 4812 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 12336 + - uid: 5856 components: - type: Transform - pos: 24.5,-29.5 + pos: 0.5,-28.5 parent: 4812 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 12335 + - uid: 5857 components: - type: Transform - pos: -31.5,2.5 + pos: 0.5,-29.5 parent: 4812 - - uid: 12582 + - uid: 5861 components: - type: Transform - pos: -41.5,4.5 + pos: 29.5,-23.5 parent: 4812 -- proto: DefaultStationBeaconBar - entities: - - uid: 12514 + - uid: 5863 components: - type: Transform - pos: 3.5,7.5 + rot: -1.5707963267948966 rad + pos: 28.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconBotany - entities: - - uid: 12109 + - uid: 5864 components: - type: Transform - pos: -13.5,-7.5 + rot: -1.5707963267948966 rad + pos: 27.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconBridge - entities: - - uid: 12071 + - uid: 5865 components: - type: Transform - pos: -2.5,33.5 + rot: -1.5707963267948966 rad + pos: 26.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconBrig - entities: - - uid: 12073 + - uid: 5866 components: - type: Transform - pos: -27.5,18.5 + rot: -1.5707963267948966 rad + pos: 25.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 12484 + - uid: 5867 components: - type: Transform - pos: -12.5,25.5 + rot: -1.5707963267948966 rad + pos: 24.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 12338 + - uid: 5868 components: - type: Transform - pos: 18.5,25.5 + rot: -1.5707963267948966 rad + pos: 23.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 12083 + - uid: 5869 components: - type: Transform - pos: 16.5,17.5 + rot: -1.5707963267948966 rad + pos: 22.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 9615 + - uid: 5870 components: - type: Transform - pos: -49.5,-8.5 + rot: -1.5707963267948966 rad + pos: 21.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconChapel - entities: - - uid: 12578 + - uid: 5871 components: - type: Transform - pos: -15.5,-34.5 + rot: -1.5707963267948966 rad + pos: 20.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 12469 + - uid: 5872 components: - type: Transform - pos: -10.5,-16.5 + rot: -1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 4812 + - uid: 5873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 4812 + - uid: 5874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 12106 + - uid: 5875 components: - type: Transform - pos: -25.5,-26.5 + rot: -1.5707963267948966 rad + pos: 16.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 12111 + - uid: 5876 components: - type: Transform - pos: -18.5,16.5 + rot: -1.5707963267948966 rad + pos: 15.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 9625 + - uid: 5877 components: - type: Transform - pos: -15.5,-26.5 + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 10856 + - uid: 5878 components: - type: Transform - pos: -23.5,4.5 + rot: -1.5707963267948966 rad + pos: 13.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 12110 + - uid: 5879 components: - type: Transform - pos: 20.5,-15.5 + rot: -1.5707963267948966 rad + pos: 12.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 12332 + - uid: 5880 components: - type: Transform - pos: 9.5,-37.5 + rot: -1.5707963267948966 rad + pos: 11.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconDorms - entities: - - uid: 12329 + - uid: 5881 components: - type: Transform - pos: -19.5,2.5 + rot: -1.5707963267948966 rad + pos: 10.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 12581 + - uid: 5882 components: - type: Transform - pos: -31.5,-6.5 + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 parent: 4812 -- proto: DefaultStationBeaconEscapePod - entities: - - uid: 3980 + - uid: 5884 components: - type: Transform - pos: -17.5,31.5 + rot: 3.141592653589793 rad + pos: 8.5,-23.5 parent: 4812 - - uid: 8475 + - uid: 5885 components: - type: Transform - pos: -47.5,-25.5 + rot: 3.141592653589793 rad + pos: 8.5,-22.5 parent: 4812 - - uid: 9633 + - uid: 5886 components: - type: Transform - pos: -12.5,-39.5 + rot: 3.141592653589793 rad + pos: 8.5,-21.5 parent: 4812 -- proto: DefaultStationBeaconEvac - entities: - - uid: 12480 + - uid: 5888 components: - type: Transform - pos: 28.5,-2.5 + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 parent: 4812 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 12509 + - uid: 5889 components: - type: Transform - pos: 7.5,15.5 + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 parent: 4812 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 12101 + - uid: 5890 components: - type: Transform - pos: -53.5,-12.5 + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 parent: 4812 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 12545 + - uid: 5892 components: - type: Transform - pos: 7.5,25.5 + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 parent: 4812 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 12337 + - uid: 5893 components: - type: Transform - pos: -21.5,25.5 + rot: -1.5707963267948966 rad + pos: 2.5,-20.5 parent: 4812 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 10664 + - uid: 5894 components: - type: Transform - pos: -22.5,-8.5 + rot: -1.5707963267948966 rad + pos: 1.5,-20.5 parent: 4812 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 10548 + - uid: 5897 components: - type: Transform - pos: 4.5,-1.5 + pos: 4.5,-19.5 parent: 4812 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 12340 + - uid: 5898 components: - type: Transform - pos: -27.5,-17.5 + pos: 4.5,-18.5 parent: 4812 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 12580 + - uid: 5899 components: - type: Transform - pos: -19.5,-21.5 + pos: 4.5,-17.5 parent: 4812 -- proto: DefaultStationBeaconMedical - entities: - - uid: 12577 + - uid: 5900 components: - type: Transform - pos: -10.5,-22.5 + pos: 4.5,-16.5 parent: 4812 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 12388 + - uid: 5901 components: - type: Transform - pos: -19.5,-15.5 + pos: 4.5,-15.5 parent: 4812 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 12331 + - uid: 5902 components: - type: Transform - pos: -28.5,28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 parent: 4812 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 12339 + - uid: 5903 components: - type: Transform - pos: -43.5,-2.5 + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 parent: 4812 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 12504 + - uid: 6424 components: - type: Transform - pos: 16.5,31.5 + rot: 1.5707963267948966 rad + pos: 1.5,-30.5 parent: 4812 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 12415 + - uid: 6425 components: - type: Transform - pos: 26.5,-19.5 + rot: 1.5707963267948966 rad + pos: 2.5,-30.5 parent: 4812 -- proto: DefaultStationBeaconRND - entities: - - uid: 12507 + - uid: 6426 components: - type: Transform - pos: 4.5,-15.5 + rot: 1.5707963267948966 rad + pos: 3.5,-30.5 parent: 4812 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 10546 + - uid: 6427 components: - type: Transform - pos: 4.5,-25.5 + rot: 1.5707963267948966 rad + pos: 4.5,-30.5 parent: 4812 - - uid: 12508 + - uid: 6428 components: - type: Transform - pos: 14.5,-26.5 + rot: 1.5707963267948966 rad + pos: 5.5,-30.5 parent: 4812 - - uid: 12579 + - uid: 6429 components: - type: Transform - pos: 4.5,-25.5 + rot: 1.5707963267948966 rad + pos: 6.5,-30.5 parent: 4812 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 12099 + - uid: 6433 components: - type: Transform - pos: 24.5,14.5 + rot: 1.5707963267948966 rad + pos: 1.5,-35.5 parent: 4812 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 10547 + - uid: 6434 components: - type: Transform - pos: -36.5,11.5 + pos: 0.5,-34.5 parent: 4812 - - uid: 12517 + - uid: 6435 components: - type: Transform - pos: -27.5,12.5 + pos: 0.5,-33.5 parent: 4812 -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 12482 + - uid: 6436 components: - type: Transform - pos: 31.5,2.5 + pos: 0.5,-32.5 parent: 4812 - - uid: 12486 + - uid: 6437 components: - type: Transform - pos: -2.5,-27.5 + pos: 0.5,-31.5 parent: 4812 -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 12512 + - uid: 7591 components: - type: Transform - pos: 12.5,-18.5 + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 parent: 4812 -- proto: DefaultStationBeaconSolars - entities: - - uid: 12558 + - uid: 7592 components: - type: Transform - pos: -52.5,-24.5 + rot: 3.141592653589793 rad + pos: -9.5,-20.5 parent: 4812 - - uid: 12559 + - uid: 7593 components: - type: Transform - pos: 32.5,-38.5 + rot: 3.141592653589793 rad + pos: -9.5,-19.5 parent: 4812 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 12483 + - uid: 7594 components: - type: Transform - pos: 23.5,4.5 + rot: 3.141592653589793 rad + pos: -9.5,-18.5 parent: 4812 -- proto: DefaultStationBeaconTheater - entities: - - uid: 12481 + - uid: 7595 components: - type: Transform - pos: -8.5,6.5 + rot: 3.141592653589793 rad + pos: -9.5,-17.5 parent: 4812 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 12334 + - uid: 7596 components: - type: Transform - pos: -18.5,9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-21.5 parent: 4812 -- proto: DefaultStationBeaconVault - entities: - - uid: 12074 + - uid: 7597 components: - type: Transform - pos: -2.5,24.5 + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 parent: 4812 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 12557 + - uid: 7598 components: - type: Transform - pos: -34.5,16.5 + rot: 1.5707963267948966 rad + pos: -6.5,-21.5 parent: 4812 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 4815 + - uid: 7599 components: - type: Transform - pos: -5.5,12.5 + rot: 1.5707963267948966 rad + pos: -5.5,-21.5 parent: 4812 - - uid: 4996 + - uid: 7600 components: - type: Transform - pos: -17.5,-19.5 + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 parent: 4812 - - uid: 8376 + - uid: 7601 components: - type: Transform - pos: -24.5,-21.5 + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 parent: 4812 - - uid: 8378 + - uid: 7602 components: - type: Transform - pos: -22.5,-24.5 + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 parent: 4812 - - uid: 8414 + - uid: 7603 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-25.5 + pos: -1.5,-21.5 parent: 4812 -- proto: DeskBell - entities: - - uid: 4800 + - uid: 7604 components: - type: Transform - pos: 1.5,-2.5 + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4801 + - uid: 7619 components: - type: Transform - pos: -6.5,-5.5 + rot: 3.141592653589793 rad + pos: -14.5,-12.5 parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4802 + - uid: 8348 components: - type: Transform - pos: 2.5,-15.5 + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4803 + - uid: 9010 components: - type: Transform - pos: 15.5,16.5 + pos: -37.5,-36.5 parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4804 + - uid: 9011 components: - type: Transform - pos: 10.5,22.5 + rot: -1.5707963267948966 rad + pos: -38.5,-37.5 parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4805 + - uid: 9132 components: - type: Transform - pos: -24.5,11.5 + rot: -1.5707963267948966 rad + pos: 46.5,-2.5 parent: 4812 - - type: Physics - canCollide: False - bodyType: Static -- proto: DiceBag - entities: - - uid: 4561 + - uid: 9541 components: - type: Transform - pos: 27.529026,-5.5177865 + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 parent: 4812 - - uid: 7137 + - uid: 10782 components: - type: Transform - pos: -27.959236,-14.350061 + pos: -33.5,0.5 parent: 4812 -- proto: DiseaseDiagnoser - entities: - - uid: 9018 + - uid: 10783 components: - type: Transform - pos: -38.5,-35.5 + pos: -33.5,-0.5 parent: 4812 -- proto: DisposalBend - entities: - - uid: 1105 + - uid: 10784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-6.5 + pos: -33.5,-1.5 parent: 4812 - - uid: 1119 + - uid: 10786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + rot: 1.5707963267948966 rad + pos: -32.5,-2.5 parent: 4812 - - uid: 1120 + - uid: 10787 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-3.5 + pos: -31.5,-2.5 parent: 4812 - - uid: 1575 + - uid: 10788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 + rot: 1.5707963267948966 rad + pos: -30.5,-2.5 parent: 4812 - - uid: 1576 + - uid: 10789 components: - type: Transform - pos: 3.5,2.5 + rot: 1.5707963267948966 rad + pos: -29.5,-2.5 parent: 4812 - - uid: 1602 + - uid: 10790 components: - type: Transform - pos: -2.5,11.5 + rot: 1.5707963267948966 rad + pos: -28.5,-2.5 parent: 4812 - - uid: 1607 + - uid: 10791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-9.5 + pos: -27.5,-2.5 parent: 4812 - - uid: 1636 + - uid: 10792 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-6.5 + pos: -23.5,-11.5 parent: 4812 - - uid: 1705 + - uid: 10793 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: -24.5,-11.5 parent: 4812 - - uid: 3292 + - uid: 10794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,19.5 + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 parent: 4812 - - uid: 3343 + - uid: 10796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 + pos: -25.5,-10.5 parent: 4812 - - uid: 3387 + - uid: 10797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-8.5 + pos: -25.5,-9.5 parent: 4812 - - uid: 3409 + - uid: 10798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 + pos: -25.5,-8.5 parent: 4812 - - uid: 4505 + - uid: 10799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 + pos: -25.5,-7.5 parent: 4812 - - uid: 5862 + - uid: 10800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-24.5 + pos: -25.5,-6.5 parent: 4812 - - uid: 5883 + - uid: 10801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-24.5 + pos: -25.5,-5.5 parent: 4812 - - uid: 5887 + - uid: 10802 components: - type: Transform - pos: 8.5,-20.5 + pos: -25.5,-4.5 parent: 4812 - - uid: 5896 + - uid: 10803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 + pos: -25.5,-3.5 parent: 4812 - - uid: 6432 + - uid: 10806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-35.5 + pos: -28.5,19.5 parent: 4812 - - uid: 7416 + - uid: 10807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-21.5 + pos: -28.5,18.5 parent: 4812 - - uid: 7590 + - uid: 10808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-16.5 + pos: -28.5,17.5 parent: 4812 - - uid: 9012 + - uid: 10809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-37.5 + pos: -28.5,16.5 parent: 4812 - - uid: 10781 + - uid: 10810 components: - type: Transform - pos: -33.5,1.5 + pos: -28.5,15.5 parent: 4812 - - uid: 10804 + - uid: 10812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-11.5 + rot: -1.5707963267948966 rad + pos: -27.5,14.5 parent: 4812 - - uid: 10811 + - uid: 10813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,14.5 parent: 4812 - - uid: 10816 + - uid: 10814 components: - type: Transform - pos: -23.5,14.5 + rot: -1.5707963267948966 rad + pos: -25.5,14.5 parent: 4812 - - uid: 10817 + - uid: 10815 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,7.5 + pos: -24.5,14.5 parent: 4812 - - uid: 10818 + - uid: 10819 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,7.5 + pos: -24.5,7.5 parent: 4812 - - uid: 10843 + - uid: 10820 components: - type: Transform - pos: -20.5,1.5 + pos: -23.5,8.5 parent: 4812 - - uid: 11224 + - uid: 10821 components: - type: Transform - pos: 9.5,-30.5 + pos: -23.5,9.5 parent: 4812 -- proto: DisposalJunction - entities: - - uid: 1700 + - uid: 10822 components: - type: Transform - pos: -2.5,-0.5 + pos: -23.5,10.5 parent: 4812 - - uid: 3211 + - uid: 10823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 + pos: -23.5,11.5 parent: 4812 - - uid: 3299 + - uid: 10824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 + pos: -23.5,12.5 parent: 4812 - - uid: 5849 + - uid: 10825 components: - type: Transform - pos: 0.5,-21.5 + pos: -23.5,13.5 parent: 4812 - - uid: 5891 + - uid: 10826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 + pos: -25.5,6.5 parent: 4812 - - uid: 10795 + - uid: 10827 components: - type: Transform - pos: -25.5,-2.5 + pos: -25.5,5.5 parent: 4812 -- proto: DisposalJunctionFlipped - entities: - - uid: 1585 + - uid: 10828 components: - type: Transform - pos: -2.5,-5.5 + pos: -25.5,4.5 parent: 4812 - - uid: 1586 + - uid: 10829 components: - type: Transform - pos: -2.5,2.5 + pos: -25.5,3.5 parent: 4812 - - uid: 1614 + - uid: 10830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + pos: -25.5,2.5 parent: 4812 - - uid: 1615 + - uid: 10832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 + pos: -25.5,0.5 parent: 4812 - - uid: 1634 + - uid: 10833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-11.5 + pos: -25.5,-0.5 parent: 4812 - - uid: 3982 + - uid: 10834 components: - type: Transform - pos: 11.5,-1.5 + pos: -25.5,-1.5 parent: 4812 - - uid: 5848 + - uid: 10837 components: - type: Transform - pos: 0.5,-20.5 + rot: -1.5707963267948966 rad + pos: -24.5,1.5 parent: 4812 - - uid: 8349 + - uid: 10838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 + rot: -1.5707963267948966 rad + pos: -23.5,1.5 parent: 4812 - - uid: 10831 + - uid: 10839 components: - type: Transform - pos: -25.5,1.5 + rot: -1.5707963267948966 rad + pos: -22.5,1.5 parent: 4812 -- proto: DisposalPipe - entities: - - uid: 1106 + - uid: 10840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 + rot: -1.5707963267948966 rad + pos: -21.5,1.5 parent: 4812 - - uid: 1107 + - uid: 10841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 + rot: 3.141592653589793 rad + pos: -20.5,-0.5 parent: 4812 - - uid: 1108 + - uid: 10842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 + rot: 3.141592653589793 rad + pos: -20.5,0.5 parent: 4812 - - uid: 1109 + - uid: 11094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 + rot: -1.5707963267948966 rad + pos: 6.5,-42.5 parent: 4812 - - uid: 1110 + - uid: 11095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 parent: 4812 - - uid: 1111 + - uid: 11096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 + rot: -1.5707963267948966 rad + pos: 11.5,-38.5 parent: 4812 - - uid: 1112 + - uid: 11097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 + rot: -1.5707963267948966 rad + pos: 6.5,-34.5 parent: 4812 - - uid: 1113 + - uid: 11098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 + rot: -1.5707963267948966 rad + pos: 6.5,-38.5 parent: 4812 - - uid: 1114 + - uid: 11225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + rot: -1.5707963267948966 rad + pos: 7.5,-30.5 parent: 4812 - - uid: 1115 + - uid: 11226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + rot: -1.5707963267948966 rad + pos: 8.5,-30.5 parent: 4812 - - uid: 1116 + - uid: 11227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + rot: 3.141592653589793 rad + pos: 9.5,-31.5 parent: 4812 - - uid: 1117 + - uid: 11228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + rot: 3.141592653589793 rad + pos: 9.5,-32.5 parent: 4812 - - uid: 1118 + - uid: 11229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 + rot: 3.141592653589793 rad + pos: 9.5,-33.5 parent: 4812 - - uid: 1122 + - uid: 11230 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-5.5 + pos: 9.5,-34.5 parent: 4812 - - uid: 1123 + - uid: 11231 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-4.5 + pos: 9.5,-35.5 parent: 4812 - - uid: 1577 + - uid: 11232 components: - type: Transform - pos: 3.5,1.5 + rot: 3.141592653589793 rad + pos: 9.5,-36.5 parent: 4812 - - uid: 1578 + - uid: 11233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 + rot: 3.141592653589793 rad + pos: 9.5,-37.5 parent: 4812 - - uid: 1579 + - uid: 12401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 + rot: 3.141592653589793 rad + pos: 6.5,33.5 parent: 4812 - - uid: 1580 + - uid: 12405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 + rot: 3.141592653589793 rad + pos: 6.5,34.5 parent: 4812 - - uid: 1581 + - uid: 12406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 + rot: 3.141592653589793 rad + pos: 6.5,35.5 parent: 4812 - - uid: 1582 + - uid: 12407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 + rot: 3.141592653589793 rad + pos: 6.5,36.5 parent: 4812 - - uid: 1583 + - uid: 12408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 + rot: 3.141592653589793 rad + pos: 6.5,37.5 parent: 4812 - - uid: 1584 + - uid: 12409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 + rot: 3.141592653589793 rad + pos: 6.5,38.5 parent: 4812 - - uid: 1587 + - uid: 12410 components: - type: Transform - pos: -2.5,-4.5 + rot: 3.141592653589793 rad + pos: 6.5,39.5 parent: 4812 - - uid: 1588 + - uid: 12411 components: - type: Transform - pos: -2.5,-3.5 + rot: 3.141592653589793 rad + pos: 6.5,40.5 parent: 4812 - - uid: 1589 + - uid: 12412 components: - type: Transform - pos: -2.5,-2.5 + rot: 3.141592653589793 rad + pos: 6.5,41.5 parent: 4812 - - uid: 1590 + - uid: 12413 components: - type: Transform - pos: -2.5,-1.5 + rot: 3.141592653589793 rad + pos: 6.5,42.5 parent: 4812 - - uid: 1592 + - uid: 12414 components: - type: Transform - pos: -2.5,0.5 + rot: 3.141592653589793 rad + pos: 6.5,43.5 parent: 4812 - - uid: 1593 + - uid: 12746 components: - type: Transform - pos: -2.5,1.5 + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 parent: 4812 - - uid: 1594 + - uid: 12747 components: - type: Transform - pos: -2.5,3.5 + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 parent: 4812 - - uid: 1595 + - uid: 12748 components: - type: Transform - pos: -2.5,4.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 4812 - - uid: 1596 + - uid: 12750 components: - type: Transform - pos: -2.5,5.5 + rot: -1.5707963267948966 rad + pos: 57.5,-2.5 parent: 4812 - - uid: 1597 + - uid: 12751 components: - type: Transform - pos: -2.5,6.5 + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 parent: 4812 - - uid: 1598 + - uid: 12752 components: - type: Transform - pos: -2.5,7.5 + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 parent: 4812 - - uid: 1599 + - uid: 12753 components: - type: Transform - pos: -2.5,8.5 + rot: -1.5707963267948966 rad + pos: 45.5,-2.5 parent: 4812 - - uid: 1600 + - uid: 12755 components: - type: Transform - pos: -2.5,9.5 + rot: -1.5707963267948966 rad + pos: 56.5,-2.5 parent: 4812 - - uid: 1601 + - uid: 12756 components: - type: Transform - pos: -2.5,10.5 + rot: -1.5707963267948966 rad + pos: 55.5,-2.5 parent: 4812 - - uid: 1603 + - uid: 12757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,11.5 + pos: 54.5,-2.5 parent: 4812 - - uid: 1604 + - uid: 12758 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,11.5 + pos: 53.5,-2.5 parent: 4812 - - uid: 1608 + - uid: 12760 components: - type: Transform - pos: -10.5,-10.5 + rot: -1.5707963267948966 rad + pos: 44.5,-2.5 parent: 4812 - - uid: 1609 + - uid: 12763 components: - type: Transform - pos: -2.5,-6.5 + rot: -1.5707963267948966 rad + pos: 51.5,-2.5 parent: 4812 - - uid: 1610 + - uid: 12789 components: - type: Transform - pos: -2.5,-7.5 + rot: -1.5707963267948966 rad + pos: 48.5,-2.5 parent: 4812 - - uid: 1611 + - uid: 12807 components: - type: Transform - pos: -2.5,-8.5 + rot: -1.5707963267948966 rad + pos: 42.5,-2.5 parent: 4812 - - uid: 1612 + - uid: 12808 components: - type: Transform - pos: -2.5,-9.5 + rot: -1.5707963267948966 rad + pos: 41.5,-2.5 parent: 4812 - - uid: 1613 + - uid: 12809 components: - type: Transform - pos: -2.5,-10.5 + rot: -1.5707963267948966 rad + pos: 40.5,-2.5 parent: 4812 - - uid: 1616 + - uid: 12810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 + rot: -1.5707963267948966 rad + pos: 39.5,-2.5 parent: 4812 - - uid: 1617 + - uid: 12811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 parent: 4812 - - uid: 1618 + - uid: 12812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 + rot: -1.5707963267948966 rad + pos: 37.5,-2.5 parent: 4812 - - uid: 1619 + - uid: 12814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 + rot: -1.5707963267948966 rad + pos: 36.5,-2.5 parent: 4812 - - uid: 1620 + - uid: 12815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + rot: -1.5707963267948966 rad + pos: 35.5,-2.5 parent: 4812 - - uid: 1621 + - uid: 12816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 + rot: -1.5707963267948966 rad + pos: 34.5,-2.5 parent: 4812 - - uid: 1622 + - uid: 12817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + pos: 32.5,-2.5 parent: 4812 - - uid: 1623 + - uid: 12819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 parent: 4812 - - uid: 1624 + - uid: 12820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 + pos: 31.5,-0.5 parent: 4812 - - uid: 1625 + - uid: 12821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 + pos: 31.5,-1.5 parent: 4812 - - uid: 1627 + - uid: 12822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 + rot: -1.5707963267948966 rad + pos: 30.5,-2.5 parent: 4812 - - uid: 1628 + - uid: 12823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 parent: 4812 - - uid: 1629 + - uid: 12824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 + rot: -1.5707963267948966 rad + pos: 28.5,-2.5 parent: 4812 - - uid: 1630 + - uid: 12825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 parent: 4812 - - uid: 1631 + - uid: 12826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-2.5 parent: 4812 - - uid: 1632 + - uid: 12827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 parent: 4812 - - uid: 1633 + - uid: 12828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 parent: 4812 - - uid: 1637 + - uid: 12829 components: - type: Transform - pos: -22.5,-10.5 + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 parent: 4812 - - uid: 1638 + - uid: 12830 components: - type: Transform - pos: -22.5,-9.5 + rot: -1.5707963267948966 rad + pos: 21.5,-2.5 parent: 4812 - - uid: 1639 + - uid: 12831 components: - type: Transform - pos: -22.5,-8.5 + rot: -1.5707963267948966 rad + pos: 20.5,-2.5 parent: 4812 - - uid: 1640 + - uid: 12832 components: - type: Transform - pos: -22.5,-7.5 + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 parent: 4812 - - uid: 1641 + - uid: 12833 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-6.5 + pos: 27.5,-2.5 parent: 4812 - - uid: 1701 + - uid: 12834 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-0.5 + pos: 18.5,-2.5 parent: 4812 - - uid: 1702 + - uid: 12835 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-0.5 + pos: 15.5,-2.5 parent: 4812 - - uid: 1703 + - uid: 12836 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-0.5 + pos: 16.5,-2.5 parent: 4812 - - uid: 1704 + - uid: 12837 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-0.5 + pos: 14.5,-2.5 parent: 4812 - - uid: 2941 + - uid: 12838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,27.5 + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 parent: 4812 - - uid: 3007 + - uid: 12839 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,28.5 + pos: 11.5,-2.5 parent: 4812 - - uid: 3030 + - uid: 12840 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,24.5 + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 parent: 4812 - - uid: 3145 + - uid: 13050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,26.5 + rot: -1.5707963267948966 rad + pos: 43.5,-2.5 parent: 4812 - - uid: 3194 + - uid: 13055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,25.5 + rot: -1.5707963267948966 rad + pos: 52.5,-2.5 parent: 4812 - - uid: 3207 +- proto: DisposalTrunk + entities: + - uid: 1104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,23.5 + pos: -9.5,-5.5 parent: 4812 - - uid: 3208 + - uid: 1121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,20.5 + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 parent: 4812 - - uid: 3209 + - uid: 1573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 4812 - - uid: 3210 + - uid: 1574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 + rot: 1.5707963267948966 rad + pos: 2.5,0.5 parent: 4812 - - uid: 3223 + - uid: 1591 components: - type: Transform - pos: -33.5,-6.5 + rot: 3.141592653589793 rad + pos: -7.5,-1.5 parent: 4812 - - uid: 3227 + - uid: 1605 components: - type: Transform - pos: -33.5,-4.5 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 parent: 4812 - - uid: 3293 + - uid: 1606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 parent: 4812 - - uid: 3294 + - uid: 1635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,19.5 + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 parent: 4812 - - uid: 3296 + - uid: 3144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,19.5 + pos: 15.5,31.5 parent: 4812 - - uid: 3297 + - uid: 3291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,19.5 + pos: 17.5,21.5 parent: 4812 - - uid: 3298 + - uid: 3408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,19.5 + pos: -38.5,-6.5 parent: 4812 - - uid: 3300 + - uid: 4054 components: - type: Transform - pos: 11.5,18.5 + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 parent: 4812 - - uid: 3301 + - uid: 4501 components: - type: Transform - pos: 11.5,17.5 + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 parent: 4812 - - uid: 3302 + - uid: 4503 components: - type: Transform - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: -5.5,17.5 parent: 4812 - - uid: 3303 + - uid: 5860 components: - type: Transform - pos: 11.5,15.5 + pos: 29.5,-22.5 parent: 4812 - - uid: 3304 + - uid: 5895 components: - type: Transform - pos: 11.5,14.5 + rot: -1.5707963267948966 rad + pos: 7.5,-14.5 parent: 4812 - - uid: 3305 + - uid: 6291 components: - type: Transform - pos: 11.5,13.5 + pos: -12.5,-20.5 parent: 4812 - - uid: 3306 + - uid: 6431 components: - type: Transform - pos: 11.5,12.5 + rot: -1.5707963267948966 rad + pos: 2.5,-35.5 parent: 4812 - - uid: 3307 + - uid: 7589 components: - type: Transform - pos: 11.5,11.5 + rot: -1.5707963267948966 rad + pos: -8.5,-16.5 parent: 4812 - - uid: 3308 + - uid: 7617 components: - type: Transform - pos: 11.5,10.5 + rot: 3.141592653589793 rad + pos: -14.5,-13.5 parent: 4812 - - uid: 3309 + - uid: 9009 components: - type: Transform - pos: 11.5,9.5 + pos: -37.5,-35.5 parent: 4812 - - uid: 3310 + - uid: 9013 components: - type: Transform - pos: 11.5,8.5 + rot: 1.5707963267948966 rad + pos: -39.5,-37.5 parent: 4812 - - uid: 3311 + - uid: 10780 components: - type: Transform - pos: 11.5,7.5 + rot: 1.5707963267948966 rad + pos: -34.5,1.5 parent: 4812 - - uid: 3312 + - uid: 10805 components: - type: Transform - pos: 11.5,6.5 + pos: -28.5,20.5 parent: 4812 - - uid: 3313 + - uid: 10836 components: - type: Transform - pos: 11.5,5.5 + rot: 3.141592653589793 rad + pos: -20.5,-1.5 parent: 4812 - - uid: 3314 + - uid: 11084 components: - type: Transform - pos: 11.5,4.5 + rot: -1.5707963267948966 rad + pos: 7.5,-42.5 parent: 4812 - - uid: 3315 + - uid: 11085 components: - type: Transform - pos: 11.5,3.5 + rot: -1.5707963267948966 rad + pos: 7.5,-38.5 parent: 4812 - - uid: 3316 + - uid: 11086 components: - type: Transform - pos: 11.5,2.5 + rot: -1.5707963267948966 rad + pos: 7.5,-34.5 parent: 4812 - - uid: 3317 + - uid: 11087 components: - type: Transform - pos: 11.5,1.5 + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 parent: 4812 - - uid: 3318 + - uid: 11088 components: - type: Transform - pos: 11.5,0.5 + rot: 1.5707963267948966 rad + pos: 10.5,-42.5 parent: 4812 - - uid: 3319 + - uid: 11089 components: - type: Transform - pos: 11.5,-0.5 + rot: 1.5707963267948966 rad + pos: 5.5,-42.5 parent: 4812 - - uid: 3321 + - uid: 11090 components: - type: Transform - pos: 11.5,-2.5 + rot: 1.5707963267948966 rad + pos: 5.5,-38.5 parent: 4812 - - uid: 3322 + - uid: 11091 components: - type: Transform - pos: 11.5,-3.5 + rot: 1.5707963267948966 rad + pos: 5.5,-34.5 parent: 4812 - - uid: 3323 + - uid: 11092 components: - type: Transform - pos: 11.5,-4.5 + rot: -1.5707963267948966 rad + pos: 12.5,-38.5 parent: 4812 - - uid: 3324 + - uid: 11093 components: - type: Transform - pos: 11.5,-5.5 + rot: -1.5707963267948966 rad + pos: 12.5,-42.5 parent: 4812 - - uid: 3325 + - uid: 11234 components: - type: Transform - pos: 11.5,-6.5 + rot: 3.141592653589793 rad + pos: 9.5,-38.5 parent: 4812 - - uid: 3326 + - uid: 12403 components: - type: Transform - pos: 11.5,-7.5 + pos: 6.5,44.5 parent: 4812 - - uid: 3327 + - uid: 12404 components: - type: Transform - pos: 11.5,-8.5 + rot: 3.141592653589793 rad + pos: 6.5,32.5 parent: 4812 - - uid: 3328 + - uid: 12662 components: - type: Transform - pos: 11.5,-9.5 + pos: 31.5,0.5 parent: 4812 - - uid: 3329 +- proto: DisposalUnit + entities: + - uid: 921 components: - type: Transform - pos: 11.5,-10.5 + pos: 0.5,-5.5 parent: 4812 - - uid: 3330 + - uid: 922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 + pos: -5.5,11.5 parent: 4812 - - uid: 3331 + - uid: 1083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-11.5 + pos: -9.5,-9.5 parent: 4812 - - uid: 3332 + - uid: 1084 components: + - type: MetaData + desc: Sends stuff to kitchen. + name: kitchen mail tube - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 + pos: -9.5,-5.5 parent: 4812 - - uid: 3333 + - uid: 1483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 + pos: -20.5,-6.5 parent: 4812 - - uid: 3334 + - uid: 1556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 + pos: 2.5,0.5 parent: 4812 - - uid: 3335 + - uid: 1699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 + pos: -7.5,-1.5 parent: 4812 - - uid: 3336 + - uid: 1798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 + pos: -5.5,17.5 parent: 4812 - - uid: 3337 + - uid: 3187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 + pos: 15.5,31.5 parent: 4812 - - uid: 3338 + - uid: 3290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 + pos: 17.5,21.5 parent: 4812 - - uid: 3339 + - uid: 3445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 + pos: -38.5,-6.5 parent: 4812 - - uid: 3340 + - uid: 4077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 + pos: 31.5,0.5 parent: 4812 - - uid: 3341 + - uid: 4210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-11.5 + pos: 62.5,-2.5 parent: 4812 - - uid: 3386 + - uid: 4500 components: - type: Transform - pos: -38.5,-7.5 + pos: 13.5,-1.5 parent: 4812 - - uid: 3388 + - uid: 5858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 + pos: 7.5,-14.5 parent: 4812 - - uid: 3389 + - uid: 5859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 + pos: 29.5,-22.5 parent: 4812 - - uid: 3410 + - uid: 6430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 + pos: 2.5,-35.5 parent: 4812 - - uid: 3411 + - uid: 6615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 + pos: -8.5,-16.5 parent: 4812 - - uid: 3419 + - uid: 7556 components: - type: Transform - pos: -33.5,-5.5 + pos: -12.5,-20.5 parent: 4812 - - uid: 3420 + - uid: 7618 components: - type: Transform - pos: -33.5,-3.5 + pos: -14.5,-13.5 parent: 4812 - - uid: 3457 + - uid: 8695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,30.5 + pos: -28.5,20.5 parent: 4812 - - uid: 3458 + - uid: 9008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,29.5 + pos: -37.5,-35.5 parent: 4812 - - uid: 3466 + - uid: 9578 components: - type: Transform - pos: -33.5,-7.5 + pos: -34.5,1.5 parent: 4812 - - uid: 4502 + - uid: 10835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 + pos: -20.5,-1.5 parent: 4812 - - uid: 4504 + - uid: 11079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,18.5 + pos: 7.5,-38.5 parent: 4812 - - uid: 4506 + - uid: 11080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,19.5 + pos: 10.5,-42.5 parent: 4812 - - uid: 4507 + - uid: 11082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,19.5 + pos: 7.5,-42.5 parent: 4812 - - uid: 4508 + - uid: 11083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,19.5 + pos: 7.5,-34.5 parent: 4812 - - uid: 4509 + - uid: 11925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,19.5 + pos: 6.5,32.5 parent: 4812 - - uid: 4510 + - uid: 12402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 + pos: 6.5,44.5 parent: 4812 - - uid: 4511 +- proto: DisposalYJunction + entities: + - uid: 3320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,19.5 + pos: 11.5,19.5 parent: 4812 - - uid: 4512 + - uid: 3342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,19.5 + pos: 0.5,-11.5 parent: 4812 - - uid: 4513 + - uid: 3747 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,19.5 + pos: -33.5,-2.5 parent: 4812 - - uid: 4514 + - uid: 6423 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,19.5 + pos: 0.5,-30.5 parent: 4812 - - uid: 4515 +- proto: DogBed + entities: + - uid: 2511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 + pos: 5.5,26.5 parent: 4812 - - uid: 4516 + - uid: 2610 components: + - type: MetaData + name: fox bed - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,19.5 + pos: -15.5,22.5 parent: 4812 - - uid: 4517 + - uid: 6646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,19.5 + pos: -11.5,-14.5 parent: 4812 - - uid: 4518 + - uid: 7449 components: + - type: MetaData + name: cat bed - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,19.5 + pos: -26.5,-25.5 parent: 4812 - - uid: 4519 + - uid: 8339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,19.5 + pos: -35.5,17.5 parent: 4812 - - uid: 4520 +- proto: DonkpocketBoxSpawner + entities: + - uid: 1571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 + pos: 4.5,-1.5 parent: 4812 - - uid: 4521 + - uid: 6339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,19.5 + pos: 9.5,-19.5 parent: 4812 - - uid: 5840 + - uid: 8429 components: - type: Transform - pos: 0.5,-12.5 + pos: -39.5,11.5 parent: 4812 - - uid: 5841 +- proto: DoorElectronics + entities: + - uid: 10716 components: - type: Transform - pos: 0.5,-13.5 + pos: -35.5,-7.5 parent: 4812 - - uid: 5842 + - uid: 10717 components: - type: Transform - pos: 0.5,-14.5 + pos: -35.344994,-7.7000136 parent: 4812 - - uid: 5843 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 13154 components: - type: Transform - pos: 0.5,-15.5 + pos: -9.542398,-28.358063 parent: 4812 - - uid: 5844 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 12116 components: - type: Transform - pos: 0.5,-16.5 + pos: -46.597694,-2.4130588 parent: 4812 - - uid: 5845 + - type: GasTank + toggleActionEntity: 9710 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 9710 + - uid: 13153 components: - type: Transform - pos: 0.5,-17.5 + pos: -9.167398,-28.37891 parent: 4812 - - uid: 5846 +- proto: Dresser + entities: + - uid: 1254 components: - type: Transform - pos: 0.5,-18.5 + pos: -17.5,5.5 parent: 4812 - - uid: 5847 + - uid: 1693 components: - type: Transform - pos: 0.5,-19.5 + pos: -7.5,0.5 parent: 4812 - - uid: 5850 + - uid: 5363 components: - type: Transform - pos: 0.5,-22.5 + pos: 19.5,-11.5 parent: 4812 - - uid: 5851 + - uid: 7035 components: - type: Transform - pos: 0.5,-23.5 + pos: -27.5,-37.5 parent: 4812 - - uid: 5852 + - uid: 9046 components: - type: Transform - pos: 0.5,-24.5 + pos: -26.5,-40.5 parent: 4812 - - uid: 5853 +- proto: DresserCaptainFilled + entities: + - uid: 7064 components: - type: Transform - pos: 0.5,-25.5 + pos: -12.5,29.5 parent: 4812 - - uid: 5854 +- proto: DresserChiefEngineerFilled + entities: + - uid: 12479 components: - type: Transform - pos: 0.5,-26.5 + pos: -48.5,-7.5 parent: 4812 - - uid: 5855 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 7461 components: - type: Transform - pos: 0.5,-27.5 + pos: -24.5,-28.5 parent: 4812 - - uid: 5856 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 7455 components: - type: Transform - pos: 0.5,-28.5 + pos: 7.5,29.5 parent: 4812 - - uid: 5857 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 7456 components: - type: Transform - pos: 0.5,-29.5 + pos: -23.5,28.5 parent: 4812 - - uid: 5861 +- proto: DresserQuarterMasterFilled + entities: + - uid: 12476 components: - type: Transform - pos: 29.5,-23.5 + pos: 16.5,35.5 parent: 4812 - - uid: 5863 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 1717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-24.5 + pos: -10.737676,0.038593292 parent: 4812 - - uid: 5864 +- proto: DrinkBottleVodka + entities: + - uid: 11783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 + rot: 1.5707963267948966 rad + pos: 27.922853,-32.796886 parent: 4812 - - uid: 5865 +- proto: DrinkCoffee + entities: + - uid: 1777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-24.5 + pos: -2.4777098,-4.2682357 parent: 4812 - - uid: 5866 +- proto: DrinkColaBottleFull + entities: + - uid: 1780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-24.5 + pos: -2.3527098,-2.4557357 parent: 4812 - - uid: 5867 +- proto: DrinkDetFlask + entities: + - uid: 11806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 + pos: -14.221141,-0.49929333 parent: 4812 - - uid: 5868 + - uid: 11807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 + pos: 18.44514,-15.833292 parent: 4812 - - uid: 5869 +- proto: DrinkFlask + entities: + - uid: 2590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 + pos: -13.404404,27.48132 parent: 4812 - - uid: 5870 +- proto: DrinkFlaskOld + entities: + - uid: 2536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 + pos: 5.505315,29.475674 parent: 4812 - - uid: 5871 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 2714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-24.5 + pos: -5.405396,24.535454 parent: 4812 - - uid: 5872 +- proto: DrinkGoldenCup + entities: + - uid: 2713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-24.5 + pos: -5.608521,24.832329 parent: 4812 - - uid: 5873 +- proto: DrinkHotCoffee + entities: + - uid: 6308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 + pos: 26.56999,-19.333094 parent: 4812 - - uid: 5874 +- proto: DrinkIcedTeaCan + entities: + - uid: 12372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-24.5 + pos: 4.93781,-34.192295 parent: 4812 - - uid: 5875 +- proto: DrinkLemonLimeCan + entities: + - uid: 1768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 + pos: -2.4722648,6.6801405 parent: 4812 - - uid: 5876 +- proto: DrinkLithiumFlask + entities: + - uid: 3423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-24.5 + pos: -21.4602,33.34266 parent: 4812 - - uid: 5877 + - uid: 11675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 + pos: -21.301329,33.55921 parent: 4812 - - uid: 5878 +- proto: DrinkMugBlack + entities: + - uid: 10761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 + pos: -42.456604,-7.331287 parent: 4812 - - uid: 5879 +- proto: DrinkMugDog + entities: + - uid: 1771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 + pos: -2.4722648,3.4643836 parent: 4812 - - uid: 5880 + - uid: 12686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 + pos: 29.386562,-5.1370378 parent: 4812 - - uid: 5881 +- proto: DrinkMugHeart + entities: + - uid: 10763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 + pos: -41.78473,-7.362537 parent: 4812 - - uid: 5882 +- proto: DrinkMugMetal + entities: + - uid: 8435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 + pos: -38.614426,12.463839 parent: 4812 - - uid: 5884 + - uid: 10760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-23.5 + pos: -42.56598,-7.518787 parent: 4812 - - uid: 5885 + - uid: 13654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-22.5 + pos: -44.827446,3.7351964 parent: 4812 - - uid: 5886 +- proto: DrinkMugOne + entities: + - uid: 10762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-21.5 + pos: -42.25348,-7.487537 parent: 4812 - - uid: 5888 +- proto: DrinkMugRed + entities: + - uid: 8434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 + pos: -38.3488,12.713839 parent: 4812 - - uid: 5889 +- proto: DrinkShaker + entities: + - uid: 1654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 + pos: 5.357094,8.658001 parent: 4812 - - uid: 5890 +- proto: DrinkShinyFlask + entities: + - uid: 8436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-20.5 + pos: -36.520676,15.807589 parent: 4812 - - uid: 5892 +- proto: DrinkVodkaBottleFull + entities: + - uid: 11781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 + pos: 28.500978,-32.265636 parent: 4812 - - uid: 5893 + - uid: 11782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-20.5 + pos: 28.688478,-32.453136 parent: 4812 - - uid: 5894 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 11845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 + pos: -7.6193094,12.673876 parent: 4812 - - uid: 5897 +- proto: DrinkWineBottleFull + entities: + - uid: 7041 components: - type: Transform - pos: 4.5,-19.5 + pos: -13.459903,-33.042583 parent: 4812 - - uid: 5898 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 12645 components: - type: Transform - pos: 4.5,-18.5 + pos: 9.589803,43.291424 parent: 4812 - - uid: 5899 +- proto: ElectricGuitarInstrument + entities: + - uid: 1720 components: - type: Transform - pos: 4.5,-17.5 + pos: -10.472051,-1.3051567 parent: 4812 - - uid: 5900 +- proto: EmergencyLight + entities: + - uid: 7197 components: - type: Transform - pos: 4.5,-16.5 + rot: 1.5707963267948966 rad + pos: -32.5,-16.5 parent: 4812 - - uid: 5901 + - uid: 8416 components: - type: Transform - pos: 4.5,-15.5 + rot: 3.141592653589793 rad + pos: -18.5,-23.5 parent: 4812 - - uid: 5902 + - uid: 9423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 + rot: 3.141592653589793 rad + pos: -42.5,0.5 parent: 4812 - - uid: 5903 + - uid: 9445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-14.5 + pos: -20.5,0.5 parent: 4812 - - uid: 6424 + - uid: 9446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-30.5 + rot: 3.141592653589793 rad + pos: -3.5,22.5 parent: 4812 - - uid: 6425 + - uid: 9492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-30.5 + pos: -11.5,20.5 parent: 4812 - - uid: 6426 + - uid: 9493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-30.5 + rot: -1.5707963267948966 rad + pos: 3.5,33.5 parent: 4812 - - uid: 6427 + - uid: 9516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-30.5 + rot: 3.141592653589793 rad + pos: -4.5,-13.5 parent: 4812 - - uid: 6428 + - uid: 9525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-30.5 + pos: -20.5,-21.5 parent: 4812 - - uid: 6429 + - uid: 12093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-30.5 + pos: -5.5,2.5 parent: 4812 - - uid: 6433 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-35.5 + pos: -8.5,33.5 parent: 4812 - - uid: 6434 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12095 components: - type: Transform - pos: 0.5,-34.5 + pos: 10.5,50.5 parent: 4812 - - uid: 6435 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12096 components: - type: Transform - pos: 0.5,-33.5 + rot: 1.5707963267948966 rad + pos: 14.5,23.5 parent: 4812 - - uid: 6436 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12097 components: - type: Transform - pos: 0.5,-32.5 + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 parent: 4812 - - uid: 6437 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12098 components: - type: Transform - pos: 0.5,-31.5 + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 parent: 4812 - - uid: 7591 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12100 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-21.5 + pos: -11.5,-40.5 parent: 4812 - - uid: 7592 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12102 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-20.5 + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 parent: 4812 - - uid: 7593 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-19.5 + rot: -1.5707963267948966 rad + pos: -28.5,18.5 parent: 4812 - - uid: 7594 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-18.5 + pos: -30.5,32.5 parent: 4812 - - uid: 7595 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13387 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-17.5 + pos: -42.5,-8.5 parent: 4812 - - uid: 7596 + - uid: 13388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 + pos: 14.5,-23.5 parent: 4812 - - uid: 7597 + - uid: 13389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 + rot: 3.141592653589793 rad + pos: 42.5,-3.5 parent: 4812 - - uid: 7598 + - uid: 13390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 + rot: 3.141592653589793 rad + pos: 61.5,-3.5 parent: 4812 - - uid: 7599 + - uid: 13391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-21.5 + pos: 16.5,-2.5 parent: 4812 - - uid: 7600 + - uid: 13392 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-21.5 + pos: 11.5,7.5 parent: 4812 - - uid: 7601 + - uid: 13393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 + pos: 22.5,17.5 parent: 4812 - - uid: 7602 + - uid: 13394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 + rot: 3.141592653589793 rad + pos: 7.5,14.5 parent: 4812 - - uid: 7603 + - uid: 13395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 + rot: 3.141592653589793 rad + pos: -37.5,10.5 parent: 4812 - - uid: 7604 +- proto: EncryptionKeyCargo + entities: + - uid: 4992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 4812 - - uid: 7619 + parent: 4991 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 6663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 4812 - - uid: 8348 + parent: 6662 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 7268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 4812 - - uid: 9010 + parent: 7267 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 7291 components: - type: Transform - pos: -37.5,-36.5 - parent: 4812 - - uid: 9011 + parent: 7290 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedicalScience + entities: + - uid: 331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-37.5 - parent: 4812 - - uid: 10782 + parent: 330 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 7248 components: - type: Transform - pos: -33.5,0.5 - parent: 4812 - - uid: 10783 + parent: 7247 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 7269 components: - type: Transform - pos: -33.5,-0.5 - parent: 4812 - - uid: 10784 + parent: 7267 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 12387 components: - type: Transform - pos: -33.5,-1.5 + pos: 4.5,-28.5 parent: 4812 - - uid: 10786 +- proto: ExplosivesSignMed + entities: + - uid: 10749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 + pos: -33.5,6.5 parent: 4812 - - uid: 10787 + - uid: 13521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 + pos: -57.5,8.5 parent: 4812 - - uid: 10788 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 11839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 + pos: -6.4474344,14.517626 parent: 4812 - - uid: 10789 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 + pos: -6.5,-2.5 parent: 4812 - - uid: 10790 + - uid: 4499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 + pos: 10.5,13.5 parent: 4812 - - uid: 10791 + - uid: 4523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 + pos: 4.5,23.5 parent: 4812 - - uid: 10792 + - uid: 4524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 + pos: 4.5,30.5 parent: 4812 - - uid: 10793 + - uid: 4584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-11.5 + pos: 20.5,-4.5 parent: 4812 - - uid: 10794 + - uid: 6485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 + pos: -0.5,-26.5 parent: 4812 - - uid: 10796 + - uid: 6653 components: - type: Transform - pos: -25.5,-10.5 + pos: 21.5,12.5 parent: 4812 - - uid: 10797 + - uid: 7032 components: - type: Transform - pos: -25.5,-9.5 + pos: -23.5,-32.5 parent: 4812 - - uid: 10798 + - uid: 7417 components: - type: Transform - pos: -25.5,-8.5 + pos: -7.5,-24.5 parent: 4812 - - uid: 10799 + - uid: 7418 components: - type: Transform - pos: -25.5,-7.5 + pos: -17.5,-14.5 parent: 4812 - - uid: 10800 + - uid: 7429 components: - type: Transform - pos: -25.5,-6.5 + pos: -23.5,-27.5 parent: 4812 - - uid: 10801 + - uid: 8330 components: - type: Transform - pos: -25.5,-5.5 + pos: -21.5,17.5 parent: 4812 - - uid: 10802 + - uid: 8602 components: - type: Transform - pos: -25.5,-4.5 + pos: -18.5,13.5 parent: 4812 - - uid: 10803 + - uid: 10710 components: - type: Transform - pos: -25.5,-3.5 + pos: -37.5,-5.5 parent: 4812 - - uid: 10806 + - uid: 10711 components: - type: Transform - pos: -28.5,19.5 + pos: -40.5,7.5 parent: 4812 - - uid: 10807 +- proto: FaxMachineBase + entities: + - uid: 2493 components: - type: Transform - pos: -28.5,18.5 + pos: 20.5,21.5 parent: 4812 - - uid: 10808 + - type: FaxMachine + name: Cargo + - uid: 3736 components: - type: Transform - pos: -28.5,17.5 + pos: -19.5,22.5 parent: 4812 - - uid: 10809 + - type: FaxMachine + name: HoS Office + - uid: 4856 components: - type: Transform - pos: -28.5,16.5 + pos: 17.5,31.5 parent: 4812 - - uid: 10810 + - type: FaxMachine + name: QM's Office + - uid: 4990 components: - type: Transform - pos: -28.5,15.5 + pos: -6.5,34.5 parent: 4812 - - uid: 10812 + - type: FaxMachine + name: Bridge + - uid: 7216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,14.5 + pos: -1.5,-24.5 parent: 4812 - - uid: 10813 + - type: FaxMachine + name: Arrivals Secpost + - uid: 7230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,14.5 + pos: 6.5,24.5 parent: 4812 - - uid: 10814 + - type: FaxMachine + name: HoP Office + - uid: 7458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,14.5 + pos: -24.5,-25.5 parent: 4812 - - uid: 10815 + - type: FaxMachine + name: CMO's Office + - uid: 12428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,14.5 + pos: -32.5,-15.5 parent: 4812 - - uid: 10819 + - type: FaxMachine + name: Library +- proto: FaxMachineCaptain + entities: + - uid: 7298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,7.5 + pos: -12.5,22.5 parent: 4812 - - uid: 10820 +- proto: FigureSpawner + entities: + - uid: 7145 components: - type: Transform - pos: -23.5,8.5 + pos: -27.5,-15.5 parent: 4812 - - uid: 10821 + - uid: 7146 components: - type: Transform - pos: -23.5,9.5 + pos: -28.5,-15.5 parent: 4812 - - uid: 10822 + - uid: 7147 components: - type: Transform - pos: -23.5,10.5 + pos: -28.5,-14.5 parent: 4812 - - uid: 10823 + - uid: 7148 components: - type: Transform - pos: -23.5,11.5 + pos: -27.5,-14.5 parent: 4812 - - uid: 10824 +- proto: filingCabinet + entities: + - uid: 6441 components: - type: Transform - pos: -23.5,12.5 + pos: -3.5,-24.5 parent: 4812 - - uid: 10825 + - uid: 8272 components: - type: Transform - pos: -23.5,13.5 + pos: -16.5,14.5 parent: 4812 - - uid: 10826 + - uid: 11840 components: - type: Transform - pos: -25.5,6.5 + pos: -7.5,14.5 parent: 4812 - - uid: 10827 +- proto: filingCabinetDrawer + entities: + - uid: 2514 components: - type: Transform - pos: -25.5,5.5 + pos: 7.5,26.5 parent: 4812 - - uid: 10828 +- proto: filingCabinetTall + entities: + - uid: 3236 components: - type: Transform - pos: -25.5,4.5 + pos: 14.5,21.5 parent: 4812 - - uid: 10829 +- proto: FireAlarm + entities: + - uid: 4961 components: - type: Transform - pos: -25.5,3.5 + pos: -14.5,-14.5 parent: 4812 - - uid: 10830 + - type: DeviceList + devices: + - 5039 + - uid: 4979 components: - type: Transform - pos: -25.5,2.5 + rot: 1.5707963267948966 rad + pos: -21.5,-21.5 parent: 4812 - - uid: 10832 + - type: DeviceList + devices: + - 6621 + - 5047 + - 6553 + - 8806 + - uid: 6781 components: - type: Transform - pos: -25.5,0.5 + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 parent: 4812 - - uid: 10833 + - uid: 8804 components: - type: Transform - pos: -25.5,-0.5 + rot: 3.141592653589793 rad + pos: -15.5,-29.5 parent: 4812 - - uid: 10834 + - type: DeviceList + devices: + - 8805 + - 6621 + - 4920 + - 8838 + - 8836 + - uid: 9224 components: - type: Transform - pos: -25.5,-1.5 + pos: 42.5,-0.5 parent: 4812 - - uid: 10837 + - type: DeviceList + devices: + - 13228 + - 13229 + - 13230 + - 13192 + - 12692 + - 13231 + - 12684 + - 13233 + - 13232 + - 12693 + - 12694 + - uid: 10750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,1.5 + pos: -29.5,6.5 parent: 4812 - - uid: 10838 + - type: DeviceList + devices: + - 12184 + - 8690 + - uid: 12180 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,1.5 + pos: -37.5,0.5 parent: 4812 - - uid: 10839 + - type: DeviceList + devices: + - 12179 + - 4622 + - 4623 + - uid: 12187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,1.5 + rot: 1.5707963267948966 rad + pos: -35.5,-1.5 parent: 4812 - - uid: 10840 + - type: DeviceList + devices: + - 8691 + - 8690 + - 12189 + - 12188 + - 12185 + - uid: 12191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,1.5 + rot: 1.5707963267948966 rad + pos: -34.5,-7.5 parent: 4812 - - uid: 10841 + - type: DeviceList + devices: + - 12192 + - 8691 + - uid: 12194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-0.5 + rot: 1.5707963267948966 rad + pos: -27.5,1.5 parent: 4812 - - uid: 10842 + - type: DeviceList + devices: + - 6494 + - 6495 + - 12195 + - 8156 + - 8157 + - 12188 + - 12189 + - 12197 + - 12196 + - uid: 12199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 parent: 4812 - - uid: 11094 + - type: DeviceList + devices: + - 12200 + - 12196 + - 12197 + - uid: 12203 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-42.5 + pos: -21.5,13.5 parent: 4812 - - uid: 11095 + - type: DeviceList + devices: + - 12201 + - 8156 + - 8157 + - 7784 + - 8154 + - 8155 + - 12205 + - 12204 + - uid: 12207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-42.5 + pos: -19.5,13.5 parent: 4812 - - uid: 11096 + - type: DeviceList + devices: + - 12208 + - 12204 + - 12205 + - uid: 12210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 + rot: 1.5707963267948966 rad + pos: -32.5,16.5 parent: 4812 - - uid: 11097 + - type: DeviceList + devices: + - 12211 + - 12212 + - 7782 + - 7783 + - uid: 12217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 + rot: 1.5707963267948966 rad + pos: -37.5,16.5 parent: 4812 - - uid: 11098 + - type: DeviceList + devices: + - 12216 + - 12212 + - uid: 12221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 + pos: -16.5,21.5 parent: 4812 - - uid: 11225 + - type: DeviceList + devices: + - 8155 + - 8154 + - 2693 + - 2695 + - 12222 + - uid: 12224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-30.5 + pos: -0.5,21.5 parent: 4812 - - uid: 11226 + - type: DeviceList + devices: + - 2693 + - 2695 + - 2782 + - 2783 + - 12225 + - uid: 12229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-30.5 + rot: 1.5707963267948966 rad + pos: -9.5,25.5 parent: 4812 - - uid: 11227 + - type: DeviceList + devices: + - 12230 + - 2231 + - 1928 + - uid: 12233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-31.5 + rot: 1.5707963267948966 rad + pos: 1.5,25.5 parent: 4812 - - uid: 11228 + - type: DeviceList + devices: + - 12231 + - 2473 + - 2472 + - uid: 12235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-32.5 + rot: -1.5707963267948966 rad + pos: 4.5,29.5 parent: 4812 - - uid: 11229 + - type: DeviceList + devices: + - 12237 + - 2473 + - 2472 + - 2231 + - 1928 + - uid: 12236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-33.5 + rot: 1.5707963267948966 rad + pos: -9.5,29.5 parent: 4812 - - uid: 11230 + - type: DeviceList + devices: + - 12237 + - 2473 + - 2472 + - 2231 + - 1928 + - uid: 12241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-34.5 + pos: 10.5,27.5 parent: 4812 - - uid: 11231 + - type: DeviceList + devices: + - 12242 + - 1927 + - uid: 12244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-35.5 + pos: 10.5,21.5 parent: 4812 - - uid: 11232 + - type: DeviceList + devices: + - 12243 + - 2787 + - 2786 + - 2476 + - 963 + - 2783 + - 2782 + - uid: 12246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-36.5 + pos: 17.5,16.5 parent: 4812 - - uid: 11233 + - type: DeviceList + devices: + - 2922 + - 2852 + - 2853 + - 12247 + - 3257 + - uid: 12250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-37.5 + rot: -1.5707963267948966 rad + pos: 13.5,5.5 parent: 4812 - - uid: 12401 + - type: DeviceList + devices: + - 4122 + - 4117 + - 12251 + - 2852 + - 2853 + - 2787 + - 2786 + - uid: 12253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,33.5 + rot: 1.5707963267948966 rad + pos: 13.5,18.5 parent: 4812 - - uid: 12405 + - type: DeviceList + devices: + - 3257 + - 12254 + - uid: 12273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,34.5 + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 parent: 4812 - - uid: 12406 + - type: DeviceList + devices: + - 4426 + - 4423 + - 12274 + - 4122 + - 4117 + - uid: 12276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,35.5 + pos: 20.5,-1.5 parent: 4812 - - uid: 12407 + - type: DeviceList + devices: + - 12277 + - 4424 + - 4425 + - uid: 12280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,36.5 + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 parent: 4812 - - uid: 12408 + - type: DeviceList + devices: + - 12279 + - 4425 + - 4424 + - uid: 12286 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,37.5 + pos: 11.5,-13.5 parent: 4812 - - uid: 12409 + - type: DeviceList + devices: + - 12287 + - 4423 + - 4426 + - 6415 + - 6414 + - uid: 12290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,38.5 + pos: 3.5,-10.5 parent: 4812 - - uid: 12410 + - type: DeviceList + devices: + - 4645 + - 4644 + - 6500 + - 6499 + - 4646 + - 4647 + - 5792 + - 6414 + - 6415 + - 12288 + - uid: 12291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,39.5 + pos: -27.5,-10.5 parent: 4812 - - uid: 12411 + - type: DeviceList + devices: + - 6497 + - 6496 + - 12292 + - 6494 + - 6495 + - uid: 12294 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,40.5 + pos: -13.5,-13.5 parent: 4812 - - uid: 12412 + - type: DeviceList + devices: + - 6497 + - 6496 + - 6500 + - 6499 + - 12295 + - uid: 12301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,41.5 + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 parent: 4812 - - uid: 12413 + - type: DeviceList + devices: + - 931 + - 932 + - 12300 + - 782 + - 783 + - 784 + - 349 + - 351 + - 361 + - 354 + - 353 + - 352 + - 350 + - uid: 12305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,42.5 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 parent: 4812 - - uid: 12414 + - type: DeviceList + devices: + - 349 + - 351 + - 361 + - 354 + - 353 + - 352 + - 350 + - 12306 + - uid: 12310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,43.5 + pos: 6.5,1.5 parent: 4812 -- proto: DisposalTrunk - entities: - - uid: 1104 + - type: DeviceList + devices: + - 12309 + - 782 + - 783 + - 784 + - uid: 12312 components: - type: Transform - pos: -9.5,-5.5 + rot: -1.5707963267948966 rad + pos: 0.5,13.5 parent: 4812 - - uid: 1121 + - type: DeviceList + devices: + - 12313 + - 1940 + - 1939 + - 1938 + - uid: 12314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 + pos: -0.5,-20.5 parent: 4812 - - uid: 1573 + - type: DeviceList + devices: + - 5308 + - 4644 + - 4645 + - 4646 + - 4647 + - 5791 + - 5793 + - 12315 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + - 5028 + - 328 + - 3582 + - 2759 + - 3264 + - 6655 + - 4980 + - 7198 + - uid: 12317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 + pos: -9.5,-33.5 parent: 4812 - - uid: 1574 + - type: DeviceList + devices: + - 12318 + - 5071 + - 5072 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + - uid: 12320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,0.5 + pos: -12.5,-40.5 parent: 4812 - - uid: 1591 + - type: DeviceList + devices: + - 12321 + - 5072 + - 5071 + - uid: 12342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-1.5 + rot: 1.5707963267948966 rad + pos: -13.5,-16.5 parent: 4812 - - uid: 1605 + - type: DeviceList + devices: + - 6585 + - 6584 + - 12343 + - uid: 12348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 4812 + - type: DeviceList + devices: + - 12347 + - 5791 + - 5792 + - uid: 12354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 + rot: -1.5707963267948966 rad + pos: 11.5,-18.5 parent: 4812 - - uid: 1606 + - type: DeviceList + devices: + - 5600 + - 5599 + - 12355 +- proto: FireAxeCabinetFilled + entities: + - uid: 13381 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-9.5 + pos: -40.5,9.5 parent: 4812 - - uid: 1635 +- proto: FireExtinguisher + entities: + - uid: 3677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 + pos: 3.3851929,50.52095 parent: 4812 - - uid: 3144 + - uid: 3975 components: - type: Transform - pos: 15.5,31.5 + pos: 3.6195679,50.3647 parent: 4812 - - uid: 3291 +- proto: Firelock + entities: + - uid: 1658 components: - type: Transform - pos: 17.5,21.5 + pos: 4.5,6.5 parent: 4812 - - uid: 3408 + - uid: 12930 components: - type: Transform - pos: -38.5,-6.5 + pos: 21.5,14.5 parent: 4812 - - uid: 4501 +- proto: FirelockEdge + entities: + - uid: 328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-1.5 + pos: -6.5,-22.5 parent: 4812 - - uid: 4503 + - uid: 332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,17.5 + pos: -3.5,-8.5 parent: 4812 - - uid: 5860 + - uid: 361 components: - type: Transform - pos: 29.5,-22.5 + rot: 1.5707963267948966 rad + pos: 1.5,5.5 parent: 4812 - - uid: 5895 + - uid: 1097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 + pos: -1.5,-8.5 parent: 4812 - - uid: 6291 + - uid: 1099 components: - type: Transform - pos: -12.5,-20.5 + rot: 3.141592653589793 rad + pos: -3.5,11.5 parent: 4812 - - uid: 6431 + - uid: 1100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-35.5 + rot: 3.141592653589793 rad + pos: -2.5,11.5 parent: 4812 - - uid: 7589 + - uid: 1932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 + rot: 3.141592653589793 rad + pos: -1.5,11.5 parent: 4812 - - uid: 7617 + - uid: 2759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-13.5 + rot: 1.5707963267948966 rad + pos: -8.5,-21.5 parent: 4812 - - uid: 9009 + - uid: 3264 components: - type: Transform - pos: -37.5,-35.5 + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 parent: 4812 - - uid: 9013 + - uid: 3582 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-37.5 + pos: -8.5,-22.5 parent: 4812 - - uid: 10780 + - uid: 4622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,1.5 + pos: -37.5,2.5 parent: 4812 - - uid: 10805 + - type: DeviceNetwork + deviceLists: + - 12178 + - 12180 + - uid: 4623 components: - type: Transform - pos: -28.5,20.5 + rot: 1.5707963267948966 rad + pos: -37.5,1.5 parent: 4812 - - uid: 10836 + - type: DeviceNetwork + deviceLists: + - 12178 + - 12180 + - uid: 4980 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-1.5 + rot: 1.5707963267948966 rad + pos: 1.5,-21.5 parent: 4812 - - uid: 11084 + - uid: 4983 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-42.5 + pos: 15.5,-3.5 parent: 4812 - - uid: 11085 + - type: DeviceNetwork + deviceLists: + - 12275 + - uid: 4999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 + pos: -2.5,-8.5 parent: 4812 - - uid: 11086 + - uid: 5000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 + pos: -1.5,13.5 parent: 4812 - - uid: 11087 + - uid: 5001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + pos: -2.5,13.5 parent: 4812 - - uid: 11088 + - uid: 5002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-42.5 + pos: -3.5,13.5 parent: 4812 - - uid: 11089 + - uid: 5028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 parent: 4812 - - uid: 11090 + - uid: 6655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 parent: 4812 - - uid: 11091 + - uid: 6667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 + rot: 3.141592653589793 rad + pos: -2.5,-10.5 parent: 4812 - - uid: 11092 + - uid: 6684 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-38.5 + pos: 15.5,-2.5 parent: 4812 - - uid: 11093 + - type: DeviceNetwork + deviceLists: + - 12275 + - uid: 7191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 4812 - - uid: 11234 + - uid: 7198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-38.5 + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 parent: 4812 - - uid: 12403 + - uid: 7287 components: - type: Transform - pos: 6.5,44.5 + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 parent: 4812 - - uid: 12404 + - uid: 7388 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,32.5 + pos: -1.5,-10.5 parent: 4812 -- proto: DisposalUnit - entities: - - uid: 921 + - uid: 7391 components: - type: Transform - pos: 0.5,-5.5 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 parent: 4812 - - uid: 922 + - uid: 8591 components: - type: Transform - pos: -5.5,11.5 + pos: -6.5,-32.5 parent: 4812 - - uid: 1083 + - uid: 8711 components: - type: Transform - pos: -9.5,-9.5 + pos: -5.5,-32.5 parent: 4812 - - uid: 1084 + - uid: 8758 components: - - type: MetaData - desc: Sends stuff to kitchen. - name: kitchen mail tube - type: Transform - pos: -9.5,-5.5 + pos: 1.5,-32.5 parent: 4812 - - uid: 1483 + - uid: 8770 components: - type: Transform - pos: -20.5,-6.5 + pos: 0.5,-32.5 parent: 4812 - - uid: 1556 + - uid: 8778 components: - type: Transform - pos: 2.5,0.5 + rot: 3.141592653589793 rad + pos: 1.5,-34.5 parent: 4812 - - uid: 1699 + - uid: 8779 components: - type: Transform - pos: -7.5,-1.5 + rot: 3.141592653589793 rad + pos: 0.5,-34.5 parent: 4812 - - uid: 1798 + - uid: 8783 components: - type: Transform - pos: -5.5,17.5 + rot: 3.141592653589793 rad + pos: -5.5,-34.5 parent: 4812 - - uid: 3187 + - uid: 8803 components: - type: Transform - pos: 15.5,31.5 + rot: 3.141592653589793 rad + pos: -6.5,-34.5 parent: 4812 - - uid: 3290 + - uid: 12692 components: - type: Transform - pos: 17.5,21.5 + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 parent: 4812 - - uid: 3445 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 + - uid: 12693 components: - type: Transform - pos: -38.5,-6.5 + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 parent: 4812 - - uid: 4500 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 + - uid: 12694 components: - type: Transform - pos: 13.5,-1.5 + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 parent: 4812 - - uid: 5858 + - type: DeviceNetwork + deviceLists: + - 12697 + - 9224 + - uid: 13151 components: - type: Transform - pos: 7.5,-14.5 + rot: 3.141592653589793 rad + pos: -10.5,-24.5 parent: 4812 - - uid: 5859 + - uid: 13152 components: - type: Transform - pos: 29.5,-22.5 + rot: 3.141592653589793 rad + pos: -9.5,-24.5 parent: 4812 - - uid: 6430 +- proto: FirelockElectronics + entities: + - uid: 10718 components: - type: Transform - pos: 2.5,-35.5 + pos: -30.464754,-7.2781386 parent: 4812 - - uid: 6615 +- proto: FirelockGlass + entities: + - uid: 349 components: - type: Transform - pos: -8.5,-16.5 + pos: 2.5,4.5 parent: 4812 - - uid: 7556 + - uid: 350 components: - type: Transform - pos: -12.5,-20.5 + pos: 1.5,9.5 parent: 4812 - - uid: 7618 + - uid: 351 components: - type: Transform - pos: -14.5,-13.5 + pos: 3.5,4.5 parent: 4812 - - uid: 8695 + - uid: 352 components: - type: Transform - pos: -28.5,20.5 + pos: 1.5,8.5 parent: 4812 - - uid: 9008 + - uid: 353 components: - type: Transform - pos: -37.5,-35.5 + pos: 1.5,7.5 parent: 4812 - - uid: 9578 + - uid: 354 components: - type: Transform - pos: -34.5,1.5 + pos: 1.5,6.5 parent: 4812 - - uid: 10835 + - uid: 782 components: - type: Transform - pos: -20.5,-1.5 + pos: 1.5,-2.5 parent: 4812 - - uid: 11079 + - uid: 783 components: - type: Transform - pos: 7.5,-38.5 + pos: 1.5,-1.5 parent: 4812 - - uid: 11080 + - uid: 784 components: - type: Transform - pos: 10.5,-42.5 + pos: 1.5,-0.5 parent: 4812 - - uid: 11082 + - uid: 930 components: - type: Transform - pos: 7.5,-42.5 + pos: -6.5,-7.5 parent: 4812 - - uid: 11083 + - uid: 931 components: - type: Transform - pos: 7.5,-34.5 + pos: -6.5,-6.5 parent: 4812 - - uid: 11925 + - uid: 932 components: - type: Transform - pos: 6.5,32.5 + pos: -6.5,-5.5 parent: 4812 - - uid: 12402 + - uid: 963 components: - type: Transform - pos: 6.5,44.5 + pos: 5.5,21.5 parent: 4812 -- proto: DisposalYJunction - entities: - - uid: 3320 + - uid: 1927 components: - type: Transform - pos: 11.5,19.5 + pos: 9.5,23.5 parent: 4812 - - uid: 3342 + - uid: 1928 components: - type: Transform - pos: 0.5,-11.5 + pos: -8.5,27.5 parent: 4812 - - uid: 3747 + - uid: 1938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 + pos: -3.5,15.5 parent: 4812 - - uid: 6423 + - uid: 1939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-30.5 + pos: -2.5,15.5 parent: 4812 -- proto: DogBed - entities: - - uid: 2511 + - uid: 1940 components: - type: Transform - pos: 5.5,26.5 + pos: -1.5,15.5 parent: 4812 - - uid: 2610 + - uid: 1941 components: - - type: MetaData - name: fox bed - type: Transform - pos: -15.5,22.5 + pos: 9.5,5.5 parent: 4812 - - uid: 6646 + - uid: 1942 components: - type: Transform - pos: -11.5,-14.5 + pos: -12.5,9.5 parent: 4812 - - uid: 7449 + - uid: 1943 components: - - type: MetaData - name: cat bed - type: Transform - pos: -26.5,-25.5 + pos: -16.5,-3.5 parent: 4812 - - uid: 8339 + - uid: 2231 components: - type: Transform - pos: -35.5,17.5 + pos: -7.5,27.5 parent: 4812 -- proto: DonkpocketBoxSpawner - entities: - - uid: 1571 + - uid: 2472 components: - type: Transform - pos: 4.5,-1.5 + pos: 3.5,27.5 parent: 4812 - - uid: 6339 + - uid: 2473 components: - type: Transform - pos: 9.5,-19.5 + pos: 2.5,27.5 parent: 4812 - - uid: 8429 + - uid: 2476 components: - type: Transform - pos: -39.5,11.5 + pos: 9.5,21.5 parent: 4812 -- proto: DoorElectronics - entities: - - uid: 10716 + - uid: 2693 components: - type: Transform - pos: -35.5,-7.5 + pos: -9.5,19.5 parent: 4812 - - uid: 10717 + - uid: 2695 components: - type: Transform - pos: -35.344994,-7.7000136 + pos: -9.5,20.5 parent: 4812 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 12116 + - uid: 2782 components: - type: Transform - pos: -42.432724,-2.3473935 + pos: 4.5,19.5 parent: 4812 -- proto: Dresser - entities: - - uid: 1254 + - uid: 2783 components: - type: Transform - pos: -17.5,5.5 + pos: 4.5,20.5 parent: 4812 - - uid: 1693 + - uid: 2786 components: - type: Transform - pos: -7.5,0.5 + pos: 11.5,16.5 parent: 4812 - - uid: 5363 + - uid: 2787 components: - type: Transform - pos: 19.5,-11.5 + pos: 12.5,16.5 parent: 4812 - - uid: 7035 + - uid: 2852 components: - type: Transform - pos: -27.5,-37.5 + pos: 13.5,14.5 parent: 4812 - - uid: 9046 + - uid: 2853 components: - type: Transform - pos: -26.5,-40.5 + pos: 13.5,15.5 parent: 4812 -- proto: DresserCaptainFilled - entities: - - uid: 7064 + - uid: 2922 components: - type: Transform - pos: -12.5,29.5 + pos: 21.5,15.5 parent: 4812 -- proto: DresserChiefEngineerFilled - entities: - - uid: 12479 + - uid: 3257 components: - type: Transform - pos: -48.5,-7.5 + pos: 15.5,16.5 parent: 4812 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 7461 + - uid: 3361 components: - type: Transform - pos: -24.5,-28.5 + pos: 12.5,25.5 parent: 4812 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 7455 + - uid: 4117 components: - type: Transform - pos: 7.5,29.5 + pos: 12.5,0.5 parent: 4812 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 7456 + - uid: 4122 components: - type: Transform - pos: -23.5,28.5 + pos: 11.5,0.5 parent: 4812 -- proto: DresserQuarterMasterFilled - entities: - - uid: 12476 + - uid: 4423 components: - type: Transform - pos: 16.5,35.5 + pos: 12.5,-10.5 parent: 4812 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 1717 + - uid: 4424 components: - type: Transform - pos: -10.737676,0.038593292 + pos: 23.5,-3.5 parent: 4812 -- proto: DrinkBottleVodka - entities: - - uid: 11783 + - type: DeviceNetwork + deviceLists: + - 12275 + - uid: 4425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.922853,-32.796886 + pos: 23.5,-2.5 parent: 4812 -- proto: DrinkCoffee - entities: - - uid: 1777 + - type: DeviceNetwork + deviceLists: + - 12275 + - uid: 4426 components: - type: Transform - pos: -2.4777098,-4.2682357 + pos: 11.5,-10.5 parent: 4812 -- proto: DrinkColaBottleFull - entities: - - uid: 1780 + - uid: 4435 components: - type: Transform - pos: -2.3527098,-2.4557357 + pos: 28.5,1.5 parent: 4812 -- proto: DrinkDetFlask - entities: - - uid: 11806 + - uid: 4525 components: - type: Transform - pos: -14.221141,-0.49929333 + pos: 18.5,5.5 parent: 4812 - - uid: 11807 + - uid: 4543 components: - type: Transform - pos: 18.44514,-15.833292 + pos: 16.5,-7.5 parent: 4812 -- proto: DrinkFlask - entities: - - uid: 2590 + - uid: 4544 components: - type: Transform - pos: -13.404404,27.48132 + pos: 20.5,-7.5 parent: 4812 -- proto: DrinkFlaskOld - entities: - - uid: 2536 + - uid: 4644 components: - type: Transform - pos: 5.505315,29.475674 + pos: -5.5,-14.5 parent: 4812 -- proto: DrinkGildlagerBottleFull - entities: - - uid: 2714 + - uid: 4645 components: - type: Transform - pos: -5.405396,24.535454 + pos: -6.5,-14.5 parent: 4812 -- proto: DrinkGoldenCup - entities: - - uid: 2713 + - uid: 4646 components: - type: Transform - pos: -5.608521,24.832329 + pos: 0.5,-14.5 parent: 4812 -- proto: DrinkHotCoffee - entities: - - uid: 6308 + - uid: 4647 components: - type: Transform - pos: 25.471973,-18.414967 + pos: 1.5,-14.5 parent: 4812 -- proto: DrinkIcedTeaCan - entities: - - uid: 12372 + - uid: 4920 components: - type: Transform - pos: 4.93781,-34.192295 + pos: -12.5,-24.5 parent: 4812 -- proto: DrinkLemonLimeCan - entities: - - uid: 1768 + - uid: 5039 components: - type: Transform - pos: -2.4722648,6.6801405 + pos: -15.5,-19.5 parent: 4812 -- proto: DrinkLithiumFlask - entities: - - uid: 3423 + - uid: 5045 components: - type: Transform - pos: -21.4602,33.34266 + pos: -19.5,-19.5 parent: 4812 - - uid: 11675 + - uid: 5047 components: - type: Transform - pos: -21.301329,33.55921 + pos: -13.5,-22.5 parent: 4812 -- proto: DrinkMugBlack - entities: - - uid: 10761 + - uid: 5071 components: - type: Transform - pos: -42.456604,-7.331287 + pos: -11.5,-36.5 parent: 4812 -- proto: DrinkMugDog - entities: - - uid: 1771 + - type: DeviceNetwork + deviceLists: + - 9593 + - uid: 5072 components: - type: Transform - pos: -2.4722648,3.4643836 + pos: -10.5,-36.5 parent: 4812 -- proto: DrinkMugHeart - entities: - - uid: 10763 + - type: DeviceNetwork + deviceLists: + - 9593 + - uid: 5308 components: - type: Transform - pos: -41.78473,-7.362537 + pos: -4.5,-27.5 parent: 4812 -- proto: DrinkMugMetal - entities: - - uid: 3278 + - uid: 5599 components: - type: Transform - pos: 22.59246,12.58923 + pos: 9.5,-22.5 parent: 4812 - - uid: 8435 + - uid: 5600 components: - type: Transform - pos: -38.614426,12.463839 + pos: 8.5,-22.5 parent: 4812 - - uid: 10760 + - uid: 5791 components: - type: Transform - pos: -42.56598,-7.518787 + pos: 2.5,-15.5 parent: 4812 -- proto: DrinkMugOne - entities: - - uid: 10762 + - uid: 5792 components: - type: Transform - pos: -42.25348,-7.487537 + pos: 4.5,-13.5 parent: 4812 -- proto: DrinkMugRed - entities: - - uid: 8434 + - uid: 5793 components: - type: Transform - pos: -38.3488,12.713839 + pos: 2.5,-23.5 parent: 4812 -- proto: DrinkShaker - entities: - - uid: 1654 + - uid: 6414 components: - type: Transform - pos: 5.357094,8.658001 + pos: 6.5,-12.5 parent: 4812 -- proto: DrinkShinyFlask - entities: - - uid: 8436 + - uid: 6415 components: - type: Transform - pos: -36.520676,15.807589 + pos: 6.5,-11.5 parent: 4812 -- proto: DrinkVodkaBottleFull - entities: - - uid: 11781 + - uid: 6494 components: - type: Transform - pos: 28.500978,-32.265636 + pos: -25.5,-10.5 parent: 4812 - - uid: 11782 + - uid: 6495 components: - type: Transform - pos: 28.688478,-32.453136 + pos: -26.5,-10.5 parent: 4812 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 11845 + - uid: 6496 components: - type: Transform - pos: -7.6193094,12.673876 + pos: -21.5,-11.5 parent: 4812 -- proto: DrinkWineBottleFull - entities: - - uid: 7041 + - uid: 6497 components: - type: Transform - pos: -13.459903,-33.042583 + pos: -21.5,-12.5 parent: 4812 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 12645 + - uid: 6499 components: - type: Transform - pos: 9.589803,43.291424 + pos: -11.5,-11.5 parent: 4812 -- proto: ElectricGuitarInstrument - entities: - - uid: 1720 + - uid: 6500 components: - type: Transform - pos: -10.472051,-1.3051567 + pos: -11.5,-12.5 parent: 4812 -- proto: EmergencyLight - entities: - - uid: 8416 + - uid: 6553 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-23.5 + pos: -13.5,-21.5 parent: 4812 - - uid: 12093 + - uid: 6584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: -9.5,-13.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12094 + - uid: 6585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,33.5 + pos: -11.5,-19.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12095 + - uid: 6621 components: - type: Transform - pos: 10.5,50.5 + pos: -16.5,-24.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12096 + - uid: 6629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 + pos: -19.5,-13.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12097 + - uid: 6676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 + pos: -7.5,31.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12098 + - uid: 6764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 + pos: -8.5,31.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12100 + - uid: 7343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 + pos: 1.5,29.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12102 + - uid: 7344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 + pos: 2.5,31.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12103 + - uid: 7346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,18.5 + pos: 3.5,31.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12104 + - uid: 7347 components: - type: Transform - pos: -30.5,32.5 + pos: -6.5,29.5 parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight -- proto: EncryptionKeyCargo - entities: - - uid: 4992 + - uid: 7782 components: - type: Transform - parent: 4991 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 6663 + pos: -26.5,12.5 + parent: 4812 + - uid: 7783 components: - type: Transform - parent: 6662 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 7268 + pos: -25.5,12.5 + parent: 4812 + - uid: 7784 components: - type: Transform - parent: 7267 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 7291 + pos: -24.5,11.5 + parent: 4812 + - uid: 8154 components: - type: Transform - parent: 7290 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedicalScience - entities: - - uid: 331 + pos: -23.5,15.5 + parent: 4812 + - uid: 8155 components: - type: Transform - parent: 330 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 7248 + pos: -22.5,15.5 + parent: 4812 + - uid: 8156 components: - type: Transform - parent: 7247 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 7269 + pos: -26.5,6.5 + parent: 4812 + - uid: 8157 components: - type: Transform - parent: 7267 - - type: Physics - canCollide: False -- proto: ExosuitFabricator - entities: - - uid: 12387 + pos: -25.5,6.5 + parent: 4812 + - uid: 8690 components: - type: Transform - pos: 4.5,-28.5 + pos: -30.5,0.5 parent: 4812 -- proto: ExplosivesSignMed - entities: - - uid: 10749 + - uid: 8691 components: - type: Transform - pos: -33.5,6.5 + pos: -30.5,-4.5 parent: 4812 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 11839 + - uid: 10581 components: - type: Transform - pos: -6.4474344,14.517626 + pos: -20.5,-30.5 parent: 4812 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 1513 + - uid: 10591 components: - type: Transform - pos: -6.5,-2.5 + pos: -39.5,-31.5 parent: 4812 - - uid: 3270 + - uid: 10592 components: - type: Transform - pos: 24.5,17.5 + pos: -37.5,-20.5 parent: 4812 - - uid: 4499 + - uid: 10616 components: - type: Transform - pos: 10.5,13.5 + pos: -40.5,-22.5 parent: 4812 - - uid: 4523 + - uid: 10617 components: - type: Transform - pos: 4.5,23.5 + pos: -41.5,-22.5 parent: 4812 - - uid: 4524 + - uid: 10901 components: - type: Transform - pos: 4.5,30.5 + pos: -33.5,-12.5 parent: 4812 - - uid: 4584 + - uid: 10902 components: - type: Transform - pos: 20.5,-4.5 + pos: -33.5,-11.5 parent: 4812 - - uid: 6485 + - uid: 11259 components: - type: Transform - pos: -0.5,-26.5 + pos: 5.5,-30.5 parent: 4812 - - uid: 7032 + - uid: 11364 components: - type: Transform - pos: -23.5,-32.5 + pos: 23.5,-33.5 parent: 4812 - - uid: 7417 + - uid: 11365 components: - type: Transform - pos: -7.5,-24.5 + pos: 23.5,-32.5 parent: 4812 - - uid: 7418 + - uid: 11793 components: - type: Transform - pos: -17.5,-14.5 + pos: 26.5,-29.5 parent: 4812 - - uid: 7429 + - uid: 12188 components: - type: Transform - pos: -23.5,-27.5 + pos: -28.5,-2.5 parent: 4812 - - uid: 8330 + - uid: 12189 components: - type: Transform - pos: -21.5,17.5 + pos: -28.5,-1.5 parent: 4812 - - uid: 8602 + - uid: 12196 components: - type: Transform - pos: -18.5,13.5 + pos: -24.5,1.5 parent: 4812 - - uid: 10710 + - uid: 12197 components: - type: Transform - pos: -37.5,-5.5 + pos: -24.5,2.5 parent: 4812 - - uid: 10711 + - uid: 12204 components: - type: Transform - pos: -40.5,7.5 + pos: -21.5,9.5 parent: 4812 -- proto: FaxMachineBase - entities: - - uid: 2493 + - uid: 12205 components: - type: Transform - pos: 20.5,21.5 + pos: -21.5,10.5 parent: 4812 - - type: FaxMachine - name: Cargo - - uid: 3736 + - uid: 12212 components: - type: Transform - pos: -19.5,22.5 + pos: -32.5,15.5 parent: 4812 - - type: FaxMachine - name: HoS Office - - uid: 4856 + - uid: 13228 components: - type: Transform - pos: 17.5,31.5 + pos: 46.5,-1.5 parent: 4812 - - type: FaxMachine - name: QM's Office - - uid: 4990 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13229 components: - type: Transform - pos: -6.5,34.5 + pos: 46.5,-2.5 parent: 4812 - - type: FaxMachine - name: Bridge - - uid: 7216 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13230 components: - type: Transform - pos: -1.5,-24.5 + pos: 46.5,-3.5 parent: 4812 - - type: FaxMachine - name: Arrivals Secpost - - uid: 7230 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13231 components: - type: Transform - pos: 6.5,24.5 + pos: 58.5,-1.5 parent: 4812 - - type: FaxMachine - name: HoP Office - - uid: 7458 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13232 components: - type: Transform - pos: -24.5,-25.5 + pos: 58.5,-2.5 parent: 4812 - - type: FaxMachine - name: CMO's Office - - uid: 12428 + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 + - uid: 13233 components: - type: Transform - pos: -32.5,-15.5 + pos: 58.5,-3.5 parent: 4812 - - type: FaxMachine - name: Library -- proto: FaxMachineCaptain + - type: DeviceNetwork + deviceLists: + - 9224 + - 12697 +- proto: Fireplace entities: - - uid: 7298 + - uid: 2581 components: - type: Transform - pos: -12.5,22.5 + pos: -13.5,29.5 parent: 4812 -- proto: FigureSpawner +- proto: Flash entities: - - uid: 7145 + - uid: 2679 components: - type: Transform - pos: -27.5,-15.5 + pos: -1.4420605,35.49948 parent: 4812 - - uid: 7146 + - uid: 3964 components: - type: Transform - pos: -28.5,-15.5 + pos: 11.496426,48.542255 parent: 4812 - - uid: 7147 + - uid: 6247 components: - type: Transform - pos: -28.5,-14.5 + pos: 16.572206,-27.496618 parent: 4812 - - uid: 7148 + - uid: 8451 components: - type: Transform - pos: -27.5,-14.5 + pos: -30.484182,10.599279 parent: 4812 -- proto: filingCabinet +- proto: FlashlightLantern entities: - - uid: 6441 + - uid: 6364 components: - type: Transform - pos: -3.5,-24.5 + pos: -46.410194,-1.9127116 parent: 4812 - - uid: 8272 + - type: HandheldLight + toggleActionEntity: 9825 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9825 + - type: ActionsContainer + - uid: 8597 components: - type: Transform - pos: -16.5,14.5 + pos: -19.531754,10.050615 parent: 4812 - - uid: 11840 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8598 components: - type: Transform - pos: -7.5,14.5 + pos: -18.563004,10.206865 parent: 4812 -- proto: filingCabinetDrawer - entities: - - uid: 2514 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11673 components: - type: Transform - pos: 7.5,26.5 + pos: 25.480742,-40.49962 parent: 4812 -- proto: filingCabinetTall - entities: - - uid: 3236 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12487 components: - type: Transform - pos: 14.5,21.5 + pos: -46.722694,-1.9439831 parent: 4812 -- proto: FireAlarm - entities: - - uid: 4961 + - type: HandheldLight + toggleActionEntity: 9826 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9826 + - type: ActionsContainer + - uid: 12488 components: - type: Transform - pos: -14.5,-14.5 + pos: -32.540565,-7.207951 parent: 4812 - - type: DeviceList - devices: - - 5039 - - uid: 4979 + - uid: 12489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 4812 - - type: DeviceList - devices: - - 6621 - - 5047 - - 6553 - - 8806 - - uid: 6781 + pos: -32.540565,-7.411076 + parent: 4812 + - uid: 12490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 + pos: -19.610077,12.664663 parent: 4812 - - uid: 8804 + - uid: 12491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 + pos: -19.516327,12.555288 parent: 4812 - - type: DeviceList - devices: - - 8805 - - 6621 - - 4920 - - 8838 - - 8836 - - uid: 10750 +- proto: FlashlightSeclite + entities: + - uid: 8450 components: - type: Transform - pos: -29.5,6.5 + pos: -28.562307,10.614904 parent: 4812 - - type: DeviceList - devices: - - 12184 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - - uid: 12180 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Floodlight + entities: + - uid: 11744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,0.5 + pos: 19.532274,-41.53536 parent: 4812 - - type: DeviceList - devices: - - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - - uid: 12187 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: FloorDrain + entities: + - uid: 2489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 + pos: -15.5,27.5 parent: 4812 - - type: DeviceList - devices: - - 8691 - - 8690 - - 12189 - - 12188 - - 12185 - - uid: 12191 + - type: Fixtures + fixtures: {} + - uid: 2491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 + rot: -1.5707963267948966 rad + pos: 10.5,30.5 parent: 4812 - - type: DeviceList - devices: - - 12192 - - 8691 - - uid: 12194 + - type: Fixtures + fixtures: {} + - uid: 3383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,1.5 + pos: -21.5,-8.5 parent: 4812 - - type: DeviceList - devices: - - 6494 - - 6495 - - 12195 - - 8156 - - 8157 - - 12188 - - 12189 - - 12197 - - 12196 - - uid: 12199 + - type: Fixtures + fixtures: {} + - uid: 3465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 + pos: 5.5,-6.5 parent: 4812 - - type: DeviceList - devices: - - 12200 - - 12196 - - 12197 - - uid: 12203 + - type: Fixtures + fixtures: {} + - uid: 4458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,13.5 + pos: 16.5,6.5 parent: 4812 - - type: DeviceList - devices: - - 12201 - - 8156 - - 8157 - - 7784 - - 8154 - - 8155 - - 12205 - - 12204 - - uid: 12207 + - type: Fixtures + fixtures: {} + - uid: 7383 components: - type: Transform - pos: -19.5,13.5 + pos: -10.5,-16.5 parent: 4812 - - type: DeviceList - devices: - - 12208 - - 12204 - - 12205 - - uid: 12210 + - type: Fixtures + fixtures: {} + - uid: 7446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,16.5 + pos: -19.5,-17.5 parent: 4812 - - type: DeviceList - devices: - - 12211 - - 12212 - - 7782 - - 7783 - - uid: 12217 + - type: Fixtures + fixtures: {} + - uid: 8245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,16.5 + pos: -19.5,29.5 parent: 4812 - - type: DeviceList - devices: - - 12216 - - 12212 - - uid: 12221 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGold + entities: + - uid: 10471 components: - type: Transform - pos: -16.5,21.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 8155 - - 8154 - - 2693 - - 2695 - - 12222 - - uid: 12224 + - uid: 11746 components: - type: Transform - pos: -0.5,21.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 2693 - - 2695 - - 2782 - - 2783 - - 12225 - - uid: 12229 + - uid: 11747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,25.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12230 - - 2231 - - 1928 - - uid: 12233 + - uid: 11748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,25.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12231 - - 2473 - - 2472 - - uid: 12235 + - uid: 11749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,29.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - - uid: 12236 + - uid: 11750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,29.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - - uid: 12238 + - uid: 11751 components: - type: Transform - pos: 7.5,23.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 1927 - - 2476 - - 963 - - 12239 - - uid: 12241 + - uid: 11752 components: - type: Transform - pos: 10.5,27.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12242 - - 1927 - - uid: 12244 + - uid: 11753 components: - type: Transform - pos: 10.5,21.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12243 - - 2787 - - 2786 - - 2476 - - 963 - - 2783 - - 2782 - - uid: 12246 + - uid: 11754 components: - type: Transform - pos: 17.5,16.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 2922 - - 2852 - - 2853 - - 12247 - - 3257 - - uid: 12250 + - uid: 11755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,5.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 4122 - - 4117 - - 12251 - - 2852 - - 2853 - - 2787 - - 2786 - - uid: 12253 + - uid: 11756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,18.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 3257 - - 12254 - - uid: 12273 + - uid: 11757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 4426 - - 4423 - - 12274 - - 4122 - - 4117 - - uid: 12276 + - uid: 11758 components: - type: Transform - pos: 20.5,-1.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12277 - - 4424 - - 4425 - - uid: 12280 + - uid: 11759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12279 - - 4425 - - 4424 - - uid: 12286 + - uid: 11760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-13.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12287 - - 4423 - - 4426 - - 6415 - - 6414 - - uid: 12290 + - uid: 11761 components: - type: Transform - pos: 3.5,-10.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 4645 - - 4644 - - 6500 - - 6499 - - 4646 - - 4647 - - 5792 - - 6414 - - 6415 - - 12288 - - uid: 12291 + - uid: 11762 components: - type: Transform - pos: -27.5,-10.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 6497 - - 6496 - - 12292 - - 6494 - - 6495 - - uid: 12294 + - uid: 11763 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 6497 - - 6496 - - 6500 - - 6499 - - 12295 - - uid: 12301 + - uid: 11764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 931 - - 932 - - 12300 - - 782 - - 783 - - 784 - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - uid: 12305 + - uid: 11765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - 12306 - - uid: 12310 + - uid: 11766 components: - type: Transform - pos: 6.5,1.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12309 - - 782 - - 783 - - 784 - - uid: 12312 + - uid: 11767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,13.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12313 - - 1940 - - 1939 - - 1938 - - uid: 12314 + - uid: 11768 components: - type: Transform - pos: -0.5,-20.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 5308 - - 4644 - - 4645 - - 4646 - - 4647 - - 5791 - - 5793 - - 12315 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - - 5028 - - 328 - - 3582 - - 2759 - - 3264 - - 6655 - - 4980 - - 7198 - - uid: 12317 + - uid: 11769 components: - type: Transform - pos: -9.5,-33.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12318 - - 5071 - - 5072 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - - uid: 12320 + - uid: 11770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-40.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 12321 - - 5072 - - 5071 - - uid: 12342 + - uid: 11771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-16.5 + pos: -57.41745,-9.4886875 parent: 4812 - - type: DeviceList - devices: - - 6585 - - 6584 - - 12343 - - uid: 12348 + - uid: 11772 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 +- proto: FloorTileItemShuttleWhite + entities: + - uid: 10961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 + pos: -35.581154,26.501883 parent: 4812 - - type: DeviceList - devices: - - 12347 - - 5791 - - 5792 - - uid: 12354 + - uid: 10962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 + pos: -35.581154,26.501883 parent: 4812 - - type: DeviceList - devices: - - 5600 - - 5599 - - 12355 -- proto: FireAxeCabinetFilled - entities: - - uid: 6784 + - uid: 10981 components: - type: Transform - pos: -40.5,6.5 + pos: -35.581154,26.501883 parent: 4812 -- proto: FireExtinguisher - entities: - - uid: 3677 + - uid: 12430 components: - type: Transform - pos: 3.3851929,50.52095 + pos: -35.581154,26.501883 parent: 4812 - - uid: 3975 + - uid: 12431 components: - type: Transform - pos: 3.6195679,50.3647 + pos: -35.581154,26.501883 parent: 4812 -- proto: Firelock - entities: - - uid: 1658 + - uid: 12432 components: - type: Transform - pos: 4.5,6.5 + pos: -35.581154,26.501883 parent: 4812 -- proto: FirelockEdge - entities: - - uid: 328 + - uid: 12433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-22.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 332 + - uid: 12434 components: - type: Transform - pos: -3.5,-8.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 361 + - uid: 12435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 1097 + - uid: 12436 components: - type: Transform - pos: -1.5,-8.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 1099 + - uid: 12437 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,11.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 1100 + - uid: 12438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,11.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 1932 + - uid: 12439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,11.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 2759 + - uid: 12440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 3264 + - uid: 12441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-21.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 3582 + - uid: 12442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-22.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 4980 + - uid: 12443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 4983 + - uid: 12444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 4999 + - uid: 12445 components: - type: Transform - pos: -2.5,-8.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 5000 + - uid: 12446 components: - type: Transform - pos: -1.5,13.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 5001 + - uid: 12447 components: - type: Transform - pos: -2.5,13.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 5002 + - uid: 12448 components: - type: Transform - pos: -3.5,13.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 5028 + - uid: 12449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-21.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 6655 + - uid: 12450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 6667 + - uid: 12451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-10.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 6684 + - uid: 12452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 + pos: -35.581154,26.501883 parent: 4812 - - uid: 7191 + - uid: 12453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: -35.581154,26.517508 parent: 4812 - - uid: 7198 + - uid: 12454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 + pos: -35.581154,26.517508 parent: 4812 - - uid: 7287 + - uid: 12455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 + pos: -35.581154,26.517508 parent: 4812 - - uid: 7388 + - uid: 12456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 + pos: -35.581154,26.517508 parent: 4812 - - uid: 7391 +- proto: FlyAmanitaSeeds + entities: + - uid: 9620 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-10.5 + pos: -43.497864,-29.674786 parent: 4812 - - uid: 8591 +- proto: FoodBanana + entities: + - uid: 1708 components: - type: Transform - pos: -6.5,-32.5 + pos: -10.643926,0.9448434 parent: 4812 - - uid: 8711 + - uid: 1709 components: - type: Transform - pos: -5.5,-32.5 + pos: -10.425176,0.9292184 parent: 4812 - - uid: 8758 + - uid: 1710 components: - type: Transform - pos: 1.5,-32.5 + pos: -10.253301,0.8979684 parent: 4812 - - uid: 8770 +- proto: FoodBowlBigTrash + entities: + - uid: 11242 components: - type: Transform - pos: 0.5,-32.5 + pos: 10.485162,-37.493214 parent: 4812 - - uid: 8778 + - uid: 11243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-34.5 + pos: 10.469537,-36.29009 parent: 4812 - - uid: 8779 +- proto: FoodBoxDonut + entities: + - uid: 8367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-34.5 + pos: -26.5,10.5 parent: 4812 - - uid: 8783 +- proto: FoodBreadBaguette + entities: + - uid: 1716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-34.5 + pos: -10.518926,-0.4614067 parent: 4812 - - uid: 8803 +- proto: FoodBreadMoldySlice + entities: + - uid: 7042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-34.5 + pos: -18.50604,-35.186176 parent: 4812 -- proto: FirelockElectronics +- proto: FoodBurgerMime entities: - - uid: 10718 + - uid: 1721 components: - type: Transform - pos: -30.464754,-7.2781386 + pos: -10.581426,-0.9614067 parent: 4812 -- proto: FirelockGlass +- proto: FoodBurgerRobot entities: - - uid: 349 + - uid: 3675 components: - type: Transform - pos: 2.5,4.5 + pos: 5.460861,44.505184 parent: 4812 - - uid: 350 + - uid: 11960 components: - type: Transform - pos: 1.5,9.5 + pos: -14.514471,15.4569435 parent: 4812 - - uid: 351 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 10997 components: - type: Transform - pos: 3.5,4.5 + pos: 8.455962,31.413256 parent: 4812 - - uid: 352 +- proto: FoodCartCold + entities: + - uid: 1572 components: - type: Transform - pos: 1.5,8.5 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 parent: 4812 - - uid: 353 +- proto: FoodCartHot + entities: + - uid: 3952 components: - type: Transform - pos: 1.5,7.5 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 parent: 4812 - - uid: 354 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 1643 components: - type: Transform - pos: 1.5,6.5 + pos: 7.2863007,0.7877493 parent: 4812 - - uid: 782 + - uid: 1644 components: - type: Transform - pos: 1.5,-2.5 + pos: 7.4581757,0.6939993 parent: 4812 - - uid: 783 +- proto: FoodCondimentPacketPepper + entities: + - uid: 1773 components: - type: Transform - pos: 1.5,-1.5 + pos: -2.6753898,2.5728736 parent: 4812 - - uid: 784 + - type: RefillableSolution + solution: food + - uid: 1779 components: - type: Transform - pos: 1.5,-0.5 + pos: -2.3370848,-3.5807357 parent: 4812 - - uid: 930 + - type: RefillableSolution + solution: food +- proto: FoodCondimentPacketSalt + entities: + - uid: 1772 components: - type: Transform - pos: -6.5,-7.5 + pos: -2.3003898,9.296319 parent: 4812 - - uid: 931 + - type: RefillableSolution + solution: food +- proto: FoodMeatCrab + entities: + - uid: 12371 components: + - type: MetaData + desc: name's fokkin JOE RIPPA YA DOG + name: joe rippa - type: Transform - pos: -6.5,-6.5 + pos: 4.56281,-34.161045 parent: 4812 - - uid: 932 +- proto: FoodPieBananaCream + entities: + - uid: 1711 components: - type: Transform - pos: -6.5,-5.5 + pos: -10.659551,0.5229684 parent: 4812 - - uid: 963 + - uid: 1712 components: - type: Transform - pos: 5.5,21.5 + pos: -10.409551,0.5073434 parent: 4812 - - uid: 1927 +- proto: FoodPizzaSassysageSlice + entities: + - uid: 10765 components: - type: Transform - pos: 9.5,23.5 + pos: -43.00348,-7.268787 parent: 4812 - - uid: 1928 +- proto: FoodPlateTrash + entities: + - uid: 11241 components: - type: Transform - pos: -8.5,27.5 + pos: 9.469537,-39.368214 parent: 4812 - - uid: 1938 +- proto: FoodPoppy + entities: + - uid: 2716 components: - type: Transform - pos: -3.5,15.5 + pos: -5.180887,24.379204 parent: 4812 - - uid: 1939 + - uid: 12475 components: - type: Transform - pos: -2.5,15.5 + pos: -24.401733,-34.40146 parent: 4812 - - uid: 1940 +- proto: FoodSnackCheesie + entities: + - uid: 1775 components: - type: Transform - pos: -1.5,15.5 + pos: -2.4566398,1.6822487 parent: 4812 - - uid: 1941 +- proto: FoodSnackChips + entities: + - uid: 1776 components: - type: Transform - pos: 9.5,5.5 + pos: -2.4620848,-1.5182357 parent: 4812 - - uid: 1942 + - uid: 6410 components: - type: Transform - pos: -12.5,9.5 + pos: -4.4655905,-19.449863 parent: 4812 - - uid: 1943 +- proto: FoodTartGapple + entities: + - uid: 2735 components: - type: Transform - pos: -16.5,-3.5 + pos: 0.5300851,22.660454 parent: 4812 - - uid: 2231 +- proto: Fork + entities: + - uid: 1769 components: - type: Transform - pos: -7.5,27.5 + pos: -2.5347648,9.4457655 parent: 4812 - - uid: 2472 + - uid: 1778 components: - type: Transform - pos: 3.5,27.5 + pos: -2.6495848,-3.5494857 parent: 4812 - - uid: 2473 +- proto: GasAnalyzer + entities: + - uid: 6318 components: - type: Transform - pos: 2.5,27.5 + pos: 24.527384,-25.4941 parent: 4812 - - uid: 2476 + - uid: 6322 components: - type: Transform - pos: 9.5,21.5 + pos: 24.418009,-25.447226 parent: 4812 - - uid: 2693 +- proto: GasFilter + entities: + - uid: 3737 components: - type: Transform - pos: -9.5,19.5 + rot: 1.5707963267948966 rad + pos: -13.5,-27.5 parent: 4812 - - uid: 2695 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9230 components: - type: Transform - pos: -9.5,20.5 + rot: -1.5707963267948966 rad + pos: -52.5,12.5 parent: 4812 - - uid: 2782 + - type: GasFilter + filteredGas: Tritium + - uid: 9239 components: - type: Transform - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: -44.5,12.5 parent: 4812 - - uid: 2783 + - type: GasFilter + filteredGas: Oxygen + - uid: 9242 components: - type: Transform - pos: 4.5,20.5 + rot: -1.5707963267948966 rad + pos: -48.5,12.5 parent: 4812 - - uid: 2786 + - type: GasFilter + filteredGas: WaterVapor + - uid: 9256 components: - type: Transform - pos: 11.5,16.5 + rot: -1.5707963267948966 rad + pos: -46.5,12.5 parent: 4812 - - uid: 2787 + - type: GasFilter + filteredGas: CarbonDioxide + - uid: 9277 components: - type: Transform - pos: 12.5,16.5 + rot: -1.5707963267948966 rad + pos: -50.5,12.5 parent: 4812 - - uid: 2852 + - type: GasFilter + filteredGas: Plasma + - uid: 9514 components: - type: Transform - pos: 13.5,14.5 + rot: -1.5707963267948966 rad + pos: -42.5,12.5 parent: 4812 - - uid: 2853 + - type: GasFilter + filteredGas: Nitrogen + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 9469 components: - type: Transform - pos: 13.5,15.5 + rot: 3.141592653589793 rad + pos: -46.5,17.5 parent: 4812 - - uid: 2922 +- proto: GasMinerNitrogenStation + entities: + - uid: 9161 components: - type: Transform - pos: 21.5,15.5 + rot: 3.141592653589793 rad + pos: -42.5,17.5 parent: 4812 - - uid: 3257 +- proto: GasMinerOxygenStation + entities: + - uid: 9473 components: - type: Transform - pos: 15.5,16.5 + rot: 3.141592653589793 rad + pos: -44.5,17.5 parent: 4812 - - uid: 3361 +- proto: GasMinerWaterVapor + entities: + - uid: 9140 components: - type: Transform - pos: 12.5,25.5 + rot: 3.141592653589793 rad + pos: -48.5,17.5 parent: 4812 - - uid: 4117 +- proto: GasMixer + entities: + - uid: 13517 components: - type: Transform - pos: 12.5,0.5 + pos: -47.5,5.5 parent: 4812 - - uid: 4122 +- proto: GasMixerFlipped + entities: + - uid: 9515 components: - type: Transform - pos: 11.5,0.5 + rot: -1.5707963267948966 rad + pos: -43.5,10.5 parent: 4812 - - uid: 4423 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11908 components: - type: Transform - pos: 12.5,-10.5 + rot: 1.5707963267948966 rad + pos: -57.5,1.5 parent: 4812 - - uid: 4424 +- proto: GasOutletInjector + entities: + - uid: 4002 components: - type: Transform - pos: 23.5,-3.5 + rot: 1.5707963267948966 rad + pos: 23.5,-30.5 parent: 4812 - - uid: 4425 + - uid: 9141 components: - type: Transform - pos: 23.5,-2.5 + pos: -52.5,16.5 parent: 4812 - - uid: 4426 + - uid: 9142 components: - type: Transform - pos: 11.5,-10.5 + pos: -50.5,16.5 parent: 4812 - - uid: 4435 + - uid: 9143 components: - type: Transform - pos: 28.5,1.5 + pos: -48.5,16.5 parent: 4812 - - uid: 4436 + - uid: 9144 components: - type: Transform - pos: 28.5,-6.5 + pos: -46.5,16.5 parent: 4812 - - uid: 4525 + - uid: 9158 components: - type: Transform - pos: 18.5,5.5 + pos: -44.5,16.5 parent: 4812 - - uid: 4543 + - uid: 9160 components: - type: Transform - pos: 16.5,-7.5 + pos: -42.5,16.5 parent: 4812 - - uid: 4544 + - uid: 9489 components: - type: Transform - pos: 20.5,-7.5 + rot: 1.5707963267948966 rad + pos: -58.5,11.5 parent: 4812 - - uid: 4644 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13519 components: - type: Transform - pos: -5.5,-14.5 + rot: 1.5707963267948966 rad + pos: -59.5,1.5 parent: 4812 - - uid: 4645 +- proto: GasPassiveGate + entities: + - uid: 5801 components: - type: Transform - pos: -6.5,-14.5 + rot: 3.141592653589793 rad + pos: 12.5,-19.5 parent: 4812 - - uid: 4646 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8979 components: - type: Transform - pos: 0.5,-14.5 + rot: -1.5707963267948966 rad + pos: -31.5,-33.5 parent: 4812 - - uid: 4647 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 862 components: - type: Transform - pos: 1.5,-14.5 + rot: 3.141592653589793 rad + pos: 6.5,-7.5 parent: 4812 - - uid: 4920 + - uid: 863 components: - type: Transform - pos: -12.5,-24.5 + rot: 3.141592653589793 rad + pos: 7.5,-7.5 parent: 4812 - - uid: 5039 + - uid: 3817 components: - type: Transform - pos: -15.5,-19.5 + rot: -1.5707963267948966 rad + pos: 17.5,46.5 parent: 4812 - - uid: 5045 + - uid: 5596 components: - type: Transform - pos: -19.5,-19.5 + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 parent: 4812 - - uid: 5047 + - uid: 9005 components: - type: Transform - pos: -13.5,-22.5 + rot: 3.141592653589793 rad + pos: -40.5,-37.5 parent: 4812 - - uid: 5071 + - uid: 9098 components: - type: Transform - pos: -11.5,-36.5 + rot: -1.5707963267948966 rad + pos: -44.5,18.5 parent: 4812 - - type: DeviceNetwork - deviceLists: - - 9593 - - uid: 5072 + - uid: 9099 components: - type: Transform - pos: -10.5,-36.5 + rot: -1.5707963267948966 rad + pos: -46.5,18.5 parent: 4812 - - type: DeviceNetwork - deviceLists: - - 9593 - - uid: 5308 + - uid: 9100 components: - type: Transform - pos: -4.5,-27.5 + rot: -1.5707963267948966 rad + pos: -48.5,18.5 parent: 4812 - - uid: 5599 + - uid: 9101 components: - type: Transform - pos: 9.5,-22.5 + rot: -1.5707963267948966 rad + pos: -50.5,18.5 parent: 4812 - - uid: 5600 + - uid: 9102 components: - type: Transform - pos: 8.5,-22.5 + rot: -1.5707963267948966 rad + pos: -52.5,18.5 parent: 4812 - - uid: 5791 + - uid: 9173 components: - type: Transform - pos: 2.5,-15.5 + rot: -1.5707963267948966 rad + pos: -42.5,18.5 parent: 4812 - - uid: 5792 + - uid: 9329 components: - type: Transform - pos: 4.5,-13.5 + pos: -57.5,7.5 parent: 4812 - - uid: 5793 + - uid: 9901 components: - type: Transform - pos: 2.5,-23.5 + pos: -54.5,15.5 parent: 4812 - - uid: 6414 + - uid: 12339 components: - type: Transform - pos: 6.5,-12.5 + rot: 1.5707963267948966 rad + pos: -59.5,2.5 parent: 4812 - - uid: 6415 + - uid: 12775 components: - type: Transform - pos: 6.5,-11.5 + pos: -58.5,9.5 parent: 4812 - - uid: 6494 +- proto: GasPipeBend + entities: + - uid: 560 components: - type: Transform - pos: -25.5,-10.5 + rot: 1.5707963267948966 rad + pos: -25.5,7.5 parent: 4812 - - uid: 6495 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 561 components: - type: Transform - pos: -26.5,-10.5 + rot: -1.5707963267948966 rad + pos: -22.5,7.5 parent: 4812 - - uid: 6496 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 563 components: - type: Transform - pos: -21.5,-11.5 + pos: 11.5,19.5 parent: 4812 - - uid: 6497 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 705 components: - type: Transform - pos: -21.5,-12.5 + rot: 1.5707963267948966 rad + pos: -26.5,8.5 parent: 4812 - - uid: 6499 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 708 components: - type: Transform - pos: -11.5,-11.5 + rot: -1.5707963267948966 rad + pos: 12.5,-12.5 parent: 4812 - - uid: 6500 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 709 components: - type: Transform - pos: -11.5,-12.5 + pos: 12.5,20.5 parent: 4812 - - uid: 6553 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 831 components: - type: Transform - pos: -13.5,-21.5 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 parent: 4812 - - uid: 6584 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 833 components: - type: Transform - pos: -9.5,-13.5 + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 parent: 4812 - - uid: 6585 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 834 components: - type: Transform - pos: -11.5,-19.5 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 parent: 4812 - - uid: 6621 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 850 components: - type: Transform - pos: -16.5,-24.5 + rot: 3.141592653589793 rad + pos: -16.5,-9.5 parent: 4812 - - uid: 6629 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 856 components: - type: Transform - pos: -19.5,-13.5 + pos: -16.5,-8.5 parent: 4812 - - uid: 6676 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 861 components: - type: Transform - pos: -7.5,31.5 + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 parent: 4812 - - uid: 6764 + - uid: 876 components: - type: Transform - pos: -8.5,31.5 + pos: -8.5,4.5 parent: 4812 - - uid: 7343 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1508 components: - type: Transform - pos: 1.5,29.5 + pos: -21.5,-4.5 parent: 4812 - - uid: 7344 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1683 components: - type: Transform - pos: 2.5,31.5 + rot: -1.5707963267948966 rad + pos: -21.5,2.5 parent: 4812 - - uid: 7346 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1684 components: - type: Transform - pos: 3.5,31.5 + pos: -21.5,1.5 parent: 4812 - - uid: 7347 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1787 components: - type: Transform - pos: -6.5,29.5 + rot: 1.5707963267948966 rad + pos: 20.5,27.5 parent: 4812 - - uid: 7782 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2008 components: - type: Transform - pos: -26.5,12.5 + rot: 1.5707963267948966 rad + pos: -8.5,33.5 parent: 4812 - - uid: 7783 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2009 components: - type: Transform - pos: -25.5,12.5 + pos: 3.5,33.5 parent: 4812 - - uid: 7784 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2054 components: - type: Transform - pos: -24.5,11.5 + rot: 1.5707963267948966 rad + pos: -7.5,32.5 parent: 4812 - - uid: 8154 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2055 components: - type: Transform - pos: -23.5,15.5 + pos: 2.5,32.5 parent: 4812 - - uid: 8155 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2849 components: - type: Transform - pos: -22.5,15.5 + rot: -1.5707963267948966 rad + pos: 20.5,24.5 parent: 4812 - - uid: 8156 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2850 components: - type: Transform - pos: -26.5,6.5 + rot: 1.5707963267948966 rad + pos: 20.5,25.5 parent: 4812 - - uid: 8157 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2861 components: - type: Transform - pos: -25.5,6.5 + rot: -1.5707963267948966 rad + pos: 20.5,26.5 parent: 4812 - - uid: 8690 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3018 components: - type: Transform - pos: -30.5,0.5 + rot: 1.5707963267948966 rad + pos: 14.5,26.5 parent: 4812 - - uid: 8691 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3706 components: - type: Transform - pos: -30.5,-4.5 + rot: -1.5707963267948966 rad + pos: -33.5,-1.5 parent: 4812 - - uid: 10581 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3803 components: - type: Transform - pos: -20.5,-30.5 + rot: 1.5707963267948966 rad + pos: 7.5,46.5 parent: 4812 - - uid: 10591 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3808 components: - type: Transform - pos: -39.5,-31.5 + rot: 1.5707963267948966 rad + pos: 11.5,50.5 parent: 4812 - - uid: 10592 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3809 components: - type: Transform - pos: -37.5,-20.5 + rot: -1.5707963267948966 rad + pos: 12.5,50.5 parent: 4812 - - uid: 10616 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3836 components: - type: Transform - pos: -40.5,-22.5 + pos: 9.5,50.5 parent: 4812 - - uid: 10617 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3837 components: - type: Transform - pos: -41.5,-22.5 + rot: 3.141592653589793 rad + pos: 8.5,50.5 parent: 4812 - - uid: 10752 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3840 components: - type: Transform - pos: -37.5,1.5 + rot: 1.5707963267948966 rad + pos: 14.5,45.5 parent: 4812 - - uid: 10753 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4188 components: - type: Transform - pos: -37.5,2.5 + rot: -1.5707963267948966 rad + pos: 61.5,-3.5 parent: 4812 - - uid: 10754 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4227 components: - type: Transform - pos: -37.5,3.5 + pos: 25.5,4.5 parent: 4812 - - uid: 10755 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4892 components: - type: Transform - pos: -37.5,4.5 + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 parent: 4812 - - uid: 10756 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4893 components: - type: Transform - pos: -37.5,5.5 + rot: -1.5707963267948966 rad + pos: -20.5,-22.5 parent: 4812 - - uid: 10901 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4940 components: - type: Transform - pos: -33.5,-12.5 + rot: -1.5707963267948966 rad + pos: -19.5,-23.5 parent: 4812 - - uid: 10902 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5129 components: - type: Transform - pos: -33.5,-11.5 + rot: -1.5707963267948966 rad + pos: 1.5,-35.5 parent: 4812 - - uid: 11259 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5178 components: - type: Transform - pos: 5.5,-30.5 + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 parent: 4812 - - uid: 11364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5725 components: - type: Transform - pos: 23.5,-33.5 + pos: 21.5,-21.5 parent: 4812 - - uid: 11365 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5732 components: - type: Transform - pos: 23.5,-32.5 + rot: -1.5707963267948966 rad + pos: 27.5,-22.5 parent: 4812 - - uid: 11793 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5736 components: - type: Transform - pos: 26.5,-29.5 + rot: 3.141592653589793 rad + pos: 22.5,-25.5 parent: 4812 - - uid: 12188 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5737 components: - type: Transform - pos: -28.5,-2.5 + rot: 3.141592653589793 rad + pos: 21.5,-26.5 parent: 4812 - - uid: 12189 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5804 components: - type: Transform - pos: -28.5,-1.5 + pos: 14.5,-17.5 parent: 4812 - - uid: 12196 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6624 components: - type: Transform - pos: -24.5,1.5 + rot: 1.5707963267948966 rad + pos: -26.5,-22.5 parent: 4812 - - uid: 12197 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6628 components: - type: Transform - pos: -24.5,2.5 + rot: 1.5707963267948966 rad + pos: -24.5,-23.5 parent: 4812 - - uid: 12204 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6651 components: - type: Transform - pos: -21.5,9.5 + rot: 3.141592653589793 rad + pos: -15.5,-26.5 parent: 4812 - - uid: 12205 + - uid: 6783 components: - type: Transform - pos: -21.5,10.5 + rot: -1.5707963267948966 rad + pos: -13.5,-28.5 parent: 4812 - - uid: 12212 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6829 components: - type: Transform - pos: -32.5,15.5 + rot: -1.5707963267948966 rad + pos: -18.5,-36.5 parent: 4812 -- proto: Fireplace - entities: - - uid: 2581 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7272 components: - type: Transform - pos: -13.5,29.5 + rot: 3.141592653589793 rad + pos: -17.5,-28.5 parent: 4812 -- proto: Flash - entities: - - uid: 2679 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7285 components: - type: Transform - pos: -1.4420605,35.49948 + rot: 1.5707963267948966 rad + pos: -30.5,-30.5 parent: 4812 - - uid: 3964 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7847 components: - type: Transform - pos: 11.496426,48.542255 + rot: 1.5707963267948966 rad + pos: -29.5,24.5 parent: 4812 - - uid: 6247 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8557 components: - type: Transform - pos: 16.572206,-27.496618 + rot: -1.5707963267948966 rad + pos: -18.5,10.5 parent: 4812 - - uid: 8451 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8561 components: - type: Transform - pos: -30.484182,10.599279 + pos: -18.5,9.5 parent: 4812 -- proto: FlashlightLantern - entities: - - uid: 6364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8953 components: - type: Transform - pos: -42.568504,-1.8948193 + pos: -10.5,-30.5 parent: 4812 - - uid: 8597 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8970 components: - type: Transform - pos: -19.531754,10.050615 + rot: -1.5707963267948966 rad + pos: -30.5,-33.5 parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8598 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8987 components: - type: Transform - pos: -18.563004,10.206865 + rot: 1.5707963267948966 rad + pos: -39.5,-33.5 parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11673 + - uid: 9004 components: - type: Transform - pos: 25.480742,-40.49962 + rot: 1.5707963267948966 rad + pos: -40.5,-35.5 parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 12487 + - uid: 9038 components: - type: Transform - pos: -42.55288,-2.0198193 + pos: -33.5,-36.5 parent: 4812 - - uid: 12488 + - uid: 9106 components: - type: Transform - pos: -32.540565,-7.207951 + rot: 1.5707963267948966 rad + pos: -45.5,18.5 parent: 4812 - - uid: 12489 + - uid: 9107 components: - type: Transform - pos: -32.540565,-7.411076 + rot: 1.5707963267948966 rad + pos: -47.5,18.5 parent: 4812 - - uid: 12490 + - uid: 9108 components: - type: Transform - pos: -19.610077,12.664663 + rot: 1.5707963267948966 rad + pos: -49.5,18.5 parent: 4812 - - uid: 12491 + - uid: 9109 components: - type: Transform - pos: -19.516327,12.555288 + rot: 1.5707963267948966 rad + pos: -51.5,18.5 parent: 4812 -- proto: FlashlightSeclite - entities: - - uid: 8450 + - uid: 9110 components: - type: Transform - pos: -28.562307,10.614904 + rot: 1.5707963267948966 rad + pos: -53.5,18.5 parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: Floodlight - entities: - - uid: 11744 + - uid: 9169 components: - type: Transform - pos: 19.532274,-41.53536 + rot: 1.5707963267948966 rad + pos: -43.5,18.5 parent: 4812 - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: FloorDrain - entities: - - uid: 2489 + - uid: 9186 components: - type: Transform - pos: -15.5,27.5 + pos: -41.5,12.5 parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 2491 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9218 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,30.5 + pos: -50.5,-1.5 parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 3383 + - uid: 9220 components: - type: Transform - pos: -21.5,-8.5 + pos: -42.5,10.5 parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 3465 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9300 components: - type: Transform - pos: 5.5,-6.5 + rot: 3.141592653589793 rad + pos: -55.5,-1.5 parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 4458 + - uid: 9354 components: - type: Transform - pos: 16.5,6.5 + pos: 24.5,15.5 parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 7383 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9453 components: - type: Transform - pos: -10.5,-16.5 + rot: 1.5707963267948966 rad + pos: -48.5,0.5 parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 7446 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9535 components: - type: Transform - pos: -19.5,-17.5 + rot: 3.141592653589793 rad + pos: -58.5,4.5 parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 8245 + - uid: 9718 components: - type: Transform - pos: -19.5,29.5 + rot: 3.141592653589793 rad + pos: -42.5,1.5 parent: 4812 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemGold - entities: - - uid: 10471 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9907 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: 3.141592653589793 rad + pos: -41.5,2.5 parent: 4812 - - uid: 11746 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11020 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: -1.5707963267948966 rad + pos: -30.5,1.5 parent: 4812 - - uid: 11747 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11617 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -30.5,-0.5 parent: 4812 - - uid: 11748 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11733 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: 3.141592653589793 rad + pos: -57.5,5.5 parent: 4812 - - uid: 11749 + - uid: 11972 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: -1.5707963267948966 rad + pos: -36.5,-7.5 parent: 4812 - - uid: 11750 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11983 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 parent: 4812 - - uid: 11751 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12630 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: 3.141592653589793 rad + pos: -54.5,12.5 parent: 4812 - - uid: 11752 + - uid: 12856 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 parent: 4812 - - uid: 11753 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12857 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: 1.5707963267948966 rad + pos: 29.5,-1.5 parent: 4812 - - uid: 11754 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13083 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: 59.5,-1.5 parent: 4812 - - uid: 11755 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13365 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: 3.141592653589793 rad + pos: -45.5,10.5 parent: 4812 - - uid: 11756 + - uid: 13443 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: -1.5707963267948966 rad + pos: -57.5,2.5 parent: 4812 - - uid: 11757 + - uid: 13462 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -56.5,1.5 parent: 4812 - - uid: 11758 + - uid: 13483 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: 3.141592653589793 rad + pos: -48.5,5.5 parent: 4812 - - uid: 11759 + - uid: 13507 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -54.5,1.5 parent: 4812 - - uid: 11760 + - uid: 13508 components: - type: Transform - pos: -57.41745,-9.4886875 + rot: 1.5707963267948966 rad + pos: -55.5,2.5 parent: 4812 - - uid: 11761 + - uid: 13539 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -51.5,5.5 parent: 4812 - - uid: 11762 +- proto: GasPipeFourway + entities: + - uid: 402 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -3.5,-7.5 parent: 4812 - - uid: 11763 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 428 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -3.5,20.5 parent: 4812 - - uid: 11764 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 431 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -3.5,-12.5 parent: 4812 - - uid: 11765 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 445 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -5.5,-21.5 parent: 4812 - - uid: 11766 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 566 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -1.5,19.5 parent: 4812 - - uid: 11767 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 583 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -1.5,-11.5 parent: 4812 - - uid: 11768 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 664 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: -25.5,-4.5 parent: 4812 - - uid: 11769 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2945 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: 19.5,14.5 parent: 4812 - - uid: 11770 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2960 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: 15.5,15.5 parent: 4812 - - uid: 11771 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2978 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: 15.5,26.5 parent: 4812 - - uid: 11772 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3804 components: - type: Transform - pos: -57.41745,-9.4886875 + pos: 11.5,46.5 parent: 4812 -- proto: FloorTileItemShuttleWhite - entities: - - uid: 10961 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5086 components: - type: Transform - pos: -35.581154,26.501883 + pos: 0.5,-21.5 parent: 4812 - - uid: 10962 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5111 components: - type: Transform - pos: -35.581154,26.501883 + pos: -6.5,-22.5 parent: 4812 - - uid: 10981 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5189 components: - type: Transform - pos: -35.581154,26.501883 + pos: -10.5,-35.5 parent: 4812 - - uid: 12430 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5565 components: - type: Transform - pos: -35.581154,26.501883 + pos: 9.5,-20.5 parent: 4812 - - uid: 12431 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7276 components: - type: Transform - pos: -35.581154,26.501883 + pos: -16.5,-22.5 parent: 4812 - - uid: 12432 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8764 components: - type: Transform - pos: -35.581154,26.501883 + pos: -30.5,-2.5 parent: 4812 - - uid: 12433 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9572 components: - type: Transform - pos: -35.581154,26.501883 + pos: -33.5,-0.5 parent: 4812 - - uid: 12434 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12010 components: - type: Transform - pos: -35.581154,26.501883 + pos: -49.5,-12.5 parent: 4812 - - uid: 12435 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12011 components: - type: Transform - pos: -35.581154,26.501883 + pos: -48.5,-11.5 parent: 4812 - - uid: 12436 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 251 components: - type: Transform - pos: -35.581154,26.501883 + rot: 1.5707963267948966 rad + pos: -25.5,2.5 parent: 4812 - - uid: 12437 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 252 components: - type: Transform - pos: -35.581154,26.501883 + rot: 1.5707963267948966 rad + pos: -22.5,1.5 parent: 4812 - - uid: 12438 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 253 components: - type: Transform - pos: -35.581154,26.501883 + rot: 1.5707963267948966 rad + pos: -23.5,1.5 parent: 4812 - - uid: 12439 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 254 components: - type: Transform - pos: -35.581154,26.501883 + rot: 1.5707963267948966 rad + pos: -24.5,1.5 parent: 4812 - - uid: 12440 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 368 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,18.5 parent: 4812 - - uid: 12441 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 369 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,17.5 parent: 4812 - - uid: 12442 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 370 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,16.5 parent: 4812 - - uid: 12443 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 371 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,15.5 parent: 4812 - - uid: 12444 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 372 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,14.5 parent: 4812 - - uid: 12445 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 374 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,12.5 parent: 4812 - - uid: 12446 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 375 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,11.5 parent: 4812 - - uid: 12447 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 377 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,9.5 parent: 4812 - - uid: 12448 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 378 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,8.5 parent: 4812 - - uid: 12449 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 379 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,7.5 parent: 4812 - - uid: 12450 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 380 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,6.5 parent: 4812 - - uid: 12451 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 381 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,5.5 parent: 4812 - - uid: 12452 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 382 components: - type: Transform - pos: -35.581154,26.501883 + pos: -3.5,4.5 parent: 4812 - - uid: 12453 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 383 components: - type: Transform - pos: -35.581154,26.517508 + pos: -3.5,3.5 parent: 4812 - - uid: 12454 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 385 components: - type: Transform - pos: -35.581154,26.517508 + pos: -3.5,1.5 parent: 4812 - - uid: 12455 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 386 components: - type: Transform - pos: -35.581154,26.517508 + pos: -3.5,0.5 parent: 4812 - - uid: 12456 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 388 components: - type: Transform - pos: -35.581154,26.517508 + pos: -3.5,-1.5 parent: 4812 -- proto: FlyAmanitaSeeds - entities: - - uid: 9620 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 389 components: - type: Transform - pos: -43.497864,-29.674786 + pos: -3.5,-2.5 parent: 4812 -- proto: FoodBanana - entities: - - uid: 1708 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 390 components: - type: Transform - pos: -10.643926,0.9448434 + pos: -3.5,-3.5 parent: 4812 - - uid: 1709 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 391 components: - type: Transform - pos: -10.425176,0.9292184 + pos: -3.5,-4.5 parent: 4812 - - uid: 1710 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 392 components: - type: Transform - pos: -10.253301,0.8979684 + pos: -3.5,-5.5 parent: 4812 -- proto: FoodBowlBigTrash - entities: - - uid: 11242 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 393 components: - type: Transform - pos: 10.485162,-37.493214 + pos: -3.5,-6.5 parent: 4812 - - uid: 11243 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 395 components: - type: Transform - pos: 10.469537,-36.29009 + pos: -3.5,-8.5 parent: 4812 -- proto: FoodBoxDonut - entities: - - uid: 8367 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 396 components: - type: Transform - pos: -26.5,10.5 + pos: -3.5,-9.5 parent: 4812 -- proto: FoodBreadBaguette - entities: - - uid: 1716 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 397 components: - type: Transform - pos: -10.518926,-0.4614067 + pos: -3.5,-10.5 parent: 4812 -- proto: FoodBreadMoldySlice - entities: - - uid: 7042 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 398 components: - type: Transform - pos: -18.50604,-35.186176 + pos: -1.5,-10.5 parent: 4812 -- proto: FoodBurgerMime - entities: - - uid: 1721 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 399 components: - type: Transform - pos: -10.581426,-0.9614067 + pos: -1.5,-9.5 parent: 4812 -- proto: FoodBurgerRobot - entities: - - uid: 3675 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 400 components: - type: Transform - pos: 5.460861,44.505184 + pos: -1.5,-8.5 parent: 4812 - - uid: 11960 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 401 components: - type: Transform - pos: -14.514471,15.4569435 + pos: -1.5,-7.5 parent: 4812 -- proto: FoodCakeSuppermatterSlice - entities: - - uid: 10997 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 403 components: - type: Transform - pos: 8.455962,31.413256 + pos: -1.5,-5.5 parent: 4812 -- proto: FoodCartCold - entities: - - uid: 1572 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 + pos: -1.5,-4.5 parent: 4812 -- proto: FoodCartHot - entities: - - uid: 3952 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: -1.5,-3.5 parent: 4812 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 1643 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 406 components: - type: Transform - pos: 7.2863007,0.7877493 + pos: -1.5,-2.5 parent: 4812 - - uid: 1644 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 408 components: - type: Transform - pos: 7.4581757,0.6939993 + pos: -1.5,-0.5 parent: 4812 -- proto: FoodCondimentPacketPepper - entities: - - uid: 1773 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 409 components: - type: Transform - pos: -2.6753898,2.5728736 + pos: -1.5,0.5 parent: 4812 - - type: RefillableSolution - solution: food - - uid: 1779 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 410 components: - type: Transform - pos: -2.3370848,-3.5807357 + pos: -1.5,1.5 parent: 4812 - - type: RefillableSolution - solution: food -- proto: FoodCondimentPacketSalt - entities: - - uid: 1772 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 411 components: - type: Transform - pos: -2.3003898,9.296319 + pos: -1.5,2.5 parent: 4812 - - type: RefillableSolution - solution: food -- proto: FoodMeatCrab - entities: - - uid: 12371 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 412 components: - - type: MetaData - desc: name's fokkin JOE RIPPA YA DOG - name: joe rippa - type: Transform - pos: 4.56281,-34.161045 + pos: -1.5,3.5 parent: 4812 -- proto: FoodPieBananaCream - entities: - - uid: 1711 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 414 components: - type: Transform - pos: -10.659551,0.5229684 + pos: -1.5,5.5 parent: 4812 - - uid: 1712 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 415 components: - type: Transform - pos: -10.409551,0.5073434 + pos: -1.5,6.5 parent: 4812 -- proto: FoodPizzaSassysageSlice - entities: - - uid: 10765 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 416 components: - type: Transform - pos: -43.00348,-7.268787 + pos: -1.5,7.5 parent: 4812 -- proto: FoodPlateTrash - entities: - - uid: 11241 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 419 components: - type: Transform - pos: 9.469537,-39.368214 + pos: -1.5,10.5 parent: 4812 -- proto: FoodPoppy - entities: - - uid: 2716 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 420 components: - type: Transform - pos: -5.180887,24.379204 + pos: -1.5,11.5 parent: 4812 - - uid: 12475 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 421 components: - type: Transform - pos: -24.401733,-34.40146 + pos: -1.5,12.5 parent: 4812 -- proto: FoodSnackCheesie - entities: - - uid: 1775 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 422 components: - type: Transform - pos: -2.4566398,1.6822487 + pos: -1.5,13.5 parent: 4812 -- proto: FoodSnackChips - entities: - - uid: 1776 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 424 components: - type: Transform - pos: -2.4620848,-1.5182357 + pos: -1.5,15.5 parent: 4812 - - uid: 6410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 425 components: - type: Transform - pos: -4.4655905,-19.449863 + pos: -1.5,16.5 parent: 4812 -- proto: FoodTartGapple - entities: - - uid: 2735 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 426 components: - type: Transform - pos: 0.5300851,22.660454 + pos: -1.5,17.5 parent: 4812 -- proto: Fork - entities: - - uid: 1769 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 427 components: - type: Transform - pos: -2.5347648,9.4457655 + pos: -1.5,18.5 parent: 4812 - - uid: 1778 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 430 components: - type: Transform - pos: -2.6495848,-3.5494857 + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 parent: 4812 -- proto: GasAnalyzer - entities: - - uid: 6318 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 432 components: - type: Transform - pos: 24.527384,-25.4941 + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 parent: 4812 - - uid: 6322 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 433 components: - type: Transform - pos: 24.418009,-25.447226 + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 parent: 4812 -- proto: GasFilter - entities: - - uid: 3737 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-27.5 + pos: 3.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasFilterFlipped - entities: - - uid: 9169 + color: '#990000FF' + - uid: 435 components: - type: Transform - pos: -47.5,1.5 + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9170 + color: '#990000FF' + - uid: 436 components: - type: Transform - pos: -47.5,3.5 + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 parent: 4812 - - uid: 9171 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 437 components: - type: Transform - pos: -47.5,5.5 + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 parent: 4812 - - uid: 9172 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 438 components: - type: Transform - pos: -47.5,7.5 + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 parent: 4812 - - uid: 9173 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 439 components: - type: Transform - pos: -47.5,9.5 + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 parent: 4812 - - uid: 9174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 440 components: - type: Transform - pos: -47.5,11.5 + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 parent: 4812 -- proto: GasMinerCarbonDioxide - entities: - - uid: 9452 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 442 components: - type: Transform - pos: -52.5,5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 parent: 4812 -- proto: GasMinerNitrogen - entities: - - uid: 9449 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 443 components: - type: Transform - pos: -52.5,1.5 + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 parent: 4812 -- proto: GasMinerOxygen - entities: - - uid: 9451 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 444 components: - type: Transform - pos: -52.5,3.5 + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 parent: 4812 -- proto: GasMinerWaterVapor - entities: - - uid: 9454 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 446 components: - type: Transform - pos: -52.5,7.5 + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 parent: 4812 -- proto: GasMixerFlipped - entities: - - uid: 8550 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 447 components: - type: Transform - pos: -45.5,5.5 + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 parent: 4812 - - uid: 8552 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,2.5 + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 parent: 4812 - - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9236 + color: '#990000FF' + - uid: 449 components: - type: Transform - pos: -45.5,8.5 + rot: 1.5707963267948966 rad + pos: -9.5,-11.5 parent: 4812 - - uid: 9237 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 450 components: - type: Transform - pos: -45.5,10.5 + rot: 3.141592653589793 rad + pos: -17.5,-11.5 parent: 4812 - - uid: 9247 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 451 components: - type: Transform - pos: -45.5,6.5 + rot: 1.5707963267948966 rad + pos: -11.5,-11.5 parent: 4812 - - uid: 9261 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 452 components: - type: Transform - pos: -45.5,12.5 + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 parent: 4812 -- proto: GasOutletInjector - entities: - - uid: 4002 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-30.5 + pos: -13.5,-11.5 parent: 4812 - - uid: 4445 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,1.5 + pos: -15.5,-11.5 parent: 4812 - - uid: 4446 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,3.5 + pos: -16.5,-11.5 parent: 4812 - - uid: 4478 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 457 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,5.5 + pos: -17.5,-11.5 parent: 4812 - - uid: 4479 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,7.5 + pos: -18.5,-11.5 parent: 4812 - - uid: 4497 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 459 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,9.5 + pos: -19.5,-11.5 parent: 4812 - - uid: 4826 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 460 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,11.5 + pos: -20.5,-11.5 parent: 4812 -- proto: GasPassiveGate - entities: - - uid: 5801 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-19.5 + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8979 + color: '#990000FF' + - uid: 462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-33.5 + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPassiveVent - entities: - - uid: 862 + color: '#990000FF' + - uid: 463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-7.5 + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 parent: 4812 - - uid: 863 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 465 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-7.5 + pos: -25.5,-10.5 parent: 4812 - - uid: 3817 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,46.5 + pos: -25.5,-9.5 parent: 4812 - - uid: 5596 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 + pos: -25.5,-8.5 parent: 4812 - - uid: 9005 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-37.5 + pos: -25.5,-7.5 parent: 4812 - - uid: 9168 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 469 components: - type: Transform - pos: -49.5,-0.5 + pos: -25.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9199 + color: '#990000FF' + - uid: 470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,1.5 + pos: -25.5,-5.5 parent: 4812 - - uid: 9200 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,3.5 + pos: -25.5,-3.5 parent: 4812 - - uid: 9201 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 474 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,5.5 + pos: -25.5,-1.5 parent: 4812 - - uid: 9202 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,7.5 + pos: -25.5,-0.5 parent: 4812 - - uid: 9203 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 476 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,9.5 + pos: -25.5,0.5 parent: 4812 - - uid: 9204 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,11.5 + pos: -25.5,2.5 parent: 4812 - - uid: 9264 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 479 components: - type: Transform - pos: -47.5,14.5 + pos: -25.5,3.5 parent: 4812 - - uid: 9494 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 480 components: - type: Transform - pos: -45.5,16.5 + pos: -25.5,4.5 parent: 4812 - - uid: 9495 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 481 components: - type: Transform - pos: -43.5,16.5 + pos: -25.5,5.5 parent: 4812 -- proto: GasPipeBend - entities: - - uid: 560 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,7.5 + pos: -25.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 561 + color: '#990000FF' + - uid: 484 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,7.5 + pos: -23.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 563 + color: '#990000FF' + - uid: 485 components: - type: Transform - pos: 11.5,19.5 + rot: 3.141592653589793 rad + pos: -22.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 705 + color: '#990000FF' + - uid: 487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,8.5 + rot: 3.141592653589793 rad + pos: -22.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 708 + color: '#990000FF' + - uid: 488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 + rot: 3.141592653589793 rad + pos: -22.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 709 + color: '#990000FF' + - uid: 489 components: - type: Transform - pos: 12.5,20.5 + rot: 3.141592653589793 rad + pos: -22.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 831 + color: '#990000FF' + - uid: 491 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-3.5 + pos: -22.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 833 + color: '#990000FF' + - uid: 492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 834 + color: '#990000FF' + - uid: 493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 850 + color: '#990000FF' + - uid: 494 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-9.5 + pos: -22.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 856 + color: '#990000FF' + - uid: 495 components: - type: Transform - pos: -16.5,-8.5 + rot: 3.141592653589793 rad + pos: -22.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 861 + color: '#990000FF' + - uid: 497 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-6.5 + pos: -20.5,19.5 parent: 4812 - - uid: 876 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 498 components: - type: Transform - pos: -8.5,4.5 + rot: 1.5707963267948966 rad + pos: -19.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1508 + color: '#990000FF' + - uid: 499 components: - type: Transform - pos: -21.5,-4.5 + rot: 1.5707963267948966 rad + pos: -18.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1683 + color: '#990000FF' + - uid: 500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,2.5 + rot: 1.5707963267948966 rad + pos: -17.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1684 + color: '#990000FF' + - uid: 501 components: - type: Transform - pos: -21.5,1.5 + rot: 1.5707963267948966 rad + pos: -16.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1787 + color: '#990000FF' + - uid: 502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,27.5 + pos: -15.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2008 + color: '#990000FF' + - uid: 503 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,33.5 + pos: -14.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2009 + color: '#990000FF' + - uid: 504 components: - type: Transform - pos: 3.5,33.5 + rot: 1.5707963267948966 rad + pos: -13.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2054 + color: '#990000FF' + - uid: 505 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,32.5 + pos: -12.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2055 + color: '#990000FF' + - uid: 507 components: - type: Transform - pos: 2.5,32.5 + rot: 1.5707963267948966 rad + pos: -10.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2849 + color: '#990000FF' + - uid: 508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,24.5 + rot: 1.5707963267948966 rad + pos: -9.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2850 + color: '#990000FF' + - uid: 509 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,25.5 + pos: -8.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2861 + color: '#990000FF' + - uid: 511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,26.5 + rot: 1.5707963267948966 rad + pos: -6.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2967 + color: '#990000FF' + - uid: 512 components: - type: Transform - pos: 24.5,15.5 + rot: 1.5707963267948966 rad + pos: -5.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3018 + color: '#990000FF' + - uid: 514 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,26.5 + pos: -3.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3706 + color: '#990000FF' + - uid: 515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3744 + color: '#990000FF' + - uid: 516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,0.5 + rot: 1.5707963267948966 rad + pos: -0.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3746 + color: '#990000FF' + - uid: 517 components: - type: Transform - pos: -32.5,0.5 + rot: 1.5707963267948966 rad + pos: 0.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3803 + color: '#990000FF' + - uid: 518 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,46.5 + pos: 1.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3808 + color: '#990000FF' + - uid: 520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,50.5 + pos: 3.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3809 + color: '#990000FF' + - uid: 521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,50.5 + rot: 1.5707963267948966 rad + pos: 4.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3836 + color: '#990000FF' + - uid: 522 components: - type: Transform - pos: 9.5,50.5 + rot: 1.5707963267948966 rad + pos: 5.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3837 + color: '#990000FF' + - uid: 524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,50.5 + rot: 1.5707963267948966 rad + pos: 7.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3840 + color: '#990000FF' + - uid: 525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,45.5 + pos: 8.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4204 + color: '#990000FF' + - uid: 526 components: - type: Transform - pos: 28.5,-3.5 + rot: 1.5707963267948966 rad + pos: 9.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4209 + color: '#990000FF' + - uid: 528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 + pos: 11.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4213 + color: '#990000FF' + - uid: 529 components: - type: Transform - pos: 28.5,-7.5 + pos: 11.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4227 + color: '#990000FF' + - uid: 530 components: - type: Transform - pos: 25.5,4.5 + pos: 11.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4892 + color: '#990000FF' + - uid: 531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 + pos: 11.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4893 + color: '#990000FF' + - uid: 533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-22.5 + pos: 11.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4940 + color: '#990000FF' + - uid: 534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-23.5 + pos: 11.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5129 + color: '#990000FF' + - uid: 535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-35.5 + pos: 11.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5178 + color: '#990000FF' + - uid: 536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 + pos: 11.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5725 + color: '#990000FF' + - uid: 537 components: - type: Transform - pos: 21.5,-21.5 + pos: 11.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5732 + color: '#990000FF' + - uid: 538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 + pos: 11.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5736 + color: '#990000FF' + - uid: 541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-25.5 + pos: 11.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5737 + color: '#990000FF' + - uid: 542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-26.5 + pos: 11.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5804 + color: '#990000FF' + - uid: 543 components: - type: Transform - pos: 14.5,-17.5 + pos: 11.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6624 + color: '#990000FF' + - uid: 544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-22.5 + pos: 11.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6628 + color: '#990000FF' + - uid: 545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-23.5 + pos: 11.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6651 + color: '#990000FF' + - uid: 546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-26.5 + pos: 11.5,0.5 parent: 4812 - - uid: 6783 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-28.5 + pos: 11.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6829 + color: '#990000FF' + - uid: 549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 + pos: 11.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7272 + color: '#990000FF' + - uid: 551 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-28.5 + pos: 11.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7285 + color: '#990000FF' + - uid: 552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-30.5 + pos: 11.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7847 + color: '#990000FF' + - uid: 553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,24.5 + pos: 11.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8557 + color: '#990000FF' + - uid: 554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,10.5 + pos: 11.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8561 + color: '#990000FF' + - uid: 555 components: - type: Transform - pos: -18.5,9.5 + pos: 11.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8953 + color: '#990000FF' + - uid: 556 components: - type: Transform - pos: -10.5,-30.5 + pos: 11.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8970 + color: '#990000FF' + - uid: 557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-33.5 + pos: 11.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8987 + color: '#990000FF' + - uid: 564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 + rot: 3.141592653589793 rad + pos: -3.5,-11.5 parent: 4812 - - uid: 9004 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-35.5 + pos: -3.5,19.5 parent: 4812 - - uid: 9038 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 568 components: - type: Transform - pos: -33.5,-36.5 + rot: -1.5707963267948966 rad + pos: -2.5,20.5 parent: 4812 - - uid: 9117 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,6.5 + rot: -1.5707963267948966 rad + pos: -1.5,20.5 parent: 4812 - - uid: 9120 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,8.5 + rot: -1.5707963267948966 rad + pos: 0.5,20.5 parent: 4812 - - uid: 9121 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,12.5 + rot: -1.5707963267948966 rad + pos: 1.5,20.5 parent: 4812 - - uid: 9125 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,10.5 + rot: -1.5707963267948966 rad + pos: 2.5,20.5 parent: 4812 - - uid: 9128 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,2.5 + rot: -1.5707963267948966 rad + pos: 4.5,20.5 parent: 4812 - - uid: 9133 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,4.5 + rot: -1.5707963267948966 rad + pos: 5.5,20.5 parent: 4812 - - uid: 9155 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 577 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,0.5 + pos: 6.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9156 + color: '#0055CCFF' + - uid: 578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,1.5 + rot: -1.5707963267948966 rad + pos: 7.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9165 + color: '#0055CCFF' + - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-1.5 + pos: 9.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9166 + color: '#0055CCFF' + - uid: 581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9254 + color: '#0055CCFF' + - uid: 582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,5.5 + rot: -1.5707963267948966 rad + pos: 11.5,20.5 parent: 4812 - - uid: 9535 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 584 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,8.5 + pos: 12.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 11972 + color: '#0055CCFF' + - uid: 585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-7.5 + rot: 3.141592653589793 rad + pos: 12.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11983 + color: '#0055CCFF' + - uid: 586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-7.5 + rot: 3.141592653589793 rad + pos: 12.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPipeFourway - entities: - - uid: 402 + color: '#0055CCFF' + - uid: 588 components: - type: Transform - pos: -3.5,-7.5 + rot: 3.141592653589793 rad + pos: 12.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 428 + color: '#0055CCFF' + - uid: 589 components: - type: Transform - pos: -3.5,20.5 + rot: 3.141592653589793 rad + pos: 12.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 431 + color: '#0055CCFF' + - uid: 590 components: - type: Transform - pos: -3.5,-12.5 + rot: 3.141592653589793 rad + pos: 12.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 445 + color: '#0055CCFF' + - uid: 591 components: - type: Transform - pos: -5.5,-21.5 + rot: 3.141592653589793 rad + pos: 12.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 566 + color: '#0055CCFF' + - uid: 592 components: - type: Transform - pos: -1.5,19.5 + rot: 3.141592653589793 rad + pos: 12.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 583 + color: '#0055CCFF' + - uid: 593 components: - type: Transform - pos: -1.5,-11.5 + rot: 3.141592653589793 rad + pos: 12.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 664 + color: '#0055CCFF' + - uid: 595 components: - type: Transform - pos: -25.5,-4.5 + rot: 3.141592653589793 rad + pos: 12.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2945 + color: '#0055CCFF' + - uid: 596 components: - type: Transform - pos: 19.5,14.5 + rot: 3.141592653589793 rad + pos: 12.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2960 + color: '#0055CCFF' + - uid: 597 components: - type: Transform - pos: 15.5,15.5 + rot: 3.141592653589793 rad + pos: 12.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2978 + color: '#0055CCFF' + - uid: 598 components: - type: Transform - pos: 15.5,26.5 + rot: 3.141592653589793 rad + pos: 12.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3804 + color: '#0055CCFF' + - uid: 599 components: - type: Transform - pos: 11.5,46.5 + rot: 3.141592653589793 rad + pos: 12.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4156 + color: '#0055CCFF' + - uid: 601 components: - type: Transform - pos: 24.5,-3.5 + rot: 3.141592653589793 rad + pos: 12.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5086 + color: '#0055CCFF' + - uid: 602 components: - type: Transform - pos: 0.5,-21.5 + rot: 3.141592653589793 rad + pos: 12.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5111 + color: '#0055CCFF' + - uid: 603 components: - type: Transform - pos: -6.5,-22.5 + rot: 3.141592653589793 rad + pos: 12.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5189 + color: '#0055CCFF' + - uid: 604 components: - type: Transform - pos: -10.5,-35.5 + rot: 3.141592653589793 rad + pos: 12.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5565 + color: '#0055CCFF' + - uid: 606 components: - type: Transform - pos: 9.5,-20.5 + rot: 3.141592653589793 rad + pos: 12.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7276 + color: '#0055CCFF' + - uid: 607 components: - type: Transform - pos: -16.5,-22.5 + rot: 3.141592653589793 rad + pos: 12.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8764 + color: '#0055CCFF' + - uid: 608 components: - type: Transform - pos: -30.5,-2.5 + rot: 3.141592653589793 rad + pos: 12.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12010 + color: '#0055CCFF' + - uid: 609 components: - type: Transform - pos: -49.5,-12.5 + rot: 3.141592653589793 rad + pos: 12.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12011 + color: '#0055CCFF' + - uid: 610 components: - type: Transform - pos: -48.5,-11.5 + rot: 3.141592653589793 rad + pos: 12.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPipeStraight - entities: - - uid: 251 + color: '#0055CCFF' + - uid: 612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,2.5 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 252 + color: '#0055CCFF' + - uid: 613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,1.5 + rot: 3.141592653589793 rad + pos: 12.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 253 + color: '#0055CCFF' + - uid: 614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,1.5 + rot: 3.141592653589793 rad + pos: 12.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 254 + color: '#0055CCFF' + - uid: 615 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,1.5 + pos: 11.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 368 + color: '#0055CCFF' + - uid: 616 components: - type: Transform - pos: -3.5,18.5 + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 369 + color: '#0055CCFF' + - uid: 619 components: - type: Transform - pos: -3.5,17.5 + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 370 + color: '#0055CCFF' + - uid: 620 components: - type: Transform - pos: -3.5,16.5 + rot: 1.5707963267948966 rad + pos: 6.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 371 + color: '#0055CCFF' + - uid: 621 components: - type: Transform - pos: -3.5,15.5 + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 372 + color: '#0055CCFF' + - uid: 622 components: - type: Transform - pos: -3.5,14.5 + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 374 + color: '#0055CCFF' + - uid: 623 components: - type: Transform - pos: -3.5,12.5 + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 375 + color: '#0055CCFF' + - uid: 624 components: - type: Transform - pos: -3.5,11.5 + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 377 + color: '#0055CCFF' + - uid: 626 components: - type: Transform - pos: -3.5,9.5 + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 378 + color: '#0055CCFF' + - uid: 627 components: - type: Transform - pos: -3.5,8.5 + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 379 + color: '#0055CCFF' + - uid: 628 components: - type: Transform - pos: -3.5,7.5 + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 380 + color: '#0055CCFF' + - uid: 629 components: - type: Transform - pos: -3.5,6.5 + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 381 + color: '#0055CCFF' + - uid: 630 components: - type: Transform - pos: -3.5,5.5 + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 382 + color: '#0055CCFF' + - uid: 631 components: - type: Transform - pos: -3.5,4.5 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 383 + color: '#0055CCFF' + - uid: 633 components: - type: Transform - pos: -3.5,3.5 + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 385 + color: '#0055CCFF' + - uid: 634 components: - type: Transform - pos: -3.5,1.5 + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 386 + color: '#0055CCFF' + - uid: 635 components: - type: Transform - pos: -3.5,0.5 + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 388 + color: '#0055CCFF' + - uid: 636 components: - type: Transform - pos: -3.5,-1.5 + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 389 + color: '#0055CCFF' + - uid: 637 components: - type: Transform - pos: -3.5,-2.5 + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 390 + color: '#0055CCFF' + - uid: 638 components: - type: Transform - pos: -3.5,-3.5 + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 391 + color: '#0055CCFF' + - uid: 639 components: - type: Transform - pos: -3.5,-4.5 + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 392 + color: '#0055CCFF' + - uid: 640 components: - type: Transform - pos: -3.5,-5.5 + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 393 + color: '#0055CCFF' + - uid: 641 components: - type: Transform - pos: -3.5,-6.5 + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 395 + color: '#0055CCFF' + - uid: 644 components: - type: Transform - pos: -3.5,-8.5 + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 396 + color: '#0055CCFF' + - uid: 646 components: - type: Transform - pos: -3.5,-9.5 + rot: 1.5707963267948966 rad + pos: -20.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 397 + color: '#0055CCFF' + - uid: 647 components: - type: Transform - pos: -3.5,-10.5 + rot: 1.5707963267948966 rad + pos: -21.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 398 + color: '#0055CCFF' + - uid: 648 components: - type: Transform - pos: -1.5,-10.5 + rot: 3.141592653589793 rad + pos: -22.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 399 + color: '#0055CCFF' + - uid: 649 components: - type: Transform - pos: -1.5,-9.5 + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 400 + color: '#0055CCFF' + - uid: 650 components: - type: Transform - pos: -1.5,-8.5 + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 401 + color: '#0055CCFF' + - uid: 652 components: - type: Transform - pos: -1.5,-7.5 + pos: -26.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 403 + color: '#0055CCFF' + - uid: 653 components: - type: Transform - pos: -1.5,-5.5 + pos: -26.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 404 + color: '#0055CCFF' + - uid: 654 components: - type: Transform - pos: -1.5,-4.5 + pos: -26.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 405 + color: '#0055CCFF' + - uid: 655 components: - type: Transform - pos: -1.5,-3.5 + pos: -26.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 406 + color: '#0055CCFF' + - uid: 656 components: - type: Transform - pos: -1.5,-2.5 + pos: -26.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 408 + color: '#0055CCFF' + - uid: 657 components: - type: Transform - pos: -1.5,-0.5 + pos: -26.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 409 + color: '#0055CCFF' + - uid: 658 components: - type: Transform - pos: -1.5,0.5 + pos: -26.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 410 + color: '#0055CCFF' + - uid: 659 components: - type: Transform - pos: -1.5,1.5 + pos: -26.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 411 + color: '#0055CCFF' + - uid: 660 components: - type: Transform - pos: -1.5,2.5 + pos: -26.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 412 + color: '#0055CCFF' + - uid: 661 components: - type: Transform - pos: -1.5,3.5 + pos: -26.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 414 + color: '#0055CCFF' + - uid: 663 components: - type: Transform - pos: -1.5,5.5 + pos: -26.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 415 + color: '#0055CCFF' + - uid: 665 components: - type: Transform - pos: -1.5,6.5 + pos: -26.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 416 + color: '#0055CCFF' + - uid: 667 components: - type: Transform - pos: -1.5,7.5 + pos: -26.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 419 + color: '#0055CCFF' + - uid: 668 components: - type: Transform - pos: -1.5,10.5 + pos: -26.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 420 + color: '#0055CCFF' + - uid: 669 components: - type: Transform - pos: -1.5,11.5 + pos: -26.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 421 + color: '#0055CCFF' + - uid: 670 components: - type: Transform - pos: -1.5,12.5 + pos: -26.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 422 + color: '#0055CCFF' + - uid: 671 components: - type: Transform - pos: -1.5,13.5 + pos: -26.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 424 + color: '#0055CCFF' + - uid: 672 components: - type: Transform - pos: -1.5,15.5 + rot: -1.5707963267948966 rad + pos: -25.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 425 + color: '#0055CCFF' + - uid: 673 components: - type: Transform - pos: -1.5,16.5 + rot: -1.5707963267948966 rad + pos: -24.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 426 + color: '#0055CCFF' + - uid: 674 components: - type: Transform - pos: -1.5,17.5 + rot: 3.141592653589793 rad + pos: -23.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 427 + color: '#0055CCFF' + - uid: 676 components: - type: Transform - pos: -1.5,18.5 + rot: 3.141592653589793 rad + pos: -23.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 430 + color: '#0055CCFF' + - uid: 677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-11.5 + rot: 3.141592653589793 rad + pos: -23.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 432 + color: '#0055CCFF' + - uid: 678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 + rot: 3.141592653589793 rad + pos: -23.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 433 + color: '#0055CCFF' + - uid: 680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 + rot: 3.141592653589793 rad + pos: -23.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 434 + color: '#0055CCFF' + - uid: 683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + rot: 3.141592653589793 rad + pos: -23.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 435 + color: '#0055CCFF' + - uid: 684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + rot: 3.141592653589793 rad + pos: -23.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 436 + color: '#0055CCFF' + - uid: 685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + pos: -22.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 437 + color: '#0055CCFF' + - uid: 686 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-11.5 + pos: -21.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 438 + color: '#0055CCFF' + - uid: 687 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-11.5 + pos: -20.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 439 + color: '#0055CCFF' + - uid: 688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-11.5 + pos: -19.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 440 + color: '#0055CCFF' + - uid: 689 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-11.5 + pos: -18.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 442 + color: '#0055CCFF' + - uid: 690 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + pos: -17.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 443 + color: '#0055CCFF' + - uid: 691 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-11.5 + pos: -16.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 444 + color: '#0055CCFF' + - uid: 692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-11.5 + pos: -15.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 446 + color: '#0055CCFF' + - uid: 693 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-11.5 + pos: -14.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 447 + color: '#0055CCFF' + - uid: 695 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-11.5 + pos: -12.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 448 + color: '#0055CCFF' + - uid: 696 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-11.5 + pos: -11.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 449 + color: '#0055CCFF' + - uid: 697 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-11.5 + pos: -10.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 450 + color: '#0055CCFF' + - uid: 698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 + rot: 1.5707963267948966 rad + pos: -9.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 451 + color: '#0055CCFF' + - uid: 700 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-11.5 + pos: -7.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 452 + color: '#0055CCFF' + - uid: 701 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-11.5 + pos: -6.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 453 + color: '#0055CCFF' + - uid: 702 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-11.5 + pos: -5.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 455 + color: '#0055CCFF' + - uid: 703 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-11.5 + pos: -4.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 456 + color: '#0055CCFF' + - uid: 789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 + rot: 3.141592653589793 rad + pos: -17.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 457 + color: '#0055CCFF' + - uid: 790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 + rot: 3.141592653589793 rad + pos: -17.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 458 + color: '#0055CCFF' + - uid: 791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-11.5 + pos: -4.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 459 + color: '#0055CCFF' + - uid: 792 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-11.5 + pos: -5.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 460 + color: '#0055CCFF' + - uid: 793 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-11.5 + pos: -6.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 461 + color: '#0055CCFF' + - uid: 794 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-11.5 + pos: -7.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 462 + color: '#0055CCFF' + - uid: 795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-11.5 + pos: -8.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 463 + color: '#0055CCFF' + - uid: 796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-11.5 + pos: -9.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 465 + color: '#0055CCFF' + - uid: 798 components: - type: Transform - pos: -25.5,-10.5 + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 466 + color: '#0055CCFF' + - uid: 799 components: - type: Transform - pos: -25.5,-9.5 + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 467 + color: '#0055CCFF' + - uid: 800 components: - type: Transform - pos: -25.5,-8.5 + rot: 1.5707963267948966 rad + pos: -13.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 468 + color: '#0055CCFF' + - uid: 801 components: - type: Transform - pos: -25.5,-7.5 + rot: 1.5707963267948966 rad + pos: -14.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 469 + color: '#0055CCFF' + - uid: 802 components: - type: Transform - pos: -25.5,-6.5 + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 470 + color: '#0055CCFF' + - uid: 803 components: - type: Transform - pos: -25.5,-5.5 + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 472 + color: '#0055CCFF' + - uid: 804 components: - type: Transform - pos: -25.5,-3.5 + pos: -17.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 474 + color: '#0055CCFF' + - uid: 807 components: - type: Transform - pos: -25.5,-1.5 + rot: 3.141592653589793 rad + pos: -10.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 475 + color: '#990000FF' + - uid: 809 components: - type: Transform - pos: -25.5,-0.5 + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 476 + color: '#990000FF' + - uid: 810 components: - type: Transform - pos: -25.5,0.5 + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 478 + color: '#990000FF' + - uid: 811 components: - type: Transform - pos: -25.5,2.5 + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 479 + color: '#990000FF' + - uid: 812 components: - type: Transform - pos: -25.5,3.5 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 480 + color: '#990000FF' + - uid: 813 components: - type: Transform - pos: -25.5,4.5 + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 481 + color: '#990000FF' + - uid: 821 components: - type: Transform - pos: -25.5,5.5 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 482 + color: '#0055CCFF' + - uid: 822 components: - type: Transform - pos: -25.5,6.5 + rot: -1.5707963267948966 rad + pos: -0.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 484 + color: '#0055CCFF' + - uid: 823 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,7.5 + pos: 0.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 485 + color: '#0055CCFF' + - uid: 824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,8.5 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 487 + color: '#0055CCFF' + - uid: 825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 + rot: -1.5707963267948966 rad + pos: 2.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 488 + color: '#0055CCFF' + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,11.5 + pos: 3.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 489 + color: '#0055CCFF' + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,12.5 + pos: 3.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 491 + color: '#0055CCFF' + - uid: 828 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,14.5 + pos: 3.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 492 + color: '#0055CCFF' + - uid: 829 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,15.5 + pos: 3.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 493 + color: '#0055CCFF' + - uid: 830 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,16.5 + pos: 3.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 494 + color: '#0055CCFF' + - uid: 836 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,17.5 + pos: 4.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 495 + color: '#0055CCFF' + - uid: 837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,18.5 + pos: 4.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 497 + color: '#0055CCFF' + - uid: 839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,19.5 + rot: 3.141592653589793 rad + pos: 3.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 498 + color: '#0055CCFF' + - uid: 840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,19.5 + rot: 3.141592653589793 rad + pos: 3.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 499 + color: '#0055CCFF' + - uid: 841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,19.5 + rot: 3.141592653589793 rad + pos: 3.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 500 + color: '#0055CCFF' + - uid: 842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,19.5 + rot: 3.141592653589793 rad + pos: 3.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 501 + color: '#0055CCFF' + - uid: 844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,19.5 + rot: -1.5707963267948966 rad + pos: 4.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 502 + color: '#0055CCFF' + - uid: 845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,19.5 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 503 + color: '#0055CCFF' + - uid: 851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,19.5 + rot: -1.5707963267948966 rad + pos: -15.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 504 + color: '#990000FF' + - uid: 852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,19.5 + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 505 + color: '#990000FF' + - uid: 853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,19.5 + rot: -1.5707963267948966 rad + pos: -13.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 507 + color: '#990000FF' + - uid: 854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,19.5 + rot: -1.5707963267948966 rad + pos: -12.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 508 + color: '#990000FF' + - uid: 855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,19.5 + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 509 + color: '#990000FF' + - uid: 866 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,19.5 + pos: -4.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 511 + color: '#0055CCFF' + - uid: 867 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,19.5 + pos: -5.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 512 + color: '#0055CCFF' + - uid: 868 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,19.5 + pos: -6.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 514 + color: '#0055CCFF' + - uid: 869 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,19.5 + pos: -7.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 515 + color: '#0055CCFF' + - uid: 872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,19.5 + rot: 3.141592653589793 rad + pos: -8.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 516 + color: '#0055CCFF' + - uid: 873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 517 + color: '#0055CCFF' + - uid: 874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,19.5 + rot: 3.141592653589793 rad + pos: -8.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 518 + color: '#0055CCFF' + - uid: 875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,19.5 + rot: 3.141592653589793 rad + pos: -8.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 520 + color: '#0055CCFF' + - uid: 878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,19.5 + rot: -1.5707963267948966 rad + pos: -2.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 521 + color: '#990000FF' + - uid: 879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: -3.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 522 + color: '#990000FF' + - uid: 880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,19.5 + rot: -1.5707963267948966 rad + pos: -4.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 524 + color: '#990000FF' + - uid: 881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,19.5 + rot: -1.5707963267948966 rad + pos: -5.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 525 + color: '#990000FF' + - uid: 882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,19.5 + rot: -1.5707963267948966 rad + pos: -6.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 526 + color: '#990000FF' + - uid: 883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 + rot: -1.5707963267948966 rad + pos: -7.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 528 + color: '#990000FF' + - uid: 884 components: - type: Transform - pos: 11.5,18.5 + rot: -1.5707963267948966 rad + pos: -8.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 529 + color: '#990000FF' + - uid: 1502 components: - type: Transform - pos: 11.5,17.5 + rot: 3.141592653589793 rad + pos: -22.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 530 + color: '#0055CCFF' + - uid: 1503 components: - type: Transform - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: -22.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 531 + color: '#0055CCFF' + - uid: 1505 components: - type: Transform - pos: 11.5,15.5 + rot: 1.5707963267948966 rad + pos: -24.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 533 + color: '#990000FF' + - uid: 1506 components: - type: Transform - pos: 11.5,13.5 + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 534 + color: '#990000FF' + - uid: 1507 components: - type: Transform - pos: 11.5,12.5 + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 535 + color: '#990000FF' + - uid: 1509 components: - type: Transform - pos: 11.5,11.5 + pos: -21.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 536 + color: '#990000FF' + - uid: 1510 components: - type: Transform - pos: 11.5,10.5 + pos: -21.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 537 + color: '#990000FF' + - uid: 1680 components: - type: Transform - pos: 11.5,9.5 + rot: 1.5707963267948966 rad + pos: -23.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 538 + color: '#0055CCFF' + - uid: 1681 components: - type: Transform - pos: 11.5,8.5 + rot: 1.5707963267948966 rad + pos: -22.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 541 + color: '#0055CCFF' + - uid: 1682 components: - type: Transform - pos: 11.5,5.5 + rot: 1.5707963267948966 rad + pos: -24.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 542 + color: '#0055CCFF' + - uid: 1785 components: - type: Transform - pos: 11.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 543 + color: '#0055CCFF' + - uid: 1786 components: - type: Transform - pos: 11.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 544 + color: '#0055CCFF' + - uid: 1808 components: - type: Transform - pos: 11.5,2.5 + pos: 6.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 545 + color: '#990000FF' + - uid: 1809 components: - type: Transform - pos: 11.5,1.5 + pos: 6.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 546 + color: '#990000FF' + - uid: 1810 components: - type: Transform - pos: 11.5,0.5 + pos: 8.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 547 + color: '#0055CCFF' + - uid: 1811 components: - type: Transform - pos: 11.5,-0.5 + pos: 8.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 549 + color: '#0055CCFF' + - uid: 1812 components: - type: Transform - pos: 11.5,-2.5 + pos: 8.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 551 + color: '#0055CCFF' + - uid: 1815 components: - type: Transform - pos: 11.5,-4.5 + pos: -0.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 552 + color: '#0055CCFF' + - uid: 1835 components: - type: Transform - pos: 11.5,-5.5 + rot: 1.5707963267948966 rad + pos: 3.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 553 + color: '#990000FF' + - uid: 1847 components: - type: Transform - pos: 11.5,-6.5 + pos: -1.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 554 + color: '#990000FF' + - uid: 1848 components: - type: Transform - pos: 11.5,-7.5 + pos: -1.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 555 + color: '#990000FF' + - uid: 1849 components: - type: Transform - pos: 11.5,-8.5 + pos: -1.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 556 + color: '#990000FF' + - uid: 1850 components: - type: Transform - pos: 11.5,-9.5 + pos: -3.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 557 + color: '#0055CCFF' + - uid: 1851 components: - type: Transform - pos: 11.5,-10.5 + pos: -3.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 564 + color: '#0055CCFF' + - uid: 1984 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-11.5 + pos: -8.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 567 + color: '#0055CCFF' + - uid: 1987 components: - type: Transform - pos: -3.5,19.5 + rot: 3.141592653589793 rad + pos: -8.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 568 + color: '#0055CCFF' + - uid: 1988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,20.5 + rot: 3.141592653589793 rad + pos: -8.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 569 + color: '#0055CCFF' + - uid: 1989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,20.5 + rot: 3.141592653589793 rad + pos: -8.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 571 + color: '#0055CCFF' + - uid: 1990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,20.5 + rot: 3.141592653589793 rad + pos: -8.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 572 + color: '#0055CCFF' + - uid: 1991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,20.5 + rot: 3.141592653589793 rad + pos: -8.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 573 + color: '#0055CCFF' + - uid: 1993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,20.5 + rot: 3.141592653589793 rad + pos: -8.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 575 + color: '#0055CCFF' + - uid: 1994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,20.5 + rot: 3.141592653589793 rad + pos: -8.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 576 + color: '#0055CCFF' + - uid: 1995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,20.5 + rot: 3.141592653589793 rad + pos: -8.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 577 + color: '#0055CCFF' + - uid: 1996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,20.5 + rot: 3.141592653589793 rad + pos: 3.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 578 + color: '#0055CCFF' + - uid: 1998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,20.5 + rot: 3.141592653589793 rad + pos: 3.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 580 + color: '#0055CCFF' + - uid: 1999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,20.5 + rot: 3.141592653589793 rad + pos: 3.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 581 + color: '#0055CCFF' + - uid: 2001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,20.5 + rot: 3.141592653589793 rad + pos: 3.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 582 + color: '#0055CCFF' + - uid: 2002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,20.5 + rot: 3.141592653589793 rad + pos: 3.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 584 + color: '#0055CCFF' + - uid: 2003 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,18.5 + pos: 3.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 585 + color: '#0055CCFF' + - uid: 2005 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,17.5 + pos: 3.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 586 + color: '#0055CCFF' + - uid: 2006 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,16.5 + pos: 3.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 588 + color: '#0055CCFF' + - uid: 2007 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,14.5 + pos: 3.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 589 + color: '#0055CCFF' + - uid: 2010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,13.5 + rot: -1.5707963267948966 rad + pos: -7.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 590 + color: '#0055CCFF' + - uid: 2011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 + rot: -1.5707963267948966 rad + pos: -6.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 591 + color: '#0055CCFF' + - uid: 2013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,11.5 + rot: -1.5707963267948966 rad + pos: -4.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 592 + color: '#0055CCFF' + - uid: 2014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 + rot: -1.5707963267948966 rad + pos: -3.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 593 + color: '#0055CCFF' + - uid: 2015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,9.5 + rot: -1.5707963267948966 rad + pos: -2.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 595 + color: '#0055CCFF' + - uid: 2016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,7.5 + rot: -1.5707963267948966 rad + pos: -1.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 596 + color: '#0055CCFF' + - uid: 2017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,6.5 + rot: -1.5707963267948966 rad + pos: -0.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 597 + color: '#0055CCFF' + - uid: 2019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,5.5 + rot: -1.5707963267948966 rad + pos: 1.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 598 + color: '#0055CCFF' + - uid: 2020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,4.5 + rot: -1.5707963267948966 rad + pos: 2.5,33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 599 + color: '#0055CCFF' + - uid: 2021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,3.5 + rot: -1.5707963267948966 rad + pos: 1.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 601 + color: '#990000FF' + - uid: 2023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 + rot: -1.5707963267948966 rad + pos: -0.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 602 + color: '#990000FF' + - uid: 2024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,0.5 + rot: -1.5707963267948966 rad + pos: -1.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 603 + color: '#990000FF' + - uid: 2025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-0.5 + rot: -1.5707963267948966 rad + pos: -2.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 604 + color: '#990000FF' + - uid: 2026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 + rot: -1.5707963267948966 rad + pos: -3.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 606 + color: '#990000FF' + - uid: 2027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + rot: -1.5707963267948966 rad + pos: -4.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 607 + color: '#990000FF' + - uid: 2029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 + rot: -1.5707963267948966 rad + pos: -6.5,32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 608 + color: '#990000FF' + - uid: 2030 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-5.5 + pos: -7.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 609 + color: '#990000FF' + - uid: 2031 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-6.5 + pos: -7.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 610 + color: '#990000FF' + - uid: 2032 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-7.5 + pos: -7.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 612 + color: '#990000FF' + - uid: 2033 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-9.5 + pos: -7.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 613 + color: '#990000FF' + - uid: 2034 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-10.5 + pos: -7.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 614 + color: '#990000FF' + - uid: 2036 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-11.5 + pos: -7.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 615 + color: '#990000FF' + - uid: 2038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 + rot: 3.141592653589793 rad + pos: -7.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 616 + color: '#990000FF' + - uid: 2039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-12.5 + rot: 3.141592653589793 rad + pos: -7.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 619 + color: '#990000FF' + - uid: 2040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 + rot: 3.141592653589793 rad + pos: -7.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 620 + color: '#990000FF' + - uid: 2041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 + rot: 3.141592653589793 rad + pos: -7.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 621 + color: '#990000FF' + - uid: 2042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 622 + color: '#990000FF' + - uid: 2043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 623 + color: '#990000FF' + - uid: 2044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 624 + color: '#990000FF' + - uid: 2045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 626 + color: '#990000FF' + - uid: 2047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 627 + color: '#990000FF' + - uid: 2049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 628 + color: '#990000FF' + - uid: 2050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 629 + color: '#990000FF' + - uid: 2051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 630 + color: '#990000FF' + - uid: 2052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 631 + color: '#990000FF' + - uid: 2053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 633 + color: '#990000FF' + - uid: 2057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 + rot: -1.5707963267948966 rad + pos: 4.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 634 + color: '#0055CCFF' + - uid: 2058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 + rot: -1.5707963267948966 rad + pos: 5.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 635 + color: '#0055CCFF' + - uid: 2059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 + rot: -1.5707963267948966 rad + pos: 6.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 636 + color: '#0055CCFF' + - uid: 2060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 + rot: -1.5707963267948966 rad + pos: 7.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 637 + color: '#0055CCFF' + - uid: 2061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 + rot: 3.141592653589793 rad + pos: 8.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 638 + color: '#0055CCFF' + - uid: 2062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 + rot: 3.141592653589793 rad + pos: 8.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 639 + color: '#0055CCFF' + - uid: 2063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 + rot: 3.141592653589793 rad + pos: 8.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 640 + color: '#0055CCFF' + - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-12.5 + pos: 4.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 641 + color: '#990000FF' + - uid: 2066 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-12.5 + pos: 5.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 644 + color: '#990000FF' + - uid: 2067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 + rot: 3.141592653589793 rad + pos: 6.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 646 + color: '#990000FF' + - uid: 2068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 + rot: 3.141592653589793 rad + pos: 6.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 647 + color: '#990000FF' + - uid: 2069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 + rot: 3.141592653589793 rad + pos: 6.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 648 + color: '#990000FF' + - uid: 2070 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-11.5 + pos: 6.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 649 + color: '#990000FF' + - uid: 2420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 + rot: -1.5707963267948966 rad + pos: -9.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 650 + color: '#0055CCFF' + - uid: 2421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 + rot: -1.5707963267948966 rad + pos: -10.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 652 + color: '#0055CCFF' + - uid: 2422 components: - type: Transform - pos: -26.5,-11.5 + rot: -1.5707963267948966 rad + pos: -11.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 653 + color: '#0055CCFF' + - uid: 2423 components: - type: Transform - pos: -26.5,-10.5 + rot: -1.5707963267948966 rad + pos: -12.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 654 + color: '#0055CCFF' + - uid: 2425 components: - type: Transform - pos: -26.5,-9.5 + rot: 3.141592653589793 rad + pos: -13.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 655 + color: '#0055CCFF' + - uid: 2426 components: - type: Transform - pos: -26.5,-8.5 + rot: 3.141592653589793 rad + pos: -13.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 656 + color: '#0055CCFF' + - uid: 2427 components: - type: Transform - pos: -26.5,-7.5 + rot: 3.141592653589793 rad + pos: -13.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 657 + color: '#0055CCFF' + - uid: 2428 components: - type: Transform - pos: -26.5,-6.5 + rot: 3.141592653589793 rad + pos: -13.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 658 + color: '#0055CCFF' + - uid: 2431 components: - type: Transform - pos: -26.5,-5.5 + rot: 1.5707963267948966 rad + pos: -8.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 659 + color: '#990000FF' + - uid: 2432 components: - type: Transform - pos: -26.5,-4.5 + rot: 1.5707963267948966 rad + pos: -9.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 660 + color: '#990000FF' + - uid: 2433 components: - type: Transform - pos: -26.5,-3.5 + rot: 1.5707963267948966 rad + pos: -10.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 661 + color: '#990000FF' + - uid: 2434 components: - type: Transform - pos: -26.5,-2.5 + rot: 1.5707963267948966 rad + pos: -11.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 663 + color: '#990000FF' + - uid: 2436 components: - type: Transform - pos: -26.5,-0.5 + pos: -12.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 665 + color: '#990000FF' + - uid: 2437 components: - type: Transform - pos: -26.5,1.5 + pos: -12.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 667 + color: '#990000FF' + - uid: 2438 components: - type: Transform - pos: -26.5,3.5 + pos: -12.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 668 + color: '#990000FF' + - uid: 2915 components: - type: Transform - pos: -26.5,4.5 + rot: -1.5707963267948966 rad + pos: 23.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 669 + color: '#0055CCFF' + - uid: 2917 components: - type: Transform - pos: -26.5,5.5 + rot: 3.141592653589793 rad + pos: -41.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 670 + color: '#990000FF' + - uid: 2920 components: - type: Transform - pos: -26.5,6.5 + rot: -1.5707963267948966 rad + pos: 58.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 671 + color: '#990000FF' + - uid: 2943 components: - type: Transform - pos: -26.5,7.5 + rot: 1.5707963267948966 rad + pos: 13.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 672 + color: '#0055CCFF' + - uid: 2944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,8.5 + rot: 1.5707963267948966 rad + pos: 14.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 673 + color: '#0055CCFF' + - uid: 2946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,8.5 + rot: 1.5707963267948966 rad + pos: 16.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 674 + color: '#0055CCFF' + - uid: 2947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,9.5 + rot: 1.5707963267948966 rad + pos: 17.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 676 + color: '#0055CCFF' + - uid: 2948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 + rot: 1.5707963267948966 rad + pos: 18.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 677 + color: '#0055CCFF' + - uid: 2949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 19.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 678 + color: '#0055CCFF' + - uid: 2950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,13.5 + rot: 1.5707963267948966 rad + pos: 20.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 680 + color: '#0055CCFF' + - uid: 2951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,15.5 + rot: 1.5707963267948966 rad + pos: 21.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 683 + color: '#0055CCFF' + - uid: 2952 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,18.5 + rot: 1.5707963267948966 rad + pos: 22.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 684 + color: '#0055CCFF' + - uid: 2953 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,19.5 + rot: 1.5707963267948966 rad + pos: 12.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 685 + color: '#990000FF' + - uid: 2954 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,20.5 + pos: 13.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 686 + color: '#990000FF' + - uid: 2955 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,20.5 + pos: 14.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 687 + color: '#990000FF' + - uid: 2956 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,20.5 + pos: 15.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 688 + color: '#990000FF' + - uid: 2957 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,20.5 + pos: 16.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 689 + color: '#990000FF' + - uid: 2958 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,20.5 + pos: 17.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 690 + color: '#990000FF' + - uid: 2959 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,20.5 + pos: 18.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 691 + color: '#990000FF' + - uid: 2961 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,20.5 + pos: 20.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 692 + color: '#990000FF' + - uid: 2962 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,20.5 + pos: 21.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 693 + color: '#990000FF' + - uid: 2970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 695 + color: '#0055CCFF' + - uid: 2971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 696 + color: '#0055CCFF' + - uid: 2973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 697 + color: '#0055CCFF' + - uid: 2975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 698 + color: '#0055CCFF' + - uid: 2976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 700 + color: '#0055CCFF' + - uid: 2977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 701 + color: '#0055CCFF' + - uid: 2979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 702 + color: '#0055CCFF' + - uid: 2981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 703 + color: '#0055CCFF' + - uid: 2982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 789 + color: '#0055CCFF' + - uid: 2984 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-10.5 + pos: 19.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 790 + color: '#990000FF' + - uid: 2985 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-9.5 + pos: 19.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 791 + color: '#990000FF' + - uid: 2986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 + rot: 3.141592653589793 rad + pos: 19.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 792 + color: '#990000FF' + - uid: 2988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + rot: 3.141592653589793 rad + pos: 19.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 793 + color: '#990000FF' + - uid: 2990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 + rot: 3.141592653589793 rad + pos: 19.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 794 + color: '#990000FF' + - uid: 2991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 + rot: 3.141592653589793 rad + pos: 19.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 795 + color: '#990000FF' + - uid: 2992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 + rot: 3.141592653589793 rad + pos: 19.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 796 + color: '#990000FF' + - uid: 2993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 + rot: 3.141592653589793 rad + pos: 19.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 798 + color: '#990000FF' + - uid: 2996 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-7.5 + pos: 18.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 799 + color: '#990000FF' + - uid: 2997 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-7.5 + pos: 17.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 800 + color: '#990000FF' + - uid: 2998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 + pos: 16.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 801 + color: '#990000FF' + - uid: 2999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 + pos: 16.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 802 + color: '#990000FF' + - uid: 3000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 + pos: 16.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 803 + color: '#990000FF' + - uid: 3002 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-7.5 + pos: 16.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 804 + color: '#0055CCFF' + - uid: 3003 components: - type: Transform - pos: -17.5,-8.5 + rot: 1.5707963267948966 rad + pos: 17.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 807 + color: '#0055CCFF' + - uid: 3004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-10.5 + rot: 1.5707963267948966 rad + pos: 18.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 809 + color: '#0055CCFF' + - uid: 3005 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-1.5 + pos: 19.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 810 + color: '#0055CCFF' + - uid: 3008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-1.5 + pos: 16.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 811 + color: '#0055CCFF' + - uid: 3009 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + pos: 17.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 812 + color: '#0055CCFF' + - uid: 3010 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + pos: 18.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 813 + color: '#0055CCFF' + - uid: 3025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 15.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 821 + color: '#0055CCFF' + - uid: 3382 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,2.5 + pos: -32.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 822 + color: '#990000FF' + - uid: 3407 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,2.5 + pos: -31.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 823 + color: '#990000FF' + - uid: 3707 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,2.5 + pos: -33.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 824 + color: '#0055CCFF' + - uid: 3743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 + pos: -32.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 825 + color: '#0055CCFF' + - uid: 3796 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,2.5 + pos: 16.5,46.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 826 + - uid: 3797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 + rot: -1.5707963267948966 rad + pos: 14.5,46.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 827 + color: '#FF1212FF' + - uid: 3799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 + rot: -1.5707963267948966 rad + pos: 12.5,46.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 828 + color: '#FF1212FF' + - uid: 3800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 + rot: -1.5707963267948966 rad + pos: 10.5,46.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 829 + color: '#FF1212FF' + - uid: 3801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-1.5 + rot: -1.5707963267948966 rad + pos: 9.5,46.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 830 + color: '#FF1212FF' + - uid: 3802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-2.5 + rot: -1.5707963267948966 rad + pos: 8.5,46.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 836 + color: '#FF1212FF' + - uid: 3805 components: - type: Transform - pos: 4.5,-4.5 + pos: 11.5,47.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 837 + color: '#FF1212FF' + - uid: 3806 components: - type: Transform - pos: 4.5,-5.5 + pos: 11.5,48.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 839 + color: '#FF1212FF' + - uid: 3807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 + pos: 11.5,49.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 840 + color: '#FF1212FF' + - uid: 3810 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,4.5 + pos: 7.5,45.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 841 + color: '#FF1212FF' + - uid: 3811 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,5.5 + pos: 11.5,45.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 842 + color: '#FF1212FF' + - uid: 3812 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,6.5 + pos: 11.5,44.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 844 + color: '#FF1212FF' + - uid: 3819 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,7.5 + pos: 13.5,44.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 845 + - uid: 3820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,7.5 + pos: 12.5,44.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 852 + - uid: 3821 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-9.5 + pos: 11.5,44.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 853 + color: '#0335FCFF' + - uid: 3822 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-9.5 + pos: 10.5,44.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 854 + color: '#0335FCFF' + - uid: 3825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-9.5 + rot: 3.141592653589793 rad + pos: 9.5,46.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 855 + color: '#0335FCFF' + - uid: 3826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 + rot: 3.141592653589793 rad + pos: 9.5,47.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 866 + color: '#0335FCFF' + - uid: 3827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + rot: 3.141592653589793 rad + pos: 9.5,48.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 867 + - uid: 3828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 + rot: 3.141592653589793 rad + pos: 9.5,49.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 868 + - uid: 3829 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + pos: 8.5,45.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 869 + - uid: 3830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: 7.5,45.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 872 + - uid: 3831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,0.5 + rot: 1.5707963267948966 rad + pos: 6.5,45.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 873 + - uid: 3833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 + rot: -1.5707963267948966 rad + pos: 4.5,45.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 874 + - uid: 4009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,2.5 + pos: -19.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 875 + color: '#0055CCFF' + - uid: 4011 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,3.5 + pos: -19.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 878 + color: '#0055CCFF' + - uid: 4048 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,8.5 + pos: 52.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 879 + color: '#0055CCFF' + - uid: 4053 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,8.5 + pos: 53.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 880 + color: '#0055CCFF' + - uid: 4144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,8.5 + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 881 + color: '#0055CCFF' + - uid: 4145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,8.5 + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 882 + color: '#0055CCFF' + - uid: 4146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,8.5 + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 883 + color: '#0055CCFF' + - uid: 4147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,8.5 + rot: 1.5707963267948966 rad + pos: 16.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 884 + color: '#0055CCFF' + - uid: 4148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,8.5 + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1502 + color: '#0055CCFF' + - uid: 4149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-10.5 + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1503 + color: '#0055CCFF' + - uid: 4151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-9.5 + rot: 1.5707963267948966 rad + pos: 20.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1505 + color: '#0055CCFF' + - uid: 4152 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-4.5 + pos: 21.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1506 + color: '#0055CCFF' + - uid: 4153 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-4.5 + pos: 22.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1507 + color: '#0055CCFF' + - uid: 4154 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-4.5 + pos: 23.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1509 + color: '#0055CCFF' + - uid: 4155 components: - type: Transform - pos: -21.5,-5.5 + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1510 + color: '#0055CCFF' + - uid: 4159 components: - type: Transform - pos: -21.5,-6.5 + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1680 + color: '#990000FF' + - uid: 4160 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,2.5 + pos: 13.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1681 + color: '#990000FF' + - uid: 4161 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,2.5 + pos: 14.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1682 + color: '#990000FF' + - uid: 4162 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,2.5 + pos: 15.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1785 + color: '#990000FF' + - uid: 4163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,25.5 + pos: 16.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1786 + color: '#990000FF' + - uid: 4165 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,27.5 + pos: 18.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1808 + color: '#990000FF' + - uid: 4166 components: - type: Transform - pos: 6.5,18.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1809 + color: '#990000FF' + - uid: 4167 components: - type: Transform - pos: 6.5,17.5 + rot: 1.5707963267948966 rad + pos: 20.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1810 + color: '#990000FF' + - uid: 4168 components: - type: Transform - pos: 8.5,19.5 + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1811 + color: '#990000FF' + - uid: 4169 components: - type: Transform - pos: 8.5,18.5 + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1812 + color: '#990000FF' + - uid: 4170 components: - type: Transform - pos: 8.5,17.5 + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1815 + color: '#990000FF' + - uid: 4184 components: - type: Transform - pos: -0.5,19.5 + rot: -1.5707963267948966 rad + pos: 55.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1835 + color: '#990000FF' + - uid: 4185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,24.5 + rot: -1.5707963267948966 rad + pos: 56.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1847 + color: '#0055CCFF' + - uid: 4192 components: - type: Transform - pos: -1.5,20.5 + pos: 30.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1848 + color: '#0055CCFF' + - uid: 4215 components: - type: Transform - pos: -1.5,21.5 + rot: 3.141592653589793 rad + pos: 24.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1849 + color: '#990000FF' + - uid: 4216 components: - type: Transform - pos: -1.5,22.5 + rot: 3.141592653589793 rad + pos: 24.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1850 + color: '#990000FF' + - uid: 4217 components: - type: Transform - pos: -3.5,21.5 + rot: 3.141592653589793 rad + pos: 24.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1851 + color: '#990000FF' + - uid: 4218 components: - type: Transform - pos: -3.5,22.5 + rot: 3.141592653589793 rad + pos: 24.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1984 + color: '#990000FF' + - uid: 4219 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,21.5 + pos: 24.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1987 + color: '#990000FF' + - uid: 4220 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,24.5 + pos: 24.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1988 + color: '#990000FF' + - uid: 4222 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,25.5 + pos: 25.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1989 + color: '#0055CCFF' + - uid: 4223 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,26.5 + pos: 25.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1990 + color: '#0055CCFF' + - uid: 4224 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,27.5 + pos: 25.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1991 + color: '#0055CCFF' + - uid: 4225 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,28.5 + pos: 25.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1993 + color: '#0055CCFF' + - uid: 4228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 + pos: 25.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1994 + color: '#0055CCFF' + - uid: 4229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,31.5 + rot: -1.5707963267948966 rad + pos: 24.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1995 + color: '#0055CCFF' + - uid: 4230 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,32.5 + rot: -1.5707963267948966 rad + pos: 23.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1996 + color: '#0055CCFF' + - uid: 4320 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,21.5 + pos: 30.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1998 + color: '#0055CCFF' + - uid: 4326 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,23.5 + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1999 + color: '#0055CCFF' + - uid: 4394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,24.5 + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2001 + color: '#990000FF' + - uid: 4400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,26.5 + rot: -1.5707963267948966 rad + pos: 52.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2002 + color: '#990000FF' + - uid: 4459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,27.5 + rot: 1.5707963267948966 rad + pos: 12.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2003 + color: '#990000FF' + - uid: 4460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,28.5 + rot: 1.5707963267948966 rad + pos: 13.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2005 + color: '#990000FF' + - uid: 4461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,30.5 + rot: 1.5707963267948966 rad + pos: 14.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2006 + color: '#990000FF' + - uid: 4462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,31.5 + rot: 1.5707963267948966 rad + pos: 13.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2007 + color: '#0055CCFF' + - uid: 4463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,32.5 + rot: 1.5707963267948966 rad + pos: 14.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2010 + color: '#0055CCFF' + - uid: 4576 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,33.5 + pos: 57.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2011 + color: '#990000FF' + - uid: 4648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,33.5 + pos: -5.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2013 + color: '#990000FF' + - uid: 4842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,33.5 + pos: -16.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2014 + color: '#0055CCFF' + - uid: 4857 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,33.5 + pos: -21.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2015 + color: '#990000FF' + - uid: 4858 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,33.5 + pos: -22.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2016 + color: '#990000FF' + - uid: 4861 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,33.5 + pos: -26.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2017 + color: '#0055CCFF' + - uid: 4862 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,33.5 + pos: -25.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2019 + color: '#0055CCFF' + - uid: 4871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,33.5 + rot: 1.5707963267948966 rad + pos: -16.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2020 + color: '#990000FF' + - uid: 4872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,33.5 + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2021 + color: '#990000FF' + - uid: 4873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,32.5 + rot: 3.141592653589793 rad + pos: -15.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2023 + color: '#990000FF' + - uid: 4874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,32.5 + rot: 3.141592653589793 rad + pos: -15.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2024 + color: '#990000FF' + - uid: 4877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,32.5 + pos: -19.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2025 + color: '#0055CCFF' + - uid: 4889 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,32.5 + pos: -16.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2026 + color: '#0055CCFF' + - uid: 4891 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,32.5 + pos: -19.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2027 + color: '#990000FF' + - uid: 4933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,32.5 + pos: -24.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2029 + color: '#0055CCFF' + - uid: 4934 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,32.5 + pos: -27.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2030 + color: '#0055CCFF' + - uid: 4938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,31.5 + rot: -1.5707963267948966 rad + pos: -21.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2031 + color: '#0055CCFF' + - uid: 4939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,30.5 + rot: -1.5707963267948966 rad + pos: -20.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2032 + color: '#0055CCFF' + - uid: 4943 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,29.5 + pos: -15.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2033 + color: '#990000FF' + - uid: 4944 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,28.5 + pos: -15.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2034 + color: '#990000FF' + - uid: 4962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,27.5 + pos: -16.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2036 + color: '#0055CCFF' + - uid: 4963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,25.5 + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2038 + color: '#0055CCFF' + - uid: 4964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,23.5 + pos: -16.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2039 + color: '#0055CCFF' + - uid: 4966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,22.5 + pos: -16.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2040 + color: '#0055CCFF' + - uid: 4987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,21.5 + rot: -1.5707963267948966 rad + pos: -23.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2041 + color: '#0055CCFF' + - uid: 4989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,20.5 + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2042 + color: '#0055CCFF' + - uid: 4993 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,20.5 + pos: -19.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2043 + color: '#0055CCFF' + - uid: 5003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,21.5 + rot: -1.5707963267948966 rad + pos: -22.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2044 + color: '#0055CCFF' + - uid: 5005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 + rot: 1.5707963267948966 rad + pos: -18.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2045 + color: '#990000FF' + - uid: 5007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,23.5 + rot: -1.5707963267948966 rad + pos: -17.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2047 + color: '#0055CCFF' + - uid: 5013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,25.5 + rot: -1.5707963267948966 rad + pos: -12.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2049 + color: '#990000FF' + - uid: 5020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,27.5 + pos: -24.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2050 + color: '#0055CCFF' + - uid: 5021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,28.5 + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2051 + color: '#0055CCFF' + - uid: 5022 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,29.5 + pos: -24.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2052 + color: '#0055CCFF' + - uid: 5023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,30.5 + pos: -26.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2053 + color: '#990000FF' + - uid: 5077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,31.5 + pos: -6.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2057 + color: '#0055CCFF' + - uid: 5078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 + pos: -6.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2058 + color: '#0055CCFF' + - uid: 5079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,25.5 + pos: -6.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2059 + color: '#0055CCFF' + - uid: 5080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,25.5 + pos: -6.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2060 + color: '#0055CCFF' + - uid: 5081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,25.5 + pos: -6.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2061 + color: '#0055CCFF' + - uid: 5082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,26.5 + pos: -6.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2062 + color: '#0055CCFF' + - uid: 5083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,27.5 + pos: -6.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2063 + color: '#0055CCFF' + - uid: 5084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,28.5 + pos: -6.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2064 + color: '#0055CCFF' + - uid: 5085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 + pos: -6.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2066 + color: '#0055CCFF' + - uid: 5087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,24.5 + pos: -6.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2067 + color: '#0055CCFF' + - uid: 5088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,25.5 + pos: -6.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2068 + color: '#0055CCFF' + - uid: 5089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,26.5 + pos: -6.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2069 + color: '#0055CCFF' + - uid: 5090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,27.5 + pos: -6.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2070 + color: '#0055CCFF' + - uid: 5091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,28.5 + pos: -6.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2420 + color: '#0055CCFF' + - uid: 5092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,23.5 + pos: -6.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2421 + color: '#0055CCFF' + - uid: 5093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,23.5 + pos: -6.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2422 + color: '#0055CCFF' + - uid: 5094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,23.5 + pos: -6.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2423 + color: '#0055CCFF' + - uid: 5095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,23.5 + pos: -6.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2425 + color: '#0055CCFF' + - uid: 5097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,24.5 + pos: -6.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2426 + color: '#0055CCFF' + - uid: 5098 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,25.5 + pos: -6.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2427 + color: '#0055CCFF' + - uid: 5099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,26.5 + pos: 1.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2428 + color: '#0055CCFF' + - uid: 5100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,27.5 + pos: 1.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2431 + color: '#0055CCFF' + - uid: 5102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,24.5 + pos: 1.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2432 + color: '#0055CCFF' + - uid: 5103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,24.5 + pos: 1.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2433 + color: '#0055CCFF' + - uid: 5104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,24.5 + pos: 1.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2434 + color: '#0055CCFF' + - uid: 5105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,24.5 + pos: 1.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2436 + color: '#0055CCFF' + - uid: 5106 components: - type: Transform - pos: -12.5,25.5 + pos: 1.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2437 + color: '#0055CCFF' + - uid: 5107 components: - type: Transform - pos: -12.5,26.5 + pos: 1.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2438 + color: '#0055CCFF' + - uid: 5108 components: - type: Transform - pos: -12.5,27.5 + pos: 1.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2943 + color: '#0055CCFF' + - uid: 5109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,15.5 + pos: 1.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2944 + color: '#0055CCFF' + - uid: 5110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,15.5 + pos: 1.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2946 + color: '#0055CCFF' + - uid: 5112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,15.5 + pos: 1.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2947 + color: '#0055CCFF' + - uid: 5114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,15.5 + pos: 1.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2948 + color: '#0055CCFF' + - uid: 5115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 + pos: 1.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2949 + color: '#0055CCFF' + - uid: 5116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 + pos: 1.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2950 + color: '#0055CCFF' + - uid: 5117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,15.5 + pos: 1.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2951 + color: '#0055CCFF' + - uid: 5118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 + pos: 1.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2952 + color: '#0055CCFF' + - uid: 5119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,15.5 + pos: 1.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2953 + color: '#0055CCFF' + - uid: 5120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,14.5 + pos: 1.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2954 + color: '#0055CCFF' + - uid: 5122 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,14.5 + pos: -5.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2955 + color: '#0055CCFF' + - uid: 5123 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,14.5 + pos: -4.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2956 + color: '#0055CCFF' + - uid: 5124 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,14.5 + pos: -3.5,-35.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2957 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5125 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,14.5 + pos: -2.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2958 + color: '#0055CCFF' + - uid: 5127 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,14.5 + pos: -0.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2959 + color: '#0055CCFF' + - uid: 5128 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,14.5 + pos: 0.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2961 + color: '#0055CCFF' + - uid: 5130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 + pos: -5.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2962 + color: '#990000FF' + - uid: 5131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,14.5 + pos: -5.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2964 + color: '#990000FF' + - uid: 5132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,15.5 + pos: -5.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2968 + color: '#990000FF' + - uid: 5133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 + pos: -5.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2970 + color: '#990000FF' + - uid: 5134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,16.5 + pos: -5.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2971 + color: '#990000FF' + - uid: 5135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,17.5 + pos: -5.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2973 + color: '#990000FF' + - uid: 5136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,19.5 + pos: -5.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2975 + color: '#990000FF' + - uid: 5137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 + pos: -5.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2976 + color: '#990000FF' + - uid: 5139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 + pos: -5.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2977 + color: '#990000FF' + - uid: 5140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,23.5 + pos: -5.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2979 + color: '#990000FF' + - uid: 5141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,25.5 + pos: -5.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2981 + color: '#990000FF' + - uid: 5143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,27.5 + pos: -5.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2982 + color: '#990000FF' + - uid: 5144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,28.5 + pos: -5.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2984 + color: '#990000FF' + - uid: 5145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,15.5 + pos: -5.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2985 + color: '#990000FF' + - uid: 5146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,16.5 + pos: -5.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2986 + color: '#990000FF' + - uid: 5147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,17.5 + pos: -5.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2988 + color: '#990000FF' + - uid: 5149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,19.5 + pos: -5.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2990 + color: '#990000FF' + - uid: 5150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,21.5 + pos: -5.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2991 + color: '#990000FF' + - uid: 5151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,22.5 + pos: 0.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2992 + color: '#990000FF' + - uid: 5152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,23.5 + pos: 0.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2993 + color: '#990000FF' + - uid: 5154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,24.5 + pos: 0.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2996 + color: '#990000FF' + - uid: 5155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,25.5 + pos: 0.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2997 + color: '#990000FF' + - uid: 5156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,25.5 + pos: 0.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2998 + color: '#990000FF' + - uid: 5157 components: - type: Transform - pos: 16.5,26.5 + pos: 0.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2999 + color: '#990000FF' + - uid: 5158 components: - type: Transform - pos: 16.5,27.5 + pos: 0.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3000 + color: '#990000FF' + - uid: 5159 components: - type: Transform - pos: 16.5,28.5 + pos: 0.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3002 + color: '#990000FF' + - uid: 5160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,24.5 + pos: 0.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3003 + color: '#990000FF' + - uid: 5161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,24.5 + pos: 0.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3004 + color: '#990000FF' + - uid: 5162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,24.5 + pos: 0.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3005 + color: '#990000FF' + - uid: 5164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,24.5 + pos: 0.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3008 + color: '#990000FF' + - uid: 5165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,26.5 + pos: 0.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3009 + color: '#990000FF' + - uid: 5166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,26.5 + pos: 0.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3010 + color: '#990000FF' + - uid: 5167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,26.5 + pos: 0.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3025 + color: '#990000FF' + - uid: 5168 components: - type: Transform - pos: 15.5,14.5 + pos: 0.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3382 + color: '#990000FF' + - uid: 5169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 + pos: 0.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3407 + color: '#990000FF' + - uid: 5170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 + pos: 0.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3707 + color: '#990000FF' + - uid: 5171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 + pos: 0.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3743 + color: '#990000FF' + - uid: 5172 components: - type: Transform - pos: -32.5,-0.5 + pos: 0.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3796 + color: '#990000FF' + - uid: 5173 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,46.5 + pos: -4.5,-34.5 parent: 4812 - - uid: 3797 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5175 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,46.5 + pos: -2.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3799 + color: '#990000FF' + - uid: 5176 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,46.5 + pos: -1.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3800 + color: '#990000FF' + - uid: 5177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,46.5 + pos: -0.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3801 + color: '#990000FF' + - uid: 5180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,46.5 + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3802 + color: '#0055CCFF' + - uid: 5181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,46.5 + rot: 1.5707963267948966 rad + pos: -8.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3805 + color: '#0055CCFF' + - uid: 5182 components: - type: Transform - pos: 11.5,47.5 + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3806 + color: '#0055CCFF' + - uid: 5183 components: - type: Transform - pos: 11.5,48.5 + rot: 1.5707963267948966 rad + pos: -6.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3807 + color: '#990000FF' + - uid: 5184 components: - type: Transform - pos: 11.5,49.5 + rot: 1.5707963267948966 rad + pos: -7.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3810 + color: '#990000FF' + - uid: 5185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,45.5 + rot: 1.5707963267948966 rad + pos: -8.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3811 + color: '#990000FF' + - uid: 5186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,45.5 + rot: 1.5707963267948966 rad + pos: -9.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3812 + color: '#990000FF' + - uid: 5187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,44.5 + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3819 + color: '#990000FF' + - uid: 5190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,44.5 + pos: -10.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3820 + color: '#0055CCFF' + - uid: 5191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,44.5 + pos: -10.5,-37.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3821 + color: '#0055CCFF' + - uid: 5192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,44.5 + pos: -10.5,-38.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3822 + color: '#0055CCFF' + - uid: 5193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,44.5 + pos: -10.5,-39.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3825 + color: '#0055CCFF' + - uid: 5194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,46.5 + pos: -10.5,-40.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3826 + color: '#0055CCFF' + - uid: 5196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,47.5 + pos: -10.5,-42.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3827 + color: '#0055CCFF' + - uid: 5197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,48.5 + pos: -10.5,-43.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3828 + color: '#0055CCFF' + - uid: 5198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,49.5 + pos: -10.5,-44.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3829 + color: '#0055CCFF' + - uid: 5199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,45.5 + pos: -10.5,-45.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3830 + color: '#0055CCFF' + - uid: 5200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,45.5 + pos: -10.5,-46.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3831 + color: '#0055CCFF' + - uid: 5201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,45.5 + pos: -10.5,-47.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3833 + color: '#0055CCFF' + - uid: 5202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,45.5 + pos: -10.5,-48.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4009 + color: '#0055CCFF' + - uid: 5203 components: - type: Transform - pos: -19.5,-15.5 + pos: -10.5,-49.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4011 + color: '#0055CCFF' + - uid: 5204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-13.5 + pos: -11.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4144 + color: '#990000FF' + - uid: 5205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 + pos: -11.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4145 + color: '#990000FF' + - uid: 5206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 + pos: -11.5,-37.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4146 + color: '#990000FF' + - uid: 5207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 + pos: -11.5,-38.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4147 + color: '#990000FF' + - uid: 5208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 + pos: -11.5,-39.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4148 + color: '#990000FF' + - uid: 5209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 + pos: -11.5,-40.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4149 + color: '#990000FF' + - uid: 5210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 + pos: -11.5,-41.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4151 + color: '#990000FF' + - uid: 5212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-2.5 + pos: -11.5,-43.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4152 + color: '#990000FF' + - uid: 5213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 + pos: -11.5,-44.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4153 + color: '#990000FF' + - uid: 5214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-2.5 + pos: -11.5,-45.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4154 + color: '#990000FF' + - uid: 5215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 + pos: -11.5,-46.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4155 + color: '#990000FF' + - uid: 5216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-2.5 + pos: -11.5,-47.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4157 + color: '#990000FF' + - uid: 5217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-2.5 + pos: -11.5,-48.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4158 + color: '#990000FF' + - uid: 5218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 + pos: -11.5,-49.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4159 + color: '#990000FF' + - uid: 5219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 + pos: -11.5,-50.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4160 + color: '#990000FF' + - uid: 5220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: -10.5,-50.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4161 + color: '#0055CCFF' + - uid: 5221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 + pos: -10.5,-51.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4162 + color: '#0055CCFF' + - uid: 5391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + rot: 3.141592653589793 rad + pos: -16.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4163 + color: '#0055CCFF' + - uid: 5394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4165 + color: '#990000FF' + - uid: 5476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 + rot: 3.141592653589793 rad + pos: 14.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4166 + color: '#990000FF' + - uid: 5564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + rot: -1.5707963267948966 rad + pos: 29.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4167 + color: '#990000FF' + - uid: 5566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 + rot: -1.5707963267948966 rad + pos: 28.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4168 + color: '#990000FF' + - uid: 5585 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-3.5 + pos: 24.5,-28.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4169 + - uid: 5586 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-3.5 + pos: 24.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4170 + - uid: 5587 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-3.5 + pos: 26.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4172 + - uid: 5588 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-3.5 + pos: 26.5,-28.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4173 + - uid: 5589 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-3.5 + pos: 27.5,-28.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4174 + - uid: 5590 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-3.5 + pos: 27.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4175 + - uid: 5628 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,0.5 + pos: 2.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4176 + color: '#0055CCFF' + - uid: 5632 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,0.5 + pos: 6.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4177 + color: '#0055CCFF' + - uid: 5633 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,2.5 + pos: 7.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4178 + color: '#0055CCFF' + - uid: 5634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,2.5 + pos: 8.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4179 + color: '#0055CCFF' + - uid: 5636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 + pos: 9.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4180 + color: '#0055CCFF' + - uid: 5637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 + pos: 9.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4181 + color: '#0055CCFF' + - uid: 5638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 + pos: 9.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4182 + color: '#0055CCFF' + - uid: 5639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 + pos: 9.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4187 + color: '#0055CCFF' + - uid: 5640 components: - type: Transform - pos: 30.5,-6.5 + pos: 9.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4188 + color: '#0055CCFF' + - uid: 5641 components: - type: Transform - pos: 30.5,-4.5 + pos: 9.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4189 + color: '#0055CCFF' + - uid: 5642 components: - type: Transform - pos: 30.5,-3.5 + rot: -1.5707963267948966 rad + pos: 10.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4191 + color: '#0055CCFF' + - uid: 5643 components: - type: Transform - pos: 30.5,-1.5 + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4192 + color: '#0055CCFF' + - uid: 5645 components: - type: Transform - pos: 30.5,1.5 + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4194 + color: '#0055CCFF' + - uid: 5646 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-2.5 + pos: 14.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4195 + color: '#0055CCFF' + - uid: 5647 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-2.5 + pos: 15.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4202 + color: '#0055CCFF' + - uid: 5648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + rot: -1.5707963267948966 rad + pos: 16.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4207 + color: '#0055CCFF' + - uid: 5649 components: - type: Transform - pos: 24.5,-5.5 + rot: -1.5707963267948966 rad + pos: 17.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4208 + color: '#0055CCFF' + - uid: 5650 components: - type: Transform - pos: 24.5,-6.5 + rot: -1.5707963267948966 rad + pos: 18.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4210 + color: '#0055CCFF' + - uid: 5651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 + rot: -1.5707963267948966 rad + pos: 19.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4211 + color: '#0055CCFF' + - uid: 5652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 + rot: -1.5707963267948966 rad + pos: 20.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4212 + color: '#0055CCFF' + - uid: 5653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4215 + color: '#0055CCFF' + - uid: 5654 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-2.5 + pos: 9.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4216 + color: '#0055CCFF' + - uid: 5655 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-1.5 + pos: 9.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4217 + color: '#0055CCFF' + - uid: 5656 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-0.5 + pos: 9.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4218 + color: '#0055CCFF' + - uid: 5657 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,0.5 + pos: 9.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4219 + color: '#0055CCFF' + - uid: 5658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4220 + color: '#990000FF' + - uid: 5659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,2.5 + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4222 + color: '#990000FF' + - uid: 5661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-0.5 + rot: -1.5707963267948966 rad + pos: 4.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4223 + color: '#990000FF' + - uid: 5662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,0.5 + rot: -1.5707963267948966 rad + pos: 5.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4224 + color: '#990000FF' + - uid: 5663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,1.5 + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4225 + color: '#0055CCFF' + - uid: 5664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,2.5 + rot: -1.5707963267948966 rad + pos: 7.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4228 + color: '#990000FF' + - uid: 5666 components: - type: Transform - pos: 25.5,3.5 + rot: -1.5707963267948966 rad + pos: 9.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4229 + color: '#990000FF' + - uid: 5667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,4.5 + rot: 3.141592653589793 rad + pos: 10.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4230 + color: '#990000FF' + - uid: 5668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 + rot: 3.141592653589793 rad + pos: 10.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4459 + color: '#990000FF' + - uid: 5669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 + rot: 3.141592653589793 rad + pos: 10.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4460 + color: '#990000FF' + - uid: 5670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,6.5 + rot: 3.141592653589793 rad + pos: 10.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4461 + color: '#990000FF' + - uid: 5671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 + rot: 3.141592653589793 rad + pos: 10.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4462 + color: '#990000FF' + - uid: 5672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 + rot: 3.141592653589793 rad + pos: 10.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4463 + color: '#990000FF' + - uid: 5674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,8.5 + rot: 3.141592653589793 rad + pos: 10.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4648 + color: '#990000FF' + - uid: 5675 components: - type: Transform - pos: -5.5,-12.5 + rot: 3.141592653589793 rad + pos: 10.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4842 + color: '#990000FF' + - uid: 5677 components: - type: Transform - pos: -16.5,-25.5 + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4857 + color: '#990000FF' + - uid: 5678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-22.5 + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4858 + color: '#990000FF' + - uid: 5679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-22.5 + rot: 1.5707963267948966 rad + pos: 13.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4861 + color: '#990000FF' + - uid: 5681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4862 + color: '#990000FF' + - uid: 5682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4871 + color: '#990000FF' + - uid: 5683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-16.5 + pos: 17.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4872 + color: '#990000FF' + - uid: 5684 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-16.5 + pos: 18.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4873 + color: '#990000FF' + - uid: 5685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-18.5 + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4874 + color: '#990000FF' + - uid: 5686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-17.5 + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4877 + color: '#990000FF' + - uid: 5688 components: - type: Transform - pos: -19.5,-14.5 + pos: 4.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4889 + color: '#0055CCFF' + - uid: 5689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-17.5 + pos: 4.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4891 + color: '#0055CCFF' + - uid: 5690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 + pos: 5.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4933 + color: '#0055CCFF' + - uid: 5691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 + pos: 5.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4934 + color: '#0055CCFF' + - uid: 5692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 + pos: 5.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4938 + color: '#0055CCFF' + - uid: 5693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-23.5 + rot: 3.141592653589793 rad + pos: 6.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4939 + color: '#990000FF' + - uid: 5694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-23.5 + rot: 3.141592653589793 rad + pos: 6.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4943 + color: '#990000FF' + - uid: 5695 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-20.5 + pos: 3.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4944 + color: '#990000FF' + - uid: 5696 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-19.5 + pos: 3.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4962 + color: '#990000FF' + - uid: 5701 components: - type: Transform - pos: -16.5,-23.5 + pos: 3.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4963 + color: '#990000FF' + - uid: 5702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 + pos: 8.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4964 + color: '#990000FF' + - uid: 5703 components: - type: Transform - pos: -16.5,-26.5 + pos: 8.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4966 + color: '#990000FF' + - uid: 5704 components: - type: Transform - pos: -16.5,-24.5 + pos: 8.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4987 + color: '#990000FF' + - uid: 5705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-23.5 + pos: 8.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4989 + color: '#990000FF' + - uid: 5708 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-22.5 + pos: 10.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4993 + color: '#0055CCFF' + - uid: 5709 components: - type: Transform - pos: -19.5,-21.5 + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5003 + color: '#0055CCFF' + - uid: 5710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-23.5 + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5005 + color: '#990000FF' + - uid: 5711 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-16.5 + pos: 10.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5007 + color: '#990000FF' + - uid: 5712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 + rot: 1.5707963267948966 rad + pos: 11.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5013 + color: '#990000FF' + - uid: 5713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-21.5 + pos: 9.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5020 + color: '#0055CCFF' + - uid: 5720 components: - type: Transform - pos: -24.5,-26.5 + rot: -1.5707963267948966 rad + pos: 23.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5021 + color: '#0055CCFF' + - uid: 5721 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-22.5 + pos: 24.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5022 + color: '#0055CCFF' + - uid: 5722 components: - type: Transform - pos: -24.5,-25.5 + rot: 3.141592653589793 rad + pos: 22.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5023 + color: '#0055CCFF' + - uid: 5723 components: - type: Transform - pos: -26.5,-23.5 + rot: 3.141592653589793 rad + pos: 22.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5077 + color: '#0055CCFF' + - uid: 5724 components: - type: Transform - pos: -6.5,-13.5 + rot: 3.141592653589793 rad + pos: 22.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5078 + color: '#0055CCFF' + - uid: 5727 components: - type: Transform - pos: -6.5,-14.5 + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5079 + color: '#990000FF' + - uid: 5728 components: - type: Transform - pos: -6.5,-15.5 + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5080 + color: '#990000FF' + - uid: 5730 components: - type: Transform - pos: -6.5,-16.5 + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5081 + color: '#990000FF' + - uid: 5731 components: - type: Transform - pos: -6.5,-17.5 + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5082 + color: '#990000FF' + - uid: 5733 components: - type: Transform - pos: -6.5,-18.5 + rot: 3.141592653589793 rad + pos: 27.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5083 + color: '#990000FF' + - uid: 5739 components: - type: Transform - pos: -6.5,-19.5 + rot: 3.141592653589793 rad + pos: 22.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5084 + color: '#0055CCFF' + - uid: 5740 components: - type: Transform - pos: -6.5,-20.5 + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5085 + color: '#0055CCFF' + - uid: 5741 components: - type: Transform - pos: -6.5,-21.5 + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5087 + color: '#0055CCFF' + - uid: 5742 components: - type: Transform - pos: -6.5,-23.5 + rot: 1.5707963267948966 rad + pos: 25.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5088 + color: '#0055CCFF' + - uid: 5743 components: - type: Transform - pos: -6.5,-24.5 + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5089 + color: '#0055CCFF' + - uid: 5744 components: - type: Transform - pos: -6.5,-25.5 + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5090 + color: '#0055CCFF' + - uid: 5745 components: - type: Transform - pos: -6.5,-26.5 + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5091 + color: '#0055CCFF' + - uid: 5746 components: - type: Transform - pos: -6.5,-27.5 + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5092 + color: '#0055CCFF' + - uid: 5747 components: - type: Transform - pos: -6.5,-28.5 + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5093 + color: '#0055CCFF' + - uid: 5748 components: - type: Transform - pos: -6.5,-29.5 + rot: 1.5707963267948966 rad + pos: 32.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5094 + color: '#0055CCFF' + - uid: 5749 components: - type: Transform - pos: -6.5,-30.5 + pos: 21.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5095 + color: '#990000FF' + - uid: 5750 components: - type: Transform - pos: -6.5,-31.5 + pos: 21.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5097 + color: '#990000FF' + - uid: 5751 components: - type: Transform - pos: -6.5,-33.5 + pos: 21.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5098 + color: '#990000FF' + - uid: 5752 components: - type: Transform - pos: -6.5,-34.5 + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5099 + color: '#990000FF' + - uid: 5753 components: - type: Transform - pos: 1.5,-34.5 + rot: -1.5707963267948966 rad + pos: 23.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5100 + color: '#990000FF' + - uid: 5754 components: - type: Transform - pos: 1.5,-33.5 + rot: -1.5707963267948966 rad + pos: 24.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5102 + color: '#990000FF' + - uid: 5755 components: - type: Transform - pos: 1.5,-31.5 + rot: -1.5707963267948966 rad + pos: 25.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5103 + color: '#990000FF' + - uid: 5756 components: - type: Transform - pos: 1.5,-30.5 + rot: -1.5707963267948966 rad + pos: 26.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5104 + color: '#990000FF' + - uid: 5758 components: - type: Transform - pos: 1.5,-29.5 + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5105 + color: '#990000FF' + - uid: 5759 components: - type: Transform - pos: 1.5,-28.5 + rot: -1.5707963267948966 rad + pos: 31.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5106 + color: '#990000FF' + - uid: 5760 components: - type: Transform - pos: 1.5,-27.5 + rot: -1.5707963267948966 rad + pos: 32.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5107 + color: '#990000FF' + - uid: 5799 components: - type: Transform - pos: 1.5,-26.5 + rot: 3.141592653589793 rad + pos: 14.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5108 + color: '#990000FF' + - uid: 5800 components: - type: Transform - pos: 1.5,-25.5 + rot: 3.141592653589793 rad + pos: 14.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5109 + color: '#990000FF' + - uid: 6293 components: - type: Transform - pos: 1.5,-24.5 + rot: -1.5707963267948966 rad + pos: -25.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5110 + color: '#990000FF' + - uid: 6336 components: - type: Transform - pos: 1.5,-23.5 + rot: -1.5707963267948966 rad + pos: -24.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5112 + color: '#990000FF' + - uid: 6384 components: - type: Transform - pos: 1.5,-21.5 + rot: -1.5707963267948966 rad + pos: -29.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5114 + color: '#0055CCFF' + - uid: 6418 components: - type: Transform - pos: 1.5,-19.5 + rot: 3.141592653589793 rad + pos: -1.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5115 + color: '#990000FF' + - uid: 6442 components: - type: Transform - pos: 1.5,-18.5 + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5116 + color: '#990000FF' + - uid: 6443 components: - type: Transform - pos: 1.5,-17.5 + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5117 + color: '#990000FF' + - uid: 6444 components: - type: Transform - pos: 1.5,-16.5 + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5118 + color: '#990000FF' + - uid: 6445 components: - type: Transform - pos: 1.5,-15.5 + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5119 + color: '#990000FF' + - uid: 6446 components: - type: Transform - pos: 1.5,-14.5 + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5120 + color: '#990000FF' + - uid: 6447 components: - type: Transform - pos: 1.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5122 + color: '#0055CCFF' + - uid: 6448 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-35.5 + pos: -4.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5123 + color: '#0055CCFF' + - uid: 6449 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-35.5 + pos: -3.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5124 + color: '#0055CCFF' + - uid: 6450 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-35.5 + pos: -2.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5125 + color: '#0055CCFF' + - uid: 6451 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-35.5 + pos: -1.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5127 + color: '#0055CCFF' + - uid: 6452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-35.5 + pos: -0.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5128 + color: '#0055CCFF' + - uid: 6453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-35.5 + pos: 0.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5130 + color: '#0055CCFF' + - uid: 6454 components: - type: Transform - pos: -5.5,-13.5 + rot: 1.5707963267948966 rad + pos: -4.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5131 + color: '#990000FF' + - uid: 6456 components: - type: Transform - pos: -5.5,-14.5 + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5132 + color: '#990000FF' + - uid: 6457 components: - type: Transform - pos: -5.5,-15.5 + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5133 + color: '#990000FF' + - uid: 6458 components: - type: Transform - pos: -5.5,-16.5 + rot: 1.5707963267948966 rad + pos: -0.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5134 + color: '#990000FF' + - uid: 6459 components: - type: Transform - pos: -5.5,-17.5 + rot: 1.5707963267948966 rad + pos: 0.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5135 + color: '#0055CCFF' + - uid: 6460 components: - type: Transform - pos: -5.5,-18.5 + rot: 1.5707963267948966 rad + pos: -0.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5136 + color: '#0055CCFF' + - uid: 6463 components: - type: Transform - pos: -5.5,-19.5 + rot: 1.5707963267948966 rad + pos: -3.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5137 + color: '#0055CCFF' + - uid: 6464 components: - type: Transform - pos: -5.5,-20.5 + rot: 1.5707963267948966 rad + pos: -4.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5139 + color: '#0055CCFF' + - uid: 6465 components: - type: Transform - pos: -5.5,-22.5 + rot: 1.5707963267948966 rad + pos: -5.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5140 + color: '#0055CCFF' + - uid: 6466 components: - type: Transform - pos: -5.5,-23.5 + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5141 + color: '#990000FF' + - uid: 6467 components: - type: Transform - pos: -5.5,-24.5 + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5143 + color: '#990000FF' + - uid: 6468 components: - type: Transform - pos: -5.5,-26.5 + pos: -2.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5144 + color: '#0055CCFF' + - uid: 6469 components: - type: Transform - pos: -5.5,-27.5 + pos: -2.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5145 + color: '#0055CCFF' + - uid: 6470 components: - type: Transform - pos: -5.5,-28.5 + pos: -2.5,-29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5146 + color: '#0055CCFF' + - uid: 6484 components: - type: Transform - pos: -5.5,-29.5 + rot: -1.5707963267948966 rad + pos: -28.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5147 + color: '#0055CCFF' + - uid: 6548 components: - type: Transform - pos: -5.5,-30.5 + pos: -26.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5149 + color: '#990000FF' + - uid: 6550 components: - type: Transform - pos: -5.5,-32.5 + pos: -26.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5150 + color: '#990000FF' + - uid: 6558 components: - type: Transform - pos: -5.5,-33.5 + pos: -17.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5151 + color: '#990000FF' + - uid: 6571 components: - type: Transform - pos: 0.5,-33.5 + pos: -29.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5152 + color: '#0055CCFF' + - uid: 6623 components: - type: Transform - pos: 0.5,-32.5 + pos: -17.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5154 + color: '#990000FF' + - uid: 6631 components: - type: Transform - pos: 0.5,-30.5 + pos: -24.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5155 + color: '#0055CCFF' + - uid: 6632 components: - type: Transform - pos: 0.5,-29.5 + pos: -30.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5156 + color: '#990000FF' + - uid: 6656 components: - type: Transform - pos: 0.5,-28.5 + rot: -1.5707963267948966 rad + pos: -19.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5157 + color: '#0055CCFF' + - uid: 6657 components: - type: Transform - pos: 0.5,-27.5 + rot: 3.141592653589793 rad + pos: -17.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5158 + color: '#990000FF' + - uid: 6665 components: - type: Transform - pos: 0.5,-26.5 + rot: 3.141592653589793 rad + pos: -12.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5159 + color: '#0055CCFF' + - uid: 6677 components: - type: Transform - pos: 0.5,-25.5 + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5160 + color: '#0055CCFF' + - uid: 6691 components: - type: Transform - pos: 0.5,-24.5 + pos: -19.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5161 + color: '#0055CCFF' + - uid: 6786 components: - type: Transform - pos: 0.5,-23.5 + rot: -1.5707963267948966 rad + pos: -17.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5162 + color: '#0055CCFF' + - uid: 6794 components: - type: Transform - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5164 + color: '#0055CCFF' + - uid: 6806 components: - type: Transform - pos: 0.5,-20.5 + rot: -1.5707963267948966 rad + pos: -11.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5165 + color: '#0055CCFF' + - uid: 6807 components: - type: Transform - pos: 0.5,-19.5 + rot: -1.5707963267948966 rad + pos: -12.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5166 + color: '#0055CCFF' + - uid: 6808 components: - type: Transform - pos: 0.5,-18.5 + rot: -1.5707963267948966 rad + pos: -13.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5167 + color: '#0055CCFF' + - uid: 6809 components: - type: Transform - pos: 0.5,-17.5 + rot: -1.5707963267948966 rad + pos: -14.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5168 + color: '#0055CCFF' + - uid: 6810 components: - type: Transform - pos: 0.5,-16.5 + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5169 + color: '#0055CCFF' + - uid: 6811 components: - type: Transform - pos: 0.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5170 + color: '#0055CCFF' + - uid: 6812 components: - type: Transform - pos: 0.5,-14.5 + rot: -1.5707963267948966 rad + pos: -17.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5171 + color: '#0055CCFF' + - uid: 6813 components: - type: Transform - pos: 0.5,-13.5 + rot: -1.5707963267948966 rad + pos: -18.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5172 + color: '#0055CCFF' + - uid: 6815 components: - type: Transform - pos: 0.5,-12.5 + rot: -1.5707963267948966 rad + pos: -20.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5173 + color: '#0055CCFF' + - uid: 6816 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-34.5 + pos: -21.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5175 + color: '#0055CCFF' + - uid: 6817 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-34.5 + pos: -22.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5176 + color: '#0055CCFF' + - uid: 6819 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-34.5 + pos: -24.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5177 + color: '#0055CCFF' + - uid: 6820 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-34.5 + pos: -25.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5180 + color: '#0055CCFF' + - uid: 6822 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-35.5 + pos: -12.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5181 + color: '#990000FF' + - uid: 6823 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-35.5 + pos: -13.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5182 + color: '#990000FF' + - uid: 6824 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-35.5 + pos: -14.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5183 + color: '#990000FF' + - uid: 6825 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-34.5 + pos: -15.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5184 + color: '#990000FF' + - uid: 6826 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-34.5 + pos: -16.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5185 + color: '#990000FF' + - uid: 6827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-34.5 + pos: -17.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5186 + color: '#990000FF' + - uid: 6830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 + rot: 3.141592653589793 rad + pos: -18.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5187 + color: '#990000FF' + - uid: 6831 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-34.5 + pos: -19.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5190 + color: '#990000FF' + - uid: 6832 components: - type: Transform - pos: -10.5,-36.5 + rot: 1.5707963267948966 rad + pos: -20.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5191 + color: '#990000FF' + - uid: 6833 components: - type: Transform - pos: -10.5,-37.5 + rot: 1.5707963267948966 rad + pos: -21.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5192 + color: '#990000FF' + - uid: 6835 components: - type: Transform - pos: -10.5,-38.5 + rot: 1.5707963267948966 rad + pos: -23.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5193 + color: '#990000FF' + - uid: 6836 components: - type: Transform - pos: -10.5,-39.5 + rot: 1.5707963267948966 rad + pos: -24.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5194 + color: '#990000FF' + - uid: 6837 components: - type: Transform - pos: -10.5,-40.5 + rot: 1.5707963267948966 rad + pos: -25.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5196 + color: '#990000FF' + - uid: 6843 components: - type: Transform - pos: -10.5,-42.5 + pos: -8.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5197 + color: '#990000FF' + - uid: 6896 components: - type: Transform - pos: -10.5,-43.5 + pos: -10.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5198 + color: '#0055CCFF' + - uid: 6897 components: - type: Transform - pos: -10.5,-44.5 + pos: -10.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5199 + color: '#0055CCFF' + - uid: 7059 components: - type: Transform - pos: -10.5,-45.5 + pos: -19.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5200 + color: '#0055CCFF' + - uid: 7078 components: - type: Transform - pos: -10.5,-46.5 + pos: -24.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5201 + color: '#990000FF' + - uid: 7079 components: - type: Transform - pos: -10.5,-47.5 + pos: -24.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5202 + color: '#990000FF' + - uid: 7080 components: - type: Transform - pos: -10.5,-48.5 + pos: -24.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5203 + color: '#990000FF' + - uid: 7081 components: - type: Transform - pos: -10.5,-49.5 + pos: -24.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5204 + color: '#990000FF' + - uid: 7082 components: - type: Transform - pos: -11.5,-35.5 + pos: -24.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5205 + color: '#990000FF' + - uid: 7083 components: - type: Transform - pos: -11.5,-36.5 + pos: -25.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5206 + color: '#0055CCFF' + - uid: 7084 components: - type: Transform - pos: -11.5,-37.5 + pos: -25.5,-14.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5207 + color: '#0055CCFF' + - uid: 7085 components: - type: Transform - pos: -11.5,-38.5 + pos: -25.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5208 + color: '#0055CCFF' + - uid: 7086 components: - type: Transform - pos: -11.5,-39.5 + pos: -25.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5209 + color: '#0055CCFF' + - uid: 7190 components: - type: Transform - pos: -11.5,-40.5 + pos: -19.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5210 + color: '#0055CCFF' + - uid: 7200 components: - type: Transform - pos: -11.5,-41.5 + rot: -1.5707963267948966 rad + pos: -18.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5212 + color: '#990000FF' + - uid: 7201 components: - type: Transform - pos: -11.5,-43.5 + rot: 1.5707963267948966 rad + pos: -14.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5213 + color: '#990000FF' + - uid: 7225 components: - type: Transform - pos: -11.5,-44.5 + rot: -1.5707963267948966 rad + pos: -20.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5214 + color: '#0055CCFF' + - uid: 7226 components: - type: Transform - pos: -11.5,-45.5 + rot: -1.5707963267948966 rad + pos: -19.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5215 + color: '#990000FF' + - uid: 7233 components: - type: Transform - pos: -11.5,-46.5 + pos: -19.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5216 + color: '#0055CCFF' + - uid: 7240 components: - type: Transform - pos: -11.5,-47.5 + rot: -1.5707963267948966 rad + pos: -18.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5217 + color: '#0055CCFF' + - uid: 7252 components: - type: Transform - pos: -11.5,-48.5 + rot: 3.141592653589793 rad + pos: -12.5,-23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5218 + color: '#0055CCFF' + - uid: 7253 components: - type: Transform - pos: -11.5,-49.5 + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5219 + color: '#990000FF' + - uid: 7256 components: - type: Transform - pos: -11.5,-50.5 + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5220 + color: '#0055CCFF' + - uid: 7262 components: - type: Transform - pos: -10.5,-50.5 + pos: -17.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5221 + color: '#990000FF' + - uid: 7278 components: - type: Transform - pos: -10.5,-51.5 + rot: 1.5707963267948966 rad + pos: -14.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5391 + color: '#990000FF' + - uid: 7279 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5394 + color: '#990000FF' + - uid: 7303 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-22.5 + pos: -6.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5476 + color: '#990000FF' + - uid: 7304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-18.5 + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5564 + color: '#990000FF' + - uid: 7306 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-26.5 + pos: -9.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5566 + color: '#990000FF' + - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-26.5 + pos: -10.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5585 + color: '#990000FF' + - uid: 7309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 parent: 4812 - - uid: 5586 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 parent: 4812 - - uid: 5587 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 + pos: -10.5,-25.5 parent: 4812 - - uid: 5588 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-28.5 + pos: -8.5,-23.5 parent: 4812 - - uid: 5589 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-28.5 + pos: -8.5,-22.5 parent: 4812 - - uid: 5590 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-30.5 + pos: -8.5,-24.5 parent: 4812 - - uid: 5628 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 + rot: 3.141592653589793 rad + pos: -9.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5632 + color: '#0055CCFF' + - uid: 7375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 + rot: 3.141592653589793 rad + pos: -9.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5633 + color: '#0055CCFF' + - uid: 7376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 + rot: 3.141592653589793 rad + pos: -9.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5634 + color: '#0055CCFF' + - uid: 7377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 + rot: 3.141592653589793 rad + pos: -11.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5636 + color: '#990000FF' + - uid: 7378 components: - type: Transform - pos: 9.5,-18.5 + rot: 3.141592653589793 rad + pos: -11.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5637 + color: '#990000FF' + - uid: 7464 components: - type: Transform - pos: 9.5,-17.5 + rot: 1.5707963267948966 rad + pos: -15.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5638 + color: '#990000FF' + - uid: 7797 components: - type: Transform - pos: 9.5,-16.5 + rot: 1.5707963267948966 rad + pos: -16.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5639 + color: '#990000FF' + - uid: 7807 components: - type: Transform - pos: 9.5,-15.5 + rot: -1.5707963267948966 rad + pos: -23.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5640 + color: '#990000FF' + - uid: 7808 components: - type: Transform - pos: 9.5,-14.5 + rot: -1.5707963267948966 rad + pos: -24.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5641 + color: '#990000FF' + - uid: 7809 components: - type: Transform - pos: 9.5,-13.5 + rot: -1.5707963267948966 rad + pos: -25.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5642 + color: '#990000FF' + - uid: 7810 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-20.5 + pos: -26.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5643 + color: '#990000FF' + - uid: 7811 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-20.5 + pos: -27.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5645 + color: '#990000FF' + - uid: 7812 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-20.5 + pos: -28.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5646 + color: '#990000FF' + - uid: 7813 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-20.5 + pos: -24.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5647 + color: '#0055CCFF' + - uid: 7814 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-20.5 + pos: -25.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5648 + color: '#0055CCFF' + - uid: 7815 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-20.5 + pos: -26.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5649 + color: '#0055CCFF' + - uid: 7816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-20.5 + pos: -27.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5650 + color: '#0055CCFF' + - uid: 7817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-20.5 + pos: -28.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5651 + color: '#0055CCFF' + - uid: 7820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-20.5 + pos: -29.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5652 + color: '#990000FF' + - uid: 7821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 + rot: 3.141592653589793 rad + pos: -29.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5653 + color: '#0055CCFF' + - uid: 7822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-20.5 + rot: 3.141592653589793 rad + pos: -30.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5654 + color: '#990000FF' + - uid: 7824 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-21.5 + pos: -29.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5655 + color: '#0055CCFF' + - uid: 7827 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-22.5 + pos: -29.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5656 + color: '#0055CCFF' + - uid: 7829 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-23.5 + pos: -29.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5657 + color: '#0055CCFF' + - uid: 7831 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-24.5 + pos: -29.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5658 + color: '#0055CCFF' + - uid: 7834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5659 + color: '#990000FF' + - uid: 7837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5661 + color: '#990000FF' + - uid: 7838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5662 + color: '#990000FF' + - uid: 7840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5663 + color: '#990000FF' + - uid: 7841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 + rot: 3.141592653589793 rad + pos: -30.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5664 + color: '#990000FF' + - uid: 7842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5666 + color: '#990000FF' + - uid: 7843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5667 + color: '#990000FF' + - uid: 7844 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-12.5 + pos: -30.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5668 + color: '#990000FF' + - uid: 7845 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-13.5 + pos: -30.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5669 + color: '#990000FF' + - uid: 7846 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-14.5 + pos: -30.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5670 + color: '#990000FF' + - uid: 7848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-15.5 + rot: 1.5707963267948966 rad + pos: -28.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5671 + color: '#0055CCFF' + - uid: 7849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7851 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-16.5 + pos: -26.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5672 + color: '#0055CCFF' + - uid: 7852 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-17.5 + pos: -26.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5674 + color: '#0055CCFF' + - uid: 7853 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-19.5 + pos: -26.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5675 + color: '#0055CCFF' + - uid: 7854 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-20.5 + pos: -26.5,28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5677 + color: '#0055CCFF' + - uid: 7855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 + rot: 3.141592653589793 rad + pos: -26.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5678 + color: '#0055CCFF' + - uid: 7861 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-21.5 + pos: -28.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5679 + color: '#0055CCFF' + - uid: 7862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-21.5 + pos: -27.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5681 + color: '#0055CCFF' + - uid: 7863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-21.5 + pos: -29.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5682 + color: '#990000FF' + - uid: 7864 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + pos: -28.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5683 + color: '#990000FF' + - uid: 7865 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-21.5 + pos: -27.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5684 + color: '#990000FF' + - uid: 7866 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-21.5 + pos: -29.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5685 + color: '#990000FF' + - uid: 7867 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-21.5 + pos: -28.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5686 + color: '#990000FF' + - uid: 7868 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-21.5 + pos: -27.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5688 + color: '#990000FF' + - uid: 7869 components: - type: Transform - pos: 4.5,-19.5 + rot: 1.5707963267948966 rad + pos: -28.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5689 + color: '#0055CCFF' + - uid: 7870 components: - type: Transform - pos: 4.5,-18.5 + rot: 1.5707963267948966 rad + pos: -27.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5690 + color: '#0055CCFF' + - uid: 7877 components: - type: Transform - pos: 5.5,-21.5 + rot: 3.141592653589793 rad + pos: -29.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5691 + color: '#0055CCFF' + - uid: 7880 components: - type: Transform - pos: 5.5,-22.5 + rot: 1.5707963267948966 rad + pos: -30.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5692 + color: '#0055CCFF' + - uid: 7881 components: - type: Transform - pos: 5.5,-23.5 + rot: 1.5707963267948966 rad + pos: -29.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5693 + color: '#990000FF' + - uid: 7882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-22.5 + rot: 1.5707963267948966 rad + pos: -28.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5694 + color: '#990000FF' + - uid: 7883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-23.5 + rot: 1.5707963267948966 rad + pos: -27.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5695 + color: '#990000FF' + - uid: 7884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-19.5 + rot: 1.5707963267948966 rad + pos: -28.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5696 + color: '#0055CCFF' + - uid: 7885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-18.5 + rot: 1.5707963267948966 rad + pos: -27.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5701 + color: '#0055CCFF' + - uid: 7888 components: - type: Transform - pos: 3.5,-20.5 + rot: -1.5707963267948966 rad + pos: -31.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5702 + color: '#0055CCFF' + - uid: 7889 components: - type: Transform - pos: 8.5,-22.5 + rot: -1.5707963267948966 rad + pos: -32.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5703 + color: '#0055CCFF' + - uid: 7890 components: - type: Transform - pos: 8.5,-23.5 + rot: -1.5707963267948966 rad + pos: -33.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5704 + color: '#0055CCFF' + - uid: 7891 components: - type: Transform - pos: 8.5,-24.5 + rot: -1.5707963267948966 rad + pos: -34.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5705 + color: '#0055CCFF' + - uid: 7892 components: - type: Transform - pos: 8.5,-25.5 + rot: -1.5707963267948966 rad + pos: -31.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5708 + color: '#990000FF' + - uid: 7893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 + rot: -1.5707963267948966 rad + pos: -32.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5709 + color: '#990000FF' + - uid: 7894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 + rot: -1.5707963267948966 rad + pos: -33.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5710 + color: '#990000FF' + - uid: 7897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-26.5 + pos: -35.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5711 + color: '#990000FF' + - uid: 7898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 + pos: -35.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5712 + color: '#0055CCFF' + - uid: 7899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-26.5 + pos: -34.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5713 + color: '#990000FF' + - uid: 7900 components: - type: Transform - pos: 9.5,-26.5 + pos: -35.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5720 + color: '#0055CCFF' + - uid: 7901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 + pos: -35.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5721 + color: '#0055CCFF' + - uid: 7902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 + pos: -35.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5722 + color: '#0055CCFF' + - uid: 7903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-21.5 + pos: -34.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5723 + color: '#990000FF' + - uid: 7904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-22.5 + pos: -34.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5724 + color: '#990000FF' + - uid: 8225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-23.5 + pos: -22.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5727 + color: '#990000FF' + - uid: 8226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 + pos: -22.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5728 + color: '#990000FF' + - uid: 8228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-22.5 + pos: -22.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5729 + color: '#990000FF' + - uid: 8229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-22.5 + pos: -22.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5730 + color: '#990000FF' + - uid: 8230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 + pos: -22.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5731 + color: '#990000FF' + - uid: 8231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 + pos: -22.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5733 + color: '#990000FF' + - uid: 8232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-21.5 + pos: -23.5,21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5739 + color: '#0055CCFF' + - uid: 8233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-24.5 + pos: -23.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5740 + color: '#0055CCFF' + - uid: 8234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 + pos: -23.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5741 + color: '#0055CCFF' + - uid: 8235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 + pos: -23.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5742 + color: '#0055CCFF' + - uid: 8237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-25.5 + pos: -23.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5743 + color: '#0055CCFF' + - uid: 8297 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-25.5 + pos: -22.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5744 + color: '#0055CCFF' + - uid: 8298 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-25.5 + pos: -21.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5745 + color: '#0055CCFF' + - uid: 8299 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-25.5 + pos: -20.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5746 + color: '#0055CCFF' + - uid: 8312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-25.5 + pos: -13.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5747 + color: '#0055CCFF' + - uid: 8313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 + pos: -13.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5748 + color: '#0055CCFF' + - uid: 8314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-25.5 + pos: -13.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5749 + color: '#0055CCFF' + - uid: 8315 components: - type: Transform - pos: 21.5,-25.5 + pos: -11.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5750 + color: '#990000FF' + - uid: 8316 components: - type: Transform - pos: 21.5,-24.5 + pos: -11.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5751 + color: '#990000FF' + - uid: 8553 components: - type: Transform - pos: 21.5,-23.5 + rot: 1.5707963267948966 rad + pos: -22.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5752 + color: '#0055CCFF' + - uid: 8554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 + rot: 1.5707963267948966 rad + pos: -21.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5753 + color: '#0055CCFF' + - uid: 8555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 + rot: 1.5707963267948966 rad + pos: -20.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5754 + color: '#0055CCFF' + - uid: 8556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 + rot: 1.5707963267948966 rad + pos: -19.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5755 + color: '#0055CCFF' + - uid: 8558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-26.5 + rot: 1.5707963267948966 rad + pos: -21.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5756 + color: '#990000FF' + - uid: 8559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 + rot: 1.5707963267948966 rad + pos: -20.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5758 + color: '#990000FF' + - uid: 8560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 + rot: 1.5707963267948966 rad + pos: -19.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5759 + color: '#990000FF' + - uid: 8725 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-26.5 + pos: -53.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5760 + - uid: 8727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-26.5 + rot: 1.5707963267948966 rad + pos: -51.5,2.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5799 + - uid: 8728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-20.5 + rot: 1.5707963267948966 rad + pos: -56.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5800 + color: '#947507FF' + - uid: 8751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-19.5 + pos: -52.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6293 + - uid: 8755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 + pos: -52.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6336 + - uid: 8756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-22.5 + rot: 3.141592653589793 rad + pos: -41.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6384 + color: '#990000FF' + - uid: 8759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6418 + color: '#0055CCFF' + - uid: 8760 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 + rot: 1.5707963267948966 rad + pos: -28.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6442 + color: '#0055CCFF' + - uid: 8761 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-21.5 + pos: -29.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6443 + color: '#0055CCFF' + - uid: 8762 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-21.5 + pos: -30.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6444 + color: '#0055CCFF' + - uid: 8763 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-21.5 + pos: -31.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6445 + color: '#0055CCFF' + - uid: 8765 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-21.5 + pos: -26.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6446 + color: '#990000FF' + - uid: 8766 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-21.5 + pos: -27.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6447 + color: '#990000FF' + - uid: 8767 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-22.5 + pos: -28.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6448 + color: '#990000FF' + - uid: 8768 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-22.5 + pos: -29.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6449 + color: '#990000FF' + - uid: 8769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 + pos: -30.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6450 + color: '#990000FF' + - uid: 8771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-22.5 + pos: -30.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6451 + color: '#990000FF' + - uid: 8773 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-22.5 + pos: -55.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6452 + color: '#947507FF' + - uid: 8774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-22.5 + pos: -30.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6453 + color: '#990000FF' + - uid: 8775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 + pos: -30.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6454 + color: '#990000FF' + - uid: 8776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-31.5 + pos: -30.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6456 + color: '#990000FF' + - uid: 8780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-31.5 + pos: -33.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6457 + color: '#0055CCFF' + - uid: 8781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-31.5 + pos: -33.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6458 + color: '#0055CCFF' + - uid: 8782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-31.5 + pos: -33.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6459 + color: '#0055CCFF' + - uid: 8785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 + pos: -33.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6460 + color: '#990000FF' + - uid: 8865 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-32.5 + pos: -35.5,-36.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6463 + - uid: 8946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 + pos: -10.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6464 + color: '#0055CCFF' + - uid: 8950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 + pos: -10.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6465 + color: '#0055CCFF' + - uid: 8951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 + pos: -10.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6466 + color: '#0055CCFF' + - uid: 8952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 + pos: -10.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6467 + color: '#0055CCFF' + - uid: 8954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6468 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8955 components: - type: Transform - pos: -2.5,-31.5 + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6469 + color: '#0055CCFF' + - uid: 8956 components: - type: Transform - pos: -2.5,-30.5 + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6470 + color: '#0055CCFF' + - uid: 8957 components: - type: Transform - pos: -2.5,-29.5 + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6484 + color: '#0055CCFF' + - uid: 8958 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-30.5 + pos: -15.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6548 + color: '#0055CCFF' + - uid: 8959 components: - type: Transform - pos: -26.5,-24.5 + rot: -1.5707963267948966 rad + pos: -16.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6550 + color: '#0055CCFF' + - uid: 8960 components: - type: Transform - pos: -26.5,-25.5 + rot: -1.5707963267948966 rad + pos: -17.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6558 + color: '#0055CCFF' + - uid: 8961 components: - type: Transform - pos: -17.5,-23.5 + rot: -1.5707963267948966 rad + pos: -18.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6571 + color: '#0055CCFF' + - uid: 8962 components: - type: Transform - pos: -29.5,22.5 + rot: -1.5707963267948966 rad + pos: -19.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6623 + color: '#0055CCFF' + - uid: 8963 components: - type: Transform - pos: -17.5,-22.5 + rot: -1.5707963267948966 rad + pos: -20.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6631 + color: '#0055CCFF' + - uid: 8964 components: - type: Transform - pos: -24.5,-24.5 + rot: -1.5707963267948966 rad + pos: -21.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6632 + color: '#0055CCFF' + - uid: 8965 components: - type: Transform - pos: -30.5,22.5 + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6656 + color: '#0055CCFF' + - uid: 8966 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-27.5 + pos: -23.5,-30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6657 + color: '#0055CCFF' + - uid: 8977 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-27.5 + pos: -30.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6665 + color: '#0055CCFF' + - uid: 8978 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-24.5 + pos: -30.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6677 + color: '#0055CCFF' + - uid: 8980 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-22.5 + pos: -32.5,-33.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6691 + - uid: 8981 components: - type: Transform - pos: -19.5,-20.5 + rot: 1.5707963267948966 rad + pos: -33.5,-33.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6786 + - uid: 8983 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-27.5 + pos: -35.5,-33.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6794 + - uid: 8985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-22.5 + rot: -1.5707963267948966 rad + pos: -37.5,-33.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6806 + - uid: 8986 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-35.5 + pos: -38.5,-33.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6807 + - uid: 8988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-35.5 + pos: -36.5,-34.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6808 + - uid: 8989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-35.5 + pos: -36.5,-35.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6809 + - uid: 8995 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-35.5 + pos: -34.5,-34.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6810 + - uid: 8996 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-35.5 + pos: -35.5,-34.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6811 + - uid: 8997 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-35.5 + pos: -36.5,-34.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6812 + - uid: 9000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 + pos: -37.5,-36.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6813 + - uid: 9001 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-35.5 + pos: -38.5,-35.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6815 + - uid: 9002 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-35.5 + pos: -39.5,-35.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6816 + - uid: 9003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-35.5 + rot: 3.141592653589793 rad + pos: -40.5,-36.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6817 + - uid: 9022 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-35.5 + pos: -47.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6819 + - uid: 9035 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-35.5 + pos: -49.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6820 + - uid: 9036 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-35.5 + pos: -51.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6822 + - uid: 9075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 + pos: -50.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6823 + - uid: 9091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 + pos: -50.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6824 + - uid: 9092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 + pos: -48.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6825 + - uid: 9093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 + pos: -48.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6826 + - uid: 9094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 + pos: -46.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6827 + - uid: 9095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-34.5 + pos: -44.5,15.5 + parent: 4812 + - uid: 9096 + components: + - type: Transform + pos: -44.5,14.5 + parent: 4812 + - uid: 9097 + components: + - type: Transform + pos: -44.5,13.5 + parent: 4812 + - uid: 9111 + components: + - type: Transform + pos: -53.5,17.5 + parent: 4812 + - uid: 9112 + components: + - type: Transform + pos: -53.5,16.5 + parent: 4812 + - uid: 9113 + components: + - type: Transform + pos: -53.5,15.5 + parent: 4812 + - uid: 9114 + components: + - type: Transform + pos: -53.5,14.5 + parent: 4812 + - uid: 9115 + components: + - type: Transform + pos: -53.5,13.5 + parent: 4812 + - uid: 9116 + components: + - type: Transform + pos: -51.5,13.5 + parent: 4812 + - uid: 9117 + components: + - type: Transform + pos: -51.5,14.5 + parent: 4812 + - uid: 9120 + components: + - type: Transform + pos: -51.5,15.5 + parent: 4812 + - uid: 9121 + components: + - type: Transform + pos: -51.5,16.5 + parent: 4812 + - uid: 9123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6830 + color: '#990000FF' + - uid: 9128 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-35.5 + pos: -41.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6831 + color: '#990000FF' + - uid: 9138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 + pos: -52.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6832 + - uid: 9139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 + pos: -50.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6833 + - uid: 9146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-36.5 + pos: -37.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6835 + color: '#0055CCFF' + - uid: 9147 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-36.5 + pos: -35.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6836 + color: '#0055CCFF' + - uid: 9148 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-36.5 + pos: -34.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6837 + color: '#0055CCFF' + - uid: 9149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-36.5 + pos: -33.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6843 + color: '#0055CCFF' + - uid: 9151 components: - type: Transform - pos: -8.5,-25.5 + rot: 1.5707963267948966 rad + pos: -31.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6896 + color: '#0055CCFF' + - uid: 9153 components: - type: Transform - pos: -10.5,-23.5 + rot: -1.5707963267948966 rad + pos: -34.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6897 + color: '#990000FF' + - uid: 9154 components: - type: Transform - pos: -10.5,-24.5 + rot: -1.5707963267948966 rad + pos: -35.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7059 + color: '#990000FF' + - uid: 9170 components: - type: Transform - pos: -19.5,-19.5 + pos: -42.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7078 + - uid: 9171 components: - type: Transform - pos: -24.5,-12.5 + pos: -42.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7079 + - uid: 9172 components: - type: Transform - pos: -24.5,-13.5 + pos: -42.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7080 + - uid: 9174 components: - type: Transform - pos: -24.5,-14.5 + pos: -46.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7081 + - uid: 9175 components: - type: Transform - pos: -24.5,-15.5 + pos: -48.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7082 + - uid: 9176 components: - type: Transform - pos: -24.5,-16.5 + pos: -46.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7083 + - uid: 9182 components: - type: Transform - pos: -25.5,-13.5 + rot: 3.141592653589793 rad + pos: -41.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7084 + color: '#990000FF' + - uid: 9183 components: - type: Transform - pos: -25.5,-14.5 + rot: 3.141592653589793 rad + pos: -41.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7085 + color: '#990000FF' + - uid: 9184 components: - type: Transform - pos: -25.5,-15.5 + rot: 3.141592653589793 rad + pos: -41.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7086 + color: '#990000FF' + - uid: 9185 components: - type: Transform - pos: -25.5,-16.5 + rot: 3.141592653589793 rad + pos: -41.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7190 + color: '#990000FF' + - uid: 9191 components: - type: Transform - pos: -19.5,-18.5 + pos: -42.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7200 + color: '#0055CCFF' + - uid: 9219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-26.5 + rot: 1.5707963267948966 rad + pos: -53.5,5.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7201 + - uid: 9226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 + pos: -47.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7225 + - uid: 9227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-27.5 + pos: -45.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7226 + - uid: 9228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-26.5 + pos: -43.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7233 + - uid: 9229 components: - type: Transform - pos: -19.5,-16.5 + pos: -43.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7240 + - uid: 9232 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-27.5 + pos: -43.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7252 + - uid: 9237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-23.5 + pos: -47.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7253 + - uid: 9238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 + pos: -43.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7256 + - uid: 9240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 + pos: -42.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7262 + color: '#0055CCFF' + - uid: 9241 components: - type: Transform - pos: -17.5,-24.5 + pos: -43.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7278 + - uid: 9244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-21.5 + rot: 3.141592653589793 rad + pos: -41.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7279 + color: '#990000FF' + - uid: 9247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 + pos: -42.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7303 + color: '#0055CCFF' + - uid: 9250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-21.5 + pos: -47.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7304 + - uid: 9251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 + pos: -47.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7306 + - uid: 9252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 + pos: -51.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7307 + - uid: 9253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-21.5 + pos: -49.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7309 + - uid: 9254 + components: + - type: Transform + pos: -49.5,15.5 + parent: 4812 + - uid: 9255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 + pos: -49.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7310 + - uid: 9261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-22.5 + pos: -49.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7324 + - uid: 9262 components: - type: Transform - pos: -10.5,-25.5 + pos: -49.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7326 + - uid: 9263 components: - type: Transform - pos: -8.5,-23.5 + pos: -42.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7327 + color: '#0055CCFF' + - uid: 9266 components: - type: Transform - pos: -8.5,-22.5 + pos: -55.5,-0.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7329 + - uid: 9269 components: - type: Transform - pos: -8.5,-24.5 + pos: -43.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7374 + - uid: 9271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-21.5 + pos: -47.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7375 + - uid: 9275 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-19.5 + pos: -45.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7376 + - uid: 9276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-18.5 + rot: -1.5707963267948966 rad + pos: -45.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7377 + - uid: 9282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-19.5 + pos: -42.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7378 + color: '#0055CCFF' + - uid: 9286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-18.5 + pos: -42.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7464 + color: '#0055CCFF' + - uid: 9292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 + pos: -42.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7797 + color: '#0055CCFF' + - uid: 9294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-28.5 + pos: -45.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7807 + - uid: 9295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 + pos: -45.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7808 + - uid: 9296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,13.5 + pos: -45.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7809 + - uid: 9314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 + pos: -57.5,6.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7810 + - uid: 9350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,13.5 + rot: 3.141592653589793 rad + pos: -41.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7811 + color: '#990000FF' + - uid: 9363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,13.5 + rot: 3.141592653589793 rad + pos: -36.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7812 + color: '#990000FF' + - uid: 9420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,13.5 + pos: -48.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7813 + color: '#0055CCFF' + - uid: 9452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,14.5 + pos: -48.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7814 + color: '#0055CCFF' + - uid: 9454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,14.5 + pos: -48.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7815 + color: '#0055CCFF' + - uid: 9502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,14.5 + rot: 1.5707963267948966 rad + pos: -56.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7816 + color: '#947507FF' + - uid: 9543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,14.5 + rot: 3.141592653589793 rad + pos: -33.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7817 + color: '#990000FF' + - uid: 9573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,14.5 + rot: 3.141592653589793 rad + pos: -42.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7820 + color: '#0055CCFF' + - uid: 9902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,13.5 + rot: 1.5707963267948966 rad + pos: -40.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7821 + color: '#0055CCFF' + - uid: 9903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,13.5 + rot: 1.5707963267948966 rad + pos: -40.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7822 + color: '#990000FF' + - uid: 9933 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,14.5 + rot: 1.5707963267948966 rad + pos: -41.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7824 + color: '#0055CCFF' + - uid: 10416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,16.5 + rot: -1.5707963267948966 rad + pos: -58.5,1.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7827 + - uid: 10777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,19.5 + pos: -45.5,11.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7829 + - uid: 10971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,21.5 + pos: -32.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7831 + color: '#0055CCFF' + - uid: 11707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,23.5 + rot: -1.5707963267948966 rad + pos: -36.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7834 + color: '#0055CCFF' + - uid: 11894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,17.5 + rot: 1.5707963267948966 rad + pos: -58.5,2.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7837 + - uid: 11963 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,20.5 + pos: -33.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7838 + color: '#0055CCFF' + - uid: 11964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,21.5 + pos: -36.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7840 + color: '#990000FF' + - uid: 11965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,23.5 + pos: -36.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7841 + color: '#990000FF' + - uid: 11966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,24.5 + pos: -36.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7842 + color: '#990000FF' + - uid: 11967 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,25.5 + pos: -36.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7843 + color: '#990000FF' + - uid: 11968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,26.5 + pos: -36.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7844 + color: '#990000FF' + - uid: 11969 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,27.5 + pos: -36.5,-4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7845 + color: '#990000FF' + - uid: 11970 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,28.5 + pos: -36.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7846 + color: '#990000FF' + - uid: 11971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,29.5 + pos: -36.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7848 + color: '#990000FF' + - uid: 11973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,24.5 + rot: -1.5707963267948966 rad + pos: -34.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7849 + color: '#0055CCFF' + - uid: 11974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,24.5 + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7851 + color: '#0055CCFF' + - uid: 11975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,25.5 + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7852 + color: '#0055CCFF' + - uid: 11976 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,26.5 + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7853 + color: '#0055CCFF' + - uid: 11977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,27.5 + rot: -1.5707963267948966 rad + pos: -38.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7854 + color: '#0055CCFF' + - uid: 11978 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,28.5 + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7855 + color: '#0055CCFF' + - uid: 11979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,29.5 + rot: -1.5707963267948966 rad + pos: -37.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7861 + color: '#990000FF' + - uid: 11980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,17.5 + rot: -1.5707963267948966 rad + pos: -38.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7862 + color: '#990000FF' + - uid: 11981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,17.5 + rot: -1.5707963267948966 rad + pos: -39.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7863 + color: '#990000FF' + - uid: 11984 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,16.5 + pos: -40.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7864 + color: '#0055CCFF' + - uid: 11985 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,16.5 + pos: -41.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7865 + color: '#0055CCFF' + - uid: 11986 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,16.5 + pos: -42.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7866 + color: '#0055CCFF' + - uid: 11989 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,19.5 + pos: -41.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7867 + color: '#990000FF' + - uid: 11990 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,19.5 + pos: -42.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7868 + color: '#990000FF' + - uid: 11991 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,19.5 + pos: -43.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7869 + color: '#990000FF' + - uid: 11992 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,20.5 + pos: -44.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7870 + color: '#990000FF' + - uid: 11993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,20.5 + pos: -45.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7877 + color: '#990000FF' + - uid: 11994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,11.5 + pos: -45.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7880 + color: '#990000FF' + - uid: 11995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,10.5 + pos: -45.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7881 + color: '#990000FF' + - uid: 11996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,11.5 + pos: -44.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7882 + color: '#0055CCFF' + - uid: 11997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,11.5 + pos: -44.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7883 + color: '#0055CCFF' + - uid: 11998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,11.5 + pos: -44.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7884 + color: '#0055CCFF' + - uid: 12001 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,10.5 + pos: -43.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7885 + color: '#0055CCFF' + - uid: 12002 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,10.5 + pos: -44.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7888 + color: '#990000FF' + - uid: 12003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,10.5 + rot: 1.5707963267948966 rad + pos: -43.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7889 + color: '#990000FF' + - uid: 12004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,10.5 + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7890 + color: '#0055CCFF' + - uid: 12005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,10.5 + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7891 + color: '#0055CCFF' + - uid: 12006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,10.5 + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7892 + color: '#0055CCFF' + - uid: 12007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,11.5 + rot: 1.5707963267948966 rad + pos: -46.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7893 + color: '#990000FF' + - uid: 12008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,11.5 + rot: 1.5707963267948966 rad + pos: -47.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7894 + color: '#990000FF' + - uid: 12009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,11.5 + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7897 + color: '#0055CCFF' + - uid: 12012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,11.5 + pos: -50.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7898 + color: '#0055CCFF' + - uid: 12013 components: - type: Transform - pos: -35.5,11.5 + rot: 1.5707963267948966 rad + pos: -51.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7899 + color: '#0055CCFF' + - uid: 12014 components: - type: Transform - pos: -34.5,12.5 + rot: 1.5707963267948966 rad + pos: -52.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7900 + color: '#0055CCFF' + - uid: 12015 components: - type: Transform - pos: -35.5,12.5 + rot: 1.5707963267948966 rad + pos: -49.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7901 + color: '#990000FF' + - uid: 12016 components: - type: Transform - pos: -35.5,13.5 + rot: 1.5707963267948966 rad + pos: -50.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7902 + color: '#990000FF' + - uid: 12017 components: - type: Transform - pos: -35.5,14.5 + rot: 1.5707963267948966 rad + pos: -51.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7903 + color: '#990000FF' + - uid: 12018 components: - type: Transform - pos: -34.5,13.5 + rot: 1.5707963267948966 rad + pos: -52.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7904 + color: '#990000FF' + - uid: 12019 components: - type: Transform - pos: -34.5,14.5 + pos: -49.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8225 + color: '#0055CCFF' + - uid: 12020 components: - type: Transform - pos: -22.5,20.5 + pos: -49.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8226 + color: '#0055CCFF' + - uid: 12021 components: - type: Transform - pos: -22.5,21.5 + pos: -48.5,-10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8228 + color: '#990000FF' + - uid: 12022 components: - type: Transform - pos: -22.5,23.5 + pos: -48.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8229 + color: '#990000FF' + - uid: 12031 components: - type: Transform - pos: -22.5,24.5 + pos: -44.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8230 + color: '#0055CCFF' + - uid: 12682 components: - type: Transform - pos: -22.5,25.5 + rot: -1.5707963267948966 rad + pos: 46.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8231 + color: '#990000FF' + - uid: 12683 components: - type: Transform - pos: -22.5,26.5 + rot: -1.5707963267948966 rad + pos: 45.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8232 + color: '#990000FF' + - uid: 12690 components: - type: Transform - pos: -23.5,21.5 + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8233 + color: '#990000FF' + - uid: 12696 components: - type: Transform - pos: -23.5,22.5 + rot: -1.5707963267948966 rad + pos: 43.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8234 + color: '#990000FF' + - uid: 12719 components: - type: Transform - pos: -23.5,23.5 + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8235 + color: '#990000FF' + - uid: 12722 components: - type: Transform - pos: -23.5,24.5 + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8237 + color: '#990000FF' + - uid: 12723 components: - type: Transform - pos: -23.5,26.5 + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8297 + color: '#0055CCFF' + - uid: 12772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,16.5 + rot: -1.5707963267948966 rad + pos: 60.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8298 + color: '#990000FF' + - uid: 12773 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,16.5 + pos: -54.5,5.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8299 + - uid: 12793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,16.5 + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8312 + color: '#0055CCFF' + - uid: 12797 components: - type: Transform - pos: -13.5,19.5 + rot: -1.5707963267948966 rad + pos: 49.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8313 + color: '#990000FF' + - uid: 12798 components: - type: Transform - pos: -13.5,18.5 + rot: -1.5707963267948966 rad + pos: 55.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8314 + color: '#0055CCFF' + - uid: 12799 components: - type: Transform - pos: -13.5,17.5 + rot: -1.5707963267948966 rad + pos: 48.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8315 + color: '#990000FF' + - uid: 12843 components: - type: Transform - pos: -11.5,18.5 + pos: 30.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8316 + color: '#0055CCFF' + - uid: 12844 components: - type: Transform - pos: -11.5,17.5 + pos: 28.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8551 + color: '#0055CCFF' + - uid: 12845 components: - type: Transform - pos: -45.5,11.5 + pos: 30.5,-0.5 parent: 4812 - - uid: 8553 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,10.5 + rot: -1.5707963267948966 rad + pos: 29.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8554 + color: '#990000FF' + - uid: 12847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,10.5 + rot: -1.5707963267948966 rad + pos: 30.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8555 + color: '#990000FF' + - uid: 12848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,10.5 + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8556 + color: '#990000FF' + - uid: 12849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,10.5 + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8558 + color: '#990000FF' + - uid: 12850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,9.5 + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8559 + color: '#990000FF' + - uid: 12851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8560 + color: '#0055CCFF' + - uid: 12852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 + rot: -1.5707963267948966 rad + pos: 34.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8759 + color: '#0055CCFF' + - uid: 12853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8760 + color: '#990000FF' + - uid: 12854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8761 + color: '#0055CCFF' + - uid: 12855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8762 + color: '#0055CCFF' + - uid: 12868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-1.5 + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8763 + color: '#990000FF' + - uid: 12869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 + rot: -1.5707963267948966 rad + pos: 57.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8765 + color: '#0055CCFF' + - uid: 12870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 + rot: -1.5707963267948966 rad + pos: 46.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8766 + color: '#0055CCFF' + - uid: 12871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 + rot: -1.5707963267948966 rad + pos: 47.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8767 + color: '#0055CCFF' + - uid: 12880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8768 + color: '#0055CCFF' + - uid: 12881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 + rot: -1.5707963267948966 rad + pos: 36.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8769 + color: '#0055CCFF' + - uid: 12883 components: - type: Transform - pos: -30.5,-1.5 + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8771 + color: '#0055CCFF' + - uid: 12884 components: - type: Transform - pos: -30.5,0.5 + rot: -1.5707963267948966 rad + pos: 40.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8774 + color: '#0055CCFF' + - uid: 12885 components: - type: Transform - pos: -30.5,-3.5 + rot: -1.5707963267948966 rad + pos: 41.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8775 + color: '#0055CCFF' + - uid: 12886 components: - type: Transform - pos: -30.5,-4.5 + rot: -1.5707963267948966 rad + pos: 42.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8776 + color: '#0055CCFF' + - uid: 12887 components: - type: Transform - pos: -30.5,-5.5 + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8780 + color: '#0055CCFF' + - uid: 12888 components: - type: Transform - pos: -33.5,-4.5 + rot: -1.5707963267948966 rad + pos: 35.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8781 + color: '#990000FF' + - uid: 12889 components: - type: Transform - pos: -33.5,-5.5 + rot: -1.5707963267948966 rad + pos: 36.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8782 + color: '#990000FF' + - uid: 12890 components: - type: Transform - pos: -33.5,-6.5 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8785 + color: '#990000FF' + - uid: 12892 components: - type: Transform - pos: -33.5,1.5 + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8865 + color: '#990000FF' + - uid: 12893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-36.5 + rot: -1.5707963267948966 rad + pos: 41.5,-3.5 parent: 4812 - - uid: 8946 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12894 components: - type: Transform - pos: -10.5,-34.5 + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8950 + color: '#990000FF' + - uid: 12897 components: - type: Transform - pos: -10.5,-33.5 + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8951 + color: '#990000FF' + - uid: 13066 components: - type: Transform - pos: -10.5,-32.5 + rot: -1.5707963267948966 rad + pos: 54.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8952 + color: '#0055CCFF' + - uid: 13081 components: - type: Transform - pos: -10.5,-31.5 + rot: -1.5707963267948966 rad + pos: 45.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8954 + color: '#0055CCFF' + - uid: 13082 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-30.5 + pos: 48.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8955 + color: '#0055CCFF' + - uid: 13093 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-30.5 + pos: 50.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8956 + color: '#0055CCFF' + - uid: 13095 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-30.5 + pos: 59.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8957 + color: '#990000FF' + - uid: 13097 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-30.5 + pos: 51.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8958 + color: '#990000FF' + - uid: 13098 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-30.5 + pos: 56.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8959 + color: '#990000FF' + - uid: 13099 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-30.5 + pos: 44.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8960 + color: '#0055CCFF' + - uid: 13100 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-30.5 + pos: 43.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8961 + color: '#0055CCFF' + - uid: 13104 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-30.5 + pos: 58.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8962 + color: '#0055CCFF' + - uid: 13119 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-30.5 + pos: 54.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8963 + color: '#990000FF' + - uid: 13363 + components: + - type: Transform + pos: -43.5,11.5 + parent: 4812 + - uid: 13364 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-30.5 + pos: -44.5,10.5 + parent: 4812 + - uid: 13374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8964 + color: '#947507FF' + - uid: 13378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-30.5 + rot: 1.5707963267948966 rad + pos: -55.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8965 + color: '#947507FF' + - uid: 13379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 + rot: 1.5707963267948966 rad + pos: -57.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8966 + color: '#947507FF' + - uid: 13397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-30.5 + rot: 3.141592653589793 rad + pos: -43.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8977 + color: '#0055CCFF' + - uid: 13398 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-31.5 + pos: -43.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8978 + color: '#0055CCFF' + - uid: 13399 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-32.5 + pos: -43.5,-5.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8980 + color: '#0055CCFF' + - uid: 13400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-33.5 + rot: 3.141592653589793 rad + pos: -43.5,-4.5 parent: 4812 - - uid: 8981 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-33.5 + rot: -1.5707963267948966 rad + pos: -44.5,-3.5 parent: 4812 - - uid: 8983 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-33.5 + pos: -45.5,-3.5 parent: 4812 - - uid: 8985 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13404 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-33.5 + pos: -46.5,-3.5 parent: 4812 - - uid: 8986 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13405 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-33.5 + pos: -47.5,-3.5 parent: 4812 - - uid: 8988 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13424 components: - type: Transform - pos: -36.5,-34.5 + rot: 3.141592653589793 rad + pos: -50.5,0.5 parent: 4812 - - uid: 8989 + - uid: 13431 components: - type: Transform - pos: -36.5,-35.5 + rot: 3.141592653589793 rad + pos: -54.5,13.5 parent: 4812 - - uid: 8995 + - uid: 13440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 + rot: 1.5707963267948966 rad + pos: -56.5,4.5 parent: 4812 - - uid: 8996 + - uid: 13442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-34.5 + pos: -50.5,4.5 parent: 4812 - - uid: 8997 + - uid: 13444 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-34.5 + pos: -48.5,4.5 parent: 4812 - - uid: 9000 + - uid: 13450 components: - type: Transform - pos: -37.5,-36.5 + rot: 3.141592653589793 rad + pos: -50.5,-0.5 parent: 4812 - - uid: 9001 + - uid: 13504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-35.5 + rot: 3.141592653589793 rad + pos: -58.5,6.5 parent: 4812 - - uid: 9002 + - uid: 13525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-35.5 + pos: -50.5,3.5 parent: 4812 - - uid: 9003 + - uid: 13527 + components: + - type: Transform + pos: -50.5,4.5 + parent: 4812 + - uid: 13530 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-36.5 + pos: -58.5,7.5 parent: 4812 - - uid: 9036 + - uid: 13531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,8.5 + parent: 4812 + - uid: 13533 + components: + - type: Transform + pos: -55.5,0.5 + parent: 4812 + - uid: 13549 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,11.5 + pos: -52.5,5.5 parent: 4812 - - uid: 9075 +- proto: GasPipeTJunction + entities: + - uid: 373 components: - type: Transform - pos: -45.5,13.5 + rot: 1.5707963267948966 rad + pos: -3.5,13.5 parent: 4812 - - uid: 9116 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 384 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,12.5 + pos: -3.5,2.5 parent: 4812 - - uid: 9118 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 387 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,2.5 + pos: -3.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9119 + color: '#0055CCFF' + - uid: 394 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,2.5 + pos: -1.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9122 + color: '#990000FF' + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,12.5 + pos: -1.5,-1.5 parent: 4812 - - uid: 9123 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,2.5 + pos: -1.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9124 + color: '#990000FF' + - uid: 417 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,2.5 + pos: -1.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9126 + color: '#990000FF' + - uid: 418 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,12.5 + pos: -3.5,10.5 parent: 4812 - - uid: 9127 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,12.5 + rot: -1.5707963267948966 rad + pos: -1.5,14.5 parent: 4812 - - uid: 9129 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,2.5 + pos: -5.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9132 + color: '#990000FF' + - uid: 454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,2.5 + rot: 3.141592653589793 rad + pos: -16.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9134 + color: '#0055CCFF' + - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,12.5 + pos: 0.5,-11.5 parent: 4812 - - uid: 9135 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,10.5 + rot: 3.141592653589793 rad + pos: -22.5,-12.5 parent: 4812 - - uid: 9136 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 477 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,10.5 + pos: -25.5,1.5 parent: 4812 - - uid: 9137 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,10.5 + rot: 3.141592653589793 rad + pos: -24.5,7.5 parent: 4812 - - uid: 9138 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 486 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,10.5 + pos: -23.5,10.5 parent: 4812 - - uid: 9146 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,1.5 + pos: -25.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9147 + color: '#0055CCFF' + - uid: 496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,1.5 + rot: -1.5707963267948966 rad + pos: -22.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9148 + color: '#990000FF' + - uid: 506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,1.5 + rot: 3.141592653589793 rad + pos: -21.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9149 + color: '#990000FF' + - uid: 510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,1.5 + rot: 3.141592653589793 rad + pos: 2.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9150 + color: '#990000FF' + - uid: 513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,1.5 + pos: -0.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9151 + color: '#0055CCFF' + - uid: 519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,1.5 + rot: 3.141592653589793 rad + pos: -7.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9153 + color: '#990000FF' + - uid: 523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,2.5 + pos: 8.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9154 + color: '#0055CCFF' + - uid: 527 + components: + - type: Transform + pos: -13.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 539 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,2.5 + pos: 12.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9157 + color: '#0055CCFF' + - uid: 540 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,0.5 + pos: 11.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9159 + color: '#990000FF' + - uid: 548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,0.5 + pos: 12.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9160 + color: '#0055CCFF' + - uid: 550 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,0.5 + pos: 11.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9161 + color: '#990000FF' + - uid: 558 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,0.5 + pos: 12.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9162 + color: '#0055CCFF' + - uid: 562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9167 + color: '#990000FF' + - uid: 565 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-1.5 + pos: -22.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9175 + color: '#990000FF' + - uid: 570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,1.5 + pos: -4.5,19.5 parent: 4812 - - uid: 9177 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,1.5 + rot: 3.141592653589793 rad + pos: -8.5,20.5 parent: 4812 - - uid: 9178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,3.5 + pos: 6.5,19.5 parent: 4812 - - uid: 9179 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,1.5 + rot: 1.5707963267948966 rad + pos: 11.5,14.5 parent: 4812 - - uid: 9180 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,3.5 + rot: 3.141592653589793 rad + pos: 10.5,19.5 parent: 4812 - - uid: 9181 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,5.5 + rot: 1.5707963267948966 rad + pos: 11.5,6.5 parent: 4812 - - uid: 9182 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 605 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,3.5 + pos: 12.5,2.5 parent: 4812 - - uid: 9183 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,5.5 + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 parent: 4812 - - uid: 9184 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 617 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,7.5 + pos: 12.5,-8.5 parent: 4812 - - uid: 9185 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,5.5 + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 parent: 4812 - - uid: 9186 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,7.5 + rot: 3.141592653589793 rad + pos: 8.5,-12.5 parent: 4812 - - uid: 9187 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,9.5 + pos: -6.5,-12.5 parent: 4812 - - uid: 9188 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,7.5 + pos: -14.5,-11.5 parent: 4812 - - uid: 9189 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,9.5 + rot: 3.141592653589793 rad + pos: -17.5,-12.5 parent: 4812 - - uid: 9190 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,11.5 + pos: 1.5,-12.5 parent: 4812 - - uid: 9191 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,9.5 + pos: -19.5,-12.5 parent: 4812 - - uid: 9192 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 662 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,11.5 + pos: -26.5,-1.5 parent: 4812 - - uid: 9205 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,10.5 + pos: -26.5,2.5 parent: 4812 - - uid: 9207 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,8.5 + pos: -22.5,9.5 parent: 4812 - - uid: 9208 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,8.5 + pos: -24.5,-11.5 parent: 4812 - - uid: 9209 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,8.5 + rot: -1.5707963267948966 rad + pos: -23.5,14.5 parent: 4812 - - uid: 9210 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 682 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,8.5 + pos: -23.5,16.5 parent: 4812 - - uid: 9211 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 694 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,8.5 + pos: -23.5,17.5 parent: 4812 - - uid: 9213 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,6.5 + rot: 3.141592653589793 rad + pos: 3.5,20.5 parent: 4812 - - uid: 9214 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,6.5 + pos: -11.5,19.5 parent: 4812 - - uid: 9215 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,6.5 + rot: -1.5707963267948966 rad + pos: -23.5,8.5 parent: 4812 - - uid: 9216 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,6.5 + rot: 3.141592653589793 rad + pos: -26.5,-12.5 parent: 4812 - - uid: 9217 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 797 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,6.5 + pos: -17.5,-7.5 parent: 4812 - - uid: 9219 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,4.5 + rot: 3.141592653589793 rad + pos: -10.5,-7.5 parent: 4812 - - uid: 9220 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,4.5 + rot: 3.141592653589793 rad + pos: -10.5,-11.5 parent: 4812 - - uid: 9221 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,4.5 + rot: -1.5707963267948966 rad + pos: -10.5,-9.5 parent: 4812 - - uid: 9222 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,4.5 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 parent: 4812 - - uid: 9223 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,4.5 + pos: -2.5,2.5 parent: 4812 - - uid: 9225 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,2.5 + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 parent: 4812 - - uid: 9226 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,2.5 + pos: 3.5,7.5 parent: 4812 - - uid: 9227 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,2.5 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 parent: 4812 - - uid: 9228 + - uid: 870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,2.5 + rot: 3.141592653589793 rad + pos: -8.5,-0.5 parent: 4812 - - uid: 9229 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1051 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,2.5 + pos: -23.5,20.5 parent: 4812 - - uid: 9231 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1504 components: - type: Transform - pos: -47.5,2.5 + rot: 1.5707963267948966 rad + pos: -26.5,0.5 parent: 4812 - - uid: 9232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1985 components: - type: Transform - pos: -47.5,4.5 + rot: -1.5707963267948966 rad + pos: 3.5,22.5 parent: 4812 - - uid: 9233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1986 components: - type: Transform - pos: -47.5,6.5 + rot: -1.5707963267948966 rad + pos: -8.5,23.5 parent: 4812 - - uid: 9234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1992 components: - type: Transform - pos: -47.5,8.5 + rot: -1.5707963267948966 rad + pos: -7.5,26.5 parent: 4812 - - uid: 9235 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1997 components: - type: Transform - pos: -47.5,10.5 + rot: 1.5707963267948966 rad + pos: -8.5,22.5 parent: 4812 - - uid: 9238 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2000 components: - type: Transform - pos: -45.5,7.5 + rot: 1.5707963267948966 rad + pos: 3.5,25.5 parent: 4812 - - uid: 9241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,6.5 + rot: 1.5707963267948966 rad + pos: -8.5,29.5 parent: 4812 - - uid: 9246 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2012 components: - type: Transform - pos: -45.5,9.5 + pos: -5.5,32.5 parent: 4812 - - uid: 9249 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,8.5 + pos: 0.5,32.5 parent: 4812 - - uid: 9250 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2022 components: - type: Transform - pos: -46.5,3.5 + rot: 3.141592653589793 rad + pos: -5.5,33.5 parent: 4812 - - uid: 9252 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2028 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,3.5 + pos: 0.5,33.5 parent: 4812 - - uid: 9253 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2035 components: - type: Transform - pos: -46.5,4.5 + rot: 1.5707963267948966 rad + pos: 2.5,26.5 parent: 4812 - - uid: 9255 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,4.5 + rot: -1.5707963267948966 rad + pos: -7.5,24.5 parent: 4812 - - uid: 9257 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,12.5 + rot: 1.5707963267948966 rad + pos: 2.5,24.5 parent: 4812 - - uid: 9259 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2048 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,10.5 + pos: 3.5,29.5 parent: 4812 - - uid: 9262 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,12.5 + rot: -1.5707963267948966 rad + pos: 8.5,25.5 parent: 4812 - - uid: 9263 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2065 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,13.5 + pos: 6.5,24.5 parent: 4812 - - uid: 9489 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2424 components: - type: Transform - pos: -45.5,14.5 + rot: 3.141592653589793 rad + pos: -13.5,23.5 parent: 4812 - - uid: 9490 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2435 components: - type: Transform - pos: -45.5,15.5 + rot: 1.5707963267948966 rad + pos: -12.5,24.5 parent: 4812 - - uid: 9491 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2972 components: - type: Transform - pos: -43.5,14.5 + rot: 1.5707963267948966 rad + pos: 19.5,18.5 parent: 4812 - - uid: 9492 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2974 components: - type: Transform - pos: -43.5,15.5 + rot: 1.5707963267948966 rad + pos: 19.5,20.5 parent: 4812 - - uid: 9493 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2980 components: - type: Transform - pos: -43.5,13.5 + rot: 1.5707963267948966 rad + pos: 15.5,24.5 parent: 4812 - - uid: 9514 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2987 components: - type: Transform - pos: -43.5,11.5 + rot: -1.5707963267948966 rad + pos: 15.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9515 + color: '#0055CCFF' + - uid: 2989 components: - type: Transform - pos: -43.5,10.5 + rot: -1.5707963267948966 rad + pos: 15.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9516 + color: '#0055CCFF' + - uid: 2994 components: - type: Transform - pos: -43.5,9.5 + pos: 19.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9539 + color: '#990000FF' + - uid: 2995 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,3.5 + pos: 16.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9541 + color: '#990000FF' + - uid: 3011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,2.5 + pos: 19.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9545 + color: '#0055CCFF' + - uid: 3739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,1.5 + rot: 1.5707963267948966 rad + pos: -32.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9546 + color: '#0055CCFF' + - uid: 3741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,2.5 + pos: -33.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11963 + color: '#0055CCFF' + - uid: 3742 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-7.5 + pos: -32.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11964 + color: '#0055CCFF' + - uid: 3745 components: - type: Transform - pos: -36.5,0.5 + rot: -1.5707963267948966 rad + pos: -32.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11965 + color: '#0055CCFF' + - uid: 3783 components: - type: Transform - pos: -36.5,-0.5 + pos: -3.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11966 + color: '#990000FF' + - uid: 3784 components: - type: Transform - pos: -36.5,-1.5 + rot: 3.141592653589793 rad + pos: -1.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11967 + color: '#0055CCFF' + - uid: 3798 components: - type: Transform - pos: -36.5,-2.5 + pos: 13.5,46.5 parent: 4812 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11968 + - uid: 3818 components: - type: Transform - pos: -36.5,-3.5 + rot: 3.141592653589793 rad + pos: 14.5,44.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11969 + color: '#0335FCFF' + - uid: 3823 components: - type: Transform - pos: -36.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,44.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11970 + color: '#0335FCFF' + - uid: 3824 components: - type: Transform - pos: -36.5,-5.5 + rot: -1.5707963267948966 rad + pos: 9.5,45.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11971 + color: '#0335FCFF' + - uid: 3832 components: - type: Transform - pos: -36.5,-6.5 + pos: 5.5,45.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11973 + color: '#0335FCFF' + - uid: 4003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 + pos: -3.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11974 + color: '#990000FF' + - uid: 4004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 + rot: 3.141592653589793 rad + pos: -1.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11975 + color: '#0055CCFF' + - uid: 4150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 + rot: 3.141592653589793 rad + pos: 17.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11976 + color: '#990000FF' + - uid: 4164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 + pos: 19.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11977 + color: '#0055CCFF' + - uid: 4171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 + rot: 3.141592653589793 rad + pos: 25.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11978 + color: '#0055CCFF' + - uid: 4186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 + rot: 3.141592653589793 rad + pos: 24.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11979 + color: '#990000FF' + - uid: 4187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-7.5 + rot: 3.141592653589793 rad + pos: 53.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11980 + color: '#990000FF' + - uid: 4189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-7.5 + pos: 25.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11981 + color: '#990000FF' + - uid: 4206 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-7.5 + pos: 25.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11984 + color: '#0055CCFF' + - uid: 4833 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-8.5 + pos: -17.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11985 + color: '#990000FF' + - uid: 4888 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-8.5 + pos: -19.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11986 + color: '#0055CCFF' + - uid: 4942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-8.5 + rot: 3.141592653589793 rad + pos: -15.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11987 + color: '#990000FF' + - uid: 4958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 + pos: -17.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11989 + color: '#990000FF' + - uid: 4976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-7.5 + rot: -1.5707963267948966 rad + pos: -16.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11990 + color: '#0055CCFF' + - uid: 5006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-7.5 + pos: -18.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11991 + color: '#0055CCFF' + - uid: 5012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 + pos: -12.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11992 + color: '#0055CCFF' + - uid: 5018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-7.5 + pos: -8.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11993 + color: '#990000FF' + - uid: 5019 components: - type: Transform - pos: -45.5,-8.5 + pos: -10.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11994 + color: '#0055CCFF' + - uid: 5051 components: - type: Transform - pos: -45.5,-9.5 + pos: -14.5,-26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11995 + - uid: 5096 components: - type: Transform - pos: -45.5,-10.5 + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11996 + color: '#0055CCFF' + - uid: 5101 components: - type: Transform - pos: -44.5,-9.5 + rot: -1.5707963267948966 rad + pos: 1.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11997 + color: '#0055CCFF' + - uid: 5113 components: - type: Transform - pos: -44.5,-10.5 + pos: 9.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11998 + color: '#0055CCFF' + - uid: 5121 components: - type: Transform - pos: -44.5,-11.5 + rot: 3.141592653589793 rad + pos: -6.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12001 + color: '#0055CCFF' + - uid: 5138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12002 + color: '#0055CCFF' + - uid: 5142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-11.5 + rot: 3.141592653589793 rad + pos: -2.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12003 + color: '#0055CCFF' + - uid: 5148 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-11.5 + pos: -5.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12004 + color: '#990000FF' + - uid: 5153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-12.5 + rot: -1.5707963267948966 rad + pos: 0.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12005 + color: '#990000FF' + - uid: 5163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 + pos: 10.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12006 + color: '#990000FF' + - uid: 5179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 + rot: 3.141592653589793 rad + pos: -5.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12007 + color: '#990000FF' + - uid: 5188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-11.5 + pos: -11.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12008 + color: '#990000FF' + - uid: 5195 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-11.5 + pos: -11.5,-42.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12009 + color: '#990000FF' + - uid: 5211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 + rot: -1.5707963267948966 rad + pos: -10.5,-41.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12012 + color: '#0055CCFF' + - uid: 5621 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-12.5 + pos: 12.5,-18.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12013 + - uid: 5629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-12.5 + pos: 6.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12014 + color: '#990000FF' + - uid: 5630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-12.5 + pos: 5.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12015 + color: '#0055CCFF' + - uid: 5631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-11.5 + rot: 3.141592653589793 rad + pos: 4.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12016 + color: '#0055CCFF' + - uid: 5635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-11.5 + rot: -1.5707963267948966 rad + pos: 10.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12017 + color: '#990000FF' + - uid: 5644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 + rot: 3.141592653589793 rad + pos: 12.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12018 + color: '#0055CCFF' + - uid: 5660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-11.5 + rot: 3.141592653589793 rad + pos: 3.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12019 + color: '#990000FF' + - uid: 5665 components: - type: Transform - pos: -49.5,-11.5 + pos: 8.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12020 + color: '#990000FF' + - uid: 5673 components: - type: Transform - pos: -49.5,-10.5 + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12021 + color: '#0055CCFF' + - uid: 5676 components: - type: Transform - pos: -48.5,-10.5 + rot: 3.141592653589793 rad + pos: 10.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12022 + color: '#990000FF' + - uid: 5680 components: - type: Transform - pos: -48.5,-12.5 + rot: 3.141592653589793 rad + pos: 14.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12031 + color: '#990000FF' + - uid: 5687 components: - type: Transform - pos: -44.5,-7.5 + pos: 22.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPipeTJunction - entities: - - uid: 373 + color: '#0055CCFF' + - uid: 5706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,13.5 + pos: 8.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 376 + color: '#990000FF' + - uid: 5707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 384 + color: '#0055CCFF' + - uid: 5726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,2.5 + pos: 21.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 387 + color: '#990000FF' + - uid: 5738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 + rot: 3.141592653589793 rad + pos: 27.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 394 + color: '#0055CCFF' + - uid: 5757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 + pos: 27.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 407 + color: '#990000FF' + - uid: 6462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-1.5 + pos: -5.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 413 + color: '#990000FF' + - uid: 6650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 + rot: 3.141592653589793 rad + pos: -13.5,-26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 417 + - uid: 6785 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,8.5 + pos: -17.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 418 + color: '#990000FF' + - uid: 6814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 + rot: 3.141592653589793 rad + pos: -19.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 423 + color: '#0055CCFF' + - uid: 6818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,14.5 + pos: -22.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 441 + color: '#990000FF' + - uid: 6828 components: - type: Transform - pos: -5.5,-11.5 + rot: 1.5707963267948966 rad + pos: -18.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 454 + color: '#990000FF' + - uid: 6834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-12.5 + pos: -23.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 464 + color: '#0055CCFF' + - uid: 6895 components: - type: Transform - pos: 0.5,-11.5 + rot: -1.5707963267948966 rad + pos: -12.5,-26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 471 + - uid: 7061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 + rot: 1.5707963267948966 rad + pos: -19.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 477 + color: '#0055CCFF' + - uid: 7250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,1.5 + rot: -1.5707963267948966 rad + pos: -12.5,-27.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 483 + - uid: 7255 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,7.5 + pos: -18.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 486 + color: '#990000FF' + - uid: 7273 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,10.5 + pos: -14.5,-27.5 + parent: 4812 + - uid: 7308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-21.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 490 + color: '#990000FF' + - uid: 7311 components: - type: Transform - pos: -25.5,-12.5 + rot: 3.141592653589793 rad + pos: -9.5,-22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 496 + color: '#0055CCFF' + - uid: 7372 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,13.5 + pos: -9.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 506 + color: '#0055CCFF' + - uid: 7373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,19.5 + rot: -1.5707963267948966 rad + pos: -11.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 510 + color: '#990000FF' + - uid: 7389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,19.5 + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 513 + color: '#990000FF' + - uid: 7818 components: - type: Transform - pos: -0.5,20.5 + rot: 1.5707963267948966 rad + pos: -29.5,14.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 519 + color: '#0055CCFF' + - uid: 7819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,19.5 + rot: 1.5707963267948966 rad + pos: -30.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 523 + color: '#990000FF' + - uid: 7823 components: - type: Transform - pos: 8.5,20.5 + rot: -1.5707963267948966 rad + pos: -30.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 527 + color: '#990000FF' + - uid: 7825 components: - type: Transform - pos: -13.5,20.5 + rot: 1.5707963267948966 rad + pos: -30.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 532 + color: '#990000FF' + - uid: 7826 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,15.5 + pos: -29.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 539 + color: '#0055CCFF' + - uid: 7828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,19.5 + rot: 1.5707963267948966 rad + pos: -29.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 540 + color: '#0055CCFF' + - uid: 7832 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,7.5 + pos: -29.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 548 + color: '#0055CCFF' + - uid: 7833 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,8.5 + pos: -29.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 550 + color: '#0055CCFF' + - uid: 7835 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-1.5 + pos: -29.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 558 + color: '#0055CCFF' + - uid: 7836 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-2.5 + pos: -30.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 562 + color: '#990000FF' + - uid: 7850 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-11.5 + pos: -26.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 565 + color: '#0055CCFF' + - uid: 7875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,19.5 + rot: 3.141592653589793 rad + pos: -30.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 570 + color: '#990000FF' + - uid: 7876 components: - type: Transform - pos: -4.5,19.5 + rot: 3.141592653589793 rad + pos: -29.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 574 + color: '#0055CCFF' + - uid: 7878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,20.5 + rot: -1.5707963267948966 rad + pos: -30.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 579 + color: '#990000FF' + - uid: 7879 components: - type: Transform - pos: 6.5,19.5 + rot: -1.5707963267948966 rad + pos: -30.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 587 + color: '#990000FF' + - uid: 7895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,14.5 + rot: 3.141592653589793 rad + pos: -35.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 594 + color: '#0055CCFF' + - uid: 7896 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,19.5 + pos: -34.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 600 + color: '#990000FF' + - uid: 8227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8236 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,6.5 + pos: -23.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 605 + color: '#0055CCFF' + - uid: 8757 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,2.5 + pos: -25.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 611 + color: '#990000FF' + - uid: 8777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8982 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 4812 + - uid: 8984 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 4812 + - uid: 8990 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-3.5 + pos: -36.5,-36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 617 + - uid: 8998 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 4812 + - uid: 8999 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-8.5 + pos: -37.5,-35.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 618 + - uid: 9130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 + pos: -38.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 625 + color: '#0055CCFF' + - uid: 9145 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-12.5 + pos: -38.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 632 + color: '#990000FF' + - uid: 9152 components: - type: Transform - pos: -6.5,-12.5 + pos: -33.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 642 + color: '#990000FF' + - uid: 9311 components: - type: Transform - pos: -14.5,-11.5 + pos: -55.5,5.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 643 + - uid: 9320 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-12.5 + pos: -55.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 645 + - uid: 9528 components: - type: Transform - pos: 1.5,-12.5 + pos: -57.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 651 + - uid: 9869 components: - type: Transform - pos: -19.5,-12.5 + rot: 1.5707963267948966 rad + pos: -48.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 662 + color: '#0055CCFF' + - uid: 9904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-1.5 + pos: -36.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 666 + color: '#990000FF' + - uid: 9905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,2.5 + pos: -32.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 675 + color: '#0055CCFF' + - uid: 9929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,9.5 + rot: 3.141592653589793 rad + pos: -43.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 679 + color: '#0055CCFF' + - uid: 11982 components: - type: Transform - pos: -24.5,-11.5 + rot: 1.5707963267948966 rad + pos: -44.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 681 + color: '#0055CCFF' + - uid: 11988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 + rot: 3.141592653589793 rad + pos: -40.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 682 + color: '#990000FF' + - uid: 11999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 + rot: 3.141592653589793 rad + pos: -44.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 694 + color: '#0055CCFF' + - uid: 12000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,17.5 + rot: 3.141592653589793 rad + pos: -45.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 699 + color: '#990000FF' + - uid: 12043 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,20.5 + pos: -25.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 704 + color: '#990000FF' + - uid: 12770 components: - type: Transform - pos: -11.5,19.5 + rot: 3.141592653589793 rad + pos: 39.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 706 + color: '#990000FF' + - uid: 12774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,8.5 + pos: 51.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 707 + color: '#0055CCFF' + - uid: 12777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-12.5 + rot: -1.5707963267948966 rad + pos: -50.5,2.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 797 + - uid: 12858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 + rot: 3.141592653589793 rad + pos: 28.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 805 + color: '#0055CCFF' + - uid: 12859 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-7.5 + pos: 30.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 806 + color: '#0055CCFF' + - uid: 12874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-11.5 + pos: 28.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 808 + color: '#990000FF' + - uid: 13070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 + pos: 37.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 819 + color: '#0055CCFF' + - uid: 13401 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,2.5 + pos: -43.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 820 + color: '#0055CCFF' + - uid: 13425 components: - type: Transform - pos: -2.5,2.5 + rot: 3.141592653589793 rad + pos: -51.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 832 + - uid: 13445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-3.5 + pos: -47.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 843 + - uid: 13502 components: - type: Transform - pos: 3.5,7.5 + rot: 1.5707963267948966 rad + pos: -55.5,1.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 860 +- proto: GasPort + entities: + - uid: 3467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 parent: 4812 - - uid: 870 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 + rot: 1.5707963267948966 rad + pos: -34.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1051 + color: '#990000FF' + - uid: 3711 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,20.5 + pos: -34.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1504 + color: '#990000FF' + - uid: 3712 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,0.5 + pos: -34.5,-3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1985 + color: '#0055CCFF' + - uid: 3839 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,22.5 + pos: 15.5,44.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1986 + - uid: 5593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,23.5 + pos: 29.5,-28.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1992 + - uid: 5594 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,26.5 + pos: 29.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1997 + - uid: 8839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,22.5 + rot: 3.141592653589793 rad + pos: -12.5,-28.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2000 + - uid: 9037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,25.5 + rot: 3.141592653589793 rad + pos: -33.5,-37.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2004 + - uid: 13234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,29.5 + rot: 3.141592653589793 rad + pos: -57.5,0.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2012 + - uid: 13432 components: - type: Transform - pos: -5.5,32.5 + pos: -47.5,6.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2018 + - uid: 13441 components: - type: Transform - pos: 0.5,32.5 + pos: -48.5,6.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2022 + - uid: 13528 + components: + - type: Transform + pos: -50.5,6.5 + parent: 4812 + - uid: 13560 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,33.5 + pos: -45.5,6.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2028 + - uid: 13614 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,33.5 + pos: -56.5,0.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2035 +- proto: GasPressurePump + entities: + - uid: 3406 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,26.5 + pos: -54.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2037 + color: '#947507FF' + - uid: 3795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,24.5 + rot: 1.5707963267948966 rad + pos: 15.5,46.5 parent: 4812 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2046 + - uid: 4929 components: + - type: MetaData + name: Distro Pump - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,24.5 + pos: -12.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2048 + color: '#0055CCFF' + - uid: 5583 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,29.5 + pos: 25.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2056 + - uid: 5584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 + rot: 1.5707963267948966 rad + pos: 25.5,-28.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2065 + - uid: 9103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,24.5 + pos: -43.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2424 + - uid: 9104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,23.5 + pos: -45.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2435 + - uid: 9105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,24.5 + pos: -47.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2965 + - uid: 9166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,14.5 + pos: -49.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2972 + - uid: 9167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,18.5 + pos: -51.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2974 + - uid: 9168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,20.5 + pos: -53.5,12.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2980 + - uid: 10090 + components: + - type: Transform + pos: -58.5,5.5 + parent: 4812 + - uid: 11900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,24.5 + pos: -39.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2987 + color: '#0055CCFF' + - uid: 11906 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,18.5 + pos: -39.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2989 + color: '#990000FF' + - uid: 13377 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,20.5 + pos: -54.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2994 + color: '#947507FF' + - uid: 13420 components: - type: Transform - pos: 19.5,25.5 + rot: -1.5707963267948966 rad + pos: -49.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2995 + - uid: 13434 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,25.5 + pos: -57.5,3.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3011 + - uid: 13516 components: - type: Transform - pos: 19.5,26.5 + pos: -50.5,5.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3406 +- proto: GasThermoMachineFreezer + entities: + - uid: 859 components: - type: Transform - pos: -33.5,-0.5 + pos: 7.5,-5.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3739 + - uid: 5803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 + pos: 12.5,-17.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3740 + - uid: 7245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 + rot: 3.141592653589793 rad + pos: -14.5,-28.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3741 + - uid: 13509 components: - type: Transform - pos: -33.5,-3.5 + rot: 3.141592653589793 rad + pos: -54.5,0.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3742 + - uid: 13674 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-3.5 + pos: -47.5,8.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3745 + - uid: 13675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 + rot: 3.141592653589793 rad + pos: -48.5,8.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3783 +- proto: GasThermoMachineHeater + entities: + - uid: 13439 components: - type: Transform - pos: -3.5,-34.5 + rot: 3.141592653589793 rad + pos: -47.5,3.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3784 + - uid: 13494 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-35.5 + pos: -46.5,8.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3798 +- proto: GasValve + entities: + - uid: 5591 components: - type: Transform - pos: 13.5,46.5 + rot: 1.5707963267948966 rad + pos: 28.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3818 + - uid: 5592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,44.5 + rot: 1.5707963267948966 rad + pos: 28.5,-28.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3823 + - uid: 9039 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,44.5 + pos: -34.5,-36.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3824 + - type: GasValve + open: False + - uid: 9328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,45.5 + pos: -56.5,5.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3832 + - type: GasValve + open: False + - uid: 9924 components: - type: Transform - pos: 5.5,45.5 + rot: 3.141592653589793 rad + pos: -54.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4003 +- proto: GasVentPump + entities: + - uid: 559 components: - type: Transform - pos: -3.5,-31.5 + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4004 + color: '#0055CCFF' + - uid: 710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-32.5 + rot: -1.5707963267948966 rad + pos: -2.5,13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4150 + color: '#0055CCFF' + - uid: 817 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-3.5 + rot: -1.5707963267948966 rad + pos: -2.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4164 + color: '#0055CCFF' + - uid: 818 components: - type: Transform - pos: 19.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4171 + color: '#0055CCFF' + - uid: 835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-2.5 + pos: 5.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4183 + color: '#0055CCFF' + - uid: 838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 + rot: 3.141592653589793 rad + pos: 4.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4184 + color: '#0055CCFF' + - uid: 846 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,0.5 + pos: 2.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4185 + color: '#0055CCFF' + - uid: 847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-7.5 + rot: -1.5707963267948966 rad + pos: 6.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4186 + color: '#0055CCFF' + - uid: 848 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 + - type: Transform + pos: -17.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4190 + color: '#0055CCFF' + - uid: 849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 + pos: -10.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4193 + color: '#0055CCFF' + - uid: 864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 + rot: 3.141592653589793 rad + pos: -2.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4206 + color: '#0055CCFF' + - uid: 871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-1.5 + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4221 + color: '#0055CCFF' + - uid: 877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-4.5 + pos: -9.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4833 + color: '#0055CCFF' + - uid: 1511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 + pos: -22.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4888 + color: '#0055CCFF' + - uid: 1685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-22.5 + pos: -21.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4942 + color: '#0055CCFF' + - uid: 1770 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-21.5 + rot: 1.5707963267948966 rad + pos: 11.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4958 + color: '#0055CCFF' + - uid: 1814 components: - type: Transform - pos: -17.5,-21.5 + rot: 3.141592653589793 rad + pos: 8.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4976 + color: '#0055CCFF' + - uid: 1817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-27.5 + rot: 3.141592653589793 rad + pos: -0.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5006 + color: '#0055CCFF' + - uid: 1852 components: - type: Transform - pos: -18.5,-17.5 + pos: -3.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5012 + color: '#0055CCFF' + - uid: 2071 components: - type: Transform - pos: -12.5,-22.5 + rot: 3.141592653589793 rad + pos: 8.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5018 + color: '#0055CCFF' + - uid: 2072 components: - type: Transform - pos: -8.5,-21.5 + pos: 8.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5019 + color: '#0055CCFF' + - uid: 2429 components: - type: Transform - pos: -10.5,-22.5 + rot: 1.5707963267948966 rad + pos: -14.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5051 + color: '#0055CCFF' + - uid: 2430 components: - type: Transform - pos: -14.5,-26.5 + pos: -13.5,28.5 parent: 4812 - - uid: 5096 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2443 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-32.5 + pos: 2.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5101 + color: '#0055CCFF' + - uid: 2444 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-32.5 + pos: -7.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5113 + color: '#0055CCFF' + - uid: 2445 components: - type: Transform - pos: 9.5,-12.5 + pos: -5.5,34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5121 + color: '#0055CCFF' + - uid: 2446 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-35.5 + pos: 0.5,34.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5138 + color: '#0055CCFF' + - uid: 2474 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-22.5 + pos: -7.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5142 + color: '#0055CCFF' + - uid: 2475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-32.5 + rot: 1.5707963267948966 rad + pos: 2.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5148 + color: '#0055CCFF' + - uid: 2842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 + rot: -1.5707963267948966 rad + pos: 22.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5153 + color: '#0055CCFF' + - uid: 2983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 + pos: 15.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5163 + color: '#0055CCFF' + - uid: 3019 components: - type: Transform - pos: 10.5,-11.5 + rot: 3.141592653589793 rad + pos: 14.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5179 + color: '#0055CCFF' + - uid: 3020 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-34.5 + pos: 19.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5188 + color: '#0055CCFF' + - uid: 3023 components: - type: Transform - pos: -11.5,-34.5 + rot: 1.5707963267948966 rad + pos: 14.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5195 + color: '#0055CCFF' + - uid: 3024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-42.5 + pos: 14.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5211 + color: '#0055CCFF' + - uid: 3026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3206 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-41.5 + pos: 22.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5621 + color: '#0055CCFF' + - uid: 3708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-18.5 + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 parent: 4812 - - uid: 5629 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3781 components: - type: Transform - pos: 6.5,-21.5 + pos: -1.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5630 + color: '#0055CCFF' + - uid: 3834 components: - type: Transform - pos: 5.5,-20.5 + rot: 1.5707963267948966 rad + pos: 3.5,45.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5631 + - uid: 3835 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-20.5 + pos: 5.5,44.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5635 + - uid: 3838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 + pos: 8.5,51.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5644 + color: '#0335FCFF' + - uid: 3841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-20.5 + rot: -1.5707963267948966 rad + pos: 15.5,45.5 parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5660 + - uid: 3944 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-21.5 + pos: 9.5,43.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5665 + color: '#0335FCFF' + - uid: 4196 components: - type: Transform - pos: 8.5,-21.5 + pos: 30.5,3.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5673 + color: '#0055CCFF' + - uid: 4231 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-19.5 + pos: 22.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5676 + color: '#0055CCFF' + - uid: 4327 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-21.5 + pos: 37.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5680 + color: '#0055CCFF' + - uid: 4328 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-21.5 + pos: 51.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5687 + color: '#0055CCFF' + - uid: 4380 components: - type: Transform - pos: 22.5,-20.5 + rot: 3.141592653589793 rad + pos: 19.5,-3.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5706 + color: '#0055CCFF' + - uid: 4440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-26.5 + pos: 11.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5707 + color: '#0055CCFF' + - uid: 4441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-25.5 + pos: 11.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5726 + color: '#0055CCFF' + - uid: 4444 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-22.5 + pos: 24.5,-1.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5738 + color: '#0055CCFF' + - uid: 4464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-25.5 + rot: -1.5707963267948966 rad + pos: 15.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5757 + color: '#0055CCFF' + - uid: 4890 components: - type: Transform - pos: 27.5,-26.5 + rot: 3.141592653589793 rad + pos: -18.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6462 + color: '#0055CCFF' + - uid: 4941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 + rot: -1.5707963267948966 rad + pos: -15.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6650 + color: '#0055CCFF' + - uid: 5033 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-26.5 + pos: -24.5,-27.5 parent: 4812 - - uid: 6785 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 + rot: 3.141592653589793 rad + pos: -10.5,-52.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6814 + color: '#0055CCFF' + - uid: 5225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-35.5 + rot: 1.5707963267948966 rad + pos: -11.5,-41.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6818 + color: '#0055CCFF' + - uid: 5697 components: - type: Transform - pos: -22.5,-36.5 + pos: 4.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6828 + color: '#0055CCFF' + - uid: 5698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-34.5 + rot: 3.141592653589793 rad + pos: 5.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6834 + color: '#0055CCFF' + - uid: 5714 components: - type: Transform - pos: -23.5,-35.5 + rot: 3.141592653589793 rad + pos: 9.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6895 + color: '#0055CCFF' + - uid: 5715 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-26.5 + pos: 12.5,-25.5 parent: 4812 - - uid: 7061 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-17.5 + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7250 + color: '#0055CCFF' + - uid: 5734 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-27.5 + pos: 25.5,-20.5 parent: 4812 - - uid: 7255 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5763 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-21.5 + pos: 27.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7273 + color: '#0055CCFF' + - uid: 5764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 + rot: -1.5707963267948966 rad + pos: 33.5,-25.5 parent: 4812 - - uid: 7308 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 4812 + - uid: 6416 + components: + - type: Transform + pos: 8.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7311 + color: '#0055CCFF' + - uid: 6419 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-22.5 + pos: -3.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7372 + color: '#0055CCFF' + - uid: 6461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 + pos: -1.5,-31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7373 + color: '#0055CCFF' + - uid: 6471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 + pos: -2.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7389 + color: '#0055CCFF' + - uid: 6554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-16.5 + pos: -16.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7818 + color: '#0055CCFF' + - uid: 6686 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,14.5 + pos: -21.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7819 + color: '#0055CCFF' + - uid: 6821 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,13.5 + pos: -26.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7823 + color: '#0055CCFF' + - uid: 6840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,15.5 + rot: 3.141592653589793 rad + pos: -23.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7825 + color: '#0055CCFF' + - uid: 6842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,16.5 + pos: -19.5,-34.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7826 + color: '#0055CCFF' + - uid: 7087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,18.5 + rot: 3.141592653589793 rad + pos: -25.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7828 + color: '#0055CCFF' + - uid: 7323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,20.5 + rot: 3.141592653589793 rad + pos: -10.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7832 + color: '#0055CCFF' + - uid: 7379 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,15.5 + pos: -10.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7833 + color: '#0055CCFF' + - uid: 7380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,17.5 + pos: -9.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7835 + color: '#0055CCFF' + - uid: 7856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,12.5 + pos: -26.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7836 + color: '#0055CCFF' + - uid: 7857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,19.5 + rot: 3.141592653589793 rad + pos: -26.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7850 + color: '#0055CCFF' + - uid: 7871 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,24.5 + pos: -26.5,17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7875 + color: '#0055CCFF' + - uid: 7872 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,11.5 + rot: -1.5707963267948966 rad + pos: -26.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7876 + color: '#0055CCFF' + - uid: 7886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,10.5 + rot: -1.5707963267948966 rad + pos: -26.5,10.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7878 + color: '#0055CCFF' + - uid: 7905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7906 + components: + - type: Transform + pos: -35.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7910 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,18.5 + pos: -28.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7879 + color: '#0055CCFF' + - uid: 7911 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,12.5 + pos: -28.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7895 + color: '#0055CCFF' + - uid: 7912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,10.5 + rot: -1.5707963267948966 rad + pos: -28.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7896 + color: '#0055CCFF' + - uid: 8238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,11.5 + pos: -23.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8227 + color: '#0055CCFF' + - uid: 8240 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,22.5 + pos: -22.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8236 + color: '#0055CCFF' + - uid: 8300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 + rot: -1.5707963267948966 rad + pos: -19.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8549 + color: '#0055CCFF' + - uid: 8306 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,4.5 + pos: -22.5,17.5 parent: 4812 - - uid: 8757 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 + rot: 3.141592653589793 rad + pos: -13.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8772 + color: '#0055CCFF' + - uid: 8562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 + pos: -18.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8777 + color: '#0055CCFF' + - uid: 8838 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-8.5 + pos: -16.5,-28.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8786 + color: '#0055CCFF' + - uid: 8991 components: - type: Transform - pos: -36.5,1.5 + rot: 3.141592653589793 rad + pos: -39.5,-34.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8982 + - uid: 8992 components: - type: Transform - pos: -34.5,-33.5 + rot: 3.141592653589793 rad + pos: -36.5,-37.5 parent: 4812 - - uid: 8984 + - uid: 8993 components: - type: Transform - pos: -36.5,-33.5 + rot: 3.141592653589793 rad + pos: -34.5,-34.5 parent: 4812 - - uid: 8990 + - uid: 9421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 + rot: -1.5707963267948966 rad + pos: -47.5,0.5 parent: 4812 - - uid: 8998 + - type: DeviceNetwork + deviceLists: + - 13607 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11962 components: - type: Transform - pos: -37.5,-34.5 + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 parent: 4812 - - uid: 8999 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12027 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-35.5 + pos: -42.5,-12.5 parent: 4812 - - uid: 9130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12028 components: - type: Transform - pos: -38.5,1.5 + rot: 3.141592653589793 rad + pos: -49.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9145 + color: '#0055CCFF' + - uid: 12029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,2.5 + rot: 1.5707963267948966 rad + pos: -53.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9152 + color: '#0055CCFF' + - uid: 12030 components: - type: Transform - pos: -33.5,2.5 + pos: -49.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9158 + color: '#0055CCFF' + - uid: 12032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,0.5 + pos: -44.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9163 + color: '#0055CCFF' + - uid: 12037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,0.5 + pos: -16.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9251 + color: '#0055CCFF' + - uid: 12039 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,2.5 + pos: -23.5,7.5 parent: 4812 - - uid: 9536 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12041 components: - type: Transform - pos: -42.5,8.5 + rot: -1.5707963267948966 rad + pos: -25.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9537 + color: '#0055CCFF' + - uid: 12136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,7.5 + rot: 3.141592653589793 rad + pos: -38.5,0.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12178 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9538 + color: '#0055CCFF' + - uid: 12141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,6.5 + pos: -30.5,2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12183 - type: AtmosPipeColor - color: '#947507FF' - - uid: 11982 + color: '#0055CCFF' + - uid: 12764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 + rot: 3.141592653589793 rad + pos: 59.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11988 + color: '#0055CCFF' + - uid: 12842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-7.5 + pos: 28.5,-0.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11999 + color: '#0055CCFF' + - uid: 12977 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-12.5 + pos: 24.5,14.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13204 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12000 + color: '#0055CCFF' + - uid: 13407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-11.5 + pos: -43.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12043 + color: '#0055CCFF' + - uid: 13408 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-11.5 + pos: -48.5,-4.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPort + color: '#0055CCFF' +- proto: GasVentScrubber entities: - - uid: 3443 + - uid: 711 components: - type: Transform - pos: -29.5,2.5 + rot: 1.5707963267948966 rad + pos: -2.5,14.5 parent: 4812 - - uid: 3467 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3710 + color: '#990000FF' + - uid: 815 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-0.5 + pos: -2.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3711 + color: '#990000FF' + - uid: 816 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-1.5 + pos: -2.5,9.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3712 + color: '#990000FF' + - uid: 857 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-3.5 + pos: -17.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3839 + color: '#990000FF' + - uid: 858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,44.5 + pos: -10.5,-8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5593 + color: '#990000FF' + - uid: 885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 + rot: 1.5707963267948966 rad + pos: -9.5,8.5 parent: 4812 - - uid: 5594 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-30.5 + rot: 3.141592653589793 rad + pos: -21.5,-7.5 parent: 4812 - - uid: 8839 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1686 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-28.5 + pos: -21.5,0.5 parent: 4812 - - uid: 9037 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1813 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-37.5 + pos: 6.5,16.5 parent: 4812 - - uid: 9548 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,6.5 + rot: 3.141592653589793 rad + pos: -4.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9549 + color: '#990000FF' + - uid: 1853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,7.5 + pos: -1.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9550 + color: '#990000FF' + - uid: 2073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,8.5 + pos: 6.5,29.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' -- proto: GasPressurePump - entities: - - uid: 3795 + color: '#990000FF' + - uid: 2074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,46.5 + rot: -1.5707963267948966 rad + pos: 7.5,24.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4929 + color: '#990000FF' + - uid: 2439 components: - - type: MetaData - name: Distro Pump - type: Transform - pos: -12.5,-25.5 + rot: 3.141592653589793 rad + pos: -12.5,23.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5583 + color: '#990000FF' + - uid: 2440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 + pos: -12.5,28.5 parent: 4812 - - uid: 5584 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-28.5 + pos: -8.5,26.5 parent: 4812 - - uid: 8773 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,1.5 + pos: 3.5,26.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,2.5 - parent: 4812 - - uid: 9131 + color: '#990000FF' + - uid: 2447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,2.5 + rot: 3.141592653589793 rad + pos: -5.5,31.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9206 + color: '#990000FF' + - uid: 2448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,4.5 + rot: 3.141592653589793 rad + pos: 0.5,31.5 parent: 4812 - - uid: 9212 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,6.5 + rot: -1.5707963267948966 rad + pos: 22.5,14.5 parent: 4812 - - uid: 9218 + - type: DeviceNetwork + deviceLists: + - 13204 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,8.5 + pos: 16.5,29.5 parent: 4812 - - uid: 9224 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,10.5 + rot: -1.5707963267948966 rad + pos: 20.5,25.5 parent: 4812 - - uid: 9230 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3017 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,12.5 - parent: 4812 - - uid: 9513 - components: - - type: Transform - pos: -43.5,12.5 + pos: 15.5,25.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9543 + color: '#990000FF' + - uid: 3021 components: - type: Transform - pos: -42.5,4.5 + rot: -1.5707963267948966 rad + pos: 20.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 859 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 4812 - - uid: 5803 + color: '#990000FF' + - uid: 3022 components: - type: Transform - pos: 12.5,-17.5 + rot: -1.5707963267948966 rad + pos: 20.5,18.5 parent: 4812 - - uid: 7245 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3027 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 4812 - - uid: 9551 - components: - - type: Transform - pos: -41.5,12.5 + pos: 19.5,13.5 parent: 4812 -- proto: GasThermoMachineHeater - entities: - - uid: 9552 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3782 components: - type: Transform - pos: -41.5,11.5 + pos: 10.5,20.5 parent: 4812 -- proto: GasValve - entities: - - uid: 5591 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-30.5 + rot: 3.141592653589793 rad + pos: 7.5,44.5 parent: 4812 - - uid: 5592 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 + rot: 3.141592653589793 rad + pos: 11.5,43.5 parent: 4812 - - uid: 9039 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-36.5 + pos: 12.5,51.5 parent: 4812 - - type: GasValve - open: False - - uid: 9164 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3816 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-0.5 + pos: 13.5,45.5 parent: 4812 - - type: GasValve - open: False - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9544 + - uid: 4226 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,5.5 + pos: 24.5,3.5 parent: 4812 - - type: GasValve - open: False - type: AtmosPipeColor - color: '#947507FF' -- proto: GasVentPump - entities: - - uid: 559 + color: '#990000FF' + - uid: 4335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 + rot: 3.141592653589793 rad + pos: 25.5,-4.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 710 + color: '#990000FF' + - uid: 4381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,13.5 + pos: 17.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12275 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 817 + color: '#990000FF' + - uid: 4439 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,10.5 + pos: 12.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 818 + color: '#990000FF' + - uid: 4442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-7.5 + pos: 12.5,-1.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 835 + color: '#990000FF' + - uid: 4465 components: - type: Transform - pos: 5.5,-1.5 + rot: -1.5707963267948966 rad + pos: 15.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 838 + color: '#990000FF' + - uid: 4875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-6.5 + pos: -15.5,-15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 846 + color: '#990000FF' + - uid: 4876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,7.5 + pos: -19.5,-16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 847 + color: '#990000FF' + - uid: 5025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 + pos: -18.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 848 + color: '#990000FF' + - uid: 5223 components: - type: Transform - pos: -17.5,-6.5 + rot: 3.141592653589793 rad + pos: -11.5,-51.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 849 + color: '#990000FF' + - uid: 5224 components: - type: Transform - pos: -10.5,-6.5 + rot: -1.5707963267948966 rad + pos: -10.5,-42.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 864 + color: '#990000FF' + - uid: 5699 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 + pos: 6.5,-24.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 877 + color: '#990000FF' + - uid: 5700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,4.5 + pos: 3.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1511 + color: '#990000FF' + - uid: 5716 components: - type: Transform - pos: -22.5,-8.5 + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1685 + color: '#990000FF' + - uid: 5717 components: - type: Transform - pos: -21.5,3.5 + rot: 3.141592653589793 rad + pos: 8.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1770 + color: '#990000FF' + - uid: 5719 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,19.5 + pos: 9.5,-18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1814 + color: '#990000FF' + - uid: 5735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 + pos: 27.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1817 + color: '#990000FF' + - uid: 5765 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,18.5 + pos: 27.5,-27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1852 + color: '#990000FF' + - uid: 5766 components: - type: Transform - pos: -3.5,23.5 + rot: -1.5707963267948966 rad + pos: 33.5,-26.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2071 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2072 + color: '#990000FF' + - uid: 6253 components: - type: Transform - pos: 8.5,29.5 + rot: 3.141592653589793 rad + pos: -26.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2429 + color: '#990000FF' + - uid: 6417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,23.5 + rot: 3.141592653589793 rad + pos: 11.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2430 + color: '#990000FF' + - uid: 6420 components: - type: Transform - pos: -13.5,28.5 + rot: 3.141592653589793 rad + pos: -1.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2443 + color: '#990000FF' + - uid: 6455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,29.5 + rot: 3.141592653589793 rad + pos: -3.5,-35.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2444 + color: '#990000FF' + - uid: 6472 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,29.5 + pos: -2.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2445 + color: '#990000FF' + - uid: 6687 components: - type: Transform - pos: -5.5,34.5 + rot: 3.141592653589793 rad + pos: -3.5,-32.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2446 + color: '#990000FF' + - uid: 6838 components: - type: Transform - pos: 0.5,34.5 + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2474 + color: '#990000FF' + - uid: 6839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,22.5 + pos: -18.5,-33.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2475 + color: '#990000FF' + - uid: 6841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,22.5 + rot: 3.141592653589793 rad + pos: -22.5,-37.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2842 + color: '#990000FF' + - uid: 7088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,27.5 + rot: 3.141592653589793 rad + pos: -24.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2966 + color: '#990000FF' + - uid: 7227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,14.5 + pos: -20.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2969 + color: '#990000FF' + - uid: 7325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,14.5 + rot: 3.141592653589793 rad + pos: -8.5,-26.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2983 + color: '#990000FF' + - uid: 7381 components: - type: Transform - pos: 15.5,29.5 + rot: 1.5707963267948966 rad + pos: -12.5,-20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3019 + color: '#990000FF' + - uid: 7382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,25.5 + pos: -11.5,-17.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3020 + color: '#990000FF' + - uid: 7858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,25.5 + pos: -30.5,30.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3023 + color: '#990000FF' + - uid: 7873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,18.5 + rot: -1.5707963267948966 rad + pos: -26.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3024 + color: '#990000FF' + - uid: 7874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,20.5 + rot: -1.5707963267948966 rad + pos: -26.5,19.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3026 + color: '#990000FF' + - uid: 7887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,13.5 + rot: -1.5707963267948966 rad + pos: -26.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3206 + color: '#990000FF' + - uid: 7907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 + rot: 1.5707963267948966 rad + pos: -36.5,11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3708 + color: '#990000FF' + - uid: 7908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 + pos: -34.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3781 + color: '#990000FF' + - uid: 7909 components: - type: Transform - pos: -1.5,-34.5 + rot: 1.5707963267948966 rad + pos: -31.5,15.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3834 + color: '#990000FF' + - uid: 7913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,45.5 + pos: -31.5,18.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3835 + color: '#990000FF' + - uid: 7914 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,44.5 + rot: 1.5707963267948966 rad + pos: -31.5,12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3838 + color: '#990000FF' + - uid: 8239 components: - type: Transform - pos: 8.5,51.5 + pos: -22.5,27.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3841 + color: '#990000FF' + - uid: 8241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,45.5 + rot: 1.5707963267948966 rad + pos: -23.5,22.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3944 + color: '#990000FF' + - uid: 8307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,43.5 + pos: -21.5,20.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4196 + color: '#990000FF' + - uid: 8317 components: - type: Transform - pos: 30.5,3.5 + rot: 3.141592653589793 rad + pos: -11.5,16.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4197 + color: '#990000FF' + - uid: 8563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,2.5 + rot: 3.141592653589793 rad + pos: -18.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4198 + color: '#990000FF' + - uid: 8787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 + rot: 1.5707963267948966 rad + pos: -31.5,-2.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4199 + color: '#990000FF' + - uid: 8836 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-5.5 + pos: -16.5,-25.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4200 + color: '#990000FF' + - uid: 8994 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-7.5 + pos: -33.5,-34.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4201 + - uid: 9006 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-8.5 + pos: -37.5,-37.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4203 + - uid: 9007 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-0.5 + pos: -38.5,-34.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4231 + - uid: 9495 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,4.5 + pos: -58.5,10.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13561 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4380 + color: '#947507FF' + - uid: 12023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-3.5 + pos: -48.5,-9.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4440 + color: '#990000FF' + - uid: 12024 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,2.5 + pos: -53.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4441 + color: '#990000FF' + - uid: 12025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 + rot: 3.141592653589793 rad + pos: -48.5,-13.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4444 + color: '#990000FF' + - uid: 12026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4464 + color: '#990000FF' + - uid: 12033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,8.5 + pos: -40.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4890 + color: '#990000FF' + - uid: 12034 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-18.5 + pos: -30.5,-6.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4941 + color: '#990000FF' + - uid: 12038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-17.5 + rot: 3.141592653589793 rad + pos: -14.5,-12.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5033 + color: '#990000FF' + - uid: 12040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-27.5 + pos: -24.5,8.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5222 + color: '#990000FF' + - uid: 12042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-52.5 + rot: 1.5707963267948966 rad + pos: -26.5,-4.5 parent: 4812 - - type: DeviceNetwork - deviceLists: - - 9593 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5225 + color: '#990000FF' + - uid: 12044 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-41.5 + pos: -26.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,2.5 parent: 4812 - type: DeviceNetwork deviceLists: - - 9593 + - 12183 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5697 + color: '#990000FF' + - uid: 12140 components: - type: Transform - pos: 4.5,-17.5 + pos: -38.5,3.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12178 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5698 + color: '#990000FF' + - uid: 12418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-24.5 + rot: 1.5707963267948966 rad + pos: -2.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5714 + color: '#990000FF' + - uid: 12688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-27.5 + pos: 53.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5715 + color: '#990000FF' + - uid: 12766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 + pos: 61.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5718 + color: '#990000FF' + - uid: 12767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 + pos: 39.5,-2.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12697 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5734 + color: '#990000FF' + - uid: 12841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 + rot: 3.141592653589793 rad + pos: 28.5,-4.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12283 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5763 + color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 9236 components: - type: Transform - pos: 27.5,-24.5 + rot: 3.141592653589793 rad + pos: -50.5,1.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5764 + - uid: 13225 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-25.5 + pos: -54.5,2.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5802 + - uid: 13369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 + rot: 1.5707963267948966 rad + pos: -52.5,4.5 parent: 4812 - - uid: 6416 + - uid: 13452 components: - type: Transform - pos: 8.5,-11.5 + rot: -1.5707963267948966 rad + pos: -52.5,2.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6419 + - uid: 13474 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-13.5 + rot: 1.5707963267948966 rad + pos: -54.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6461 +- proto: GeneratorBasic15kW + entities: + - uid: 1729 components: - type: Transform - pos: -1.5,-31.5 + pos: 14.5,44.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6471 +- proto: GeneratorRTG + entities: + - uid: 2918 components: - type: Transform - pos: -2.5,-28.5 + pos: -39.5,21.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6554 +- proto: Girder + entities: + - uid: 4142 components: - type: Transform - pos: -16.5,-20.5 + pos: 21.5,0.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6686 + - uid: 4143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-27.5 + pos: 16.5,3.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6821 + - uid: 6634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-35.5 + pos: -43.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6840 + - uid: 7260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-36.5 + pos: -44.5,-26.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6842 + - uid: 8872 components: - type: Transform - pos: -19.5,-34.5 + pos: -31.5,-30.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7087 + - uid: 9991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-17.5 + pos: -35.5,-21.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7323 + - uid: 11065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-26.5 + pos: 14.5,-35.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7379 + - uid: 11106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-20.5 + pos: 11.5,-31.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7380 + - uid: 11107 components: - type: Transform - pos: -9.5,-17.5 + pos: 10.5,-31.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7856 + - uid: 11685 components: - type: Transform - pos: -26.5,30.5 + pos: 27.5,-38.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7857 + - uid: 11687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,23.5 + pos: 26.5,-42.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7871 + - uid: 11692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,17.5 + pos: 30.5,-41.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7872 + - uid: 11847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,20.5 + pos: -13.5,11.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7886 +- proto: GlassBoxLaserFilled + entities: + - uid: 1952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,10.5 + pos: -13.5,25.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7905 +- proto: GravityGenerator + entities: + - uid: 9889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,10.5 + pos: -53.5,-9.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7906 +- proto: Grille + entities: + - uid: 736 components: - type: Transform - pos: -35.5,15.5 + pos: 46.5,-24.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7910 + - uid: 748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,15.5 + pos: 9.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7911 + - uid: 749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,12.5 + pos: 7.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7912 + - uid: 750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,18.5 + pos: 5.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8238 + - uid: 751 components: - type: Transform - pos: -23.5,27.5 + pos: 3.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8240 + - uid: 752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,25.5 + pos: 2.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8300 + - uid: 753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,16.5 + pos: 4.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8306 + - uid: 754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,17.5 + pos: 4.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8318 + - uid: 755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,16.5 + pos: 3.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8562 + - uid: 756 components: - type: Transform - pos: -18.5,11.5 + pos: 2.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8838 + - uid: 757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-28.5 + pos: 1.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8991 + - uid: 758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-34.5 + pos: 1.5,17.5 parent: 4812 - - uid: 8992 + - uid: 759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-37.5 + pos: -0.5,12.5 parent: 4812 - - uid: 8993 + - uid: 760 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-34.5 + pos: -4.5,12.5 parent: 4812 - - uid: 10757 + - uid: 761 components: - type: Transform - pos: -38.5,3.5 + pos: -4.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11962 + - uid: 762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-8.5 + pos: -0.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12027 + - uid: 763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-12.5 + pos: -7.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12028 + - uid: 764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-13.5 + pos: -8.5,15.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12029 + - uid: 765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-12.5 + pos: -9.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12030 + - uid: 766 components: - type: Transform - pos: -49.5,-9.5 + pos: -9.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12032 + - uid: 767 components: - type: Transform - pos: -44.5,-6.5 + pos: -8.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12035 + - uid: 768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,2.5 + pos: -7.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12037 + - uid: 769 components: - type: Transform - pos: -16.5,-11.5 + pos: -6.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12039 + - uid: 770 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,7.5 + pos: -6.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12041 + - uid: 774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,0.5 + pos: -4.5,-9.5 parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasVentScrubber - entities: - - uid: 711 + - uid: 775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,14.5 + pos: -0.5,-9.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 814 + - uid: 776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: -6.5,-10.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 815 + - uid: 777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 + pos: -8.5,-10.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 816 + - uid: 778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,9.5 + pos: -9.5,-10.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 857 + - uid: 779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 + pos: -12.5,-10.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 858 + - uid: 780 components: - type: Transform - pos: -10.5,-8.5 + pos: -14.5,-10.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 885 + - uid: 781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,8.5 + pos: -16.5,-10.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1512 + - uid: 788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-7.5 + pos: 2.5,1.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1686 + - uid: 907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,0.5 + pos: -18.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1813 + - uid: 908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,16.5 + pos: -19.5,18.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1816 + - uid: 909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,18.5 + pos: -21.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1853 + - uid: 910 components: - type: Transform - pos: -1.5,23.5 + pos: -21.5,11.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2073 + - uid: 911 components: - type: Transform - pos: 6.5,29.5 + pos: -21.5,8.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2074 + - uid: 912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,24.5 + pos: -24.5,3.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2439 + - uid: 913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,23.5 + pos: -24.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2440 + - uid: 914 components: - type: Transform - pos: -12.5,28.5 + pos: -24.5,-0.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2441 + - uid: 915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,26.5 + pos: -24.5,0.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2442 + - uid: 1964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 + pos: -10.5,26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2447 + - uid: 1966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,31.5 + pos: 7.5,27.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2448 + - uid: 2199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,31.5 + pos: -6.5,30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2963 + - uid: 2202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,14.5 + pos: -6.5,28.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3001 + - uid: 2205 components: - type: Transform - pos: 16.5,29.5 + pos: -4.5,27.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3016 + - uid: 2206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,25.5 + pos: -2.5,27.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3017 + - uid: 2207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,25.5 + pos: -0.5,27.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3021 + - uid: 2210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 + pos: -9.5,32.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3022 + - uid: 2211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 + pos: -9.5,34.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3027 + - uid: 2212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,13.5 + pos: -9.5,35.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3782 + - uid: 2213 components: - type: Transform - pos: 10.5,20.5 + pos: -8.5,35.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3813 + - uid: 2214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,44.5 + pos: -6.5,35.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3814 + - uid: 2215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,43.5 + pos: -6.5,36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3815 + - uid: 2216 components: - type: Transform - pos: 12.5,51.5 + pos: -5.5,36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3816 + - uid: 2217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,45.5 + pos: -3.5,36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4205 + - uid: 2218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 + pos: -2.5,36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4214 + - uid: 2219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 + pos: -1.5,36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4226 + - uid: 2220 components: - type: Transform - pos: 24.5,3.5 + pos: 0.5,36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4381 + - uid: 2221 components: - type: Transform - pos: 17.5,-2.5 + pos: 1.5,36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4439 + - uid: 2222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,7.5 + pos: 1.5,35.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4442 + - uid: 2223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 + pos: 3.5,35.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4443 + - uid: 2224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 + pos: 4.5,35.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4465 + - uid: 2225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,6.5 + pos: 4.5,34.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4875 + - uid: 2226 components: - type: Transform - pos: -15.5,-15.5 + pos: 6.5,33.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4876 + - uid: 2227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-16.5 + pos: 6.5,23.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5025 + - uid: 2228 components: - type: Transform - pos: -18.5,-20.5 + pos: 8.5,23.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5223 + - uid: 2232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-51.5 + pos: 4.5,24.5 parent: 4812 - - type: DeviceNetwork - deviceLists: - - 9593 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5224 + - uid: 2233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-42.5 + pos: 4.5,26.5 parent: 4812 - - type: DeviceNetwork - deviceLists: - - 9593 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5699 + - uid: 2237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-24.5 + pos: -9.5,22.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5700 + - uid: 2238 components: - type: Transform - pos: 3.5,-17.5 + pos: -9.5,24.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5716 + - uid: 2239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 + pos: 8.5,27.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5717 + - uid: 2240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-27.5 + pos: 5.5,27.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5719 + - uid: 2242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 + pos: -12.5,30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5735 + - uid: 2243 components: - type: Transform - pos: 27.5,-20.5 + pos: -11.5,30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5765 + - uid: 2464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: -12.5,26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5766 + - uid: 2465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 + pos: -13.5,26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5805 + - uid: 2607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 + rot: 3.141592653589793 rad + pos: 28.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6253 + - uid: 2669 + components: + - type: Transform + pos: 1.5,30.5 + parent: 4812 + - uid: 2670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-26.5 + pos: 1.5,28.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6417 + - uid: 2770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-12.5 + pos: 18.5,31.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6420 + - uid: 2818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 + pos: 16.5,36.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6455 + - uid: 2862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-35.5 + pos: 16.5,28.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6472 + - uid: 2871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 + pos: 19.5,22.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6687 + - uid: 2872 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-32.5 + pos: 21.5,21.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6838 + - uid: 2874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-36.5 + pos: 14.5,22.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6839 + - uid: 2875 components: - type: Transform - pos: -18.5,-33.5 + pos: 13.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6841 + - uid: 2876 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-37.5 + pos: 13.5,19.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7088 + - uid: 2877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-17.5 + pos: 13.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7227 + - uid: 2878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-26.5 + pos: 14.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7325 + - uid: 2879 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-26.5 + pos: 16.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7381 + - uid: 2880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-20.5 + pos: 18.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7382 + - uid: 2881 components: - type: Transform - pos: -11.5,-17.5 + pos: 20.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7858 + - uid: 2888 components: - type: Transform - pos: -30.5,30.5 + pos: 58.5,-24.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7873 + - uid: 2892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,16.5 + rot: 3.141592653589793 rad + pos: 30.5,14.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7874 + - uid: 2909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,19.5 + pos: 21.5,13.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7887 + - uid: 2910 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,11.5 + pos: 50.5,-0.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7907 + - uid: 2919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,11.5 + rot: -1.5707963267948966 rad + pos: 65.5,-2.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7908 + - uid: 2966 components: - type: Transform - pos: -34.5,15.5 + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7909 + - uid: 2967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,15.5 + pos: 66.5,-20.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7913 + - uid: 3031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,18.5 + pos: 18.5,30.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7914 + - uid: 3032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,12.5 + pos: 19.5,29.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8239 + - uid: 3035 components: - type: Transform - pos: -22.5,27.5 + pos: 22.5,23.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8241 + - uid: 3036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,22.5 + pos: 22.5,26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8307 + - uid: 3037 components: - type: Transform - pos: -21.5,20.5 + pos: 20.5,29.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8317 + - uid: 3114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,16.5 + pos: 21.5,26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8563 + - uid: 3115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,8.5 + pos: 23.5,26.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8787 + - uid: 3116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 + pos: 22.5,29.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8836 + - uid: 3218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 + rot: 1.5707963267948966 rad + pos: 27.5,17.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8994 + - uid: 3284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 + pos: 59.5,-26.5 parent: 4812 - - uid: 9006 + - uid: 3344 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-37.5 + pos: 43.5,-0.5 parent: 4812 - - uid: 9007 + - uid: 3611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 + rot: 3.141592653589793 rad + pos: -19.5,38.5 parent: 4812 - - uid: 10758 + - uid: 3701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,0.5 + pos: 10.5,54.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12023 + - uid: 3740 components: - type: Transform - pos: -48.5,-9.5 + rot: 1.5707963267948966 rad + pos: -46.5,3.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12024 + - uid: 3746 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-11.5 + pos: -46.5,4.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12025 + - uid: 3767 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-13.5 + pos: -19.5,37.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12026 + - uid: 3768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-11.5 + rot: 3.141592653589793 rad + pos: -15.5,39.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12033 + - uid: 3780 components: - type: Transform - pos: -40.5,-6.5 + rot: 3.141592653589793 rad + pos: 27.5,16.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12034 + - uid: 4050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-6.5 + rot: 1.5707963267948966 rad + pos: -46.5,2.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12036 + - uid: 4136 components: - type: Transform - pos: -30.5,2.5 + pos: 32.5,2.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12038 + - uid: 4173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 + pos: 29.5,-8.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12040 + - uid: 4174 components: - type: Transform - pos: -24.5,8.5 + pos: 28.5,-8.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12042 + - uid: 4175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-4.5 + pos: 26.5,-6.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12044 + - uid: 4176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 + pos: 26.5,-5.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12418 + - uid: 4181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,4.5 + rot: -1.5707963267948966 rad + pos: 54.5,1.5 parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GeneratorBasic15kW - entities: - - uid: 1729 + - uid: 4182 components: - type: Transform - pos: 14.5,44.5 + rot: 3.141592653589793 rad + pos: -54.5,13.5 parent: 4812 -- proto: GeneratorRTG - entities: - - uid: 10946 + - uid: 4183 components: - type: Transform - pos: -40.5,22.5 + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 parent: 4812 -- proto: Girder - entities: - - uid: 4142 + - uid: 4194 components: - type: Transform - pos: 21.5,0.5 + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 parent: 4812 - - uid: 4143 + - uid: 4203 components: - type: Transform - pos: 16.5,3.5 + rot: -1.5707963267948966 rad + pos: 56.5,-5.5 parent: 4812 - - uid: 6634 + - uid: 4205 components: - type: Transform - pos: -43.5,-30.5 + rot: 3.141592653589793 rad + pos: 30.5,16.5 parent: 4812 - - uid: 7260 + - uid: 4221 components: - type: Transform - pos: -44.5,-26.5 + rot: 3.141592653589793 rad + pos: 27.5,14.5 parent: 4812 - - uid: 8872 + - uid: 4319 components: - type: Transform - pos: -31.5,-30.5 + rot: -1.5707963267948966 rad + pos: -4.5,-58.5 parent: 4812 - - uid: 9991 + - uid: 4321 components: - type: Transform - pos: -35.5,-21.5 + rot: -1.5707963267948966 rad + pos: -5.5,-58.5 parent: 4812 - - uid: 11065 + - uid: 4325 components: - type: Transform - pos: 14.5,-35.5 + rot: -1.5707963267948966 rad + pos: 56.5,0.5 parent: 4812 - - uid: 11106 + - uid: 4330 components: - type: Transform - pos: 11.5,-31.5 + pos: 54.5,-24.5 parent: 4812 - - uid: 11107 + - uid: 4331 components: - type: Transform - pos: 10.5,-31.5 + pos: 53.5,-26.5 parent: 4812 - - uid: 11685 + - uid: 4334 components: - type: Transform - pos: 27.5,-38.5 + pos: 47.5,-24.5 parent: 4812 - - uid: 11687 + - uid: 4336 components: - type: Transform - pos: 26.5,-42.5 + rot: -1.5707963267948966 rad + pos: 58.5,-4.5 parent: 4812 - - uid: 11692 + - uid: 4373 components: - type: Transform - pos: 30.5,-41.5 + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 parent: 4812 - - uid: 11847 + - uid: 4382 components: - type: Transform - pos: -13.5,11.5 + rot: -1.5707963267948966 rad + pos: 56.5,-4.5 parent: 4812 -- proto: GlassBoxLaserFilled - entities: - - uid: 1952 + - uid: 4383 components: - type: Transform - pos: -13.5,25.5 + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 parent: 4812 -- proto: GravityGenerator - entities: - - uid: 9889 + - uid: 4385 components: - type: Transform - pos: -53.5,-9.5 + pos: 19.5,-6.5 parent: 4812 -- proto: Grille - entities: - - uid: 748 + - uid: 4386 components: - type: Transform - pos: 9.5,18.5 + pos: 18.5,-6.5 parent: 4812 - - uid: 749 + - uid: 4387 components: - type: Transform - pos: 7.5,18.5 + pos: 17.5,-6.5 parent: 4812 - - uid: 750 + - uid: 4388 components: - type: Transform - pos: 5.5,18.5 + pos: 18.5,-4.5 parent: 4812 - - uid: 751 + - uid: 4389 components: - type: Transform - pos: 3.5,18.5 + pos: 17.5,-8.5 parent: 4812 - - uid: 752 + - uid: 4390 components: - type: Transform - pos: 2.5,18.5 + pos: 18.5,-8.5 parent: 4812 - - uid: 753 + - uid: 4391 components: - type: Transform - pos: 4.5,17.5 + pos: 19.5,-8.5 parent: 4812 - - uid: 754 + - uid: 4395 components: - type: Transform - pos: 4.5,16.5 + pos: 26.5,-0.5 parent: 4812 - - uid: 755 + - uid: 4396 components: - type: Transform - pos: 3.5,15.5 + pos: 27.5,1.5 parent: 4812 - - uid: 756 + - uid: 4397 components: - type: Transform - pos: 2.5,15.5 + pos: 29.5,1.5 parent: 4812 - - uid: 757 + - uid: 4398 components: - type: Transform - pos: 1.5,16.5 + pos: 32.5,4.5 parent: 4812 - - uid: 758 + - uid: 4399 components: - type: Transform - pos: 1.5,17.5 + pos: 32.5,3.5 parent: 4812 - - uid: 759 + - uid: 4401 components: - type: Transform - pos: -0.5,12.5 + rot: -1.5707963267948966 rad + pos: 58.5,-6.5 parent: 4812 - - uid: 760 + - uid: 4402 components: - type: Transform - pos: -4.5,12.5 + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 parent: 4812 - - uid: 761 + - uid: 4403 components: - type: Transform - pos: -4.5,15.5 + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 parent: 4812 - - uid: 762 + - uid: 4404 components: - type: Transform - pos: -0.5,15.5 + rot: -1.5707963267948966 rad + pos: 46.5,0.5 parent: 4812 - - uid: 763 + - uid: 4405 components: - type: Transform - pos: -7.5,15.5 + rot: -1.5707963267948966 rad + pos: 48.5,0.5 parent: 4812 - - uid: 764 + - uid: 4406 components: - type: Transform - pos: -8.5,15.5 + rot: -1.5707963267948966 rad + pos: 48.5,1.5 parent: 4812 - - uid: 765 + - uid: 4407 components: - type: Transform - pos: -9.5,16.5 + rot: -1.5707963267948966 rad + pos: 46.5,1.5 parent: 4812 - - uid: 766 + - uid: 4408 components: - type: Transform - pos: -9.5,17.5 + rot: -1.5707963267948966 rad + pos: 60.5,-4.5 parent: 4812 - - uid: 767 + - uid: 4409 components: - type: Transform - pos: -8.5,18.5 + pos: 35.5,-0.5 parent: 4812 - - uid: 768 + - uid: 4410 components: - type: Transform - pos: -7.5,18.5 + rot: -1.5707963267948966 rad + pos: 64.5,-2.5 parent: 4812 - - uid: 769 + - uid: 4411 components: - type: Transform - pos: -6.5,17.5 + pos: 37.5,-0.5 parent: 4812 - - uid: 770 + - uid: 4414 components: - type: Transform - pos: -6.5,16.5 + rot: -1.5707963267948966 rad + pos: 65.5,-4.5 parent: 4812 - - uid: 774 + - uid: 4433 components: - type: Transform - pos: -4.5,-9.5 + pos: 30.5,-8.5 parent: 4812 - - uid: 775 + - uid: 4437 components: - type: Transform - pos: -0.5,-9.5 + pos: 14.5,-12.5 parent: 4812 - - uid: 776 + - uid: 4438 components: - type: Transform - pos: -6.5,-10.5 + pos: 14.5,-11.5 parent: 4812 - - uid: 777 + - uid: 4445 components: - type: Transform - pos: -8.5,-10.5 + rot: 3.141592653589793 rad + pos: -44.5,15.5 parent: 4812 - - uid: 778 + - uid: 4478 components: - type: Transform - pos: -9.5,-10.5 + rot: 3.141592653589793 rad + pos: -42.5,15.5 parent: 4812 - - uid: 779 + - uid: 4497 components: - type: Transform - pos: -12.5,-10.5 + rot: 3.141592653589793 rad + pos: -52.5,13.5 parent: 4812 - - uid: 780 + - uid: 4551 components: - type: Transform - pos: -14.5,-10.5 + pos: 36.5,-0.5 parent: 4812 - - uid: 781 + - uid: 4557 components: - type: Transform - pos: -16.5,-10.5 + pos: 61.5,-26.5 parent: 4812 - - uid: 788 + - uid: 4558 components: - type: Transform - pos: 2.5,1.5 + pos: 61.5,-24.5 parent: 4812 - - uid: 907 + - uid: 4559 components: - type: Transform - pos: -18.5,18.5 + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 parent: 4812 - - uid: 908 + - uid: 4560 components: - type: Transform - pos: -19.5,18.5 + rot: -1.5707963267948966 rad + pos: 50.5,0.5 parent: 4812 - - uid: 909 + - uid: 4611 components: - type: Transform - pos: -21.5,14.5 + pos: 32.5,8.5 parent: 4812 - - uid: 910 + - uid: 4613 components: - type: Transform - pos: -21.5,11.5 + pos: 32.5,7.5 parent: 4812 - - uid: 911 + - uid: 4617 components: - type: Transform - pos: -21.5,8.5 + pos: 22.5,-11.5 parent: 4812 - - uid: 912 + - uid: 4618 components: - type: Transform - pos: -24.5,3.5 + pos: 22.5,-10.5 parent: 4812 - - uid: 913 + - uid: 4693 components: - type: Transform - pos: -24.5,4.5 + pos: -15.5,35.5 parent: 4812 - - uid: 914 + - uid: 4695 components: - type: Transform - pos: -24.5,-0.5 + rot: 3.141592653589793 rad + pos: -15.5,38.5 parent: 4812 - - uid: 915 + - uid: 4722 components: - type: Transform - pos: -24.5,0.5 + pos: -12.5,-54.5 parent: 4812 - - uid: 1964 + - uid: 4723 components: - type: Transform - pos: -10.5,26.5 + pos: -12.5,-55.5 parent: 4812 - - uid: 1966 + - uid: 4726 components: - type: Transform - pos: 7.5,27.5 + pos: -9.5,-55.5 parent: 4812 - - uid: 2199 + - uid: 4727 components: - type: Transform - pos: -6.5,30.5 + pos: -9.5,-54.5 parent: 4812 - - uid: 2202 + - uid: 4728 components: - type: Transform - pos: -6.5,28.5 + pos: -9.5,-52.5 parent: 4812 - - uid: 2205 + - uid: 4729 components: - type: Transform - pos: -4.5,27.5 + pos: -9.5,-51.5 parent: 4812 - - uid: 2206 + - uid: 4730 components: - type: Transform - pos: -2.5,27.5 + pos: -8.5,-51.5 parent: 4812 - - uid: 2207 + - uid: 4731 components: - type: Transform - pos: -0.5,27.5 + pos: -7.5,-51.5 parent: 4812 - - uid: 2210 + - uid: 4732 components: - type: Transform - pos: -9.5,32.5 + pos: -9.5,-49.5 parent: 4812 - - uid: 2211 + - uid: 4733 components: - type: Transform - pos: -9.5,34.5 + pos: -9.5,-49.5 parent: 4812 - - uid: 2212 + - uid: 4734 components: - type: Transform - pos: -9.5,35.5 + pos: -8.5,-49.5 parent: 4812 - - uid: 2213 + - uid: 4735 components: - type: Transform - pos: -8.5,35.5 + pos: -7.5,-49.5 parent: 4812 - - uid: 2214 + - uid: 4740 components: - type: Transform - pos: -6.5,35.5 + pos: -7.5,-44.5 parent: 4812 - - uid: 2215 + - uid: 4741 components: - type: Transform - pos: -6.5,36.5 + pos: -9.5,-44.5 parent: 4812 - - uid: 2216 + - uid: 4742 components: - type: Transform - pos: -5.5,36.5 + pos: -8.5,-44.5 parent: 4812 - - uid: 2217 + - uid: 4743 components: - type: Transform - pos: -3.5,36.5 + pos: -7.5,-42.5 parent: 4812 - - uid: 2218 + - uid: 4744 components: - type: Transform - pos: -2.5,36.5 + pos: -8.5,-42.5 parent: 4812 - - uid: 2219 + - uid: 4745 components: - type: Transform - pos: -1.5,36.5 + pos: -9.5,-42.5 parent: 4812 - - uid: 2220 + - uid: 4746 components: - type: Transform - pos: 0.5,36.5 + pos: -9.5,-41.5 parent: 4812 - - uid: 2221 + - uid: 4747 components: - type: Transform - pos: 1.5,36.5 + pos: -12.5,-41.5 parent: 4812 - - uid: 2222 + - uid: 4748 components: - type: Transform - pos: 1.5,35.5 + pos: -12.5,-42.5 parent: 4812 - - uid: 2223 + - uid: 4749 components: - type: Transform - pos: 3.5,35.5 + pos: -13.5,-42.5 parent: 4812 - - uid: 2224 + - uid: 4750 components: - type: Transform - pos: 4.5,35.5 + pos: -14.5,-42.5 parent: 4812 - - uid: 2225 + - uid: 4751 components: - type: Transform - pos: 4.5,34.5 + pos: -12.5,-44.5 parent: 4812 - - uid: 2226 + - uid: 4752 components: - type: Transform - pos: 6.5,33.5 + pos: -13.5,-44.5 parent: 4812 - - uid: 2227 + - uid: 4753 components: - type: Transform - pos: 6.5,23.5 + pos: -14.5,-44.5 parent: 4812 - - uid: 2228 + - uid: 4758 components: - type: Transform - pos: 8.5,23.5 + pos: -14.5,-49.5 parent: 4812 - - uid: 2232 + - uid: 4759 components: - type: Transform - pos: 4.5,24.5 + pos: -13.5,-49.5 parent: 4812 - - uid: 2233 + - uid: 4760 components: - type: Transform - pos: 4.5,26.5 + pos: -12.5,-49.5 parent: 4812 - - uid: 2237 + - uid: 4761 components: - type: Transform - pos: -9.5,22.5 + pos: -12.5,-52.5 parent: 4812 - - uid: 2238 + - uid: 4762 components: - type: Transform - pos: -9.5,24.5 + pos: -12.5,-51.5 parent: 4812 - - uid: 2239 + - uid: 4763 components: - type: Transform - pos: 8.5,27.5 + pos: -13.5,-51.5 parent: 4812 - - uid: 2240 + - uid: 4764 components: - type: Transform - pos: 5.5,27.5 + pos: -14.5,-51.5 parent: 4812 - - uid: 2242 + - uid: 4765 components: - type: Transform - pos: -12.5,30.5 + pos: -9.5,-39.5 parent: 4812 - - uid: 2243 + - uid: 4766 components: - type: Transform - pos: -11.5,30.5 + pos: -9.5,-38.5 parent: 4812 - - uid: 2464 + - uid: 4767 components: - type: Transform - pos: -12.5,26.5 + pos: -9.5,-37.5 parent: 4812 - - uid: 2465 + - uid: 4768 components: - type: Transform - pos: -13.5,26.5 + rot: 3.141592653589793 rad + pos: -19.5,39.5 parent: 4812 - - uid: 2669 + - uid: 4769 components: - type: Transform - pos: 1.5,30.5 + pos: -8.5,-36.5 parent: 4812 - - uid: 2670 + - uid: 4770 components: - type: Transform - pos: 1.5,28.5 + pos: -5.5,-36.5 parent: 4812 - - uid: 2770 + - uid: 4771 components: - type: Transform - pos: 18.5,31.5 + pos: -4.5,-36.5 parent: 4812 - - uid: 2818 + - uid: 4772 components: - type: Transform - pos: 16.5,36.5 + pos: -3.5,-36.5 parent: 4812 - - uid: 2862 + - uid: 4773 components: - type: Transform - pos: 16.5,28.5 + pos: -2.5,-36.5 parent: 4812 - - uid: 2871 + - uid: 4774 components: - type: Transform - pos: 19.5,22.5 + pos: -1.5,-36.5 parent: 4812 - - uid: 2872 + - uid: 4775 components: - type: Transform - pos: 21.5,21.5 + pos: -0.5,-36.5 parent: 4812 - - uid: 2873 + - uid: 4776 components: - type: Transform - pos: 21.5,19.5 + pos: 0.5,-36.5 parent: 4812 - - uid: 2874 + - uid: 4777 components: - type: Transform - pos: 14.5,22.5 + pos: -1.5,-33.5 parent: 4812 - - uid: 2875 + - uid: 4778 components: - type: Transform - pos: 13.5,17.5 + pos: -2.5,-33.5 parent: 4812 - - uid: 2876 + - uid: 4779 components: - type: Transform - pos: 13.5,19.5 + pos: -3.5,-33.5 parent: 4812 - - uid: 2877 + - uid: 4780 components: - type: Transform - pos: 13.5,13.5 + pos: -1.5,-14.5 parent: 4812 - - uid: 2878 + - uid: 4781 components: - type: Transform - pos: 14.5,16.5 + pos: -2.5,-14.5 parent: 4812 - - uid: 2879 + - uid: 4782 components: - type: Transform - pos: 16.5,16.5 + pos: -3.5,-14.5 parent: 4812 - - uid: 2880 + - uid: 4796 components: - type: Transform - pos: 18.5,16.5 + pos: -4.5,-28.5 parent: 4812 - - uid: 2881 + - uid: 4978 components: - type: Transform - pos: 20.5,16.5 + pos: -45.5,-27.5 parent: 4812 - - uid: 2907 + - uid: 5054 components: - type: Transform - pos: 25.5,13.5 + pos: -14.5,-19.5 parent: 4812 - - uid: 2908 + - uid: 5055 components: - type: Transform - pos: 25.5,15.5 + pos: -16.5,-19.5 parent: 4812 - - uid: 2909 + - uid: 5309 components: - type: Transform - pos: 21.5,13.5 + pos: -4.5,-26.5 parent: 4812 - - uid: 2910 + - uid: 5310 components: - type: Transform - pos: 23.5,17.5 + pos: -2.5,-23.5 parent: 4812 - - uid: 2911 + - uid: 5311 components: - type: Transform - pos: 26.5,16.5 + pos: -0.5,-27.5 parent: 4812 - - uid: 2912 + - uid: 5343 components: - type: Transform - pos: 27.5,16.5 + pos: 15.5,-13.5 parent: 4812 - - uid: 2913 + - uid: 5344 components: - type: Transform - pos: 28.5,16.5 + pos: 16.5,-12.5 parent: 4812 - - uid: 2914 + - uid: 5345 components: - type: Transform - pos: 28.5,15.5 + pos: 16.5,-11.5 parent: 4812 - - uid: 2915 + - uid: 5346 components: - type: Transform - pos: 28.5,13.5 + pos: 16.5,-10.5 parent: 4812 - - uid: 2916 + - uid: 5347 components: - type: Transform - pos: 28.5,12.5 + pos: 17.5,-10.5 parent: 4812 - - uid: 2917 + - uid: 5348 components: - type: Transform - pos: 27.5,12.5 + pos: 18.5,-10.5 parent: 4812 - - uid: 2918 + - uid: 5349 components: - type: Transform - pos: 26.5,12.5 + pos: 19.5,-10.5 parent: 4812 - - uid: 3031 + - uid: 5350 components: - type: Transform - pos: 18.5,30.5 + pos: 20.5,-10.5 parent: 4812 - - uid: 3032 + - uid: 5351 components: - type: Transform - pos: 19.5,29.5 + pos: 20.5,-11.5 parent: 4812 - - uid: 3035 + - uid: 5352 components: - type: Transform - pos: 22.5,23.5 + pos: 20.5,-12.5 parent: 4812 - - uid: 3036 + - uid: 5353 components: - type: Transform - pos: 22.5,26.5 + pos: 21.5,-18.5 parent: 4812 - - uid: 3037 + - uid: 5354 components: - type: Transform - pos: 20.5,29.5 + pos: 21.5,-17.5 parent: 4812 - - uid: 3114 + - uid: 5355 components: - type: Transform - pos: 21.5,26.5 + pos: 21.5,-16.5 parent: 4812 - - uid: 3115 + - uid: 5356 components: - type: Transform - pos: 23.5,26.5 + pos: 21.5,-15.5 parent: 4812 - - uid: 3116 + - uid: 5357 components: - type: Transform - pos: 22.5,29.5 + pos: 21.5,-14.5 parent: 4812 - - uid: 3611 + - uid: 5423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,38.5 + pos: 8.5,-15.5 parent: 4812 - - uid: 3701 + - uid: 5424 components: - type: Transform - pos: 10.5,54.5 + pos: 8.5,-17.5 parent: 4812 - - uid: 3767 + - uid: 5544 components: - type: Transform - pos: -19.5,37.5 + pos: 23.5,-18.5 parent: 4812 - - uid: 3768 + - uid: 5545 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,39.5 + pos: 23.5,-17.5 parent: 4812 - - uid: 4385 + - uid: 5547 components: - type: Transform - pos: 19.5,-6.5 + pos: 24.5,-16.5 parent: 4812 - - uid: 4386 + - uid: 5548 components: - type: Transform - pos: 18.5,-6.5 + pos: 26.5,-16.5 parent: 4812 - - uid: 4387 + - uid: 5549 components: - type: Transform - pos: 17.5,-6.5 + pos: 25.5,-16.5 parent: 4812 - - uid: 4388 + - uid: 5550 components: - type: Transform - pos: 18.5,-4.5 + pos: 27.5,-16.5 parent: 4812 - - uid: 4389 + - uid: 5551 components: - type: Transform - pos: 17.5,-8.5 + pos: 28.5,-16.5 parent: 4812 - - uid: 4390 + - uid: 5552 components: - type: Transform - pos: 18.5,-8.5 + pos: 28.5,-17.5 parent: 4812 - - uid: 4391 + - uid: 5553 components: - type: Transform - pos: 19.5,-8.5 + pos: 29.5,-17.5 parent: 4812 - - uid: 4392 + - uid: 5554 components: - type: Transform - pos: 27.5,-6.5 + pos: 29.5,-18.5 parent: 4812 - - uid: 4393 + - uid: 5570 components: - type: Transform - pos: 26.5,-4.5 + pos: 19.5,-30.5 parent: 4812 - - uid: 4394 + - uid: 5571 components: - type: Transform - pos: 27.5,-10.5 + pos: 19.5,-29.5 parent: 4812 - - uid: 4395 + - uid: 5572 components: - type: Transform - pos: 26.5,-0.5 + pos: 19.5,-28.5 parent: 4812 - - uid: 4396 + - uid: 5577 components: - type: Transform - pos: 27.5,1.5 + pos: 27.5,-21.5 parent: 4812 - - uid: 4397 + - uid: 5578 components: - type: Transform - pos: 29.5,1.5 + pos: 26.5,-21.5 parent: 4812 - - uid: 4398 + - uid: 5579 components: - type: Transform - pos: 32.5,4.5 + pos: 25.5,-21.5 parent: 4812 - - uid: 4399 + - uid: 5601 components: - type: Transform - pos: 32.5,3.5 + pos: 7.5,-26.5 parent: 4812 - - uid: 4400 + - uid: 5602 components: - type: Transform - pos: 33.5,3.5 + pos: 7.5,-25.5 parent: 4812 - - uid: 4401 + - uid: 5603 components: - type: Transform - pos: 34.5,3.5 + pos: 7.5,-28.5 parent: 4812 - - uid: 4402 + - uid: 5604 components: - type: Transform - pos: 34.5,1.5 + pos: 7.5,-23.5 parent: 4812 - - uid: 4403 + - uid: 5605 components: - type: Transform - pos: 33.5,1.5 + pos: 6.5,-22.5 parent: 4812 - - uid: 4404 + - uid: 5606 components: - type: Transform - pos: 32.5,1.5 + pos: 4.5,-22.5 parent: 4812 - - uid: 4405 + - uid: 5607 components: - type: Transform - pos: 31.5,1.5 + pos: 10.5,-28.5 parent: 4812 - - uid: 4406 + - uid: 5608 components: - type: Transform - pos: 34.5,-0.5 + pos: 10.5,-26.5 parent: 4812 - - uid: 4407 + - uid: 5609 components: - type: Transform - pos: 33.5,-0.5 + pos: 10.5,-24.5 parent: 4812 - - uid: 4408 + - uid: 5610 components: - type: Transform - pos: 32.5,-0.5 + pos: 10.5,-23.5 parent: 4812 - - uid: 4409 + - uid: 5611 components: - type: Transform - pos: 32.5,-1.5 + pos: 3.5,-19.5 parent: 4812 - - uid: 4410 + - uid: 5612 components: - type: Transform - pos: 32.5,-2.5 + pos: 5.5,-19.5 parent: 4812 - - uid: 4411 + - uid: 5613 components: - type: Transform - pos: 32.5,-3.5 + pos: 2.5,-18.5 parent: 4812 - - uid: 4412 + - uid: 5614 components: - type: Transform - pos: 32.5,-4.5 + pos: 2.5,-16.5 parent: 4812 - - uid: 4413 + - uid: 5615 components: - type: Transform - pos: 33.5,-4.5 + pos: 2.5,-14.5 parent: 4812 - - uid: 4414 + - uid: 5616 components: - type: Transform - pos: 34.5,-4.5 + pos: 3.5,-13.5 parent: 4812 - - uid: 4415 + - uid: 5617 components: - type: Transform - pos: 34.5,-6.5 + pos: 5.5,-13.5 parent: 4812 - - uid: 4416 + - uid: 5618 components: - type: Transform - pos: 33.5,-6.5 + pos: 7.5,-13.5 parent: 4812 - - uid: 4417 + - uid: 5622 components: - type: Transform - pos: 32.5,-6.5 + pos: 14.5,-19.5 parent: 4812 - - uid: 4418 + - uid: 5623 components: - type: Transform - pos: 31.5,-6.5 + pos: 20.5,-25.5 parent: 4812 - - uid: 4419 + - uid: 5624 components: - type: Transform - pos: 32.5,-9.5 + pos: 20.5,-23.5 parent: 4812 - - uid: 4420 + - uid: 5767 components: - type: Transform - pos: 32.5,-8.5 + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 parent: 4812 - - uid: 4421 + - uid: 5768 components: - type: Transform - pos: 33.5,-8.5 + rot: -1.5707963267948966 rad + pos: 30.5,-24.5 parent: 4812 - - uid: 4422 + - uid: 5806 components: - type: Transform - pos: 34.5,-8.5 + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 parent: 4812 - - uid: 4437 + - uid: 5833 components: - type: Transform - pos: 14.5,-12.5 + pos: 32.5,-22.5 parent: 4812 - - uid: 4438 + - uid: 5834 components: - type: Transform - pos: 14.5,-11.5 + pos: 33.5,-22.5 parent: 4812 - - uid: 4610 + - uid: 5835 components: - type: Transform - pos: 28.5,7.5 + pos: 34.5,-22.5 parent: 4812 - - uid: 4611 + - uid: 6315 components: - type: Transform - pos: 29.5,7.5 + pos: 23.5,-27.5 parent: 4812 - - uid: 4612 + - uid: 6316 components: - type: Transform - pos: 30.5,7.5 + pos: 22.5,-27.5 parent: 4812 - - uid: 4613 + - uid: 6354 components: - type: Transform - pos: 32.5,7.5 + pos: 9.5,-13.5 parent: 4812 - - uid: 4614 + - uid: 6595 components: - type: Transform - pos: 33.5,7.5 + pos: -13.5,-15.5 parent: 4812 - - uid: 4615 + - uid: 6596 components: - type: Transform - pos: 26.5,9.5 + pos: -12.5,-13.5 parent: 4812 - - uid: 4616 + - uid: 6597 components: - type: Transform - pos: 26.5,8.5 + pos: -10.5,-13.5 parent: 4812 - - uid: 4617 + - uid: 6598 components: - type: Transform - pos: 22.5,-11.5 + pos: -8.5,-13.5 parent: 4812 - - uid: 4618 + - uid: 6599 components: - type: Transform - pos: 22.5,-10.5 + pos: -7.5,-14.5 parent: 4812 - - uid: 4619 + - uid: 6600 components: - type: Transform - pos: 24.5,-11.5 + pos: -7.5,-16.5 parent: 4812 - - uid: 4620 + - uid: 6601 components: - type: Transform - pos: 24.5,-12.5 + pos: -7.5,-18.5 parent: 4812 - - uid: 4621 + - uid: 6602 components: - type: Transform - pos: 25.5,-12.5 + pos: -8.5,-19.5 parent: 4812 - - uid: 4622 + - uid: 6603 components: - type: Transform - pos: 26.5,-12.5 + pos: -12.5,-19.5 parent: 4812 - - uid: 4623 + - uid: 6633 components: - type: Transform - pos: 27.5,-12.5 + pos: -44.5,-30.5 parent: 4812 - - uid: 4624 + - uid: 6658 components: - type: Transform - pos: 30.5,-12.5 + pos: -37.5,-36.5 parent: 4812 - - uid: 4625 + - uid: 6671 components: - type: Transform - pos: 31.5,-12.5 + pos: -26.5,-13.5 parent: 4812 - - uid: 4626 + - uid: 6672 components: - type: Transform - pos: 32.5,-12.5 + pos: -23.5,-13.5 parent: 4812 - - uid: 4693 + - uid: 6678 components: - type: Transform - pos: -15.5,35.5 + pos: -17.5,-16.5 parent: 4812 - - uid: 4695 + - uid: 6784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,38.5 + pos: -64.5,13.5 parent: 4812 - - uid: 4722 + - uid: 6799 components: - type: Transform - pos: -12.5,-54.5 + pos: -15.5,-37.5 parent: 4812 - - uid: 4723 + - uid: 6800 components: - type: Transform - pos: -12.5,-55.5 + pos: -16.5,-37.5 parent: 4812 - - uid: 4726 + - uid: 6801 components: - type: Transform - pos: -9.5,-55.5 + pos: -17.5,-37.5 parent: 4812 - - uid: 4727 + - uid: 6802 components: - type: Transform - pos: -9.5,-54.5 + pos: -19.5,-40.5 parent: 4812 - - uid: 4728 + - uid: 6803 components: - type: Transform - pos: -9.5,-52.5 + pos: -20.5,-40.5 parent: 4812 - - uid: 4729 + - uid: 6804 components: - type: Transform - pos: -9.5,-51.5 + pos: -25.5,-37.5 parent: 4812 - - uid: 4730 + - uid: 6805 components: - type: Transform - pos: -8.5,-51.5 + pos: -25.5,-35.5 parent: 4812 - - uid: 4731 + - uid: 6983 components: - type: Transform - pos: -7.5,-51.5 + pos: -12.5,-35.5 parent: 4812 - - uid: 4732 + - uid: 7208 components: - type: Transform - pos: -9.5,-49.5 + pos: -7.5,-20.5 parent: 4812 - - uid: 4733 + - uid: 7220 components: - type: Transform - pos: -9.5,-49.5 + pos: -13.5,-23.5 parent: 4812 - - uid: 4734 + - uid: 7221 components: - type: Transform - pos: -8.5,-49.5 + pos: -14.5,-24.5 parent: 4812 - - uid: 4735 + - uid: 7222 components: - type: Transform - pos: -7.5,-49.5 + pos: -15.5,-24.5 parent: 4812 - - uid: 4740 + - uid: 7223 components: - type: Transform - pos: -7.5,-44.5 + pos: -17.5,-24.5 parent: 4812 - - uid: 4741 + - uid: 7224 components: - type: Transform - pos: -9.5,-44.5 + pos: -13.5,-20.5 parent: 4812 - - uid: 4742 + - uid: 7251 components: - type: Transform - pos: -8.5,-44.5 + pos: -21.5,-24.5 parent: 4812 - - uid: 4743 + - uid: 7258 components: - type: Transform - pos: -7.5,-42.5 + pos: -7.5,-25.5 parent: 4812 - - uid: 4744 + - uid: 7301 components: - type: Transform - pos: -8.5,-42.5 + pos: -38.5,-37.5 parent: 4812 - - uid: 4745 + - uid: 7330 components: - type: Transform - pos: -9.5,-42.5 + pos: -20.5,-24.5 parent: 4812 - - uid: 4746 + - uid: 7332 components: - type: Transform - pos: -9.5,-41.5 + pos: -20.5,-13.5 parent: 4812 - - uid: 4747 + - uid: 7340 components: - type: Transform - pos: -12.5,-41.5 + pos: -7.5,-26.5 parent: 4812 - - uid: 4748 + - uid: 7352 components: - type: Transform - pos: -12.5,-42.5 + pos: -18.5,-13.5 parent: 4812 - - uid: 4749 + - uid: 7404 components: - type: Transform - pos: -13.5,-42.5 + pos: -8.5,-24.5 parent: 4812 - - uid: 4750 + - uid: 7411 components: - type: Transform - pos: -14.5,-42.5 + rot: 3.141592653589793 rad + pos: 43.5,-4.5 parent: 4812 - - uid: 4751 + - uid: 7432 components: - type: Transform - pos: -12.5,-44.5 + pos: -23.5,-22.5 parent: 4812 - - uid: 4752 + - uid: 7437 components: - type: Transform - pos: -13.5,-44.5 + pos: -24.5,-24.5 parent: 4812 - - uid: 4753 + - uid: 7438 components: - type: Transform - pos: -14.5,-44.5 + pos: -26.5,-24.5 parent: 4812 - - uid: 4758 + - uid: 7620 components: - type: Transform - pos: -14.5,-49.5 + pos: -7.5,-27.5 parent: 4812 - - uid: 4759 + - uid: 7635 components: - type: Transform - pos: -13.5,-49.5 + rot: 3.141592653589793 rad + pos: -16.5,32.5 parent: 4812 - - uid: 4760 + - uid: 7830 components: - type: Transform - pos: -12.5,-49.5 + rot: 3.141592653589793 rad + pos: 39.5,-0.5 parent: 4812 - - uid: 4761 + - uid: 7915 components: - type: Transform - pos: -12.5,-52.5 + rot: 1.5707963267948966 rad + pos: -32.5,10.5 parent: 4812 - - uid: 4762 + - uid: 7916 components: - type: Transform - pos: -12.5,-51.5 + rot: 1.5707963267948966 rad + pos: -32.5,12.5 parent: 4812 - - uid: 4763 + - uid: 7917 components: - type: Transform - pos: -13.5,-51.5 + rot: 1.5707963267948966 rad + pos: -27.5,10.5 parent: 4812 - - uid: 4764 + - uid: 7918 components: - type: Transform - pos: -14.5,-51.5 + rot: 1.5707963267948966 rad + pos: -24.5,10.5 parent: 4812 - - uid: 4765 + - uid: 7919 components: - type: Transform - pos: -9.5,-39.5 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 parent: 4812 - - uid: 4766 + - uid: 7920 components: - type: Transform - pos: -9.5,-38.5 + rot: 1.5707963267948966 rad + pos: -33.5,13.5 parent: 4812 - - uid: 4767 + - uid: 7921 components: - type: Transform - pos: -9.5,-37.5 + rot: 1.5707963267948966 rad + pos: -32.5,14.5 parent: 4812 - - uid: 4768 + - uid: 7922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,39.5 + rot: 1.5707963267948966 rad + pos: -27.5,17.5 parent: 4812 - - uid: 4769 + - uid: 7923 components: - type: Transform - pos: -8.5,-36.5 + rot: 1.5707963267948966 rad + pos: -24.5,17.5 parent: 4812 - - uid: 4770 + - uid: 7924 components: - type: Transform - pos: -5.5,-36.5 + rot: 1.5707963267948966 rad + pos: -24.5,16.5 parent: 4812 - - uid: 4771 + - uid: 7925 components: - type: Transform - pos: -4.5,-36.5 + rot: 1.5707963267948966 rad + pos: -24.5,19.5 parent: 4812 - - uid: 4772 + - uid: 7926 components: - type: Transform - pos: -3.5,-36.5 + rot: 1.5707963267948966 rad + pos: -24.5,20.5 parent: 4812 - - uid: 4773 + - uid: 7927 components: - type: Transform - pos: -2.5,-36.5 + rot: 1.5707963267948966 rad + pos: -27.5,20.5 parent: 4812 - - uid: 4774 + - uid: 7928 components: - type: Transform - pos: -1.5,-36.5 + rot: 1.5707963267948966 rad + pos: -22.5,29.5 parent: 4812 - - uid: 4775 + - uid: 7929 components: - type: Transform - pos: -0.5,-36.5 + rot: 1.5707963267948966 rad + pos: -24.5,31.5 parent: 4812 - - uid: 4776 + - uid: 7930 components: - type: Transform - pos: 0.5,-36.5 + rot: 1.5707963267948966 rad + pos: -27.5,33.5 parent: 4812 - - uid: 4777 + - uid: 7931 components: - type: Transform - pos: -1.5,-33.5 + rot: 1.5707963267948966 rad + pos: -29.5,33.5 parent: 4812 - - uid: 4778 + - uid: 7933 components: - type: Transform - pos: -2.5,-33.5 + rot: 1.5707963267948966 rad + pos: -28.5,33.5 parent: 4812 - - uid: 4779 + - uid: 8057 components: - type: Transform - pos: -3.5,-33.5 + pos: -35.5,18.5 parent: 4812 - - uid: 4780 + - uid: 8058 components: - type: Transform - pos: -1.5,-14.5 + pos: -33.5,18.5 parent: 4812 - - uid: 4781 + - uid: 8059 components: - type: Transform - pos: -2.5,-14.5 + pos: -32.5,19.5 parent: 4812 - - uid: 4782 + - uid: 8060 components: - type: Transform - pos: -3.5,-14.5 + pos: -32.5,20.5 parent: 4812 - - uid: 4796 + - uid: 8166 components: - type: Transform - pos: -4.5,-28.5 + pos: -20.5,21.5 parent: 4812 - - uid: 4978 + - uid: 8167 components: - type: Transform - pos: -45.5,-27.5 + pos: -21.5,21.5 parent: 4812 - - uid: 5054 + - uid: 8168 components: - type: Transform - pos: -14.5,-19.5 + pos: -23.5,21.5 parent: 4812 - - uid: 5055 + - uid: 8174 components: - type: Transform - pos: -16.5,-19.5 + pos: -21.5,26.5 parent: 4812 - - uid: 5309 + - uid: 8175 components: - type: Transform - pos: -4.5,-26.5 + pos: -23.5,26.5 parent: 4812 - - uid: 5310 + - uid: 8328 components: - type: Transform - pos: -2.5,-23.5 + rot: 3.141592653589793 rad + pos: -18.5,32.5 parent: 4812 - - uid: 5311 + - uid: 8373 components: - type: Transform - pos: -0.5,-27.5 + rot: -1.5707963267948966 rad + pos: 45.5,-4.5 parent: 4812 - - uid: 5343 + - uid: 8467 components: - type: Transform - pos: 15.5,-13.5 + rot: 3.141592653589793 rad + pos: -49.5,-29.5 parent: 4812 - - uid: 5344 + - uid: 8470 components: - type: Transform - pos: 16.5,-12.5 + rot: 3.141592653589793 rad + pos: -49.5,-30.5 parent: 4812 - - uid: 5345 + - uid: 8480 components: - type: Transform - pos: 16.5,-11.5 + pos: 41.5,-0.5 parent: 4812 - - uid: 5346 + - uid: 8481 components: - type: Transform - pos: 16.5,-10.5 + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 parent: 4812 - - uid: 5347 + - uid: 8496 components: - type: Transform - pos: 17.5,-10.5 + rot: 3.141592653589793 rad + pos: -48.5,-26.5 parent: 4812 - - uid: 5348 + - uid: 8526 components: - type: Transform - pos: 18.5,-10.5 + pos: -23.5,37.5 parent: 4812 - - uid: 5349 + - uid: 8527 components: - type: Transform - pos: 19.5,-10.5 + pos: -22.5,37.5 parent: 4812 - - uid: 5350 + - uid: 8528 components: - type: Transform - pos: 20.5,-10.5 + pos: -11.5,32.5 parent: 4812 - - uid: 5351 + - uid: 8529 components: - type: Transform - pos: 20.5,-11.5 + pos: -11.5,33.5 parent: 4812 - - uid: 5352 + - uid: 8530 components: - type: Transform - pos: 20.5,-12.5 + pos: -15.5,37.5 parent: 4812 - - uid: 5353 + - uid: 8531 components: - type: Transform - pos: 21.5,-18.5 + pos: -14.5,37.5 parent: 4812 - - uid: 5354 + - uid: 8532 components: - type: Transform - pos: 21.5,-17.5 + pos: -11.5,35.5 parent: 4812 - - uid: 5355 + - uid: 8533 components: - type: Transform - pos: 21.5,-16.5 + pos: -11.5,36.5 parent: 4812 - - uid: 5356 + - uid: 8534 components: - type: Transform - pos: 21.5,-15.5 + pos: -12.5,37.5 parent: 4812 - - uid: 5357 + - uid: 8535 components: - type: Transform - pos: 21.5,-14.5 + pos: -11.5,37.5 parent: 4812 - - uid: 5423 + - uid: 8536 components: - type: Transform - pos: 8.5,-15.5 + pos: -10.5,37.5 parent: 4812 - - uid: 5424 + - uid: 8537 components: - type: Transform - pos: 8.5,-17.5 + pos: -9.5,37.5 parent: 4812 - - uid: 5544 + - uid: 8538 components: - type: Transform - pos: 23.5,-18.5 + pos: -6.5,38.5 parent: 4812 - - uid: 5545 + - uid: 8539 components: - type: Transform - pos: 23.5,-17.5 + pos: -5.5,38.5 parent: 4812 - - uid: 5546 + - uid: 8540 components: - type: Transform - pos: 24.5,-17.5 + pos: -0.5,38.5 parent: 4812 - - uid: 5547 + - uid: 8541 components: - type: Transform - pos: 24.5,-16.5 + pos: 0.5,38.5 parent: 4812 - - uid: 5548 + - uid: 8542 components: - type: Transform - pos: 26.5,-16.5 + pos: 1.5,38.5 parent: 4812 - - uid: 5549 + - uid: 8543 components: - type: Transform - pos: 25.5,-16.5 + pos: 2.5,38.5 parent: 4812 - - uid: 5550 + - uid: 8544 components: - type: Transform - pos: 27.5,-16.5 + pos: 0.5,43.5 parent: 4812 - - uid: 5551 + - uid: 8545 components: - type: Transform - pos: 28.5,-16.5 + pos: 0.5,42.5 parent: 4812 - - uid: 5552 + - uid: 8546 components: - type: Transform - pos: 28.5,-17.5 + pos: 0.5,41.5 parent: 4812 - - uid: 5553 + - uid: 8547 components: - type: Transform - pos: 29.5,-17.5 + pos: 10.5,37.5 parent: 4812 - - uid: 5554 + - uid: 8548 components: - type: Transform - pos: 29.5,-18.5 + pos: 8.5,33.5 parent: 4812 - - uid: 5570 + - uid: 8696 components: - type: Transform - pos: 19.5,-30.5 + pos: -27.5,-8.5 parent: 4812 - - uid: 5571 + - uid: 8697 components: - type: Transform - pos: 19.5,-29.5 + pos: -27.5,-7.5 parent: 4812 - - uid: 5572 + - uid: 8698 components: - type: Transform - pos: 19.5,-28.5 + pos: -27.5,-6.5 parent: 4812 - - uid: 5577 + - uid: 8699 components: - type: Transform - pos: 27.5,-21.5 + pos: -29.5,-4.5 parent: 4812 - - uid: 5578 + - uid: 8700 components: - type: Transform - pos: 26.5,-21.5 + pos: -31.5,-4.5 parent: 4812 - - uid: 5579 + - uid: 8701 components: - type: Transform - pos: 25.5,-21.5 + pos: -28.5,-3.5 parent: 4812 - - uid: 5601 + - uid: 8702 components: - type: Transform - pos: 7.5,-26.5 + pos: -28.5,-0.5 parent: 4812 - - uid: 5602 + - uid: 8703 components: - type: Transform - pos: 7.5,-25.5 + pos: -29.5,0.5 parent: 4812 - - uid: 5603 + - uid: 8704 components: - type: Transform - pos: 7.5,-28.5 + pos: -31.5,0.5 parent: 4812 - - uid: 5604 + - uid: 8705 components: - type: Transform - pos: 7.5,-23.5 + pos: -27.5,2.5 parent: 4812 - - uid: 5605 + - uid: 8706 components: - type: Transform - pos: 6.5,-22.5 + pos: -27.5,3.5 parent: 4812 - - uid: 5606 + - uid: 8707 components: - type: Transform - pos: 4.5,-22.5 + pos: -27.5,4.5 parent: 4812 - - uid: 5607 + - uid: 8708 components: - type: Transform - pos: 10.5,-28.5 + pos: -35.5,1.5 parent: 4812 - - uid: 5608 + - uid: 8710 components: - type: Transform - pos: 10.5,-26.5 + rot: 3.141592653589793 rad + pos: 40.5,-0.5 parent: 4812 - - uid: 5609 + - uid: 8729 components: - type: Transform - pos: 10.5,-24.5 + rot: 1.5707963267948966 rad + pos: -60.5,8.5 parent: 4812 - - uid: 5610 + - uid: 8752 components: - type: Transform - pos: 10.5,-23.5 + pos: -44.5,-4.5 parent: 4812 - - uid: 5611 + - uid: 8753 components: - type: Transform - pos: 3.5,-19.5 + pos: -42.5,-4.5 parent: 4812 - - uid: 5612 + - uid: 8841 components: - type: Transform - pos: 5.5,-19.5 + pos: -27.5,-41.5 parent: 4812 - - uid: 5613 + - uid: 8842 components: - type: Transform - pos: 2.5,-18.5 + pos: -37.5,-38.5 parent: 4812 - - uid: 5614 + - uid: 8843 components: - type: Transform - pos: 2.5,-16.5 + pos: -36.5,-38.5 parent: 4812 - - uid: 5615 + - uid: 8844 components: - type: Transform - pos: 2.5,-14.5 + pos: -39.5,-36.5 parent: 4812 - - uid: 5616 + - uid: 8845 components: - type: Transform - pos: 3.5,-13.5 + pos: -40.5,-36.5 parent: 4812 - - uid: 5617 + - uid: 8846 components: - type: Transform - pos: 5.5,-13.5 + pos: -41.5,-36.5 parent: 4812 - - uid: 5618 + - uid: 8847 components: - type: Transform - pos: 7.5,-13.5 + pos: -41.5,-35.5 parent: 4812 - - uid: 5622 + - uid: 9087 components: - type: Transform - pos: 14.5,-19.5 + pos: -28.5,-26.5 parent: 4812 - - uid: 5623 + - uid: 9124 components: - type: Transform - pos: 20.5,-25.5 + pos: 51.5,-26.5 parent: 4812 - - uid: 5624 + - uid: 9187 components: - type: Transform - pos: 20.5,-23.5 + rot: -1.5707963267948966 rad + pos: -57.5,9.5 parent: 4812 - - uid: 5767 + - uid: 9188 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-26.5 + pos: -59.5,8.5 parent: 4812 - - uid: 5768 + - uid: 9199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 + rot: 3.141592653589793 rad + pos: -41.5,13.5 parent: 4812 - - uid: 5806 + - uid: 9200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 + rot: 3.141592653589793 rad + pos: -42.5,13.5 parent: 4812 - - uid: 5833 + - uid: 9201 components: - type: Transform - pos: 32.5,-22.5 + rot: 3.141592653589793 rad + pos: -43.5,13.5 parent: 4812 - - uid: 5834 + - uid: 9202 components: - type: Transform - pos: 33.5,-22.5 + rot: 3.141592653589793 rad + pos: -44.5,13.5 parent: 4812 - - uid: 5835 + - uid: 9203 components: - type: Transform - pos: 34.5,-22.5 + rot: 3.141592653589793 rad + pos: -46.5,13.5 parent: 4812 - - uid: 6315 + - uid: 9204 components: - type: Transform - pos: 23.5,-27.5 + rot: 3.141592653589793 rad + pos: -47.5,13.5 parent: 4812 - - uid: 6316 + - uid: 9205 components: - type: Transform - pos: 22.5,-27.5 + rot: 3.141592653589793 rad + pos: -48.5,13.5 parent: 4812 - - uid: 6354 + - uid: 9206 components: - type: Transform - pos: 9.5,-13.5 + rot: 3.141592653589793 rad + pos: -49.5,13.5 parent: 4812 - - uid: 6594 + - uid: 9207 components: - type: Transform - pos: -13.5,-17.5 + rot: 3.141592653589793 rad + pos: -50.5,13.5 parent: 4812 - - uid: 6595 + - uid: 9208 components: - type: Transform - pos: -13.5,-15.5 + rot: 3.141592653589793 rad + pos: -51.5,13.5 parent: 4812 - - uid: 6596 + - uid: 9213 components: - type: Transform - pos: -12.5,-13.5 + rot: -1.5707963267948966 rad + pos: -55.5,10.5 parent: 4812 - - uid: 6597 + - uid: 9214 components: - type: Transform - pos: -10.5,-13.5 + rot: -1.5707963267948966 rad + pos: -55.5,11.5 parent: 4812 - - uid: 6598 + - uid: 9216 components: - type: Transform - pos: -8.5,-13.5 + pos: -56.5,6.5 parent: 4812 - - uid: 6599 + - uid: 9243 components: - type: Transform - pos: -7.5,-14.5 + rot: -1.5707963267948966 rad + pos: -55.5,22.5 parent: 4812 - - uid: 6600 + - uid: 9245 components: - type: Transform - pos: -7.5,-16.5 + rot: -1.5707963267948966 rad + pos: -55.5,16.5 parent: 4812 - - uid: 6601 + - uid: 9280 components: - type: Transform - pos: -7.5,-18.5 + rot: -1.5707963267948966 rad + pos: -46.5,22.5 parent: 4812 - - uid: 6602 + - uid: 9283 components: - type: Transform - pos: -8.5,-19.5 + rot: -1.5707963267948966 rad + pos: -45.5,22.5 parent: 4812 - - uid: 6603 + - uid: 9285 components: - type: Transform - pos: -12.5,-19.5 + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 parent: 4812 - - uid: 6633 + - uid: 9298 components: - type: Transform - pos: -44.5,-30.5 + rot: -1.5707963267948966 rad + pos: -51.5,22.5 parent: 4812 - - uid: 6658 + - uid: 9299 components: - type: Transform - pos: -37.5,-36.5 + rot: -1.5707963267948966 rad + pos: -50.5,22.5 parent: 4812 - - uid: 6671 + - uid: 9301 components: - type: Transform - pos: -26.5,-13.5 + rot: -1.5707963267948966 rad + pos: -49.5,22.5 parent: 4812 - - uid: 6672 + - uid: 9317 components: - type: Transform - pos: -23.5,-13.5 + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 parent: 4812 - - uid: 6678 + - uid: 9336 components: - type: Transform - pos: -17.5,-16.5 + rot: -1.5707963267948966 rad + pos: -55.5,17.5 parent: 4812 - - uid: 6799 + - uid: 9337 components: - type: Transform - pos: -15.5,-37.5 + rot: -1.5707963267948966 rad + pos: -53.5,22.5 parent: 4812 - - uid: 6800 + - uid: 9338 components: - type: Transform - pos: -16.5,-37.5 + rot: -1.5707963267948966 rad + pos: -55.5,20.5 parent: 4812 - - uid: 6801 + - uid: 9341 components: - type: Transform - pos: -17.5,-37.5 + rot: -1.5707963267948966 rad + pos: -48.5,22.5 parent: 4812 - - uid: 6802 + - uid: 9342 components: - type: Transform - pos: -19.5,-40.5 + rot: -1.5707963267948966 rad + pos: -44.5,22.5 parent: 4812 - - uid: 6803 + - uid: 9343 components: - type: Transform - pos: -20.5,-40.5 + rot: -1.5707963267948966 rad + pos: -43.5,22.5 parent: 4812 - - uid: 6804 + - uid: 9345 components: - type: Transform - pos: -25.5,-37.5 + rot: -1.5707963267948966 rad + pos: -58.5,2.5 parent: 4812 - - uid: 6805 + - uid: 9352 components: - type: Transform - pos: -25.5,-35.5 + rot: -1.5707963267948966 rad + pos: -58.5,6.5 parent: 4812 - - uid: 6983 + - uid: 9364 components: - type: Transform - pos: -12.5,-35.5 + rot: -1.5707963267948966 rad + pos: -55.5,19.5 parent: 4812 - - uid: 7208 + - uid: 9371 components: - type: Transform - pos: -7.5,-20.5 + rot: -1.5707963267948966 rad + pos: -55.5,21.5 parent: 4812 - - uid: 7220 + - uid: 9427 components: - type: Transform - pos: -13.5,-23.5 + rot: 3.141592653589793 rad + pos: -52.5,15.5 parent: 4812 - - uid: 7221 + - uid: 9433 components: - type: Transform - pos: -14.5,-24.5 + rot: 3.141592653589793 rad + pos: -46.5,15.5 parent: 4812 - - uid: 7222 + - uid: 9460 components: - type: Transform - pos: -15.5,-24.5 + pos: 24.5,18.5 parent: 4812 - - uid: 7223 + - uid: 9466 components: - type: Transform - pos: -17.5,-24.5 + rot: -1.5707963267948966 rad + pos: -59.5,12.5 parent: 4812 - - uid: 7224 + - uid: 9471 components: - type: Transform - pos: -13.5,-20.5 + rot: 3.141592653589793 rad + pos: -45.5,13.5 parent: 4812 - - uid: 7251 + - uid: 9475 components: - type: Transform - pos: -21.5,-24.5 + rot: 3.141592653589793 rad + pos: -53.5,13.5 parent: 4812 - - uid: 7258 + - uid: 9480 components: - type: Transform - pos: -7.5,-25.5 + pos: 23.5,18.5 parent: 4812 - - uid: 7301 + - uid: 9505 components: - type: Transform - pos: -38.5,-37.5 + pos: 33.5,-5.5 parent: 4812 - - uid: 7330 + - uid: 9609 components: - type: Transform - pos: -20.5,-24.5 + pos: -41.5,-28.5 parent: 4812 - - uid: 7332 + - uid: 9649 components: - type: Transform - pos: -20.5,-13.5 + pos: -12.5,-58.5 parent: 4812 - - uid: 7340 + - uid: 9650 components: - type: Transform - pos: -7.5,-26.5 + pos: -12.5,-57.5 parent: 4812 - - uid: 7352 + - uid: 9653 components: - type: Transform - pos: -18.5,-13.5 + pos: -9.5,-58.5 parent: 4812 - - uid: 7404 + - uid: 9654 components: - type: Transform - pos: -8.5,-24.5 + pos: -9.5,-57.5 parent: 4812 - - uid: 7405 + - uid: 9668 components: - type: Transform - pos: -10.5,-24.5 + pos: 6.5,43.5 parent: 4812 - - uid: 7432 + - uid: 9709 components: - type: Transform - pos: -23.5,-22.5 + rot: -1.5707963267948966 rad + pos: -58.5,12.5 parent: 4812 - - uid: 7437 + - uid: 9756 components: - type: Transform - pos: -24.5,-24.5 + rot: 1.5707963267948966 rad + pos: -37.5,3.5 parent: 4812 - - uid: 7438 + - uid: 9832 components: - type: Transform - pos: -26.5,-24.5 + pos: -47.5,-7.5 parent: 4812 - - uid: 7620 + - uid: 9835 components: - type: Transform - pos: -7.5,-27.5 + pos: -47.5,-8.5 parent: 4812 - - uid: 7635 + - uid: 9861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,32.5 + pos: -46.5,-11.5 parent: 4812 - - uid: 7915 + - uid: 9862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,10.5 + pos: -46.5,-13.5 parent: 4812 - - uid: 7916 + - uid: 9871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,12.5 + pos: -51.5,-11.5 parent: 4812 - - uid: 7917 + - uid: 9872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,10.5 + rot: -1.5707963267948966 rad + pos: -57.5,11.5 parent: 4812 - - uid: 7918 + - uid: 9877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 + pos: -51.5,-13.5 parent: 4812 - - uid: 7919 + - uid: 9906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 + rot: -1.5707963267948966 rad + pos: -57.5,10.5 parent: 4812 - - uid: 7920 + - uid: 9909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,13.5 + pos: -43.5,-13.5 parent: 4812 - - uid: 7921 + - uid: 9910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,14.5 + pos: -43.5,-11.5 parent: 4812 - - uid: 7922 + - uid: 9911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,17.5 + pos: -41.5,-9.5 parent: 4812 - - uid: 7923 + - uid: 9912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,17.5 + pos: -39.5,-9.5 parent: 4812 - - uid: 7924 + - uid: 10091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,16.5 + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 parent: 4812 - - uid: 7925 + - uid: 10315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,19.5 + pos: -56.5,-23.5 parent: 4812 - - uid: 7926 + - uid: 10316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,20.5 + pos: -53.5,-23.5 parent: 4812 - - uid: 7927 + - uid: 10317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,20.5 + pos: -52.5,-23.5 parent: 4812 - - uid: 7928 + - uid: 10318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,29.5 + pos: -52.5,-26.5 parent: 4812 - - uid: 7929 + - uid: 10319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,31.5 + pos: -53.5,-26.5 parent: 4812 - - uid: 7930 + - uid: 10320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,33.5 + pos: -54.5,-26.5 parent: 4812 - - uid: 7931 + - uid: 10321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,33.5 + pos: -54.5,-25.5 parent: 4812 - - uid: 7933 + - uid: 10371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,33.5 + pos: -71.5,-24.5 parent: 4812 - - uid: 8057 + - uid: 10372 components: - type: Transform - pos: -35.5,18.5 + pos: -71.5,-25.5 parent: 4812 - - uid: 8058 + - uid: 10373 components: - type: Transform - pos: -33.5,18.5 + pos: -71.5,-26.5 parent: 4812 - - uid: 8059 + - uid: 10374 components: - type: Transform - pos: -32.5,19.5 + pos: -69.5,-28.5 parent: 4812 - - uid: 8060 + - uid: 10375 components: - type: Transform - pos: -32.5,20.5 + pos: -70.5,-28.5 parent: 4812 - - uid: 8166 + - uid: 10376 components: - type: Transform - pos: -20.5,21.5 + pos: -71.5,-28.5 parent: 4812 - - uid: 8167 + - uid: 10377 components: - type: Transform - pos: -21.5,21.5 + pos: -71.5,-20.5 parent: 4812 - - uid: 8168 + - uid: 10378 components: - type: Transform - pos: -23.5,21.5 + pos: -71.5,-19.5 parent: 4812 - - uid: 8174 + - uid: 10379 components: - type: Transform - pos: -21.5,26.5 + pos: -71.5,-18.5 parent: 4812 - - uid: 8175 + - uid: 10380 components: - type: Transform - pos: -23.5,26.5 + pos: -71.5,-16.5 parent: 4812 - - uid: 8328 + - uid: 10381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,32.5 + pos: -70.5,-16.5 parent: 4812 - - uid: 8467 + - uid: 10382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-29.5 + pos: -69.5,-16.5 parent: 4812 - - uid: 8470 + - uid: 10383 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-30.5 + pos: -67.5,-16.5 parent: 4812 - - uid: 8496 + - uid: 10384 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-26.5 + pos: -66.5,-16.5 parent: 4812 - - uid: 8526 + - uid: 10385 components: - type: Transform - pos: -23.5,37.5 + pos: -65.5,-16.5 parent: 4812 - - uid: 8527 + - uid: 10386 components: - type: Transform - pos: -22.5,37.5 + pos: -63.5,-16.5 parent: 4812 - - uid: 8528 + - uid: 10387 components: - type: Transform - pos: -11.5,32.5 + pos: -62.5,-16.5 parent: 4812 - - uid: 8529 + - uid: 10388 components: - type: Transform - pos: -11.5,33.5 + pos: -61.5,-16.5 parent: 4812 - - uid: 8530 + - uid: 10389 components: - type: Transform - pos: -15.5,37.5 + pos: -67.5,-28.5 parent: 4812 - - uid: 8531 + - uid: 10390 components: - type: Transform - pos: -14.5,37.5 + pos: -66.5,-28.5 parent: 4812 - - uid: 8532 + - uid: 10391 components: - type: Transform - pos: -11.5,35.5 + pos: -65.5,-28.5 parent: 4812 - - uid: 8533 + - uid: 10392 components: - type: Transform - pos: -11.5,36.5 + pos: -62.5,-28.5 parent: 4812 - - uid: 8534 + - uid: 10393 components: - type: Transform - pos: -12.5,37.5 + pos: -61.5,-28.5 parent: 4812 - - uid: 8535 + - uid: 10394 components: - type: Transform - pos: -11.5,37.5 + pos: -63.5,-28.5 parent: 4812 - - uid: 8536 + - uid: 10396 components: - type: Transform - pos: -10.5,37.5 + pos: -58.5,-28.5 parent: 4812 - - uid: 8537 + - uid: 10397 components: - type: Transform - pos: -9.5,37.5 + pos: -57.5,-28.5 parent: 4812 - - uid: 8538 + - uid: 10398 components: - type: Transform - pos: -6.5,38.5 + pos: -55.5,-28.5 parent: 4812 - - uid: 8539 + - uid: 10399 components: - type: Transform - pos: -5.5,38.5 + pos: -54.5,-28.5 parent: 4812 - - uid: 8540 + - uid: 10400 components: - type: Transform - pos: -0.5,38.5 + pos: -53.5,-28.5 parent: 4812 - - uid: 8541 + - uid: 10401 components: - type: Transform - pos: 0.5,38.5 + pos: -51.5,-28.5 parent: 4812 - - uid: 8542 + - uid: 10402 components: - type: Transform - pos: 1.5,38.5 + pos: -50.5,-28.5 parent: 4812 - - uid: 8543 + - uid: 10403 components: - type: Transform - pos: 2.5,38.5 + pos: -49.5,-28.5 parent: 4812 - - uid: 8544 + - uid: 10411 components: - type: Transform - pos: 0.5,43.5 + pos: -52.5,-7.5 parent: 4812 - - uid: 8545 + - uid: 10412 components: - type: Transform - pos: 0.5,42.5 + pos: -53.5,-7.5 parent: 4812 - - uid: 8546 + - uid: 10413 components: - type: Transform - pos: 0.5,41.5 + pos: -54.5,-7.5 parent: 4812 - - uid: 8547 + - uid: 10440 components: - type: Transform - pos: 10.5,37.5 + pos: -13.5,-59.5 parent: 4812 - - uid: 8548 + - uid: 10441 components: - type: Transform - pos: 8.5,33.5 + pos: -14.5,-59.5 parent: 4812 - - uid: 8696 + - uid: 10632 components: - type: Transform - pos: -27.5,-8.5 + pos: -47.5,-6.5 parent: 4812 - - uid: 8697 + - uid: 10636 components: - type: Transform - pos: -27.5,-7.5 + pos: -48.5,-10.5 parent: 4812 - - uid: 8698 + - uid: 10946 components: - type: Transform - pos: -27.5,-6.5 + rot: -1.5707963267948966 rad + pos: -58.5,0.5 parent: 4812 - - uid: 8699 + - uid: 11216 components: - type: Transform - pos: -29.5,-4.5 + pos: 6.5,-34.5 parent: 4812 - - uid: 8700 + - uid: 11217 components: - type: Transform - pos: -31.5,-4.5 + pos: 6.5,-38.5 parent: 4812 - - uid: 8701 + - uid: 11218 components: - type: Transform - pos: -28.5,-3.5 + pos: 6.5,-40.5 parent: 4812 - - uid: 8702 + - uid: 11219 components: - type: Transform - pos: -28.5,-0.5 + pos: 6.5,-42.5 parent: 4812 - - uid: 8703 + - uid: 11220 components: - type: Transform - pos: -29.5,0.5 + pos: 11.5,-42.5 parent: 4812 - - uid: 8704 + - uid: 11337 components: - type: Transform - pos: -31.5,0.5 + pos: -20.5,37.5 parent: 4812 - - uid: 8705 + - uid: 11354 components: - type: Transform - pos: -27.5,2.5 + pos: 37.5,-31.5 parent: 4812 - - uid: 8706 + - uid: 11355 components: - type: Transform - pos: -27.5,3.5 + pos: 38.5,-31.5 parent: 4812 - - uid: 8707 + - uid: 11356 components: - type: Transform - pos: -27.5,4.5 + pos: 38.5,-32.5 parent: 4812 - - uid: 8708 + - uid: 11390 components: - type: Transform - pos: -35.5,1.5 + pos: 32.5,-37.5 parent: 4812 - - uid: 8709 + - uid: 11391 components: - type: Transform - pos: -35.5,3.5 + pos: 31.5,-37.5 parent: 4812 - - uid: 8710 + - uid: 11708 components: - type: Transform - pos: -35.5,5.5 + pos: 53.5,-33.5 parent: 4812 - - uid: 8752 + - uid: 11709 components: - type: Transform - pos: -44.5,-4.5 + pos: 53.5,-32.5 parent: 4812 - - uid: 8753 + - uid: 11710 components: - type: Transform - pos: -42.5,-4.5 + pos: 53.5,-40.5 parent: 4812 - - uid: 8841 + - uid: 11711 components: - type: Transform - pos: -27.5,-41.5 + pos: 53.5,-39.5 parent: 4812 - - uid: 8842 + - uid: 11712 components: - type: Transform - pos: -37.5,-38.5 + pos: 53.5,-38.5 parent: 4812 - - uid: 8843 + - uid: 11713 components: - type: Transform - pos: -36.5,-38.5 + pos: 52.5,-42.5 parent: 4812 - - uid: 8844 + - uid: 11714 components: - type: Transform - pos: -39.5,-36.5 + pos: 51.5,-42.5 parent: 4812 - - uid: 8845 + - uid: 11715 components: - type: Transform - pos: -40.5,-36.5 + pos: 50.5,-42.5 parent: 4812 - - uid: 8846 + - uid: 11716 components: - type: Transform - pos: -41.5,-36.5 + rot: -1.5707963267948966 rad + pos: -55.5,9.5 parent: 4812 - - uid: 8847 + - uid: 11718 components: - type: Transform - pos: -41.5,-35.5 + pos: 46.5,-42.5 parent: 4812 - - uid: 9087 + - uid: 11719 components: - type: Transform - pos: -28.5,-26.5 + pos: 44.5,-42.5 parent: 4812 - - uid: 9413 + - uid: 11720 components: - type: Transform - pos: -48.5,-1.5 + pos: 43.5,-42.5 parent: 4812 - - uid: 9414 + - uid: 11721 components: - type: Transform - pos: -48.5,-0.5 + pos: 42.5,-42.5 parent: 4812 - - uid: 9415 + - uid: 11723 components: - type: Transform - pos: -48.5,0.5 + pos: 39.5,-42.5 parent: 4812 - - uid: 9416 + - uid: 11724 components: - type: Transform - pos: -48.5,1.5 + pos: 38.5,-42.5 parent: 4812 - - uid: 9417 + - uid: 11725 components: - type: Transform - pos: -48.5,2.5 + pos: 52.5,-30.5 parent: 4812 - - uid: 9418 + - uid: 11726 components: - type: Transform - pos: -48.5,3.5 + pos: 51.5,-30.5 parent: 4812 - - uid: 9419 + - uid: 11727 components: - type: Transform - pos: -48.5,4.5 + pos: 50.5,-30.5 parent: 4812 - - uid: 9420 + - uid: 11728 components: - type: Transform - pos: -48.5,5.5 + pos: 48.5,-30.5 parent: 4812 - - uid: 9421 + - uid: 11729 components: - type: Transform - pos: -48.5,6.5 + pos: 47.5,-30.5 parent: 4812 - - uid: 9422 + - uid: 11730 components: - type: Transform - pos: -48.5,7.5 + pos: 46.5,-30.5 parent: 4812 - - uid: 9423 + - uid: 11731 components: - type: Transform - pos: -48.5,8.5 + pos: 44.5,-30.5 parent: 4812 - - uid: 9424 + - uid: 11732 components: - type: Transform - pos: -48.5,9.5 + pos: 43.5,-30.5 parent: 4812 - - uid: 9425 + - uid: 11734 components: - type: Transform - pos: -48.5,10.5 + pos: 40.5,-30.5 parent: 4812 - - uid: 9426 + - uid: 11736 components: - type: Transform - pos: -48.5,11.5 + rot: -1.5707963267948966 rad + pos: -57.5,6.5 parent: 4812 - - uid: 9427 + - uid: 11740 components: - type: Transform - pos: -48.5,12.5 + pos: 18.5,-39.5 parent: 4812 - - uid: 9428 + - uid: 11741 components: - type: Transform - pos: -48.5,13.5 + pos: 17.5,-39.5 parent: 4812 - - uid: 9442 + - uid: 11742 components: - type: Transform - pos: -50.5,11.5 + pos: 21.5,-39.5 parent: 4812 - - uid: 9443 + - uid: 11743 components: - type: Transform - pos: -50.5,9.5 + pos: 20.5,-39.5 parent: 4812 - - uid: 9444 + - uid: 11935 components: - type: Transform - pos: -50.5,7.5 + pos: -19.5,33.5 parent: 4812 - - uid: 9445 + - uid: 12108 components: - type: Transform - pos: -50.5,5.5 + pos: -10.5,-56.5 parent: 4812 - - uid: 9446 + - uid: 12124 components: - type: Transform - pos: -50.5,3.5 + rot: -1.5707963267948966 rad + pos: -50.5,7.5 parent: 4812 - - uid: 9447 + - uid: 12126 components: - type: Transform - pos: -50.5,1.5 + rot: -1.5707963267948966 rad + pos: -51.5,7.5 parent: 4812 - - uid: 9482 + - uid: 12142 components: - type: Transform - pos: -46.5,16.5 + rot: -1.5707963267948966 rad + pos: -58.5,1.5 parent: 4812 - - uid: 9483 + - uid: 12146 components: - type: Transform - pos: -46.5,17.5 + rot: -1.5707963267948966 rad + pos: -58.5,8.5 parent: 4812 - - uid: 9484 + - uid: 12181 components: - type: Transform - pos: -45.5,15.5 + rot: 3.141592653589793 rad + pos: -50.5,15.5 parent: 4812 - - uid: 9485 + - uid: 12182 components: - type: Transform - pos: -44.5,15.5 + rot: 3.141592653589793 rad + pos: -48.5,15.5 parent: 4812 - - uid: 9486 + - uid: 12416 components: - type: Transform - pos: -43.5,15.5 + pos: -8.5,-59.5 parent: 4812 - - uid: 9487 + - uid: 12417 components: - type: Transform - pos: -42.5,16.5 + pos: -7.5,-59.5 parent: 4812 - - uid: 9488 + - uid: 12589 components: - type: Transform - pos: -42.5,17.5 + pos: 25.5,18.5 parent: 4812 - - uid: 9505 + - uid: 12591 components: - type: Transform - pos: -47.5,13.5 + rot: -1.5707963267948966 rad + pos: -52.5,22.5 parent: 4812 - - uid: 9506 + - uid: 12660 components: - type: Transform - pos: -46.5,13.5 + rot: -1.5707963267948966 rad + pos: 3.5,-52.5 parent: 4812 - - uid: 9507 + - uid: 12677 components: - type: Transform - pos: -45.5,13.5 + rot: 3.141592653589793 rad + pos: 29.5,17.5 parent: 4812 - - uid: 9508 + - uid: 12679 components: - type: Transform - pos: -44.5,13.5 + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 parent: 4812 - - uid: 9509 + - uid: 12680 components: - type: Transform - pos: -43.5,13.5 + rot: -1.5707963267948966 rad + pos: 46.5,-6.5 parent: 4812 - - uid: 9510 + - uid: 12681 components: - type: Transform - pos: -42.5,13.5 + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 parent: 4812 - - uid: 9609 + - uid: 12689 components: - type: Transform - pos: -41.5,-28.5 + rot: -1.5707963267948966 rad + pos: 54.5,-5.5 parent: 4812 - - uid: 9649 + - uid: 12745 components: - type: Transform - pos: -12.5,-58.5 + pos: 53.5,-24.5 parent: 4812 - - uid: 9650 + - uid: 12765 components: - type: Transform - pos: -12.5,-57.5 + rot: -1.5707963267948966 rad + pos: 54.5,-4.5 parent: 4812 - - uid: 9653 + - uid: 12768 components: - type: Transform - pos: -9.5,-58.5 + rot: -1.5707963267948966 rad + pos: 56.5,-6.5 parent: 4812 - - uid: 9654 + - uid: 12769 components: - type: Transform - pos: -9.5,-57.5 + rot: 3.141592653589793 rad + pos: 30.5,17.5 parent: 4812 - - uid: 9832 + - uid: 12780 components: - type: Transform - pos: -47.5,-7.5 + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 parent: 4812 - - uid: 9835 + - uid: 12781 components: - type: Transform - pos: -47.5,-8.5 + rot: -1.5707963267948966 rad + pos: 50.5,1.5 parent: 4812 - - uid: 9861 + - uid: 12786 components: - type: Transform - pos: -46.5,-11.5 + rot: -1.5707963267948966 rad + pos: 3.5,-51.5 parent: 4812 - - uid: 9862 + - uid: 12790 components: - type: Transform - pos: -46.5,-13.5 + pos: 55.5,-26.5 parent: 4812 - - uid: 9871 + - uid: 12792 components: - type: Transform - pos: -51.5,-11.5 + pos: 66.5,-19.5 parent: 4812 - - uid: 9877 + - uid: 12796 components: - type: Transform - pos: -51.5,-13.5 + rot: -1.5707963267948966 rad + pos: 56.5,1.5 parent: 4812 - - uid: 9909 + - uid: 12800 components: - type: Transform - pos: -43.5,-13.5 + rot: -1.5707963267948966 rad + pos: 65.5,-0.5 parent: 4812 - - uid: 9910 + - uid: 12801 components: - type: Transform - pos: -43.5,-11.5 + rot: -1.5707963267948966 rad + pos: 58.5,1.5 parent: 4812 - - uid: 9911 + - uid: 12802 components: - type: Transform - pos: -41.5,-9.5 + pos: 60.5,-24.5 parent: 4812 - - uid: 9912 + - uid: 12862 components: - type: Transform - pos: -39.5,-9.5 + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 parent: 4812 - - uid: 10315 + - uid: 12863 components: - type: Transform - pos: -56.5,-23.5 + pos: 66.5,-18.5 parent: 4812 - - uid: 10316 + - uid: 12864 components: - type: Transform - pos: -53.5,-23.5 + pos: 66.5,-17.5 parent: 4812 - - uid: 10317 + - uid: 12865 components: - type: Transform - pos: -52.5,-23.5 + pos: 59.5,-24.5 parent: 4812 - - uid: 10318 + - uid: 12866 components: - type: Transform - pos: -52.5,-26.5 + pos: 52.5,-26.5 parent: 4812 - - uid: 10319 + - uid: 12875 components: - type: Transform - pos: -53.5,-26.5 + pos: 50.5,-24.5 parent: 4812 - - uid: 10320 + - uid: 12876 components: - type: Transform - pos: -54.5,-26.5 + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 parent: 4812 - - uid: 10321 + - uid: 12898 components: - type: Transform - pos: -54.5,-25.5 + rot: -1.5707963267948966 rad + pos: 45.5,-0.5 parent: 4812 - - uid: 10371 + - uid: 12929 components: - type: Transform - pos: -71.5,-24.5 + rot: -1.5707963267948966 rad + pos: -3.5,-58.5 parent: 4812 - - uid: 10372 + - uid: 12932 components: - type: Transform - pos: -71.5,-25.5 + pos: -1.5,-58.5 parent: 4812 - - uid: 10373 + - uid: 12933 components: - type: Transform - pos: -71.5,-26.5 + pos: -0.5,-58.5 parent: 4812 - - uid: 10374 + - uid: 12934 components: - type: Transform - pos: -69.5,-28.5 + pos: 0.5,-58.5 parent: 4812 - - uid: 10375 + - uid: 12935 components: - type: Transform - pos: -70.5,-28.5 + pos: 1.5,-58.5 parent: 4812 - - uid: 10376 + - uid: 12936 components: - type: Transform - pos: -71.5,-28.5 + pos: 2.5,-58.5 parent: 4812 - - uid: 10377 + - uid: 12937 components: - type: Transform - pos: -71.5,-20.5 + pos: -6.5,-56.5 parent: 4812 - - uid: 10378 + - uid: 12938 components: - type: Transform - pos: -71.5,-19.5 + pos: -7.5,-56.5 parent: 4812 - - uid: 10379 + - uid: 12939 components: - type: Transform - pos: -71.5,-18.5 + pos: -5.5,-56.5 parent: 4812 - - uid: 10380 + - uid: 12940 components: - type: Transform - pos: -71.5,-16.5 + pos: -4.5,-56.5 parent: 4812 - - uid: 10381 + - uid: 12941 components: - type: Transform - pos: -70.5,-16.5 + pos: -3.5,-56.5 parent: 4812 - - uid: 10382 + - uid: 12942 components: - type: Transform - pos: -69.5,-16.5 + pos: -2.5,-56.5 parent: 4812 - - uid: 10383 + - uid: 12943 components: - type: Transform - pos: -67.5,-16.5 + pos: -1.5,-56.5 parent: 4812 - - uid: 10384 + - uid: 12945 components: - type: Transform - pos: -66.5,-16.5 + rot: -1.5707963267948966 rad + pos: 0.5,-56.5 parent: 4812 - - uid: 10385 + - uid: 12946 components: - type: Transform - pos: -65.5,-16.5 + rot: -1.5707963267948966 rad + pos: 1.5,-56.5 parent: 4812 - - uid: 10386 + - uid: 12947 components: - type: Transform - pos: -63.5,-16.5 + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 parent: 4812 - - uid: 10387 + - uid: 12948 components: - type: Transform - pos: -62.5,-16.5 + rot: -1.5707963267948966 rad + pos: 3.5,-54.5 parent: 4812 - - uid: 10388 + - uid: 12949 components: - type: Transform - pos: -61.5,-16.5 + rot: -1.5707963267948966 rad + pos: 3.5,-53.5 parent: 4812 - - uid: 10389 + - uid: 12951 components: - type: Transform - pos: -67.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-55.5 parent: 4812 - - uid: 10390 + - uid: 12952 components: - type: Transform - pos: -66.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-56.5 parent: 4812 - - uid: 10391 + - uid: 12953 components: - type: Transform - pos: -65.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 parent: 4812 - - uid: 10392 + - uid: 12954 components: - type: Transform - pos: -62.5,-28.5 + rot: -1.5707963267948966 rad + pos: 3.5,-58.5 parent: 4812 - - uid: 10393 + - uid: 12955 components: - type: Transform - pos: -61.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-54.5 parent: 4812 - - uid: 10394 + - uid: 12956 components: - type: Transform - pos: -63.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-52.5 parent: 4812 - - uid: 10395 + - uid: 12957 components: - type: Transform - pos: -59.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-51.5 parent: 4812 - - uid: 10396 + - uid: 12958 components: - type: Transform - pos: -58.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 parent: 4812 - - uid: 10397 + - uid: 12959 components: - type: Transform - pos: -57.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-48.5 parent: 4812 - - uid: 10398 + - uid: 12960 components: - type: Transform - pos: -55.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,-47.5 parent: 4812 - - uid: 10399 + - uid: 12961 components: - type: Transform - pos: -54.5,-28.5 + rot: -1.5707963267948966 rad + pos: 3.5,-50.5 parent: 4812 - - uid: 10400 + - uid: 12962 components: - type: Transform - pos: -53.5,-28.5 + rot: -1.5707963267948966 rad + pos: 3.5,-49.5 parent: 4812 - - uid: 10401 + - uid: 12963 components: - type: Transform - pos: -51.5,-28.5 + rot: -1.5707963267948966 rad + pos: 3.5,-48.5 parent: 4812 - - uid: 10402 + - uid: 12964 components: - type: Transform - pos: -50.5,-28.5 + rot: -1.5707963267948966 rad + pos: 3.5,-45.5 parent: 4812 - - uid: 10403 + - uid: 12965 components: - type: Transform - pos: -49.5,-28.5 + rot: -1.5707963267948966 rad + pos: 3.5,-46.5 parent: 4812 - - uid: 10411 + - uid: 12969 components: - type: Transform - pos: -52.5,-7.5 + pos: -64.5,11.5 parent: 4812 - - uid: 10412 + - uid: 13024 components: - type: Transform - pos: -53.5,-7.5 + pos: 24.5,-10.5 parent: 4812 - - uid: 10413 + - uid: 13025 components: - type: Transform - pos: -54.5,-7.5 + pos: 25.5,-10.5 parent: 4812 - - uid: 10414 + - uid: 13026 components: - type: Transform - pos: -54.5,-5.5 + pos: 26.5,-10.5 parent: 4812 - - uid: 10415 + - uid: 13027 components: - type: Transform - pos: -53.5,-5.5 + pos: 32.5,-10.5 parent: 4812 - - uid: 10416 + - uid: 13028 components: - type: Transform - pos: -52.5,-5.5 + pos: 32.5,-12.5 parent: 4812 - - uid: 10440 + - uid: 13052 components: - type: Transform - pos: -13.5,-59.5 + rot: -1.5707963267948966 rad + pos: 59.5,-4.5 parent: 4812 - - uid: 10441 + - uid: 13064 components: - type: Transform - pos: -14.5,-59.5 + pos: -66.5,3.5 parent: 4812 - - uid: 10632 + - uid: 13065 components: - type: Transform - pos: -47.5,-6.5 + pos: 57.5,-26.5 parent: 4812 - - uid: 10636 + - uid: 13067 components: - type: Transform - pos: -48.5,-10.5 + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 parent: 4812 - - uid: 11216 + - uid: 13068 components: - type: Transform - pos: 6.5,-34.5 + pos: 66.5,-13.5 parent: 4812 - - uid: 11217 + - uid: 13073 components: - type: Transform - pos: 6.5,-38.5 + pos: 56.5,-24.5 parent: 4812 - - uid: 11218 + - uid: 13074 components: - type: Transform - pos: 6.5,-40.5 + pos: 51.5,-24.5 parent: 4812 - - uid: 11219 + - uid: 13079 components: - type: Transform - pos: 6.5,-42.5 + pos: 66.5,-14.5 parent: 4812 - - uid: 11220 + - uid: 13089 components: - type: Transform - pos: 11.5,-42.5 + rot: -1.5707963267948966 rad + pos: 54.5,0.5 parent: 4812 - - uid: 11337 + - uid: 13096 components: - type: Transform - pos: -20.5,37.5 + pos: 48.5,-24.5 parent: 4812 - - uid: 11354 + - uid: 13101 components: - type: Transform - pos: 37.5,-31.5 + pos: 66.5,-12.5 parent: 4812 - - uid: 11355 + - uid: 13102 components: - type: Transform - pos: 38.5,-31.5 + rot: -1.5707963267948966 rad + pos: 58.5,0.5 parent: 4812 - - uid: 11356 + - uid: 13105 components: - type: Transform - pos: 38.5,-32.5 + rot: -1.5707963267948966 rad + pos: -54.5,-0.5 parent: 4812 - - uid: 11390 + - uid: 13106 components: - type: Transform - pos: 32.5,-37.5 + rot: -1.5707963267948966 rad + pos: 59.5,-0.5 parent: 4812 - - uid: 11391 + - uid: 13107 components: - type: Transform - pos: 31.5,-37.5 + pos: 58.5,-26.5 parent: 4812 - - uid: 11708 + - uid: 13111 components: - type: Transform - pos: 53.5,-33.5 + pos: 54.5,-26.5 parent: 4812 - - uid: 11709 + - uid: 13117 components: - type: Transform - pos: 53.5,-32.5 + rot: -1.5707963267948966 rad + pos: -49.5,7.5 parent: 4812 - - uid: 11710 + - uid: 13122 components: - type: Transform - pos: 53.5,-40.5 + pos: 55.5,-24.5 parent: 4812 - - uid: 11711 + - uid: 13127 components: - type: Transform - pos: 53.5,-39.5 + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 parent: 4812 - - uid: 11712 + - uid: 13146 components: - type: Transform - pos: 53.5,-38.5 + rot: 3.141592653589793 rad + pos: 3.5,38.5 parent: 4812 - - uid: 11713 + - uid: 13147 components: - type: Transform - pos: 52.5,-42.5 + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 parent: 4812 - - uid: 11714 + - uid: 13159 components: - type: Transform - pos: 51.5,-42.5 + rot: 1.5707963267948966 rad + pos: -37.5,5.5 parent: 4812 - - uid: 11715 + - uid: 13160 components: - type: Transform - pos: 50.5,-42.5 + rot: 1.5707963267948966 rad + pos: -37.5,4.5 parent: 4812 - - uid: 11718 + - uid: 13178 components: - type: Transform - pos: 46.5,-42.5 + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 parent: 4812 - - uid: 11719 + - uid: 13183 components: - type: Transform - pos: 44.5,-42.5 + rot: -1.5707963267948966 rad + pos: 50.5,-26.5 parent: 4812 - - uid: 11720 + - uid: 13191 components: - type: Transform - pos: 43.5,-42.5 + pos: 66.5,-11.5 parent: 4812 - - uid: 11721 + - uid: 13193 components: - type: Transform - pos: 42.5,-42.5 + pos: 64.5,-8.5 parent: 4812 - - uid: 11723 + - uid: 13200 components: - type: Transform - pos: 39.5,-42.5 + pos: 64.5,-9.5 parent: 4812 - - uid: 11724 + - uid: 13206 components: - type: Transform - pos: 38.5,-42.5 + pos: 64.5,-10.5 parent: 4812 - - uid: 11725 + - uid: 13207 components: - type: Transform - pos: 52.5,-30.5 + pos: 64.5,-11.5 parent: 4812 - - uid: 11726 + - uid: 13208 components: - type: Transform - pos: 51.5,-30.5 + pos: 64.5,-19.5 parent: 4812 - - uid: 11727 + - uid: 13209 components: - type: Transform - pos: 50.5,-30.5 + pos: 64.5,-17.5 parent: 4812 - - uid: 11728 + - uid: 13213 components: - type: Transform - pos: 48.5,-30.5 + pos: 64.5,-16.5 parent: 4812 - - uid: 11729 + - uid: 13214 components: - type: Transform - pos: 47.5,-30.5 + pos: 64.5,-15.5 parent: 4812 - - uid: 11730 + - uid: 13215 components: - type: Transform - pos: 46.5,-30.5 + pos: 64.5,-14.5 parent: 4812 - - uid: 11731 + - uid: 13219 components: - type: Transform - pos: 44.5,-30.5 + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 parent: 4812 - - uid: 11732 + - uid: 13236 components: - type: Transform - pos: 43.5,-30.5 + rot: 3.141592653589793 rad + pos: -9.5,-19.5 parent: 4812 - - uid: 11734 + - uid: 13257 components: - type: Transform - pos: 40.5,-30.5 + rot: -1.5707963267948966 rad + pos: 49.5,-26.5 parent: 4812 - - uid: 11740 + - uid: 13268 components: - type: Transform - pos: 18.5,-39.5 + rot: -1.5707963267948966 rad + pos: 47.5,-26.5 parent: 4812 - - uid: 11741 + - uid: 13269 components: - type: Transform - pos: 17.5,-39.5 + rot: -1.5707963267948966 rad + pos: 46.5,-26.5 parent: 4812 - - uid: 11742 + - uid: 13270 components: - type: Transform - pos: 21.5,-39.5 + rot: -1.5707963267948966 rad + pos: 45.5,-26.5 parent: 4812 - - uid: 11743 + - uid: 13271 components: - type: Transform - pos: 20.5,-39.5 + rot: -1.5707963267948966 rad + pos: 44.5,-26.5 parent: 4812 - - uid: 11935 + - uid: 13362 components: - type: Transform - pos: -19.5,33.5 + rot: 3.141592653589793 rad + pos: -13.5,-18.5 parent: 4812 - - uid: 12108 + - uid: 13375 components: - type: Transform - pos: -10.5,-56.5 + pos: -66.5,-0.5 parent: 4812 - - uid: 12121 + - uid: 13380 components: - type: Transform - pos: -53.5,17.5 + pos: -62.5,15.5 parent: 4812 - - uid: 12122 + - uid: 13396 components: - type: Transform - pos: -52.5,17.5 + pos: -64.5,15.5 parent: 4812 - - uid: 12123 + - uid: 13416 components: - type: Transform - pos: -51.5,17.5 + pos: 23.5,-16.5 parent: 4812 - - uid: 12124 + - uid: 13426 components: - type: Transform - pos: -50.5,17.5 + pos: -66.5,4.5 parent: 4812 - - uid: 12125 + - uid: 13428 components: - type: Transform - pos: -49.5,17.5 + pos: -58.5,17.5 parent: 4812 - - uid: 12126 + - uid: 13429 components: - type: Transform - pos: -49.5,15.5 + pos: -58.5,16.5 parent: 4812 - - uid: 12127 + - uid: 13433 components: - type: Transform - pos: -50.5,15.5 + rot: 1.5707963267948966 rad + pos: -60.5,12.5 parent: 4812 - - uid: 12128 + - uid: 13449 components: - type: Transform - pos: -51.5,15.5 + rot: -1.5707963267948966 rad + pos: -50.5,-0.5 parent: 4812 - - uid: 12129 + - uid: 13458 components: - type: Transform - pos: -52.5,15.5 + pos: -66.5,1.5 parent: 4812 - - uid: 12130 + - uid: 13478 components: - type: Transform - pos: -53.5,15.5 + pos: -64.5,7.5 parent: 4812 - - uid: 12131 + - uid: 13479 components: - type: Transform - pos: -57.5,12.5 + pos: 36.5,-7.5 parent: 4812 - - uid: 12132 + - uid: 13480 components: - type: Transform - pos: -57.5,11.5 + pos: 35.5,-5.5 parent: 4812 - - uid: 12133 + - uid: 13485 components: - type: Transform - pos: -57.5,10.5 + pos: 36.5,-6.5 parent: 4812 - - uid: 12134 + - uid: 13487 components: - type: Transform - pos: -57.5,9.5 + pos: -58.5,15.5 parent: 4812 - - uid: 12135 + - uid: 13488 components: - type: Transform - pos: -57.5,8.5 + pos: 36.5,-8.5 parent: 4812 - - uid: 12136 + - uid: 13490 components: - type: Transform - pos: -57.5,7.5 + pos: -64.5,8.5 parent: 4812 - - uid: 12137 + - uid: 13491 components: - type: Transform - pos: -57.5,6.5 + pos: -64.5,6.5 parent: 4812 - - uid: 12138 + - uid: 13497 components: - type: Transform - pos: -57.5,5.5 + pos: -66.5,0.5 parent: 4812 - - uid: 12139 + - uid: 13500 components: - type: Transform - pos: -57.5,4.5 + pos: -66.5,5.5 parent: 4812 - - uid: 12140 + - uid: 13535 components: - type: Transform - pos: -57.5,3.5 + pos: -60.5,15.5 parent: 4812 - - uid: 12141 + - uid: 13537 components: - type: Transform - pos: -57.5,2.5 + pos: -64.5,12.5 parent: 4812 - - uid: 12142 + - uid: 13538 components: - type: Transform - pos: -57.5,1.5 + pos: -61.5,15.5 parent: 4812 - - uid: 12143 + - uid: 13620 components: - type: Transform - pos: -57.5,0.5 + pos: -66.5,7.5 parent: 4812 - - uid: 12416 + - uid: 13621 components: - type: Transform - pos: -8.5,-59.5 + pos: -66.5,9.5 parent: 4812 - - uid: 12417 + - uid: 13635 components: - type: Transform - pos: -7.5,-59.5 + pos: -57.5,16.5 parent: 4812 - proto: GrilleBroken entities: @@ -54824,65 +59619,234 @@ entities: - type: Transform pos: 11.5,-40.5 parent: 4812 - - uid: 11707 + - uid: 11849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 4812 + - uid: 11859 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 4812 + - uid: 13023 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 4812 + - uid: 13224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-15.5 + parent: 4812 +- proto: GrilleSpawner + entities: + - uid: 9508 + components: + - type: Transform + pos: -42.5,22.5 + parent: 4812 + - uid: 12776 + components: + - type: Transform + pos: -59.5,-28.5 + parent: 4812 + - uid: 13235 + components: + - type: Transform + pos: -55.5,18.5 + parent: 4812 + - uid: 13237 + components: + - type: Transform + pos: -47.5,22.5 + parent: 4812 + - uid: 13240 + components: + - type: Transform + pos: -24.5,37.5 + parent: 4812 + - uid: 13243 components: - type: Transform pos: 53.5,-34.5 parent: 4812 - - uid: 11716 + - uid: 13244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-30.5 + pos: 40.5,-42.5 parent: 4812 - - uid: 11717 + - uid: 13246 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 4812 + - uid: 13248 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 4812 + - uid: 13272 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 4812 + - uid: 13318 + components: + - type: Transform + pos: 53.5,-41.5 + parent: 4812 + - uid: 13319 components: - type: Transform pos: 45.5,-30.5 parent: 4812 - - uid: 11722 + - uid: 13320 components: - type: Transform pos: 42.5,-30.5 parent: 4812 - - uid: 11733 + - uid: 13322 components: - type: Transform - pos: 47.5,-42.5 + pos: 49.5,-30.5 parent: 4812 - - uid: 11735 + - uid: 13324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 + pos: 5.5,-58.5 parent: 4812 - - uid: 11736 + - uid: 13326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-42.5 + pos: -52.5,-28.5 parent: 4812 - - uid: 11737 + - uid: 13327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-42.5 + pos: 5.5,-53.5 parent: 4812 - - uid: 11738 + - uid: 13328 components: - type: Transform - pos: 40.5,-42.5 + pos: 4.5,-54.5 parent: 4812 - - uid: 11849 + - uid: 13329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,10.5 + pos: 3.5,-47.5 parent: 4812 - - uid: 11859 + - uid: 13330 components: - type: Transform - pos: 15.5,-15.5 + pos: 5.5,-50.5 + parent: 4812 + - uid: 13331 + components: + - type: Transform + pos: 0.5,39.5 + parent: 4812 + - uid: 13333 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 4812 + - uid: 13335 + components: + - type: Transform + pos: 52.5,-24.5 + parent: 4812 + - uid: 13347 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 4812 + - uid: 13348 + components: + - type: Transform + pos: 48.5,-26.5 + parent: 4812 + - uid: 13349 + components: + - type: Transform + pos: 64.5,-20.5 + parent: 4812 + - uid: 13350 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 4812 + - uid: 13351 + components: + - type: Transform + pos: 66.5,-16.5 + parent: 4812 + - uid: 13352 + components: + - type: Transform + pos: 64.5,-7.5 + parent: 4812 + - uid: 13353 + components: + - type: Transform + pos: 64.5,-12.5 + parent: 4812 + - uid: 13354 + components: + - type: Transform + pos: 45.5,-24.5 + parent: 4812 + - uid: 13489 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 4812 + - uid: 13492 + components: + - type: Transform + pos: -64.5,14.5 + parent: 4812 + - uid: 13622 + components: + - type: Transform + pos: -64.5,9.5 + parent: 4812 + - uid: 13623 + components: + - type: Transform + pos: -64.5,10.5 + parent: 4812 + - uid: 13624 + components: + - type: Transform + pos: -66.5,8.5 + parent: 4812 + - uid: 13625 + components: + - type: Transform + pos: -66.5,6.5 + parent: 4812 + - uid: 13626 + components: + - type: Transform + pos: -66.5,2.5 + parent: 4812 + - uid: 13627 + components: + - type: Transform + pos: -4.5,38.5 + parent: 4812 + - uid: 13629 + components: + - type: Transform + pos: 10.5,38.5 + parent: 4812 + - uid: 13630 + components: + - type: Transform + pos: -0.5,-56.5 parent: 4812 - proto: GunSafeRifleLecter entities: @@ -54922,6 +59886,11 @@ entities: - type: Transform pos: -18.546284,12.521154 parent: 4812 + - uid: 13255 + components: + - type: Transform + pos: 23.53569,17.595407 + parent: 4812 - proto: HandheldHealthAnalyzer entities: - uid: 6246 @@ -54982,6 +59951,32 @@ entities: - type: Transform pos: -29.373522,30.531204 parent: 4812 +- proto: HeatExchanger + entities: + - uid: 2965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 4812 + - uid: 4581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 4812 + - uid: 9291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 4812 + - uid: 13221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 4812 - proto: Hemostat entities: - uid: 6244 @@ -55350,12 +60345,6 @@ entities: - type: Transform pos: 5.5,23.5 parent: 4812 - - uid: 12393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 4812 - uid: 12396 components: - type: Transform @@ -55367,19 +60356,24 @@ entities: - type: Transform pos: -4.5,21.5 parent: 4812 + - uid: 13059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 4812 - proto: IntercomEngineering entities: - - uid: 12389 + - uid: 9468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-9.5 + pos: -36.5,3.5 parent: 4812 - - uid: 12390 + - uid: 12389 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-0.5 + rot: -1.5707963267948966 rad + pos: -43.5,-9.5 parent: 4812 - proto: IntercomMedical entities: @@ -55457,6 +60451,16 @@ entities: - type: Transform pos: 17.49418,49.5522 parent: 4812 + - uid: 13163 + components: + - type: Transform + pos: 9.381038,14.835535 + parent: 4812 + - uid: 13164 + components: + - type: Transform + pos: 9.516455,14.564514 + parent: 4812 - proto: KitchenKnife entities: - uid: 1642 @@ -55525,9 +60529,24 @@ entities: - uid: 1481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.696417,-19.020947 + pos: 24.580408,-19.166311 parent: 4812 + - type: HandheldLight + toggleActionEntity: 8638 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 8638 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 1520 components: - type: Transform @@ -55684,21 +60703,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 9576 - components: - - type: Transform - pos: -28.432161,1.6425915 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 10704 components: - type: Transform @@ -56365,24 +61369,17 @@ entities: - 0 - 0 - 0 -- proto: LockerMedical - entities: - - uid: 7328 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 4812 - proto: LockerMedicalFilled entities: - - uid: 7400 + - uid: 9498 components: - type: Transform - pos: -8.5,-27.5 + pos: -14.5,-18.5 parent: 4812 - - uid: 7401 + - uid: 12666 components: - type: Transform - pos: -8.5,-26.5 + pos: -14.5,-16.5 parent: 4812 - proto: LockerMedicineFilled entities: @@ -56419,6 +61416,13 @@ entities: - 0 - 0 - 0 +- proto: LockerParamedicFilled + entities: + - uid: 12668 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 4812 - proto: LockerQuarterMasterFilled entities: - uid: 3441 @@ -56482,15 +61486,15 @@ entities: - 0 - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 6777 + - uid: 12981 components: - type: Transform - pos: 22.5,16.5 + pos: 25.5,17.5 parent: 4812 - - uid: 6778 + - uid: 13080 components: - type: Transform - pos: 24.5,16.5 + pos: 26.5,17.5 parent: 4812 - proto: LockerScienceFilled entities: @@ -56611,28 +61615,21 @@ entities: - 0 - 0 - 0 -- proto: LockerWallMedicalFilled +- proto: LockerSyndicatePersonal entities: - - uid: 7430 + - uid: 13323 components: - type: Transform - pos: -22.5,-21.5 - parent: 4812 -- proto: LockerWardenFilled - entities: - - uid: 8337 - components: - - type: Transform - pos: -36.5,14.5 + pos: -38.5,-18.5 parent: 4812 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14957 + temperature: 293.14594 moles: - - 1.6033952 - - 6.031821 + - 1.8744951 + - 7.051672 - 0 - 0 - 0 @@ -56643,12 +61640,31 @@ entities: - 0 - 0 - 0 -- proto: LockerWeldingSuppliesFilled + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9510 + - 9557 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallMedicalFilled entities: - - uid: 9681 + - uid: 7430 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 4812 +- proto: LockerWardenFilled + entities: + - uid: 8337 components: - type: Transform - pos: -28.5,3.5 + pos: -36.5,14.5 parent: 4812 - type: EntityStorage air: @@ -56668,6 +61684,13 @@ entities: - 0 - 0 - 0 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 11898 + components: + - type: Transform + pos: -44.5,0.5 + parent: 4812 - proto: MachineAnomalyGenerator entities: - uid: 6341 @@ -56717,24 +61740,24 @@ entities: - type: Transform pos: -8.5,-18.5 parent: 4812 -- proto: MachineFrame +- proto: MachineFrameDestroyed entities: - - uid: 5048 + - uid: 11661 components: - type: Transform - pos: -16.5,-15.5 + pos: 4.5,-40.5 parent: 4812 - - uid: 7197 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 2914 components: - type: Transform - pos: -14.5,-15.5 + pos: -21.302504,23.37122 parent: 4812 -- proto: MachineFrameDestroyed - entities: - - uid: 11661 + - uid: 13166 components: - type: Transform - pos: 4.5,-40.5 + pos: -21.281672,23.225285 parent: 4812 - proto: MaintenanceFluffSpawner entities: @@ -56793,6 +61816,11 @@ entities: - type: Transform pos: 4.5,12.5 parent: 4812 + - uid: 13174 + components: + - type: Transform + pos: 27.5,0.5 + parent: 4812 - proto: MaintenancePlantSpawner entities: - uid: 10549 @@ -56827,6 +61855,11 @@ entities: - type: Transform pos: -37.5,25.5 parent: 4812 + - uid: 13411 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 4812 - proto: MaintenanceWeaponSpawner entities: - uid: 4609 @@ -56915,10 +61948,10 @@ entities: parent: 4812 - proto: MedicalTechFab entities: - - uid: 7398 + - uid: 3475 components: - type: Transform - pos: -9.5,-28.5 + pos: -16.5,-15.5 parent: 4812 - proto: MedkitAdvancedFilled entities: @@ -56932,7 +61965,7 @@ entities: - uid: 7407 components: - type: Transform - pos: -10.646522,-25.180182 + pos: -14.610416,-20.210476 parent: 4812 - proto: MedkitBurnFilled entities: @@ -56944,7 +61977,7 @@ entities: - uid: 7408 components: - type: Transform - pos: -10.521522,-25.336432 + pos: -14.464582,-20.32514 parent: 4812 - proto: MedkitCombatFilled entities: @@ -56960,12 +61993,17 @@ entities: - type: Transform pos: -8.488935,34.56198 parent: 4812 + - uid: 12788 + components: + - type: Transform + pos: 29.5,16.5 + parent: 4812 - proto: MedkitToxinFilled entities: - uid: 7409 components: - type: Transform - pos: -10.318397,-25.523932 + pos: -14.308332,-20.523193 parent: 4812 - proto: MicroManipulatorStockPart entities: @@ -56986,12 +62024,13 @@ entities: parent: 4812 - proto: MicrophoneInstrument entities: - - uid: 12381 + - uid: 9555 components: - type: Transform - parent: 9099 + parent: 9554 - type: Physics canCollide: False + - type: InsideEntityStorage - proto: MinimoogInstrument entities: - uid: 9054 @@ -57123,20 +62162,20 @@ entities: - type: Transform pos: 25.5,-22.5 parent: 4812 - - uid: 9448 + - uid: 9157 components: - type: Transform - pos: -53.5,1.5 + pos: -32.5,5.5 parent: 4812 - - uid: 9667 + - uid: 9231 components: - type: Transform - pos: -33.5,4.5 + pos: -31.5,5.5 parent: 4812 - - uid: 9668 + - uid: 9470 components: - type: Transform - pos: -33.5,5.5 + pos: -42.5,18.5 parent: 4812 - uid: 11786 components: @@ -57193,6 +62232,14 @@ entities: - type: Transform pos: -18.5,-16.5 parent: 4812 +- proto: OreBox + entities: + - uid: 12761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 4812 - proto: OreProcessor entities: - uid: 2902 @@ -57217,6 +62264,11 @@ entities: parent: 4812 - proto: OxygenCanister entities: + - uid: 723 + components: + - type: Transform + pos: -31.5,4.5 + parent: 4812 - uid: 733 components: - type: Transform @@ -57242,21 +62294,16 @@ entities: - type: Transform pos: -13.5,-28.5 parent: 4812 - - uid: 9450 + - uid: 9474 components: - type: Transform - pos: -53.5,3.5 + pos: -44.5,18.5 parent: 4812 - uid: 9669 components: - type: Transform pos: -32.5,4.5 parent: 4812 - - uid: 9670 - components: - - type: Transform - pos: -32.5,5.5 - parent: 4812 - uid: 10740 components: - type: Transform @@ -57272,6 +62319,11 @@ entities: - type: Transform pos: 20.5,-32.5 parent: 4812 + - uid: 13611 + components: + - type: Transform + pos: -50.5,0.5 + parent: 4812 - proto: OxygenTankFilled entities: - uid: 11791 @@ -57693,11 +62745,6 @@ entities: - type: Transform pos: 17.728024,13.748642 parent: 4812 - - uid: 3277 - components: - - type: Transform - pos: 22.826836,12.68298 - parent: 4812 - uid: 3882 components: - type: Transform @@ -57784,16 +62831,6 @@ entities: parent: 4812 - proto: Pickaxe entities: - - uid: 3273 - components: - - type: Transform - pos: 22.483086,13.573605 - parent: 4812 - - uid: 3274 - components: - - type: Transform - pos: 22.576836,13.43298 - parent: 4812 - uid: 3785 components: - type: Transform @@ -57809,15 +62846,25 @@ entities: - type: Transform pos: -48.358597,-23.531572 parent: 4812 - - uid: 11617 + - uid: 11678 components: - type: Transform - pos: 37.304466,-40.56443 + pos: 28.462547,-39.447342 parent: 4812 - - uid: 11678 + - uid: 13133 components: - type: Transform - pos: 28.462547,-39.447342 + pos: 26.604021,14.49231 + parent: 4812 + - uid: 13205 + components: + - type: Transform + pos: 26.489439,14.669516 + parent: 4812 + - uid: 13227 + components: + - type: Transform + pos: 67.5,-23.5 parent: 4812 - proto: PinpointerNuclear entities: @@ -57842,10 +62889,15 @@ entities: parent: 4812 - proto: PlasmaCanister entities: - - uid: 9457 + - uid: 9159 components: - type: Transform - pos: -53.5,9.5 + pos: -50.5,18.5 + parent: 4812 + - uid: 13610 + components: + - type: Transform + pos: -49.5,0.5 parent: 4812 - proto: PlasticFlapsAirtightClear entities: @@ -57879,15 +62931,20 @@ entities: - type: Transform pos: 23.5,28.5 parent: 4812 - - uid: 4432 + - uid: 8622 components: - type: Transform - pos: 29.5,-6.5 + pos: -32.5,0.5 parent: 4812 - - uid: 8622 + - uid: 13279 components: - type: Transform - pos: -32.5,0.5 + pos: 27.5,12.5 + parent: 4812 + - uid: 13288 + components: + - type: Transform + pos: 29.5,12.5 parent: 4812 - proto: PlayerStationAi entities: @@ -58095,6 +63152,13 @@ entities: - type: Transform pos: -13.5,-29.5 parent: 4812 +- proto: PosterLegitCarbonDioxide + entities: + - uid: 13637 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 4812 - proto: PosterLegitCarpMount entities: - uid: 9635 @@ -58279,6 +63343,11 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 4812 + - uid: 13638 + components: + - type: Transform + pos: -46.5,6.5 + parent: 4812 - proto: PosterLegitSafetyMothHardhat entities: - uid: 10918 @@ -58288,18 +63357,11 @@ entities: parent: 4812 - proto: PosterLegitSafetyMothMeth entities: - - uid: 10739 + - uid: 13664 components: - type: Transform pos: -13.5,-18.5 parent: 4812 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 10906 - components: - - type: Transform - pos: -44.5,-0.5 - parent: 4812 - proto: PosterLegitScience entities: - uid: 6367 @@ -58506,30 +63568,19 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 4550 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 4577 + - uid: 4600 components: - type: Transform - pos: 27.5,-8.5 + pos: 13.5,-8.5 parent: 4812 - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 4600 + - uid: 4620 components: - type: Transform - pos: 13.5,-8.5 + pos: 27.5,-7.5 parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 5062 components: - type: Transform @@ -58586,11 +63637,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 7045 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 4812 - uid: 8288 components: - type: Transform @@ -58599,14 +63645,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 9683 - components: - - type: Transform - pos: -36.5,4.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 9684 components: - type: Transform @@ -58673,10 +63711,10 @@ entities: stash: !type:ContainerSlot {} - proto: PottedPlantRD entities: - - uid: 12045 + - uid: 4315 components: - type: Transform - pos: 28.5,-20.5 + pos: 26.5,-17.5 parent: 4812 - proto: PowerCellRecharger entities: @@ -58715,6 +63753,12 @@ entities: parent: 4812 - type: Physics canCollide: False + - uid: 7400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 4812 - uid: 8579 components: - type: Transform @@ -58722,6 +63766,11 @@ entities: parent: 4812 - type: Physics canCollide: False + - uid: 9683 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 4812 - uid: 10713 components: - type: Transform @@ -58736,6 +63785,23 @@ entities: parent: 4812 - type: Physics canCollide: False + - uid: 13157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 4812 + - uid: 13162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,17.5 + parent: 4812 + - uid: 13409 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 4812 - proto: PowerDrill entities: - uid: 6309 @@ -58745,6 +63811,17 @@ entities: parent: 4812 - proto: Poweredlight entities: + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,5.5 + parent: 4812 + - uid: 742 + components: + - type: Transform + pos: -42.5,18.5 + parent: 4812 - uid: 1515 components: - type: Transform @@ -59091,14 +64168,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 3219 components: - type: Transform @@ -59220,14 +64289,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4473 components: - type: Transform @@ -59235,14 +64296,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4475 components: - type: Transform @@ -59259,6 +64312,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 4619 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 4812 - uid: 4952 components: - type: Transform @@ -59488,6 +64546,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6778 + components: + - type: Transform + pos: -41.5,14.5 + parent: 4812 - uid: 7019 components: - type: Transform @@ -59538,14 +64601,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7621 components: - type: Transform @@ -59733,100 +64788,61 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9311 + - uid: 9223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,1.5 + pos: 26.5,17.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9312 + - uid: 9281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,3.5 + rot: -1.5707963267948966 rad + pos: -62.5,8.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9313 + - uid: 9410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,5.5 + rot: -1.5707963267948966 rad + pos: -42.5,-2.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9314 + - uid: 9463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,7.5 + pos: -52.5,18.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9315 + - uid: 9464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,9.5 + pos: -50.5,18.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9316 + - uid: 9465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,11.5 + rot: -1.5707963267948966 rad + pos: -62.5,12.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9317 + - uid: 9536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,0.5 + pos: -46.5,18.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9318 + - uid: 9537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,4.5 + rot: -1.5707963267948966 rad + pos: -41.5,11.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9319 + - uid: 9538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,8.5 + pos: -44.5,18.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9320 + - uid: 9716 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9706 - components: - - type: Transform - pos: -46.5,14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9707 - components: - - type: Transform - pos: -42.5,14.5 + pos: -46.5,-2.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9819 components: - type: Transform @@ -59834,14 +64850,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9821 components: - type: Transform @@ -59903,14 +64911,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10686 components: - type: Transform @@ -59957,13 +64957,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10692 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10693 components: - type: Transform @@ -60018,6 +65011,16 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11896 + components: + - type: Transform + pos: -53.5,14.5 + parent: 4812 + - uid: 11910 + components: + - type: Transform + pos: -49.5,14.5 + parent: 4812 - uid: 11916 components: - type: Transform @@ -60086,6 +65089,85 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 12122 + components: + - type: Transform + pos: -45.5,14.5 + parent: 4812 + - uid: 12588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 4812 + - uid: 12784 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 4812 + - uid: 12787 + components: + - type: Transform + pos: -48.5,18.5 + parent: 4812 + - uid: 12912 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 4812 + - uid: 12916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 4812 + - uid: 12917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 4812 + - uid: 12973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-3.5 + parent: 4812 + - uid: 12974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 4812 + - uid: 12976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-18.5 + parent: 4812 + - uid: 13063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 4812 + - uid: 13493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 4812 + - uid: 13495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,3.5 + parent: 4812 + - uid: 13670 + components: + - type: Transform + pos: -52.5,6.5 + parent: 4812 - proto: PoweredlightEmpty entities: - uid: 11249 @@ -60273,13 +65355,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3224 - components: - - type: Transform - pos: 27.5,15.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 3260 components: - type: Transform @@ -60379,6 +65454,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 4612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 4812 - uid: 5388 components: - type: Transform @@ -60498,6 +65579,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 7583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,9.5 + parent: 4812 - uid: 7731 components: - type: Transform @@ -60655,13 +65742,18 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9531 + - uid: 9353 components: - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 4812 + - uid: 9496 + components: + - type: Transform + rot: 3.141592653589793 rad pos: -48.5,-4.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9659 components: - type: Transform @@ -60837,6 +65929,53 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 4812 + - uid: 13141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,34.5 + parent: 4812 + - uid: 13195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 4812 + - uid: 13264 + components: + - type: Transform + pos: 64.5,-1.5 + parent: 4812 + - uid: 13386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 4812 + - uid: 13461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,0.5 + parent: 4812 + - uid: 13605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,4.5 + parent: 4812 + - uid: 13628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-1.5 + parent: 4812 - proto: Protolathe entities: - uid: 6182 @@ -60907,11 +66046,6 @@ entities: - type: Transform pos: 0.5,25.5 parent: 4812 - - uid: 3267 - components: - - type: Transform - pos: 22.5,13.5 - parent: 4812 - uid: 3289 components: - type: Transform @@ -61092,6 +66226,18 @@ entities: - type: Transform pos: 11.5,43.5 parent: 4812 + - uid: 13091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 4812 + - uid: 13196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,16.5 + parent: 4812 - proto: RadioHandheld entities: - uid: 4582 @@ -61111,6 +66257,17 @@ entities: parent: 4812 - proto: Railing entities: + - uid: 3271 + components: + - type: Transform + pos: 24.5,13.5 + parent: 4812 + - uid: 5808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 4812 - uid: 7370 components: - type: Transform @@ -61123,6 +66280,49 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-9.5 parent: 4812 + - uid: 9197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 4812 + - uid: 12877 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4812 + - uid: 12972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,13.5 + parent: 4812 + - uid: 13123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,17.5 + parent: 4812 + - uid: 13285 + components: + - type: Transform + pos: 31.5,12.5 + parent: 4812 + - uid: 13286 + components: + - type: Transform + pos: 30.5,12.5 + parent: 4812 + - uid: 13649 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 + - uid: 13650 + components: + - type: Transform + pos: -44.5,5.5 + parent: 4812 - proto: RailingCorner entities: - uid: 7393 @@ -61131,6 +66331,48 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 4812 + - uid: 13194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,17.5 + parent: 4812 + - uid: 13284 + components: + - type: Transform + pos: 32.5,12.5 + parent: 4812 +- proto: RailingCornerSmall + entities: + - uid: 4616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 4812 + - uid: 7403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 4812 + - uid: 9577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,3.5 + parent: 4812 + - uid: 12928 + components: + - type: Transform + pos: -30.5,3.5 + parent: 4812 + - uid: 13651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 4812 - proto: RandomArcade entities: - uid: 10851 @@ -61324,6 +66566,18 @@ entities: - type: Transform pos: -28.5,-40.5 parent: 4812 + - uid: 9526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-19.5 + parent: 4812 + - uid: 13385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-17.5 + parent: 4812 - proto: RandomPosterLegit entities: - uid: 1470 @@ -61391,6 +66645,17 @@ entities: - type: Transform pos: 10.5,-3.5 parent: 4812 + - uid: 9509 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 4812 + - uid: 9548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-4.5 + parent: 4812 - uid: 11872 components: - type: Transform @@ -61403,6 +66668,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-1.5 parent: 4812 + - uid: 13186 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 4812 - proto: RandomSoap entities: - uid: 1754 @@ -61577,6 +66847,11 @@ entities: - type: Transform pos: -30.5,17.5 parent: 4812 + - uid: 13182 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 4812 - proto: RCD entities: - uid: 10767 @@ -61600,17 +66875,17 @@ entities: parent: 4812 - proto: Recycler entities: - - uid: 11244 + - uid: 2886 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + pos: 24.5,12.5 parent: 4812 - - uid: 12628 + - uid: 11244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,11.5 + pos: 10.5,-38.5 parent: 4812 - proto: ReinforcedPlasmaWindow entities: @@ -61634,70 +66909,92 @@ entities: - type: Transform pos: -32.5,20.5 parent: 4812 - - uid: 9035 + - uid: 9119 components: - type: Transform - pos: -50.5,11.5 + pos: -59.5,8.5 parent: 4812 - - uid: 9176 + - uid: 9122 components: - type: Transform - pos: -50.5,1.5 + pos: -58.5,8.5 parent: 4812 - - uid: 9307 + - uid: 9125 components: - type: Transform - pos: -50.5,9.5 + pos: -60.5,8.5 parent: 4812 - - uid: 9308 + - uid: 9211 components: - type: Transform - pos: -50.5,7.5 + rot: -1.5707963267948966 rad + pos: -58.5,2.5 parent: 4812 - - uid: 9309 + - uid: 9249 components: - type: Transform - pos: -50.5,5.5 + rot: 3.141592653589793 rad + pos: -44.5,15.5 parent: 4812 - - uid: 9310 + - uid: 9267 components: - type: Transform - pos: -50.5,3.5 + rot: 3.141592653589793 rad + pos: -48.5,15.5 parent: 4812 - - uid: 9475 + - uid: 9268 components: - type: Transform - pos: -43.5,15.5 + rot: 3.141592653589793 rad + pos: -46.5,15.5 parent: 4812 - - uid: 9476 + - uid: 9297 components: - type: Transform - pos: -44.5,15.5 + rot: 3.141592653589793 rad + pos: -52.5,15.5 parent: 4812 - - uid: 9477 + - uid: 9381 components: - type: Transform - pos: -45.5,15.5 + rot: 3.141592653589793 rad + pos: -50.5,15.5 parent: 4812 - - uid: 9478 + - uid: 9414 components: - type: Transform - pos: -46.5,16.5 + pos: -58.5,12.5 parent: 4812 - - uid: 9479 + - uid: 9415 components: - type: Transform - pos: -46.5,17.5 + pos: -57.5,10.5 parent: 4812 - - uid: 9480 + - uid: 9424 components: - type: Transform - pos: -42.5,16.5 + pos: -59.5,12.5 parent: 4812 - - uid: 9481 + - uid: 9426 components: - type: Transform - pos: -42.5,17.5 + rot: 3.141592653589793 rad + pos: -42.5,15.5 + parent: 4812 + - uid: 9428 + components: + - type: Transform + pos: -57.5,11.5 + parent: 4812 + - uid: 9438 + components: + - type: Transform + pos: -57.5,9.5 + parent: 4812 + - uid: 9486 + components: + - type: Transform + pos: -60.5,12.5 parent: 4812 - uid: 9863 components: @@ -61709,6 +67006,18 @@ entities: - type: Transform pos: -46.5,-11.5 parent: 4812 + - uid: 10779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,1.5 + parent: 4812 + - uid: 11887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,0.5 + parent: 4812 - proto: ReinforcedWindow entities: - uid: 106 @@ -61886,6 +67195,12 @@ entities: - type: Transform pos: -16.5,-10.5 parent: 4812 + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-2.5 + parent: 4812 - uid: 1784 components: - type: Transform @@ -62016,6 +67331,12 @@ entities: - type: Transform pos: 8.5,23.5 parent: 4812 + - uid: 1933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 4812 - uid: 1944 components: - type: Transform @@ -62151,11 +67472,6 @@ entities: - type: Transform pos: 21.5,21.5 parent: 4812 - - uid: 2808 - components: - - type: Transform - pos: 21.5,19.5 - parent: 4812 - uid: 2809 components: - type: Transform @@ -62181,70 +67497,57 @@ entities: - type: Transform pos: 18.5,30.5 parent: 4812 - - uid: 2884 - components: - - type: Transform - pos: 23.5,17.5 - parent: 4812 - uid: 2885 components: - type: Transform pos: 21.5,13.5 parent: 4812 - - uid: 2886 - components: - - type: Transform - pos: 25.5,15.5 - parent: 4812 - - uid: 2887 - components: - - type: Transform - pos: 25.5,13.5 - parent: 4812 - - uid: 2888 - components: - - type: Transform - pos: 26.5,16.5 - parent: 4812 - - uid: 2889 + - uid: 2893 components: - type: Transform - pos: 27.5,16.5 + rot: 3.141592653589793 rad + pos: 27.5,14.5 parent: 4812 - - uid: 2890 + - uid: 2895 components: - type: Transform - pos: 28.5,16.5 + rot: 3.141592653589793 rad + pos: 30.5,14.5 parent: 4812 - - uid: 2891 + - uid: 2907 components: - type: Transform - pos: 28.5,15.5 + rot: 3.141592653589793 rad + pos: 30.5,16.5 parent: 4812 - - uid: 2892 + - uid: 3117 components: - type: Transform - pos: 28.5,13.5 + pos: 16.5,36.5 parent: 4812 - - uid: 2893 + - uid: 3181 components: - type: Transform - pos: 28.5,12.5 + rot: 3.141592653589793 rad + pos: 28.5,17.5 parent: 4812 - - uid: 2894 + - uid: 3274 components: - type: Transform - pos: 27.5,12.5 + rot: 3.141592653589793 rad + pos: 39.5,-0.5 parent: 4812 - - uid: 2895 + - uid: 3278 components: - type: Transform - pos: 26.5,12.5 + rot: 3.141592653589793 rad + pos: 43.5,-4.5 parent: 4812 - - uid: 3117 + - uid: 3405 components: - type: Transform - pos: 16.5,36.5 + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 parent: 4812 - uid: 3503 components: @@ -62256,121 +67559,16 @@ entities: - type: Transform pos: 10.5,54.5 parent: 4812 - - uid: 4048 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 4812 - - uid: 4050 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 4812 - uid: 4051 components: - type: Transform - pos: 32.5,-8.5 - parent: 4812 - - uid: 4052 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 4812 - - uid: 4053 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 4812 - - uid: 4054 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 4812 - - uid: 4055 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 4812 - - uid: 4056 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 4812 - - uid: 4057 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 4812 - - uid: 4058 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 4812 - - uid: 4059 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 4812 - - uid: 4060 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 4812 - - uid: 4061 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 4812 - - uid: 4062 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 4812 - - uid: 4063 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 4812 - - uid: 4064 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 4812 - - uid: 4065 - components: - - type: Transform - pos: 34.5,1.5 - parent: 4812 - - uid: 4066 - components: - - type: Transform - pos: 33.5,1.5 - parent: 4812 - - uid: 4067 - components: - - type: Transform - pos: 32.5,1.5 - parent: 4812 - - uid: 4068 - components: - - type: Transform - pos: 31.5,1.5 + pos: 37.5,-0.5 parent: 4812 - uid: 4069 components: - type: Transform pos: 32.5,3.5 parent: 4812 - - uid: 4070 - components: - - type: Transform - pos: 33.5,3.5 - parent: 4812 - - uid: 4071 - components: - - type: Transform - pos: 34.5,3.5 - parent: 4812 - uid: 4072 components: - type: Transform @@ -62391,26 +67589,6 @@ entities: - type: Transform pos: 26.5,-0.5 parent: 4812 - - uid: 4076 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 4812 - - uid: 4077 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 4812 - - uid: 4078 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 4812 - - uid: 4079 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 4812 - uid: 4080 components: - type: Transform @@ -62456,6 +67634,151 @@ entities: - type: Transform pos: 19.5,-6.5 parent: 4812 + - uid: 4177 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 4812 + - uid: 4193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,0.5 + parent: 4812 + - uid: 4195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 4812 + - uid: 4198 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 4812 + - uid: 4199 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 4812 + - uid: 4200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 4812 + - uid: 4201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 4812 + - uid: 4208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 4812 + - uid: 4209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 4812 + - uid: 4214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 4812 + - uid: 4332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 4812 + - uid: 4412 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 4812 + - uid: 4419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 4812 + - uid: 4431 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 4812 + - uid: 4432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 4812 + - uid: 4446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,13.5 + parent: 4812 + - uid: 4474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 4812 + - uid: 4479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,13.5 + parent: 4812 + - uid: 4502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 4812 + - uid: 4547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,13.5 + parent: 4812 + - uid: 4577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,13.5 + parent: 4812 + - uid: 4578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 4812 + - uid: 4579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 4812 + - uid: 4625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,2.5 + parent: 4812 + - uid: 4626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 4812 - uid: 4627 components: - type: Transform @@ -62696,6 +68019,18 @@ entities: - type: Transform pos: -45.5,-27.5 parent: 4812 + - uid: 4826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,13.5 + parent: 4812 + - uid: 4846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,13.5 + parent: 4812 - uid: 4923 components: - type: Transform @@ -62706,6 +68041,12 @@ entities: - type: Transform pos: -21.5,-24.5 parent: 4812 + - uid: 4984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,3.5 + parent: 4812 - uid: 4988 components: - type: Transform @@ -62971,11 +68312,6 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 4812 - - uid: 5535 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 4812 - uid: 5536 components: - type: Transform @@ -63056,6 +68392,18 @@ entities: - type: Transform pos: 12.5,-19.5 parent: 4812 + - uid: 6287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 4812 + - uid: 6289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,13.5 + parent: 4812 - uid: 6311 components: - type: Transform @@ -63126,6 +68474,18 @@ entities: - type: Transform pos: -17.5,-37.5 parent: 4812 + - uid: 7045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,13.5 + parent: 4812 + - uid: 7188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,13.5 + parent: 4812 - uid: 7196 components: - type: Transform @@ -63201,10 +68561,11 @@ entities: - type: Transform pos: -8.5,-24.5 parent: 4812 - - uid: 7403 + - uid: 7410 components: - type: Transform - pos: -10.5,-24.5 + rot: 3.141592653589793 rad + pos: 40.5,-0.5 parent: 4812 - uid: 7435 components: @@ -63306,6 +68667,12 @@ entities: - type: Transform pos: -35.5,13.5 parent: 4812 + - uid: 7942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,13.5 + parent: 4812 - uid: 8169 components: - type: Transform @@ -63331,12 +68698,30 @@ entities: - type: Transform pos: -21.5,26.5 parent: 4812 + - uid: 8382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 4812 - uid: 8468 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-26.5 parent: 4812 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,13.5 + parent: 4812 + - uid: 8550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,13.5 + parent: 4812 - uid: 8627 components: - type: Transform @@ -63377,16 +68762,6 @@ entities: - type: Transform pos: -35.5,1.5 parent: 4812 - - uid: 8637 - components: - - type: Transform - pos: -35.5,3.5 - parent: 4812 - - uid: 8638 - components: - - type: Transform - pos: -35.5,5.5 - parent: 4812 - uid: 8676 components: - type: Transform @@ -63412,130 +68787,70 @@ entities: - type: Transform pos: -31.5,-4.5 parent: 4812 - - uid: 8734 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 4812 - - uid: 8735 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 4812 - - uid: 8792 - components: - - type: Transform - pos: -27.5,-41.5 - parent: 4812 - - uid: 9291 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 4812 - - uid: 9292 - components: - - type: Transform - pos: -48.5,-0.5 - parent: 4812 - - uid: 9293 - components: - - type: Transform - pos: -48.5,0.5 - parent: 4812 - - uid: 9294 - components: - - type: Transform - pos: -48.5,1.5 - parent: 4812 - - uid: 9295 - components: - - type: Transform - pos: -48.5,2.5 - parent: 4812 - - uid: 9296 - components: - - type: Transform - pos: -48.5,3.5 - parent: 4812 - - uid: 9297 - components: - - type: Transform - pos: -48.5,4.5 - parent: 4812 - - uid: 9298 - components: - - type: Transform - pos: -48.5,5.5 - parent: 4812 - - uid: 9299 - components: - - type: Transform - pos: -48.5,6.5 - parent: 4812 - - uid: 9300 - components: - - type: Transform - pos: -48.5,7.5 - parent: 4812 - - uid: 9301 + - uid: 8721 components: - type: Transform - pos: -48.5,8.5 + rot: 3.141592653589793 rad + pos: 43.5,-0.5 parent: 4812 - - uid: 9302 + - uid: 8722 components: - type: Transform - pos: -48.5,9.5 + pos: 23.5,18.5 parent: 4812 - - uid: 9303 + - uid: 8734 components: - type: Transform - pos: -48.5,10.5 + pos: -44.5,-4.5 parent: 4812 - - uid: 9304 + - uid: 8735 components: - type: Transform - pos: -48.5,11.5 + pos: -42.5,-4.5 parent: 4812 - - uid: 9305 + - uid: 8792 components: - type: Transform - pos: -48.5,12.5 + pos: -27.5,-41.5 parent: 4812 - - uid: 9306 + - uid: 9129 components: - type: Transform - pos: -48.5,13.5 + rot: -1.5707963267948966 rad + pos: 45.5,-0.5 parent: 4812 - - uid: 9498 + - uid: 9209 components: - type: Transform - pos: -47.5,13.5 + rot: 3.141592653589793 rad + pos: -49.5,13.5 parent: 4812 - - uid: 9499 + - uid: 9210 components: - type: Transform - pos: -46.5,13.5 + rot: 3.141592653589793 rad + pos: -51.5,13.5 parent: 4812 - - uid: 9500 + - uid: 9422 components: - type: Transform - pos: -45.5,13.5 + pos: 23.5,-16.5 parent: 4812 - - uid: 9501 + - uid: 9461 components: - type: Transform - pos: -44.5,13.5 + pos: 24.5,18.5 parent: 4812 - - uid: 9502 + - uid: 9482 components: - type: Transform - pos: -43.5,13.5 + rot: 1.5707963267948966 rad + pos: -46.5,4.5 parent: 4812 - - uid: 9503 + - uid: 9511 components: - type: Transform - pos: -42.5,13.5 + pos: 33.5,-5.5 parent: 4812 - uid: 9588 components: @@ -63597,6 +68912,11 @@ entities: - type: Transform pos: -9.5,-58.5 parent: 4812 + - uid: 9711 + components: + - type: Transform + pos: 25.5,18.5 + parent: 4812 - uid: 9838 components: - type: Transform @@ -63612,21 +68932,6 @@ entities: - type: Transform pos: -54.5,-7.5 parent: 4812 - - uid: 9869 - components: - - type: Transform - pos: -52.5,-5.5 - parent: 4812 - - uid: 9870 - components: - - type: Transform - pos: -54.5,-5.5 - parent: 4812 - - uid: 9872 - components: - - type: Transform - pos: -53.5,-5.5 - parent: 4812 - uid: 9874 components: - type: Transform @@ -63677,6 +68982,12 @@ entities: - type: Transform pos: -47.5,-6.5 parent: 4812 + - uid: 10753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 4812 - uid: 11047 components: - type: Transform @@ -63772,6 +69083,327 @@ entities: - type: Transform pos: 32.5,-37.5 parent: 4812 + - uid: 12139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,7.5 + parent: 4812 + - uid: 12657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,10.5 + parent: 4812 + - uid: 12658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 4812 + - uid: 12670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 4812 + - uid: 12674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 4812 + - uid: 12675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 4812 + - uid: 12676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 4812 + - uid: 12762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-5.5 + parent: 4812 + - uid: 12771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 4812 + - uid: 12794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 4812 + - uid: 12795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-6.5 + parent: 4812 + - uid: 12804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-4.5 + parent: 4812 + - uid: 12805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-6.5 + parent: 4812 + - uid: 12861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-4.5 + parent: 4812 + - uid: 12879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 4812 + - uid: 12882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 4812 + - uid: 12891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-4.5 + parent: 4812 + - uid: 12895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 + parent: 4812 + - uid: 12896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-5.5 + parent: 4812 + - uid: 12899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 4812 + - uid: 12900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-4.5 + parent: 4812 + - uid: 12931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 4812 + - uid: 13034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 4812 + - uid: 13058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 4812 + - uid: 13060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-4.5 + parent: 4812 + - uid: 13061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 4812 + - uid: 13062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 4812 + - uid: 13077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 4812 + - uid: 13090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 4812 + - uid: 13103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 4812 + - uid: 13108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 4812 + - uid: 13109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 4812 + - uid: 13112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,1.5 + parent: 4812 + - uid: 13113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,1.5 + parent: 4812 + - uid: 13114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 4812 + - uid: 13115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,0.5 + parent: 4812 + - uid: 13118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,7.5 + parent: 4812 + - uid: 13124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 + parent: 4812 + - uid: 13125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 + parent: 4812 + - uid: 13128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-2.5 + parent: 4812 + - uid: 13158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 4812 + - uid: 13161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 4812 + - uid: 13175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,1.5 + parent: 4812 + - uid: 13210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,11.5 + parent: 4812 + - uid: 13218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,6.5 + parent: 4812 + - uid: 13242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,9.5 + parent: 4812 + - uid: 13256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,17.5 + parent: 4812 + - uid: 13413 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 4812 + - uid: 13476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 4812 + - uid: 13501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 4812 + - uid: 13505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 4812 + - uid: 13532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 4812 + - uid: 13534 + components: + - type: Transform + pos: -57.5,6.5 + parent: 4812 + - uid: 13544 + components: + - type: Transform + pos: -58.5,6.5 + parent: 4812 - proto: ResearchAndDevelopmentServer entities: - uid: 6252 @@ -63823,11 +69455,11 @@ entities: parent: 4812 - proto: SalvageMagnet entities: - - uid: 2923 + - uid: 12803 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,12.5 + pos: 28.5,16.5 parent: 4812 - proto: SalvageMaterialCrateSpawner entities: @@ -63857,6 +69489,11 @@ entities: parent: 4812 - proto: Screen entities: + - uid: 7465 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 4812 - uid: 12560 components: - type: Transform @@ -63937,10 +69574,15 @@ entities: - type: Transform pos: 26.5,1.5 parent: 4812 - - uid: 12576 + - uid: 12867 components: - type: Transform - pos: 26.5,-6.5 + pos: 32.5,-5.5 + parent: 4812 + - uid: 13258 + components: + - type: Transform + pos: 32.5,0.5 parent: 4812 - proto: SecurityTechFab entities: @@ -64185,10 +69827,11 @@ entities: parent: 4812 - proto: Shovel entities: - - uid: 3275 + - uid: 13238 components: - type: Transform - pos: 22.483086,13.479855 + rot: -1.5707963267948966 rad + pos: 26.447771,14.59655 parent: 4812 - proto: ShuttersNormalOpen entities: @@ -64389,6 +70032,36 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-6.5 parent: 4812 + - uid: 13473 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 4812 + - uid: 13663 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 4812 + - uid: 13665 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 4812 + - uid: 13666 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 4812 + - uid: 13667 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 4812 + - uid: 13668 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 4812 - proto: ShuttleConsoleCircuitboard entities: - uid: 10959 @@ -64515,79 +70188,149 @@ entities: - Pressed: Toggle 5796: - Pressed: Toggle - - uid: 6587 + - uid: 6690 components: - type: Transform - pos: -13.5,-14.5 + pos: 26.5,-28.5 parent: 4812 - type: DeviceLinkSource linkedPorts: - 6574: + 5575: - Pressed: Toggle - 6576: + 5574: - Pressed: Toggle - 6575: + 5573: - Pressed: Toggle - 6577: + - uid: 8165 + components: + - type: Transform + pos: -20.5,26.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 8160: - Pressed: Toggle - 6578: + 8153: - Pressed: Toggle - 6570: + 8161: - Pressed: Toggle - 6586: + - uid: 10676 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 10675: - Pressed: Toggle - - uid: 6690 + 10674: + - Pressed: Toggle + 10673: + - Pressed: Toggle + - uid: 13618 components: - type: Transform - pos: 26.5,-28.5 + pos: -62.5,2.5 parent: 4812 - type: DeviceLinkSource linkedPorts: - 5575: + 9828: - Pressed: Toggle - 5574: + - uid: 13619 + components: + - type: Transform + pos: -61.5,11.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9455: - Pressed: Toggle - 5573: +- proto: SignalButtonDirectional + entities: + - uid: 4413 + components: + - type: MetaData + name: EVA blast door + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 729: - Pressed: Toggle - - uid: 8165 + - uid: 4610 components: - type: Transform - pos: -20.5,26.5 + rot: -1.5707963267948966 rad + pos: 27.5,13.5 parent: 4812 - type: DeviceLinkSource linkedPorts: - 8160: + 12970: - Pressed: Toggle - 8153: + 13287: - Pressed: Toggle - 8161: + - uid: 13373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 13668: - Pressed: Toggle - - uid: 9497 + 13667: + - Pressed: Toggle + 13666: + - Pressed: Toggle + 13665: + - Pressed: Toggle + - uid: 13606 components: - type: Transform - pos: -45.5,18.5 + rot: 1.5707963267948966 rad + pos: -55.5,8.5 parent: 4812 - - uid: 9504 + - type: DeviceLinkSource + linkedPorts: + 9455: + - Pressed: Toggle + - uid: 13617 components: - type: Transform - pos: -41.5,13.5 + rot: 3.141592653589793 rad + pos: -57.5,-0.5 parent: 4812 - type: DeviceLinkSource linkedPorts: - 9496: + 9828: - Pressed: Toggle - - uid: 10676 + - uid: 13662 components: - type: Transform - pos: -51.5,-7.5 + pos: -11.5,-13.5 parent: 4812 - type: DeviceLinkSource linkedPorts: - 10675: + 6574: - Pressed: Toggle - 10674: + 6576: - Pressed: Toggle - 10673: + 6575: + - Pressed: Toggle + 6577: + - Pressed: Toggle + 6578: + - Pressed: Toggle + 6570: + - Pressed: Toggle + 6586: + - Pressed: Toggle + 13473: + - Pressed: Toggle + 13663: - Pressed: Toggle - proto: SignAnomaly2 entities: @@ -64610,10 +70353,10 @@ entities: - type: Transform pos: -34.5,0.5 parent: 4812 - - uid: 8721 + - uid: 9754 components: - type: Transform - pos: -35.5,4.5 + pos: -35.5,3.5 parent: 4812 - proto: SignBio entities: @@ -64667,13 +70410,6 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 4812 -- proto: SignCloning - entities: - - uid: 8382 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 4812 - proto: SignCryogenicsMed entities: - uid: 4928 @@ -64746,6 +70482,17 @@ entities: rot: 3.141592653589793 rad pos: 2.5034294,-33.300663 parent: 4812 + - uid: 13179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 4812 + - uid: 13180 + components: + - type: Transform + pos: 10.500242,18.291374 + parent: 4812 - proto: SignDirectionalHop entities: - uid: 12369 @@ -64846,6 +70593,12 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-4.5 parent: 4812 + - uid: 13181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.500242,18.699064 + parent: 4812 - proto: SignDirectionalSupply entities: - uid: 1465 @@ -64901,11 +70654,6 @@ entities: - type: Transform pos: 4.5,21.5 parent: 4812 - - uid: 4579 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 4812 - uid: 5073 components: - type: Transform @@ -64916,8 +70664,23 @@ entities: - type: Transform pos: -12.5,-41.5 parent: 4812 + - uid: 13261 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 4812 + - uid: 13262 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 4812 - proto: SignElectricalMed entities: + - uid: 2908 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 4812 - uid: 3978 components: - type: Transform @@ -64967,6 +70730,18 @@ entities: - type: Transform pos: -34.5,-4.5 parent: 4812 +- proto: SignEVA + entities: + - uid: 9932 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 4812 + - uid: 13460 + components: + - type: Transform + pos: -59.5,5.5 + parent: 4812 - proto: SignExamroom entities: - uid: 6659 @@ -64974,6 +70749,11 @@ entities: - type: Transform pos: -13.5,-24.5 parent: 4812 + - uid: 11904 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 4812 - proto: SignFire entities: - uid: 9043 @@ -64991,12 +70771,23 @@ entities: - type: Transform pos: -38.5,-4.5 parent: 4812 + - uid: 12873 + components: + - type: Transform + pos: -58.5,3.5 + parent: 4812 - proto: SignFlammableMed entities: - - uid: 10748 + - uid: 9335 components: - type: Transform - pos: -32.5,6.5 + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 4812 + - uid: 13514 + components: + - type: Transform + pos: -57.5,12.5 parent: 4812 - proto: SignGravity entities: @@ -65091,6 +70882,11 @@ entities: - type: Transform pos: -19.5,3.5 parent: 4812 + - uid: 11909 + components: + - type: Transform + pos: -46.5,1.5 + parent: 4812 - proto: SignPlaque entities: - uid: 7570 @@ -65141,6 +70937,14 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 4812 +- proto: SignSalvage + entities: + - uid: 12654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 4812 - proto: SignScience entities: - uid: 6175 @@ -65205,6 +71009,12 @@ entities: - type: Transform pos: 2.5,44.5 parent: 4812 + - uid: 9235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,22.5 + parent: 4812 - uid: 9693 components: - type: Transform @@ -65215,6 +71025,33 @@ entities: - type: Transform pos: -42.5,-9.5 parent: 4812 + - uid: 12813 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 4812 + - uid: 12878 + components: + - type: Transform + pos: 63.5,-24.5 + parent: 4812 + - uid: 13021 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 4812 + - uid: 13138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 4812 + - uid: 13281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 4812 - proto: SignSecureSmall entities: - uid: 2931 @@ -65243,10 +71080,27 @@ entities: parent: 4812 - proto: SignShipDock entities: - - uid: 3344 + - uid: 9930 components: - type: Transform - pos: 21.5,16.5 + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 4812 + - uid: 12390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 4812 + - uid: 13259 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 4812 + - uid: 13260 + components: + - type: Transform + pos: 56.5,-4.5 parent: 4812 - proto: SignSmoking entities: @@ -65265,6 +71119,11 @@ entities: - type: Transform pos: -40.5,11.5 parent: 4812 + - uid: 13636 + components: + - type: Transform + pos: -47.5,7.5 + parent: 4812 - proto: SignSpace entities: - uid: 2939 @@ -65277,16 +71136,6 @@ entities: - type: Transform pos: 4.5,46.5 parent: 4812 - - uid: 4580 - components: - - type: Transform - pos: 32.5,1.5 - parent: 4812 - - uid: 4581 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 4812 - uid: 4602 components: - type: Transform @@ -65307,6 +71156,12 @@ entities: - type: Transform pos: 21.5,-27.5 parent: 4812 + - uid: 9545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-2.5 + parent: 4812 - uid: 11694 components: - type: Transform @@ -65381,12 +71236,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,28.5 parent: 4812 - - uid: 3402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 4812 - uid: 4454 components: - type: Transform @@ -65411,6 +71260,12 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-1.5 parent: 4812 + - uid: 13536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 4812 - proto: SinkEmpty entities: - uid: 3580 @@ -65486,19 +71341,15 @@ entities: - type: Transform pos: 14.5,47.5 parent: 4812 - - uid: 8722 + - uid: 6560 components: - - type: MetaData - name: SMES Bank 2 - type: Transform - pos: -44.5,-2.5 + pos: -45.5,-2.5 parent: 4812 - - uid: 8723 + - uid: 6594 components: - - type: MetaData - name: SMES Bank 1 - type: Transform - pos: -45.5,-2.5 + pos: -44.5,-2.5 parent: 4812 - uid: 10166 components: @@ -66042,6 +71893,26 @@ entities: - type: Transform pos: 53.5,-36.5 parent: 4812 +- proto: SolidSecretDoor + entities: + - uid: 13337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-17.5 + parent: 4812 +- proto: SpaceHeater + entities: + - uid: 6612 + components: + - type: Transform + pos: -43.5,0.5 + parent: 4812 + - uid: 13655 + components: + - type: Transform + pos: -42.5,0.5 + parent: 4812 - proto: SpawnMechRipley entities: - uid: 8368 @@ -66084,13 +71955,6 @@ entities: - type: Transform pos: -6.5,-9.5 parent: 4812 -- proto: SpawnMobCrabAtmos - entities: - - uid: 6638 - components: - - type: Transform - pos: -43.5,6.5 - parent: 4812 - proto: SpawnMobFoxRenault entities: - uid: 2621 @@ -66168,15 +72032,15 @@ entities: parent: 4812 - proto: SpawnPointAtmos entities: - - uid: 3259 + - uid: 13155 components: - type: Transform - pos: -31.5,2.5 + pos: -28.5,4.5 parent: 4812 - - uid: 3468 + - uid: 13156 components: - type: Transform - pos: -30.5,3.5 + pos: -29.5,3.5 parent: 4812 - proto: SpawnPointBartender entities: @@ -66361,20 +72225,20 @@ entities: parent: 4812 - proto: SpawnPointMedicalDoctor entities: - - uid: 8358 + - uid: 8374 components: - type: Transform - pos: -9.5,-27.5 + pos: -19.5,-22.5 parent: 4812 - - uid: 8373 + - uid: 13149 components: - type: Transform - pos: -9.5,-26.5 + pos: -15.5,-17.5 parent: 4812 - - uid: 8374 + - uid: 13150 components: - type: Transform - pos: -19.5,-22.5 + pos: -15.5,-16.5 parent: 4812 - proto: SpawnPointMedicalIntern entities: @@ -66409,6 +72273,13 @@ entities: - type: Transform pos: -2.5,2.5 parent: 4812 +- proto: SpawnPointParamedic + entities: + - uid: 2891 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 4812 - proto: SpawnPointPassenger entities: - uid: 12382 @@ -66454,15 +72325,15 @@ entities: parent: 4812 - proto: SpawnPointSalvageSpecialist entities: - - uid: 3284 + - uid: 4472 components: - type: Transform - pos: 23.5,15.5 + pos: 25.5,16.5 parent: 4812 - - uid: 7465 + - uid: 13266 components: - type: Transform - pos: 23.5,14.5 + pos: 24.5,15.5 parent: 4812 - proto: SpawnPointScientist entities: @@ -66617,6 +72488,11 @@ entities: - type: Transform pos: -4.5,-33.5 parent: 4812 + - uid: 13334 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 4812 - proto: Stool entities: - uid: 1752 @@ -66680,6 +72556,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,4.5 parent: 4812 + - uid: 13252 + components: + - type: Transform + pos: 31.5,17.5 + parent: 4812 - proto: StoolBar entities: - uid: 345 @@ -66750,40 +72631,25 @@ entities: parent: 4812 - proto: StorageCanister entities: - - uid: 6325 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 4812 - - uid: 6326 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 4812 - - uid: 9553 - components: - - type: Transform - pos: -41.5,6.5 - parent: 4812 - - uid: 9554 + - uid: 5048 components: - type: Transform - pos: -41.5,7.5 + pos: -36.5,4.5 parent: 4812 - - uid: 9555 + - uid: 6283 components: - type: Transform - pos: -41.5,8.5 + pos: -35.5,4.5 parent: 4812 - - uid: 9665 + - uid: 6325 components: - type: Transform - pos: -34.5,4.5 + pos: 23.5,-22.5 parent: 4812 - - uid: 9666 + - uid: 6326 components: - type: Transform - pos: -34.5,5.5 + pos: 24.5,-22.5 parent: 4812 - uid: 12462 components: @@ -66883,18 +72749,6 @@ entities: - type: Transform pos: 30.5,-39.5 parent: 4812 -- proto: SuitStorageAtmos - entities: - - uid: 742 - components: - - type: Transform - pos: -41.5,9.5 - parent: 4812 - - uid: 4846 - components: - - type: Transform - pos: -41.5,10.5 - parent: 4812 - proto: SuitStorageCaptain entities: - uid: 746 @@ -66974,13 +72828,6 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 4812 -- proto: SuitStorageSec - entities: - - uid: 736 - components: - - type: Transform - pos: -35.5,21.5 - parent: 4812 - proto: SuitStorageWarden entities: - uid: 745 @@ -66988,6 +72835,11 @@ entities: - type: Transform pos: -36.5,21.5 parent: 4812 + - uid: 12663 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 - proto: SurveillanceCameraCommand entities: - uid: 2495 @@ -67272,16 +73124,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering Lobby - - uid: 12068 - components: - - type: Transform - pos: -42.5,0.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - uid: 12587 components: - type: Transform @@ -67293,70 +73135,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Lobby - - uid: 12588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,9.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos North - - uid: 12589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-0.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks South - - uid: 12590 - components: - - type: Transform - pos: -50.5,13.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks North - - uid: 12591 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Airlock - - uid: 12592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Smes Room - - uid: 12593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Cleanroom - uid: 12594 components: - type: Transform @@ -67465,8 +73243,69 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering + - uid: 13632 + components: + - type: Transform + pos: -53.5,0.5 + parent: 4812 + - type: SurveillanceCamera + id: TEG + - uid: 13633 + components: + - type: Transform + pos: -52.5,8.5 + parent: 4812 + - type: SurveillanceCamera + id: Burn Chamber + - uid: 13634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,6.5 + parent: 4812 + - type: SurveillanceCamera + id: Atmos Core - proto: SurveillanceCameraGeneral entities: + - uid: 5535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-14.5 + parent: 4812 + - type: SurveillanceCamera + id: Library + - uid: 9462 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 4812 + - type: SurveillanceCamera + id: EVAC Hallway + - uid: 9479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 4812 + - type: SurveillanceCamera + id: EVAC Bar + - uid: 9483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-1.5 + parent: 4812 + - type: SurveillanceCamera + id: Docking Arm Middle + - uid: 9539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-1.5 + parent: 4812 + - type: SurveillanceCamera + id: Docking Arm End - uid: 12060 components: - type: Transform @@ -67606,16 +73445,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Entrance of evac - - uid: 12540 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation 1 - uid: 12541 components: - type: Transform @@ -67744,6 +73573,14 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Library + - uid: 12791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 4812 + - type: SurveillanceCamera + id: EVAC Lobby - proto: SurveillanceCameraMedical entities: - uid: 12072 @@ -67862,10 +73699,10 @@ entities: parent: 4812 - proto: SurveillanceCameraRouterScience entities: - - uid: 4984 + - uid: 13451 components: - type: Transform - pos: 24.5,-18.5 + pos: 24.5,-17.5 parent: 4812 - proto: SurveillanceCameraRouterSecurity entities: @@ -68292,17 +74129,21 @@ entities: - SurveillanceCameraSupply nameSet: True id: QM office - - uid: 12613 +- proto: SyndieFlag + entities: + - uid: 13383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,15.5 + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 4812 +- proto: SyndieHandyFlag + entities: + - uid: 13384 + components: + - type: Transform + pos: -40.5,-18.5 parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay Airlock - proto: Syringe entities: - uid: 6248 @@ -68389,11 +74230,6 @@ entities: - type: Transform pos: 17.5,13.5 parent: 4812 - - uid: 3266 - components: - - type: Transform - pos: 22.5,12.5 - parent: 4812 - uid: 3447 components: - type: Transform @@ -68444,6 +74280,16 @@ entities: - type: Transform pos: 11.5,48.5 parent: 4812 + - uid: 4337 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 4812 + - uid: 4428 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 4812 - uid: 4455 components: - type: Transform @@ -68459,11 +74305,6 @@ entities: - type: Transform pos: 13.5,-0.5 parent: 4812 - - uid: 4547 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 4812 - uid: 4548 components: - type: Transform @@ -68549,15 +74390,25 @@ entities: - type: Transform pos: -1.5,-27.5 parent: 4812 + - uid: 6606 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 4812 - uid: 7189 components: - type: Transform pos: -18.5,-14.5 parent: 4812 - - uid: 7406 + - uid: 7192 components: - type: Transform - pos: -10.5,-25.5 + pos: -46.5,-2.5 + parent: 4812 + - uid: 7571 + components: + - type: Transform + pos: -8.5,-28.5 parent: 4812 - uid: 8364 components: @@ -68604,6 +74455,11 @@ entities: - type: Transform pos: -37.5,10.5 parent: 4812 + - uid: 9459 + components: + - type: Transform + pos: 23.5,17.5 + parent: 4812 - uid: 9585 components: - type: Transform @@ -68649,6 +74505,12 @@ entities: - type: Transform pos: -43.5,-7.5 parent: 4812 + - uid: 10756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-28.5 + parent: 4812 - uid: 10857 components: - type: Transform @@ -68694,20 +74556,44 @@ entities: - type: Transform pos: -2.5,-34.5 parent: 4812 - - uid: 12114 + - uid: 12493 components: - type: Transform - pos: -42.5,-2.5 + pos: 9.5,-18.5 parent: 4812 - - uid: 12115 + - uid: 13241 components: - type: Transform - pos: -42.5,-1.5 + rot: 1.5707963267948966 rad + pos: 22.5,17.5 parent: 4812 - - uid: 12493 + - uid: 13336 components: - type: Transform - pos: 9.5,-18.5 + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 4812 + - uid: 13345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-19.5 + parent: 4812 + - uid: 13346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-19.5 + parent: 4812 + - uid: 13639 + components: + - type: Transform + pos: -45.5,3.5 + parent: 4812 + - uid: 13640 + components: + - type: Transform + pos: -44.5,3.5 parent: 4812 - proto: TableCarpet entities: @@ -68778,10 +74664,11 @@ entities: - type: Transform pos: -11.5,-7.5 parent: 4812 - - uid: 6612 + - uid: 3468 components: - type: Transform - pos: -10.5,-18.5 + rot: 3.141592653589793 rad + pos: -14.5,-20.5 parent: 4812 - uid: 6613 components: @@ -68793,12 +74680,6 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 4812 - - uid: 6652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 4812 - uid: 7426 components: - type: Transform @@ -68844,11 +74725,29 @@ entities: - type: Transform pos: -40.5,-34.5 parent: 4812 + - uid: 9118 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 4812 - uid: 10659 components: - type: Transform pos: -12.5,-16.5 parent: 4812 + - uid: 13421 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 4812 +- proto: TablePlasmaGlass + entities: + - uid: 9443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-18.5 + parent: 4812 - proto: TableReinforced entities: - uid: 144 @@ -69051,11 +74950,6 @@ entities: - type: Transform pos: 28.5,1.5 parent: 4812 - - uid: 4431 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 - uid: 4562 components: - type: Transform @@ -69071,11 +74965,6 @@ entities: - type: Transform pos: 28.5,4.5 parent: 4812 - - uid: 4578 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 4812 - uid: 5306 components: - type: Transform @@ -69201,6 +75090,11 @@ entities: - type: Transform pos: -27.5,22.5 parent: 4812 + - uid: 7328 + components: + - type: Transform + pos: -3.5,26.5 + parent: 4812 - uid: 7419 components: - type: Transform @@ -69336,6 +75230,18 @@ entities: - type: Transform pos: -30.5,-4.5 parent: 4812 + - uid: 8686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-24.5 + parent: 4812 + - uid: 8709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-24.5 + parent: 4812 - uid: 9568 components: - type: Transform @@ -69346,11 +75252,6 @@ entities: - type: Transform pos: -30.5,5.5 parent: 4812 - - uid: 9573 - components: - - type: Transform - pos: -28.5,1.5 - parent: 4812 - uid: 9724 components: - type: Transform @@ -69441,6 +75342,12 @@ entities: - type: Transform pos: -33.5,20.5 parent: 4812 + - uid: 12673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 4812 - proto: TableReinforcedGlass entities: - uid: 6303 @@ -69690,11 +75597,6 @@ entities: - type: Transform pos: 19.5,-18.5 parent: 4812 - - uid: 6283 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 4812 - uid: 6284 components: - type: Transform @@ -69875,6 +75777,12 @@ entities: - type: Transform pos: -25.5,-18.5 parent: 4812 + - uid: 12665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 4812 - proto: TargetHuman entities: - uid: 12422 @@ -69882,6 +75790,32 @@ entities: - type: Transform pos: -54.5,-16.5 parent: 4812 +- proto: TegCenter + entities: + - uid: 9278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,3.5 + parent: 4812 +- proto: TegCirculator + entities: + - uid: 13223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,2.5 + parent: 4812 + - type: PointLight + color: '#FF3300FF' + - uid: 13546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,4.5 + parent: 4812 + - type: PointLight + color: '#FF3300FF' - proto: TelecomServer entities: - uid: 330 @@ -69904,11 +75838,6 @@ entities: showEnts: False occludes: True ents: [] - - uid: 4373 - components: - - type: Transform - pos: -3.5,26.5 - parent: 4812 - uid: 4991 components: - type: Transform @@ -70042,15 +75971,16 @@ entities: - type: Transform pos: -25.5,-35.5 parent: 4812 - - uid: 7192 + - uid: 7193 components: - type: Transform - pos: -13.5,-17.5 + pos: -13.5,-15.5 parent: 4812 - - uid: 7193 + - uid: 10450 components: - type: Transform - pos: -13.5,-15.5 + rot: 3.141592653589793 rad + pos: -13.5,-18.5 parent: 4812 - proto: ToiletDirtyWater entities: @@ -70132,16 +76062,6 @@ entities: parent: 4812 - proto: ToolboxEmergencyFilled entities: - - uid: 3271 - components: - - type: Transform - pos: 22.451836,13.667355 - parent: 4812 - - uid: 3272 - components: - - type: Transform - pos: 22.62371,13.52673 - parent: 4812 - uid: 4541 components: - type: Transform @@ -70157,6 +76077,11 @@ entities: - type: Transform pos: -34.527054,-18.337584 parent: 4812 + - uid: 13239 + components: + - type: Transform + pos: 26.510271,14.534006 + parent: 4812 - proto: ToolboxGoldFilled entities: - uid: 2711 @@ -70186,6 +76111,11 @@ entities: - type: Transform pos: -19.484879,9.65999 parent: 4812 + - uid: 13245 + components: + - type: Transform + pos: 26.489439,14.7007885 + parent: 4812 - proto: TorsoHuman entities: - uid: 12423 @@ -70352,17 +76282,53 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 12630 + - uid: 12980 components: - type: Transform - pos: 27.5,11.5 + pos: 24.5,13.5 parent: 4812 - type: DeviceLinkSource linkedPorts: - 12628: - - Left: Forward - - Right: Reverse + 2886: + - Left: Reverse + - Right: Forward + - Middle: Off + 2896: + - Left: Reverse + - Right: Forward + - Middle: Off + 2890: + - Left: Reverse + - Right: Forward + - Middle: Off + 3769: + - Left: Reverse + - Right: Forward + - Middle: Off + 3434: + - Left: Reverse + - Right: Forward + - Middle: Off + 13135: + - Left: Reverse + - Right: Forward + - Middle: Off + 13282: + - Left: Reverse + - Right: Forward + - Middle: Off + 13283: + - Left: Reverse + - Right: Forward - Middle: Off + 13289: + - Left: Reverse + - Right: Forward + - Middle: Off + 13290: + - Middle: Off + - Right: Reverse + - Left: Forward - proto: UniformPrinter entities: - uid: 2513 @@ -70398,10 +76364,10 @@ entities: parent: 4812 - proto: VendingMachineAtmosDrobe entities: - - uid: 9572 + - uid: 13486 components: - type: Transform - pos: -28.5,2.5 + pos: -28.5,1.5 parent: 4812 - proto: VendingMachineBooze entities: @@ -70481,10 +76447,10 @@ entities: parent: 4812 - proto: VendingMachineChemicals entities: - - uid: 741 + - uid: 6617 components: - type: Transform - pos: -10.5,-14.5 + pos: -8.5,-15.5 parent: 4812 - proto: VendingMachineCigs entities: @@ -70502,6 +76468,11 @@ entities: - type: Transform pos: 0.5,28.5 parent: 4812 + - uid: 3277 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 4812 - uid: 4536 components: - type: MetaData @@ -70567,6 +76538,11 @@ entities: - type: Transform pos: -5.5,28.5 parent: 4812 + - uid: 4427 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 4812 - uid: 4537 components: - type: MetaData @@ -70644,6 +76620,13 @@ entities: - type: Transform pos: 0.5,11.5 parent: 4812 +- proto: VendingMachineDonut + entities: + - uid: 13481 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 4812 - proto: VendingMachineEngiDrobe entities: - uid: 12516 @@ -70665,13 +76648,6 @@ entities: - type: Transform pos: -30.5,-14.5 parent: 4812 -- proto: VendingMachineGeneDrobe - entities: - - uid: 2607 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 4812 - proto: VendingMachineHappyHonk entities: - uid: 1565 @@ -70702,17 +76678,17 @@ entities: parent: 4812 - proto: VendingMachineMedical entities: - - uid: 7188 + - uid: 9155 components: - type: Transform - pos: -8.5,-28.5 + pos: -14.5,-15.5 parent: 4812 - proto: VendingMachineMediDrobe entities: - - uid: 7399 + - uid: 12978 components: - type: Transform - pos: -8.5,-25.5 + pos: -16.5,-18.5 parent: 4812 - proto: VendingMachineNutri entities: @@ -70742,12 +76718,10 @@ entities: parent: 4812 - proto: VendingMachineSalvage entities: - - uid: 3434 + - uid: 12950 components: - - type: MetaData - name: Salvage Equipment - type: Transform - pos: 23.5,16.5 + pos: 24.5,17.5 parent: 4812 - proto: VendingMachineSciDrobe entities: @@ -70825,49 +76799,41 @@ entities: - type: Transform pos: -28.5,32.5 parent: 4812 -- proto: VendingMachineTankDispenserEngineering +- proto: VendingMachineTankDispenserEVA entities: - - uid: 739 + - uid: 6312 components: - type: MetaData name: tank dispenser - type: Transform - pos: 7.5,15.5 + pos: 26.5,-26.5 parent: 4812 - - uid: 9577 + - uid: 10708 components: - type: MetaData name: tank dispenser - type: Transform - pos: -31.5,1.5 + pos: -35.5,-9.5 parent: 4812 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 732 + - uid: 12759 components: - type: Transform - pos: 9.5,14.5 + pos: 7.5,15.5 parent: 4812 - - uid: 6312 + - uid: 12785 components: - - type: MetaData - name: tank dispenser - type: Transform - pos: 26.5,-26.5 + pos: -42.5,-3.5 parent: 4812 - - uid: 10708 + - uid: 13249 components: - - type: MetaData - name: tank dispenser - type: Transform - pos: -35.5,-9.5 + pos: 29.5,14.5 parent: 4812 - - uid: 12113 + - uid: 13652 components: - - type: MetaData - name: tank dispenser - type: Transform - pos: -42.5,-3.5 + pos: -45.5,0.5 parent: 4812 - proto: VendingMachineTheater entities: @@ -71711,10 +77677,11 @@ entities: - type: Transform pos: 20.5,35.5 parent: 4812 - - uid: 2896 + - uid: 2873 components: - type: Transform - pos: 25.5,12.5 + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 parent: 4812 - uid: 2897 components: @@ -71741,25 +77708,17 @@ entities: - type: Transform pos: 21.5,11.5 parent: 4812 - - uid: 2903 - components: - - type: Transform - pos: 25.5,16.5 - parent: 4812 - - uid: 2904 - components: - - type: Transform - pos: 25.5,17.5 - parent: 4812 - - uid: 2905 + - uid: 2913 components: - type: Transform - pos: 24.5,17.5 + rot: 3.141592653589793 rad + pos: 27.5,18.5 parent: 4812 - - uid: 2906 + - uid: 2923 components: - type: Transform - pos: 22.5,17.5 + rot: 3.141592653589793 rad + pos: -49.5,-3.5 parent: 4812 - uid: 2942 components: @@ -71786,6 +77745,17 @@ entities: - type: Transform pos: 14.5,33.5 parent: 4812 + - uid: 3178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,22.5 + parent: 4812 + - uid: 3179 + components: + - type: Transform + pos: 21.5,19.5 + parent: 4812 - uid: 3189 components: - type: Transform @@ -71801,11 +77771,28 @@ entities: - type: Transform pos: 20.5,9.5 parent: 4812 + - uid: 3261 + components: + - type: Transform + pos: 28.5,11.5 + parent: 4812 - uid: 3263 components: - type: Transform pos: -19.5,31.5 parent: 4812 + - uid: 3273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-5.5 + parent: 4812 + - uid: 3275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-0.5 + parent: 4812 - uid: 3288 components: - type: Transform @@ -72451,6 +78438,17 @@ entities: - type: Transform pos: -13.5,-40.5 parent: 4812 + - uid: 3777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 4812 + - uid: 3779 + components: + - type: Transform + pos: 29.5,11.5 + parent: 4812 - uid: 3990 components: - type: Transform @@ -72511,6 +78509,17 @@ entities: - type: Transform pos: 27.5,5.5 parent: 4812 + - uid: 4052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,7.5 + parent: 4812 + - uid: 4065 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 4812 - uid: 4081 components: - type: Transform @@ -72541,41 +78550,6 @@ entities: - type: Transform pos: 16.5,-4.5 parent: 4812 - - uid: 4087 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 4812 - - uid: 4088 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 4812 - - uid: 4089 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 4812 - - uid: 4090 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 4812 - - uid: 4091 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 4812 - - uid: 4092 - components: - - type: Transform - pos: 26.5,-10.5 - parent: 4812 - - uid: 4093 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 4812 - uid: 4094 components: - type: Transform @@ -72646,6 +78620,88 @@ entities: - type: Transform pos: 16.5,-6.5 parent: 4812 + - uid: 4178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 4812 + - uid: 4190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 4812 + - uid: 4191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 4812 + - uid: 4318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,20.5 + parent: 4812 + - uid: 4323 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 4812 + - uid: 4333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 4812 + - uid: 4417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 4812 + - uid: 4436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 4812 + - uid: 4443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-4.5 + parent: 4812 + - uid: 4554 + components: + - type: Transform + pos: 27.5,11.5 + parent: 4812 + - uid: 4561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-2.5 + parent: 4812 + - uid: 4614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 4812 + - uid: 4621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,7.5 + parent: 4812 + - uid: 4624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-4.5 + parent: 4812 - uid: 4638 components: - type: Transform @@ -73449,6 +79505,18 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-32.5 parent: 4812 + - uid: 6290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,18.5 + parent: 4812 + - uid: 6362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 4812 - uid: 6546 components: - type: Transform @@ -73464,11 +79532,6 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 4812 - - uid: 6560 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 4812 - uid: 6561 components: - type: Transform @@ -73514,6 +79577,12 @@ entities: - type: Transform pos: -11.5,-13.5 parent: 4812 + - uid: 6604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-3.5 + parent: 4812 - uid: 6696 components: - type: Transform @@ -73634,6 +79703,18 @@ entities: - type: Transform pos: -23.5,-24.5 parent: 4812 + - uid: 7405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-5.5 + parent: 4812 + - uid: 7406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 4812 - uid: 7463 components: - type: Transform @@ -74214,11 +80295,6 @@ entities: - type: Transform pos: -31.5,6.5 parent: 4812 - - uid: 7942 - components: - - type: Transform - pos: -32.5,6.5 - parent: 4812 - uid: 7943 components: - type: Transform @@ -74269,12 +80345,28 @@ entities: - type: Transform pos: -35.5,8.5 parent: 4812 + - uid: 8267 + components: + - type: Transform + pos: -35.5,3.5 + parent: 4812 + - uid: 8358 + components: + - type: Transform + pos: -36.5,3.5 + parent: 4812 - uid: 8469 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-26.5 parent: 4812 + - uid: 8483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 4812 - uid: 8497 components: - type: Transform @@ -74310,11 +80402,6 @@ entities: - type: Transform pos: -35.5,0.5 parent: 4812 - - uid: 8639 - components: - - type: Transform - pos: -35.5,4.5 - parent: 4812 - uid: 8641 components: - type: Transform @@ -74540,31 +80627,6 @@ entities: - type: Transform pos: -46.5,-4.5 parent: 4812 - - uid: 8726 - components: - - type: Transform - pos: -46.5,-2.5 - parent: 4812 - - uid: 8727 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 4812 - - uid: 8728 - components: - - type: Transform - pos: -46.5,-0.5 - parent: 4812 - - uid: 8729 - components: - - type: Transform - pos: -45.5,-0.5 - parent: 4812 - - uid: 8730 - components: - - type: Transform - pos: -44.5,-0.5 - parent: 4812 - uid: 8731 components: - type: Transform @@ -74580,10 +80642,23 @@ entities: - type: Transform pos: -45.5,-4.5 parent: 4812 - - uid: 8751 + - uid: 8736 components: - type: Transform - pos: -46.5,-3.5 + rot: 3.141592653589793 rad + pos: -44.5,19.5 + parent: 4812 + - uid: 8737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,19.5 + parent: 4812 + - uid: 8740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,19.5 parent: 4812 - uid: 8789 components: @@ -74760,6 +80835,12 @@ entities: - type: Transform pos: -40.5,-32.5 parent: 4812 + - uid: 8851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-4.5 + parent: 4812 - uid: 8873 components: - type: Transform @@ -74785,350 +80866,421 @@ entities: - type: Transform pos: -37.5,-15.5 parent: 4812 - - uid: 9022 + - uid: 9135 components: - type: Transform - pos: -53.5,2.5 + rot: 3.141592653589793 rad + pos: -43.5,16.5 parent: 4812 - - uid: 9091 + - uid: 9136 components: - type: Transform - pos: -55.5,12.5 + rot: 3.141592653589793 rad + pos: -43.5,15.5 parent: 4812 - - uid: 9092 + - uid: 9137 components: - type: Transform - pos: -55.5,11.5 + rot: 3.141592653589793 rad + pos: -41.5,15.5 parent: 4812 - - uid: 9093 + - uid: 9162 components: - type: Transform - pos: -55.5,10.5 + rot: 3.141592653589793 rad + pos: -41.5,19.5 parent: 4812 - - uid: 9094 + - uid: 9163 components: - type: Transform - pos: -55.5,9.5 + rot: 3.141592653589793 rad + pos: -45.5,18.5 parent: 4812 - - uid: 9095 + - uid: 9164 components: - type: Transform - pos: -55.5,8.5 + rot: 3.141592653589793 rad + pos: -43.5,17.5 parent: 4812 - - uid: 9096 + - uid: 9165 components: - type: Transform - pos: -55.5,7.5 + rot: 3.141592653589793 rad + pos: -43.5,18.5 parent: 4812 - - uid: 9097 + - uid: 9177 components: - type: Transform - pos: -55.5,6.5 + rot: 3.141592653589793 rad + pos: -52.5,19.5 parent: 4812 - - uid: 9098 + - uid: 9178 components: - type: Transform - pos: -55.5,5.5 + rot: 3.141592653589793 rad + pos: -51.5,15.5 parent: 4812 - - uid: 9100 + - uid: 9179 components: - type: Transform - pos: -55.5,3.5 + rot: 3.141592653589793 rad + pos: -51.5,18.5 parent: 4812 - - uid: 9101 + - uid: 9180 components: - type: Transform - pos: -55.5,2.5 + rot: 3.141592653589793 rad + pos: -53.5,17.5 parent: 4812 - - uid: 9102 + - uid: 9181 components: - type: Transform - pos: -55.5,1.5 + rot: 3.141592653589793 rad + pos: -51.5,16.5 parent: 4812 - - uid: 9103 + - uid: 9189 components: - type: Transform - pos: -54.5,12.5 + rot: -1.5707963267948966 rad + pos: -61.5,3.5 parent: 4812 - - uid: 9104 + - uid: 9217 components: - type: Transform - pos: -54.5,11.5 + pos: 22.5,18.5 parent: 4812 - - uid: 9105 + - uid: 9248 components: - type: Transform - pos: -54.5,10.5 + rot: -1.5707963267948966 rad + pos: -46.5,1.5 parent: 4812 - - uid: 9106 + - uid: 9258 components: - type: Transform - pos: -54.5,9.5 + rot: 3.141592653589793 rad + pos: -53.5,15.5 parent: 4812 - - uid: 9107 + - uid: 9259 components: - type: Transform - pos: -54.5,8.5 + rot: 3.141592653589793 rad + pos: -47.5,19.5 parent: 4812 - - uid: 9108 + - uid: 9260 components: - type: Transform - pos: -54.5,7.5 + rot: 3.141592653589793 rad + pos: -48.5,19.5 parent: 4812 - - uid: 9109 + - uid: 9270 components: - type: Transform - pos: -54.5,6.5 + rot: 3.141592653589793 rad + pos: -45.5,16.5 parent: 4812 - - uid: 9110 + - uid: 9272 components: - type: Transform - pos: -54.5,5.5 + rot: 3.141592653589793 rad + pos: -49.5,19.5 parent: 4812 - - uid: 9111 + - uid: 9273 components: - type: Transform - pos: -54.5,4.5 + rot: 3.141592653589793 rad + pos: -45.5,17.5 parent: 4812 - - uid: 9112 + - uid: 9274 components: - type: Transform - pos: -54.5,3.5 + rot: 3.141592653589793 rad + pos: -47.5,18.5 parent: 4812 - - uid: 9113 + - uid: 9284 components: - type: Transform - pos: -54.5,2.5 + pos: -46.5,-5.5 parent: 4812 - - uid: 9114 + - uid: 9293 components: - type: Transform - pos: -54.5,1.5 + rot: 3.141592653589793 rad + pos: -45.5,15.5 parent: 4812 - - uid: 9139 + - uid: 9305 components: - type: Transform - pos: -50.5,0.5 + rot: -1.5707963267948966 rad + pos: -46.5,5.5 parent: 4812 - - uid: 9140 + - uid: 9308 components: - type: Transform - pos: -51.5,0.5 + rot: -1.5707963267948966 rad + pos: -46.5,6.5 parent: 4812 - - uid: 9141 + - uid: 9355 components: - type: Transform - pos: -52.5,0.5 + rot: 3.141592653589793 rad + pos: -51.5,20.5 parent: 4812 - - uid: 9142 + - uid: 9356 components: - type: Transform - pos: -53.5,0.5 + rot: 3.141592653589793 rad + pos: -52.5,20.5 parent: 4812 - - uid: 9143 + - uid: 9357 components: - type: Transform - pos: -54.5,0.5 + rot: 3.141592653589793 rad + pos: -51.5,19.5 parent: 4812 - - uid: 9144 + - uid: 9358 components: - type: Transform - pos: -55.5,0.5 + rot: 3.141592653589793 rad + pos: -47.5,17.5 parent: 4812 - - uid: 9239 + - uid: 9359 components: - type: Transform - pos: -51.5,6.5 + rot: 3.141592653589793 rad + pos: -50.5,20.5 parent: 4812 - - uid: 9240 + - uid: 9360 components: - type: Transform - pos: -50.5,4.5 + rot: 3.141592653589793 rad + pos: -50.5,19.5 parent: 4812 - - uid: 9242 + - uid: 9362 components: - type: Transform - pos: -50.5,2.5 + rot: 3.141592653589793 rad + pos: -47.5,16.5 parent: 4812 - - uid: 9243 + - uid: 9365 components: - type: Transform - pos: -51.5,2.5 + rot: 3.141592653589793 rad + pos: -49.5,16.5 parent: 4812 - - uid: 9244 + - uid: 9366 components: - type: Transform - pos: -52.5,6.5 + rot: 3.141592653589793 rad + pos: -53.5,19.5 parent: 4812 - - uid: 9245 + - uid: 9367 components: - type: Transform - pos: -52.5,2.5 + rot: 3.141592653589793 rad + pos: -49.5,18.5 parent: 4812 - - uid: 9248 + - uid: 9368 components: - type: Transform - pos: -53.5,6.5 + rot: 3.141592653589793 rad + pos: -42.5,20.5 parent: 4812 - - uid: 9256 + - uid: 9369 components: - type: Transform - pos: -52.5,4.5 + rot: 3.141592653589793 rad + pos: -41.5,20.5 parent: 4812 - - uid: 9258 + - uid: 9370 components: - type: Transform - pos: -53.5,4.5 + rot: 3.141592653589793 rad + pos: -44.5,20.5 parent: 4812 - - uid: 9260 + - uid: 9377 components: - type: Transform - pos: -51.5,4.5 + rot: 3.141592653589793 rad + pos: -47.5,15.5 parent: 4812 - - uid: 9265 + - uid: 9378 components: - type: Transform - pos: -50.5,6.5 + rot: 3.141592653589793 rad + pos: -49.5,15.5 parent: 4812 - - uid: 9266 + - uid: 9379 components: - type: Transform - pos: -50.5,8.5 + rot: 3.141592653589793 rad + pos: -46.5,20.5 parent: 4812 - - uid: 9267 + - uid: 9380 components: - type: Transform - pos: -51.5,8.5 + rot: 3.141592653589793 rad + pos: -45.5,20.5 parent: 4812 - - uid: 9268 + - uid: 9382 components: - type: Transform - pos: -52.5,8.5 + rot: 3.141592653589793 rad + pos: -49.5,17.5 parent: 4812 - - uid: 9269 + - uid: 9384 components: - type: Transform - pos: -53.5,8.5 + rot: -1.5707963267948966 rad + pos: -61.5,6.5 parent: 4812 - - uid: 9270 + - uid: 9385 components: - type: Transform - pos: -53.5,10.5 + rot: -1.5707963267948966 rad + pos: -59.5,-0.5 parent: 4812 - - uid: 9271 + - uid: 9386 components: - type: Transform - pos: -52.5,10.5 + rot: -1.5707963267948966 rad + pos: -59.5,5.5 parent: 4812 - - uid: 9272 + - uid: 9388 components: - type: Transform - pos: -51.5,10.5 + rot: -1.5707963267948966 rad + pos: -58.5,-0.5 parent: 4812 - - uid: 9273 + - uid: 9389 components: - type: Transform - pos: -50.5,10.5 + rot: -1.5707963267948966 rad + pos: -58.5,3.5 parent: 4812 - - uid: 9274 + - uid: 9411 components: - type: Transform - pos: -50.5,12.5 + pos: -46.5,-0.5 parent: 4812 - - uid: 9275 + - uid: 9416 components: - type: Transform - pos: -51.5,12.5 + pos: -61.5,9.5 parent: 4812 - - uid: 9276 + - uid: 9478 components: - type: Transform - pos: -52.5,12.5 + rot: 3.141592653589793 rad + pos: -41.5,18.5 parent: 4812 - - uid: 9277 + - uid: 9484 components: - type: Transform - pos: -53.5,12.5 + pos: -47.5,-0.5 parent: 4812 - - uid: 9284 + - uid: 9491 components: - type: Transform - pos: -46.5,-5.5 + rot: 3.141592653589793 rad + pos: -40.5,-16.5 parent: 4812 - - uid: 9285 + - uid: 9494 components: - type: Transform - pos: -48.5,-3.5 + rot: 3.141592653589793 rad + pos: -42.5,-16.5 parent: 4812 - - uid: 9286 + - uid: 9497 components: - type: Transform - pos: -48.5,-2.5 + rot: 3.141592653589793 rad + pos: -51.5,17.5 parent: 4812 - - uid: 9469 + - uid: 9506 components: - type: Transform - pos: -46.5,18.5 + pos: -47.5,-1.5 parent: 4812 - - uid: 9470 + - uid: 9517 components: - type: Transform - pos: -45.5,18.5 + pos: -47.5,-5.5 parent: 4812 - - uid: 9471 + - uid: 9518 components: - type: Transform - pos: -43.5,18.5 + pos: -48.5,-5.5 parent: 4812 - - uid: 9472 + - uid: 9519 components: - type: Transform - pos: -42.5,18.5 + pos: -49.5,-5.5 parent: 4812 - - uid: 9473 + - uid: 9521 components: - type: Transform - pos: -42.5,15.5 + pos: -50.5,-5.5 parent: 4812 - - uid: 9474 + - uid: 9527 components: - type: Transform - pos: -46.5,15.5 + rot: -1.5707963267948966 rad + pos: -47.5,7.5 parent: 4812 - - uid: 9511 + - uid: 9531 components: - type: Transform - pos: -41.5,13.5 + rot: 3.141592653589793 rad + pos: -39.5,-16.5 parent: 4812 - - uid: 9517 + - uid: 9544 components: - type: Transform - pos: -47.5,-5.5 + rot: 3.141592653589793 rad + pos: -41.5,16.5 parent: 4812 - - uid: 9518 + - uid: 9546 components: - type: Transform - pos: -48.5,-5.5 + rot: 3.141592653589793 rad + pos: -32.5,6.5 parent: 4812 - - uid: 9519 + - uid: 9550 components: - type: Transform - pos: -49.5,-5.5 + rot: 3.141592653589793 rad + pos: -43.5,19.5 parent: 4812 - - uid: 9520 + - uid: 9551 components: - type: Transform - pos: -49.5,-3.5 + rot: 3.141592653589793 rad + pos: -49.5,20.5 parent: 4812 - - uid: 9521 + - uid: 9552 components: - type: Transform - pos: -50.5,-5.5 + rot: 3.141592653589793 rad + pos: -48.5,20.5 parent: 4812 - - uid: 9522 + - uid: 9553 components: - type: Transform - pos: -50.5,-3.5 + rot: 3.141592653589793 rad + pos: -42.5,19.5 + parent: 4812 + - uid: 9556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,20.5 + parent: 4812 + - uid: 9558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-16.5 parent: 4812 - uid: 9579 components: @@ -75205,30 +81357,33 @@ entities: - type: Transform pos: -9.5,-56.5 parent: 4812 - - uid: 9824 + - uid: 9681 components: - type: Transform - pos: -37.5,-16.5 + rot: 3.141592653589793 rad + pos: -55.5,13.5 parent: 4812 - - uid: 9825 + - uid: 9707 components: - type: Transform - pos: -37.5,-17.5 + rot: 3.141592653589793 rad + pos: -41.5,-16.5 parent: 4812 - - uid: 9826 + - uid: 9712 components: - type: Transform - pos: -37.5,-18.5 + pos: 26.5,18.5 parent: 4812 - - uid: 9827 + - uid: 9824 components: - type: Transform - pos: -37.5,-19.5 + pos: -37.5,-16.5 parent: 4812 - - uid: 9828 + - uid: 9827 components: - type: Transform - pos: -38.5,-19.5 + rot: -1.5707963267948966 rad + pos: -61.5,5.5 parent: 4812 - uid: 9829 components: @@ -75260,16 +81415,6 @@ entities: - type: Transform pos: -46.5,-15.5 parent: 4812 - - uid: 9842 - components: - - type: Transform - pos: -55.5,-5.5 - parent: 4812 - - uid: 9844 - components: - - type: Transform - pos: -55.5,-6.5 - parent: 4812 - uid: 9845 components: - type: Transform @@ -75375,6 +81520,12 @@ entities: - type: Transform pos: -51.5,-6.5 parent: 4812 + - uid: 9870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 4812 - uid: 9873 components: - type: Transform @@ -75410,45 +81561,16 @@ entities: - type: Transform pos: -42.5,-9.5 parent: 4812 - - uid: 9901 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 4812 - - uid: 9902 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 4812 - - uid: 9903 - components: - - type: Transform - pos: -41.5,-19.5 - parent: 4812 - - uid: 9904 - components: - - type: Transform - pos: -42.5,-19.5 - parent: 4812 - - uid: 9905 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 4812 - - uid: 9906 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 4812 - - uid: 9907 + - uid: 9908 components: - type: Transform - pos: -43.5,-17.5 + pos: -43.5,-16.5 parent: 4812 - - uid: 9908 + - uid: 9934 components: - type: Transform - pos: -43.5,-16.5 + rot: 1.5707963267948966 rad + pos: -49.5,-2.5 parent: 4812 - uid: 9939 components: @@ -75540,6 +81662,12 @@ entities: - type: Transform pos: -46.5,-19.5 parent: 4812 + - uid: 10414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 4812 - uid: 10439 components: - type: Transform @@ -75555,11 +81683,41 @@ entities: - type: Transform pos: -50.5,-18.5 parent: 4812 + - uid: 10486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,3.5 + parent: 4812 - uid: 10635 components: - type: Transform pos: -47.5,-10.5 parent: 4812 + - uid: 10748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 4812 + - uid: 10754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 4812 + - uid: 10757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,3.5 + parent: 4812 + - uid: 10758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,3.5 + parent: 4812 - uid: 10964 components: - type: Transform @@ -75885,6 +82043,287 @@ entities: - type: Transform pos: 28.5,-37.5 parent: 4812 + - uid: 11717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,2.5 + parent: 4812 + - uid: 11722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,0.5 + parent: 4812 + - uid: 11889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-0.5 + parent: 4812 + - uid: 11890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-0.5 + parent: 4812 + - uid: 11905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-0.5 + parent: 4812 + - uid: 12113 + components: + - type: Transform + pos: 29.5,13.5 + parent: 4812 + - uid: 12130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,12.5 + parent: 4812 + - uid: 12582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,17.5 + parent: 4812 + - uid: 12590 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 4812 + - uid: 12628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 4812 + - uid: 12641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 4812 + - uid: 12649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 4812 + - uid: 12659 + components: + - type: Transform + pos: 26.5,11.5 + parent: 4812 + - uid: 12806 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 4812 + - uid: 12860 + components: + - type: Transform + pos: 63.5,-24.5 + parent: 4812 + - uid: 12872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 4812 + - uid: 12901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-0.5 + parent: 4812 + - uid: 12902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 4812 + - uid: 12903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-4.5 + parent: 4812 + - uid: 12927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,41.5 + parent: 4812 + - uid: 12966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 4812 + - uid: 12967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-0.5 + parent: 4812 + - uid: 12968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 4812 + - uid: 12993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 4812 + - uid: 13020 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 4812 + - uid: 13056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 4812 + - uid: 13057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 4812 + - uid: 13084 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 4812 + - uid: 13088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 4812 + - uid: 13110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-0.5 + parent: 4812 + - uid: 13116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-4.5 + parent: 4812 + - uid: 13137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 4812 + - uid: 13167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-3.5 + parent: 4812 + - uid: 13217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,6.5 + parent: 4812 + - uid: 13280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 4812 + - uid: 13317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 4812 + - uid: 13355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,8.5 + parent: 4812 + - uid: 13356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,7.5 + parent: 4812 + - uid: 13435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,7.5 + parent: 4812 + - uid: 13437 + components: + - type: Transform + pos: -54.5,7.5 + parent: 4812 + - uid: 13477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-5.5 + parent: 4812 + - uid: 13484 + components: + - type: Transform + pos: -61.5,11.5 + parent: 4812 + - uid: 13503 + components: + - type: Transform + pos: -61.5,12.5 + parent: 4812 + - uid: 13540 + components: + - type: Transform + pos: -61.5,8.5 + parent: 4812 + - uid: 13545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,6.5 + parent: 4812 + - uid: 13547 + components: + - type: Transform + pos: -57.5,8.5 + parent: 4812 + - uid: 13552 + components: + - type: Transform + pos: -57.5,12.5 + parent: 4812 + - uid: 13556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 4812 + - uid: 13558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 4812 - proto: WallSolid entities: - uid: 1 @@ -77212,11 +83651,6 @@ entities: - type: Transform pos: 18.5,44.5 parent: 4812 - - uid: 3475 - components: - - type: Transform - pos: 16.5,41.5 - parent: 4812 - uid: 3476 components: - type: Transform @@ -77447,16 +83881,6 @@ entities: - type: Transform pos: 13.5,0.5 parent: 4812 - - uid: 4118 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 4812 - - uid: 4119 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 4812 - uid: 4120 components: - type: Transform @@ -78884,6 +85308,61 @@ entities: - type: Transform pos: -13.5,12.5 parent: 4812 + - uid: 11901 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 4812 + - uid: 12778 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 4812 + - uid: 13130 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 4812 + - uid: 13131 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 4812 + - uid: 13338 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 4812 + - uid: 13339 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 4812 + - uid: 13340 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 4812 + - uid: 13341 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 4812 + - uid: 13342 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 4812 + - uid: 13343 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 4812 + - uid: 13344 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 4812 - proto: WallSolidRust entities: - uid: 7302 @@ -79187,45 +85666,51 @@ entities: - 0 - proto: WarningCO2 entities: - - uid: 9280 + - uid: 9334 components: - type: Transform - pos: -50.5,6.5 + rot: -1.5707963267948966 rad + pos: -47.5,15.5 parent: 4812 - proto: WarningN2 entities: - - uid: 9278 + - uid: 9234 components: - type: Transform - pos: -50.5,2.5 + rot: -1.5707963267948966 rad + pos: -43.5,15.5 parent: 4812 - proto: WarningO2 entities: - - uid: 9279 + - uid: 9265 components: - type: Transform - pos: -50.5,4.5 + rot: -1.5707963267948966 rad + pos: -45.5,15.5 parent: 4812 - proto: WarningPlasma entities: - - uid: 9282 + - uid: 9233 components: - type: Transform - pos: -50.5,10.5 + rot: -1.5707963267948966 rad + pos: -51.5,15.5 parent: 4812 - proto: WarningTritium entities: - - uid: 9283 + - uid: 9246 components: - type: Transform - pos: -50.5,12.5 + rot: -1.5707963267948966 rad + pos: -53.5,15.5 parent: 4812 - proto: WarningWaste entities: - - uid: 9281 + - uid: 9349 components: - type: Transform - pos: -50.5,8.5 + rot: -1.5707963267948966 rad + pos: -49.5,15.5 parent: 4812 - proto: WarpPoint entities: @@ -79258,6 +85743,11 @@ entities: - type: Transform pos: -38.5,-5.5 parent: 4812 + - uid: 13496 + components: + - type: Transform + pos: -45.5,1.5 + parent: 4812 - proto: WaterTankFull entities: - uid: 1484 @@ -79324,10 +85814,15 @@ entities: parent: 4812 - proto: WaterVaporCanister entities: - - uid: 9455 + - uid: 9134 components: - type: Transform - pos: -53.5,7.5 + pos: -48.5,18.5 + parent: 4812 + - uid: 13613 + components: + - type: Transform + pos: -52.5,0.5 parent: 4812 - proto: WeaponCapacitorRecharger entities: @@ -79447,6 +85942,13 @@ entities: parent: 4812 - type: BallisticAmmoProvider unspawnedCount: 4 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 13165 + components: + - type: Transform + pos: -21.5,23.5 + parent: 4812 - proto: WeaponTurretSyndicateBroken entities: - uid: 12268 @@ -79490,6 +85992,11 @@ entities: - type: Transform pos: -35.5,-7.5 parent: 4812 + - uid: 13653 + components: + - type: Transform + pos: -45.43979,3.578762 + parent: 4812 - proto: WelderIndustrialAdvanced entities: - uid: 3453 @@ -79516,11 +86023,6 @@ entities: parent: 4812 - proto: WeldingFuelTankFull entities: - - uid: 3261 - components: - - type: Transform - pos: 26.5,13.5 - parent: 4812 - uid: 6214 components: - type: Transform @@ -79536,11 +86038,6 @@ entities: - type: Transform pos: -24.5,-32.5 parent: 4812 - - uid: 9682 - components: - - type: Transform - pos: -36.5,5.5 - parent: 4812 - uid: 10701 components: - type: Transform @@ -79556,6 +86053,11 @@ entities: - type: Transform pos: 8.5,12.5 parent: 4812 + - uid: 13370 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 - proto: WheatBushel entities: - uid: 11294 @@ -79696,10 +86198,11 @@ entities: rot: 3.141592653589793 rad pos: 15.5,16.5 parent: 4812 - - uid: 4433 + - uid: 9714 components: - type: Transform - pos: 28.5,-6.5 + rot: 3.141592653589793 rad + pos: 28.5,13.5 parent: 4812 - proto: WindoorSecureChemistryLocked entities: @@ -79774,21 +86277,25 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-24.5 parent: 4812 - - uid: 8810 + - uid: 9576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 + pos: -9.5,-24.5 parent: 4812 - - uid: 8832 + - uid: 12664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 + pos: -10.5,-24.5 parent: 4812 - proto: WindoorSecureSalvageLocked entities: - - uid: 12248 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 + - uid: 13253 components: - type: Transform rot: 1.5707963267948966 rad @@ -80077,6 +86584,39 @@ entities: rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 4812 + - uid: 3272 + components: + - type: Transform + pos: 51.5,0.5 + parent: 4812 + - uid: 4324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-5.5 + parent: 4812 + - uid: 4329 + components: + - type: Transform + pos: 52.5,0.5 + parent: 4812 + - uid: 4393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-5.5 + parent: 4812 + - uid: 4415 + components: + - type: Transform + pos: 53.5,0.5 + parent: 4812 + - uid: 4416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-5.5 + parent: 4812 - uid: 4675 components: - type: Transform @@ -80238,6 +86778,28 @@ entities: - type: Transform pos: -18.5,16.5 parent: 4812 + - uid: 9667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,0.5 + parent: 4812 + - uid: 9670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,0.5 + parent: 4812 + - uid: 9671 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 4812 + - uid: 9672 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 4812 - uid: 9880 components: - type: Transform @@ -80296,6 +86858,17 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,4.5 parent: 4812 + - uid: 12576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,0.5 + parent: 4812 + - uid: 12629 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 4812 - uid: 12638 components: - type: Transform @@ -80314,6 +86887,18 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,43.5 parent: 4812 + - uid: 13608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,0.5 + parent: 4812 + - uid: 13609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 4812 - proto: WoodDoor entities: - uid: 6795 diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml index f07391bd4f61..031c831f556d 100644 --- a/Resources/Prototypes/Maps/omega.yml +++ b/Resources/Prototypes/Maps/omega.yml @@ -36,6 +36,7 @@ ChiefMedicalOfficer: [ 1, 1 ] Chemist: [ 2, 2 ] MedicalDoctor: [ 3, 3 ] + Paramedic: [ 1, 1 ] MedicalIntern: [ 2, 2 ] #science ResearchDirector: [ 1, 1 ] From b81c7a478e1e4bf46a696d6d0d322690135cd712 Mon Sep 17 00:00:00 2001 From: JIPDawg <51352440+JIPDawg@users.noreply.github.com> Date: Thu, 19 Sep 2024 23:09:00 -0500 Subject: [PATCH 075/161] Make small clamp use 2% battery instead of recharging 2% battery. (#32320) Make small clamp user 2% battery instead of recharge 2% battery. Co-authored-by: JIPDawg --- .../Entities/Objects/Specific/Mech/mecha_equipment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml index c489dec1c567..a97ca0f017b4 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mecha_equipment.yml @@ -39,7 +39,7 @@ - type: MechGrabber maxContents: 4 grabDelay: 3 - grabEnergyDelta: 20 + grabEnergyDelta: -20 - type: Tag tags: - SmallMech From 99101f2e2cb5b5d8db789f74156671fa7cba4923 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Sep 2024 04:10:08 +0000 Subject: [PATCH 076/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8dabef5af493..b0cdbe71374a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Dropping an item while in a container now places the item in the container. - type: Fix - id: 6908 - time: '2024-07-12T09:24:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29900 - author: coffeeware, slarticodefast changes: - message: Fixed items thrown very fast not being in the air. In particular this @@ -3922,3 +3915,11 @@ id: 7407 time: '2024-09-19T23:27:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32181 +- author: JIPDawg + changes: + - message: Small Hydraulic clamp now correctly consumes 2% battery instead of recharging + the battery by 2% + type: Fix + id: 7408 + time: '2024-09-20T04:09:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32320 From 00002fa07fb3a427e3cd54451846517bbbe54580 Mon Sep 17 00:00:00 2001 From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Fri, 20 Sep 2024 15:37:06 +0400 Subject: [PATCH 077/161] fix issues with proximity beeper (#32322) implement --- Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs | 2 +- .../Prototypes/Entities/Objects/Specific/Research/anomaly.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs index 9830e165e56f..bee75e948d88 100644 --- a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs +++ b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs @@ -37,6 +37,6 @@ private void OnProximityTargetUpdate(EntityUid owner, ProximityBeeperComponent p private void OnNewProximityTarget(EntityUid owner, ProximityBeeperComponent proxBeeper, ref NewProximityTargetEvent args) { - _beeper.SetMute(owner, args.Target != null); + _beeper.SetMute(owner, args.Target == null); } } diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index ff53218e2225..516bd0f6bdaf 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -52,6 +52,7 @@ components: - Anomaly - type: Beeper + isMuted: true minBeepInterval: 0.15 maxBeepInterval: 1.00 beepSound: From a9b5e39fb01dd474fc723ad38aa23302197802de Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Fri, 20 Sep 2024 12:47:29 +0100 Subject: [PATCH 078/161] Disable resizing of lobby character editor (#32313) No resizing character editor Co-authored-by: Eoin Mcloughlin --- Content.Client/Lobby/UI/LobbyGui.xaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Lobby/UI/LobbyGui.xaml b/Content.Client/Lobby/UI/LobbyGui.xaml index c3bd0da642a6..4a158fd811f1 100644 --- a/Content.Client/Lobby/UI/LobbyGui.xaml +++ b/Content.Client/Lobby/UI/LobbyGui.xaml @@ -14,7 +14,7 @@ Stretch="KeepAspectCovered" /> - + From 1567af6f07a682796f405f07511083578db63458 Mon Sep 17 00:00:00 2001 From: sativaleanne <49132913+sativaleanne@users.noreply.github.com> Date: Fri, 20 Sep 2024 04:49:31 -0700 Subject: [PATCH 079/161] Rolebanlist command UI (#30827) * rolebanlist command opens ui * removed commented out section --- .../Commands/RoleBanListCommand.cs | 71 +++++++------------ 1 file changed, 25 insertions(+), 46 deletions(-) diff --git a/Content.Server/Administration/Commands/RoleBanListCommand.cs b/Content.Server/Administration/Commands/RoleBanListCommand.cs index a59047233904..30bb3073add9 100644 --- a/Content.Server/Administration/Commands/RoleBanListCommand.cs +++ b/Content.Server/Administration/Commands/RoleBanListCommand.cs @@ -1,5 +1,7 @@ using System.Linq; using System.Text; +using Content.Server.Administration.BanList; +using Content.Server.EUI; using Content.Server.Database; using Content.Shared.Administration; using Robust.Server.Player; @@ -10,6 +12,12 @@ namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Ban)] public sealed class RoleBanListCommand : IConsoleCommand { + [Dependency] private readonly IServerDbManager _dbManager = default!; + + [Dependency] private readonly EuiManager _eui = default!; + + [Dependency] private readonly IPlayerLocator _locator = default!; + public string Command => "rolebanlist"; public string Description => Loc.GetString("cmd-rolebanlist-desc"); public string Help => Loc.GetString("cmd-rolebanlist-help"); @@ -29,66 +37,37 @@ public async void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var dbMan = IoCManager.Resolve(); - - var target = args[0]; + var data = await _locator.LookupIdByNameOrIdAsync(args[0]); - var locator = IoCManager.Resolve(); - var located = await locator.LookupIdByNameOrIdAsync(target); - if (located == null) + if (data == null) { shell.WriteError("Unable to find a player with that name or id."); return; } - var targetUid = located.UserId; - var targetHWid = located.LastHWId; - var targetAddress = located.LastAddress; - - var bans = await dbMan.GetServerRoleBansAsync(targetAddress, targetUid, targetHWid, includeUnbanned); - - if (bans.Count == 0) + if (shell.Player is not { } player) { - shell.WriteLine("That user has no bans in their record."); - return; - } - var bansString = new StringBuilder("Bans in record:\n"); + var bans = await _dbManager.GetServerRoleBansAsync(data.LastAddress, data.UserId, data.LastHWId, includeUnbanned); - var first = true; - foreach (var ban in bans) - { - if (!first) - bansString.Append("\n\n"); - else - first = false; - - bansString - .Append("Ban ID: ") - .Append(ban.Id) - .Append('\n') - .Append("Role: ") - .Append(ban.Role) - .Append('\n') - .Append("Banned on ") - .Append(ban.BanTime); - - if (ban.ExpirationTime != null) + if (bans.Count == 0) { - bansString - .Append(" until ") - .Append(ban.ExpirationTime.Value); + shell.WriteLine("That user has no bans in their record."); + return; } - bansString - .Append('\n'); - - bansString - .Append("Reason: ") - .Append(ban.Reason); + foreach (var ban in bans) + { + var msg = $"ID: {ban.Id}: Role: {ban.Role} Reason: {ban.Reason}"; + shell.WriteLine(msg); + } + return; } - shell.WriteLine(bansString.ToString()); + var ui = new BanListEui(); + _eui.OpenEui(ui, player); + await ui.ChangeBanListPlayer(data.UserId); + } public CompletionResult GetCompletion(IConsoleShell shell, string[] args) From 6d5ac1e9b67e8b6138e044df4f57a7cee84b269f Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Fri, 20 Sep 2024 12:58:26 +0100 Subject: [PATCH 080/161] Fix disposal units flushing too soon after power-on (#32314) * Don't flush disposals immediately on power-on * Update Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs --------- Co-authored-by: Eoin Mcloughlin Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../Disposal/Unit/EntitySystems/DisposalUnitSystem.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index f1d182fc6689..2cf88efc6e70 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -320,9 +320,10 @@ private void OnPowerChange(EntityUid uid, SharedDisposalUnitComponent component, return; } - if (component.Engaged && !TryFlush(uid, component)) + if (component.Engaged) { - QueueAutomaticEngage(uid, component); + // Run ManualEngage to recalculate a new flush time + ManualEngage(uid, component); } } From e964e9c98eece37fb7bd8f9154ec4e57a2be7943 Mon Sep 17 00:00:00 2001 From: cohanna <160202097+cohanna@users.noreply.github.com> Date: Fri, 20 Sep 2024 08:42:57 -0600 Subject: [PATCH 081/161] Psychologist's Stamp (#31881) * added sprite and began implementation * fixed sprite name, fixed meta files * silly whitespace * added paper-stamp file * figured out where to add the componet, added 'credits' * spelling is hard * hmm * GAHHHHH * how did i do this again --- Resources/Locale/en-US/paper/stamp-component.ftl | 1 + .../Entities/Objects/Misc/rubber_stamp.yml | 14 ++++++++++++++ .../Roles/Jobs/Wildcards/psychologist.yml | 6 +++--- .../Objects/Misc/bureaucracy.rsi/meta.json | 5 ++++- .../bureaucracy.rsi/paper_stamp-psychologist.png | Bin 0 -> 188 bytes .../Textures/Objects/Misc/stamps.rsi/meta.json | 5 ++++- .../Misc/stamps.rsi/stamp-psychologist.png | Bin 0 -> 308 bytes 7 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-psychologist.png create mode 100644 Resources/Textures/Objects/Misc/stamps.rsi/stamp-psychologist.png diff --git a/Resources/Locale/en-US/paper/stamp-component.ftl b/Resources/Locale/en-US/paper/stamp-component.ftl index 36be70d61fbc..a5910ed086f4 100644 --- a/Resources/Locale/en-US/paper/stamp-component.ftl +++ b/Resources/Locale/en-US/paper/stamp-component.ftl @@ -18,3 +18,4 @@ stamp-component-stamped-name-trader = Trader stamp-component-stamped-name-syndicate = Syndicate stamp-component-stamped-name-ce = Chief Engineer stamp-component-stamped-name-greytide = Greytide +stamp-component-stamped-name-psychologist = Psychologist \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml b/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml index 66ff215f30f4..8707e6fca899 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml @@ -284,3 +284,17 @@ stampState: "paper_stamp-greytide" - type: Sprite state: stamp-greytide + +- type: entity + name: psychologist's rubber stamp + parent: RubberStampBase + id: RubberStampPsychologist + suffix: DO NOT MAP + description: A rubber stamp for stamping important documents. Prescribe those treatments! + components: + - type: Stamp + stampedName: stamp-component-stamped-name-psychologist + stampedColor: "#5B97BC" + stampState: "paper_stamp-psychologist" + - type: Sprite + state: stamp-psychologist \ No newline at end of file diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml index 57b8e3984228..74e45a605b28 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml @@ -18,6 +18,6 @@ shoes: ClothingShoesLeather id: PsychologistPDA ears: ClothingHeadsetMedical - #storage: - #back: - #- Stuff + storage: + back: + - RubberStampPsychologist diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index 17ac88cefd60..9005034d3fd1 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. paper_stamp-greytide by ubaser", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. paper_stamp-greytide by ubaser. paper_stamp-psychologist by clinux", "size": { "x": 32, "y": 32 @@ -227,6 +227,9 @@ }, { "name": "paper_stamp-greytide" + }, + { + "name": "paper_stamp-psychologist" } ] } diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-psychologist.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-psychologist.png new file mode 100644 index 0000000000000000000000000000000000000000..401e3e15c72a66f9bc5e1ba1c30a05288dfa10bb GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=CqbAk63)r1AkM80hKZ7!u*0EWx@sL8PZC(16R0(bVC~7u){} zeI_vqPf?R@&Vt&~OG%S3j3^P6!lvI6;>1s;*b3=CqbAk63)r1AkMc+%6wF(ktM?G$@HCqB?G*4)Wb#DJt=>@sG zetLI!RG!O3X2(Z196Dz8r&65xqPWSs>)vxuKAh%%?tsL-YL3@FWemq8UhP^pD?h16 z#7VFF{nwVL_lun`@!z;uw=3mS-wKVcPwWD=j5+N=!c4(j+kl>8@O1TaS?83{1OUZz BctZdH literal 0 HcmV?d00001 From c4d12df04c4ba5c0f92a1f415388e6d936462be4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Sep 2024 14:44:03 +0000 Subject: [PATCH 082/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b0cdbe71374a..34d296423118 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: coffeeware, slarticodefast - changes: - - message: Fixed items thrown very fast not being in the air. In particular this - fixes the pneumatic cannon. - type: Fix - - message: Buffed base hand throwing speed by 10% to be more similar to before the - recent throwing changes. - type: Tweak - id: 6909 - time: '2024-07-12T10:32:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29935 - author: themias changes: - message: Timers can now be deconstructed @@ -3923,3 +3912,11 @@ id: 7408 time: '2024-09-20T04:09:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32320 +- author: clinux + changes: + - message: Added the psychologist's stamp. Prescribe treatments for your less mentally + sane crew! + type: Add + id: 7409 + time: '2024-09-20T14:42:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31881 From 2955dd50095f4564eab05fe640431775d31f5dca Mon Sep 17 00:00:00 2001 From: Golden Can Date: Fri, 20 Sep 2024 20:24:06 +0200 Subject: [PATCH 083/161] Security Clown Mask is now security restricted. (#32335) made security clown masks security contraband. --- Resources/Prototypes/Entities/Clothing/Masks/masks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 90af169572a2..0dd16dceb147 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -231,7 +231,7 @@ node: mask - type: entity - parent: ClothingMaskClown + parent: [ClothingMaskClown, BaseRestrictedContraband] id: ClothingMaskClownSecurity name: security clown wig and mask description: A debatably oxymoronic but protective mask and wig. From 3e92eb1910f9bbb2455e10e4a620601e0a4d1b91 Mon Sep 17 00:00:00 2001 From: saga3152 <133799418+saga3152@users.noreply.github.com> Date: Sat, 21 Sep 2024 00:27:41 +0200 Subject: [PATCH 084/161] Soda water and Vodka recipes (#32252) * SodaWater and Vodka recipes * Changed crystals recipe in fun.yml * plasma is now a catalyst to create crystals * Revert "plasma is now a catalyst to create crystals" This reverts commit 1002d9927a3597f7a02611071ef3f706cd056a41. * Revert "Changed crystals recipe in fun.yml" This reverts commit 30b6b602228ec1b11a46e390c6a5868494e2b61f. * Stir to make Vodka * Shake to make soda water * fix --- .../Prototypes/Recipes/Reactions/drinks.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 67a5b54f81aa..9bbd07848a82 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -941,6 +941,18 @@ products: SnowWhite: 3 +- type: reaction + id: SodaWater + requiredMixerCategories: + - Shake + reactants: + Water: + amount: 5 + CarbonDioxide: + amount: 1 + products: + SodaWater: 6 + - type: reaction id: SoyLatte reactants: @@ -1146,6 +1158,18 @@ products: TheMartinez: 6 +- type: reaction + id: Vodka + requiredMixerCategories: + - Stir + reactants: + Ethanol: + amount: 1 + Water: + amount: 1 + products: + Vodka: 2 + - type: reaction id: WaterBreakdown source: true From c5d62ce751070365a312b497679c1d93fca335a5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 20 Sep 2024 22:28:49 +0000 Subject: [PATCH 085/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 34d296423118..949ddb532cfd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Timers can now be deconstructed - type: Fix - id: 6910 - time: '2024-07-12T11:38:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29917 - author: jonathanargo changes: - message: Hard hat icon sprites are now centered correctly. @@ -3920,3 +3913,10 @@ id: 7409 time: '2024-09-20T14:42:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31881 +- author: saga3152 + changes: + - message: You can now make vodka and soda water. + type: Add + id: 7410 + time: '2024-09-20T22:27:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32252 From 24ed1f71f66e47c85c0c6721e1448813123bf0c8 Mon Sep 17 00:00:00 2001 From: goet <6637097+goet@users.noreply.github.com> Date: Sat, 21 Sep 2024 07:54:48 +0200 Subject: [PATCH 086/161] Fix medical PDA/health analyzer long range intel bug (#31879) * hide spriteview from health analyzer while inactive * add out of range indicator if analyzer becomes inactive * hide out of range icon if there is no patient data --- .../HealthAnalyzer/UI/HealthAnalyzerWindow.xaml | 1 + .../UI/HealthAnalyzerWindow.xaml.cs | 2 ++ .../Misc/health_analyzer_out_of_range.png | Bin 0 -> 224 bytes 3 files changed, 3 insertions(+) create mode 100644 Resources/Textures/Interface/Misc/health_analyzer_out_of_range.png diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml index 97968c4b990b..19d00a0bbf8b 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml @@ -21,6 +21,7 @@ Orientation="Vertical"> + [DataField] - public float Range = SharedInteractionSystem.InteractionRange / 1.4f; + public float Range = SharedInteractionSystem.InteractionRange; /// /// True if the entity is buckled, false otherwise. @@ -31,7 +31,7 @@ public sealed partial class BuckleComponent : Component /// /// Whether or not collisions should be possible with the entity we are strapped to /// - [DataField] + [DataField, AutoNetworkedField] public bool DontCollide; /// @@ -50,13 +50,13 @@ public sealed partial class BuckleComponent : Component /// /// The time that this entity buckled at. /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField, AutoNetworkedField] public TimeSpan? BuckleTime; /// /// The strap that this component is buckled to. /// - [DataField] + [DataField, AutoNetworkedField] public EntityUid? BuckledTo; /// @@ -72,14 +72,6 @@ public sealed partial class BuckleComponent : Component [ViewVariables] public int? OriginalDrawDepth; } -[Serializable, NetSerializable] -public sealed class BuckleState(NetEntity? buckledTo, bool dontCollide, TimeSpan? buckleTime) : ComponentState -{ - public readonly NetEntity? BuckledTo = buckledTo; - public readonly bool DontCollide = dontCollide; - public readonly TimeSpan? BuckleTime = buckleTime; -} - public sealed partial class UnbuckleAlertEvent : BaseAlertEvent; /// diff --git a/Content.Shared/Buckle/Components/StrapComponent.cs b/Content.Shared/Buckle/Components/StrapComponent.cs index 101c388a8bfc..ad5031356e5e 100644 --- a/Content.Shared/Buckle/Components/StrapComponent.cs +++ b/Content.Shared/Buckle/Components/StrapComponent.cs @@ -15,7 +15,7 @@ public sealed partial class StrapComponent : Component /// /// The entities that are currently buckled to this strap. /// - [ViewVariables] + [DataField, AutoNetworkedField] public HashSet BuckledEntities = new(); /// @@ -61,12 +61,6 @@ public sealed partial class StrapComponent : Component [DataField, AutoNetworkedField] public bool Enabled = true; - /// - /// You can specify the offset the entity will have after unbuckling. - /// - [DataField] - public Vector2 UnbuckleOffset = Vector2.Zero; - /// /// The sound to be played when a mob is buckled /// diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 8b35f677f185..1745730647d0 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -58,13 +58,6 @@ private void InitializeBuckle() { BuckleDoafterEarly((uid, comp), ev.Event, ev); }); - - SubscribeLocalEvent(OnGetState); - } - - private void OnGetState(Entity ent, ref ComponentGetState args) - { - args.State = new BuckleState(GetNetEntity(ent.Comp.BuckledTo), ent.Comp.DontCollide, ent.Comp.BuckleTime); } private void OnBuckleComponentShutdown(Entity ent, ref ComponentShutdown args) @@ -196,11 +189,15 @@ public bool IsBuckled(EntityUid uid, BuckleComponent? component = null) protected void SetBuckledTo(Entity buckle, Entity? strap) { if (TryComp(buckle.Comp.BuckledTo, out StrapComponent? old)) + { old.BuckledEntities.Remove(buckle); + Dirty(buckle.Comp.BuckledTo.Value, old); + } if (strap is {} strapEnt && Resolve(strapEnt.Owner, ref strapEnt.Comp)) { strapEnt.Comp.BuckledEntities.Add(buckle); + Dirty(strapEnt); _alerts.ShowAlert(buckle, strapEnt.Comp.BuckledAlertType); } else @@ -463,13 +460,17 @@ private void Unbuckle(Entity buckle, Entity str if (buckleXform.ParentUid == strap.Owner && !Terminating(buckleXform.ParentUid)) { - _container.AttachParentToContainerOrGrid((buckle, buckleXform)); + _transform.PlaceNextTo((buckle, buckleXform), (strap.Owner, oldBuckledXform)); + buckleXform.ActivelyLerping = false; var oldBuckledToWorldRot = _transform.GetWorldRotation(strap); - _transform.SetWorldRotation(buckleXform, oldBuckledToWorldRot); + _transform.SetWorldRotationNoLerp((buckle, buckleXform), oldBuckledToWorldRot); - if (strap.Comp.UnbuckleOffset != Vector2.Zero) - buckleXform.Coordinates = oldBuckledXform.Coordinates.Offset(strap.Comp.UnbuckleOffset); + // TODO: This is doing 4 moveevents this is why I left the warning in, if you're going to remove it make it only do 1 moveevent. + if (strap.Comp.BuckleOffset != Vector2.Zero) + { + buckleXform.Coordinates = oldBuckledXform.Coordinates.Offset(strap.Comp.BuckleOffset); + } } _rotationVisuals.ResetHorizontalAngle(buckle.Owner); diff --git a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml index 965c8261cceb..9f3fbd7c455b 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml @@ -54,7 +54,6 @@ position: Down rotation: -90 buckleOffset: "0,0.15" - unbuckleOffset: "0,0.15" buckleOnInteractHand: False - type: Appearance - type: GenericVisualizer From 8ed779bc02f2e1cab94bfb0eaad8521661f765fa Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 08:22:48 +0000 Subject: [PATCH 100/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 33 ++++++++++++++++--------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 476bbb05c85f..e4212eb9c235 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,20 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Added diamonds ore! - type: Add - - message: Diamonds can now be sold at a bargain price. - type: Add - id: 6915 - time: '2024-07-13T12:15:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25750 -- author: coffeeware - changes: - - message: Lizards will no longer lose their snouts when equipping head bandanas - type: Fix - id: 6916 - time: '2024-07-14T02:59:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29979 - author: SlamBamActionman changes: - message: RGBee and Rainbow Carp plushies now cycle color when held/worn. @@ -3922,3 +3906,20 @@ id: 7414 time: '2024-09-21T23:21:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32232 +- author: AsnDen + changes: + - message: Now AI is able to use news manager console that is far away from its + core. + type: Fix + id: 7415 + time: '2024-09-22T08:20:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32334 +- author: metalgearsloth + changes: + - message: Fix unbuckling mispredicting. + type: Fix + - message: Aligned buckle range with interaction range. + type: Tweak + id: 7416 + time: '2024-09-22T08:21:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32370 From 1aea1ae76fe67e08e0e2e37e253bccd5178d657f Mon Sep 17 00:00:00 2001 From: ravage <142820619+ravage123321@users.noreply.github.com> Date: Sun, 22 Sep 2024 13:33:08 +0300 Subject: [PATCH 101/161] Adding a holy watermelon helmet (#32272) * lolkekhatholy alalalla * animationcreate blelebleblbeleb --- .../Entities/Clothing/Head/hats.yml | 15 +++++ .../Objects/Consumable/Food/produce.yml | 4 ++ .../Hats/holyhatmelon.rsi/equipped-HELMET.png | Bin 0 -> 593 bytes .../Head/Hats/holyhatmelon.rsi/icon.png | Bin 0 -> 334 bytes .../Hats/holyhatmelon.rsi/inhand-left.png | Bin 0 -> 491 bytes .../Hats/holyhatmelon.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Head/Hats/holyhatmelon.rsi/meta.json | 52 ++++++++++++++++++ 7 files changed, 71 insertions(+) create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 123896240d9d..97145a0f00d8 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -791,6 +791,21 @@ coefficients: Blunt: 0.95 +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHolyWatermelon + name: watermelon halo + description: Holy moly. + components: + - type: Sprite + sprite: Clothing/Head/Hats/holyhatmelon.rsi + - type: Clothing + sprite: Clothing/Head/Hats/holyhatmelon.rsi + - type: Armor + modifiers: + coefficients: + Caustic: 0.95 + - type: entity parent: [ClothingHeadBase, BaseSyndicateContraband] id: ClothingHeadHatSyndie diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index fa88f30074ea..342f2723b8d8 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -2088,6 +2088,10 @@ - type: SliceableFood count: 5 slice: FoodHolymelonSlice + - type: Butcherable + butcheringType: Knife + spawned: + - id: ClothingHeadHatHolyWatermelon - type: Tag tags: - Fruit diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..bfd047d7cf604c487a4ef9231659042d2f84e4ba GIT binary patch literal 593 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSjKx9jP7LeL$-HD>VB+?4aSW-L z^Y-q>tl&Tywh#4P&8N>M>`oEX5pn6Mo;K-jdcm7Z3%f0Tu<%_{b)Me0uZdq^SBVCn zsVkSP$n=I4&hH;xxxFxRr9iv1U(ueE@6F{n;(uCPcv-Vul-F2>@A1vapI@C%m2_R+ zQ519RaG7BIKD*qnzyB^h@Bh~EuKW|dgyO$TetmqYQD;|mw=3Q}U0VG2)n{Rmt}fX( zKL>x0|IPG7@4@Zk{1@-u?EUs*$u3*%dHZ`VK0LT*@&E2WSN>k#$FP%o$1C2b<>`Xi z$E&aY-TZ=AY0>^KKUe-Ee^We-xJ9|9$nhYh^a?_C@{zx$B?fJEkK2DNoM%-~I3No8k19 ziI+`&vBRwgG9oH_@38OqZ>Fat_RCJMye`Z5E%Otdgj>%qD~o;S{Cx-P1;!$AgSVew z3U>c)seOm)-+KL&JM-N01qA;tg<2x`UqfNm&dHZm&@KALC^c>VtlEaQr?=TR@F&P0 luxqGon7Xtc**OhU%Xt^ncP)N#{K;;RxTmY1%Q~loCIDE46V?C# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6161c05f12086787d1e3c5c296aeceddae630eed GIT binary patch literal 334 zcmV-U0kQsxP)Px$2uVaiR9J=W(lJZJKor37e}Y4n%V1RyL1-r_RR>+VNcMb}F5;&UmkwPz3Vs5! zhb|q0gTx`h#RwvZWJs4zJqL~SK;#bGd_TD1j(6`J?;Qvsg!u0~m*6x_js5YU&;a)j z2S%PKimY?`E)M|k=Of+k7P{BTbbHq8WV+uiv_Bu|-|qfo!?ifTvRUwSd(CP%_S*C9 z)1&nm>&`lj;5on4L8y4UOL*TrH|}oLS9<3pX4x#*KfJKc>okJqarP%M>zqbVmlcq( zcNP=AX2!hLAm(M3e8t#v>cDC^_Uf`CpH2uuh1&gGL8!>56Y8@1{uj2KI?z4>ptv!A gylY`0gb^MGl&;-%-SoYfy{! zS0YA#KiMB(SRy@P+HZ!Q+~!D^|04C1H!`TmD|O$|XJk{j+hBs1*kWI(AT;&s6pPL~ z=NaHCw=Csx&}@C^?fl)kR94pi)Q!62PZ2d2&2GHE@^y#x&TfN=-`*VvI@b`lx^wMh ztvQpH&z-cqxjjE#R<(}X+mdPx$ut`KgRCt{2*)dB3VH^hV=c1wIgwiE~paUTy+gs#zKSxVLOY|8U!lfaEM!$j| z;Kilka1tVDNLz%%3UX=c-*6~my~^3Ef90Ovc;el25AXZl=?f4M5fKp)5fKq(if8-4 z7=xpOC;9puz~A*T=nb%y^YQp{=!IeUuZxOEa&gak`MDTlFqtjx)?`}dP20(Wd?azJ ziT=)|hqvTd;khb7aUhsdoTlMT8e>Ms;#L*YGFuDiH0mgwog>$aWO&R!uAqH?=P2%C zeDrIwT?jn@cx~UvtjtrV003+}T#O3%KE3q-{2FFyEpiF~i^=Sih>S|mwxJzB8w=15 zpe^$SSRaGyAk9K*d*V1NU{zN2w46PNSD}D;-YYV{2Cx9_0NPl9b^vWGKs$go7N8wK z8w=15pp6A+2hf)K=hM3W>a(89*_mdr73cb|@wApU1+;I}hHHR!fWM~3GDl11M*s^* z`-SnXXCT>ujk`6OJiadGo^0bcTzIcau2{x?>B`A_#Y(RM&Fd2ZlI`XoA4!mpWUpL7 sr%`vGZV6IX?RpPhdjt>>5fNq950ll8lzgB7&Hw-a07*qoM6N<$f`a4ZhyVZp literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json new file mode 100644 index 000000000000..302f4371e8cf --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json @@ -0,0 +1,52 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/b459ea3fdee965bdc3e93e7983ad7fa610d05c12 and https://github.com/tgstation/tgstation/commit/ead6d8d59753ef033efdfad17f337df268038ff3 and modified by ravage", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4, + "delays": [ + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} From b78156ac08bce9bbe966fdf9a0134be6d249cc7c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 10:34:14 +0000 Subject: [PATCH 102/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e4212eb9c235..3afff7a7d294 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SlamBamActionman - changes: - - message: RGBee and Rainbow Carp plushies now cycle color when held/worn. - type: Fix - id: 6917 - time: '2024-07-14T10:26:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30023 - author: Winkarst-cpu changes: - message: Now grappling gun is clumsy proof. @@ -3923,3 +3916,10 @@ id: 7416 time: '2024-09-22T08:21:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32370 +- author: ravage123321 + changes: + - message: You can make a holy helmet from holymelons! + type: Add + id: 7417 + time: '2024-09-22T10:33:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32272 From 932af69c3116e75d766bbc931ce63b84f5329e61 Mon Sep 17 00:00:00 2001 From: Soydium Date: Sun, 22 Sep 2024 15:26:55 +0300 Subject: [PATCH 103/161] added the ability for pigs to feed themselves (#32358) * pigs can eat * disable carcinisation --- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 2ab2534121d1..d4f2ecd30aef 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -3377,7 +3377,10 @@ - type: NpcFactionMember factions: - Passive - + - type: HTN + rootTask: + task: RuminantCompound + - type: entity name: diona nymph parent: [SimpleMobBase, StripableInventoryBase] From 1e466579fac4f75e23bd2e55884e350f3671038f Mon Sep 17 00:00:00 2001 From: saga3152 <133799418+saga3152@users.noreply.github.com> Date: Sun, 22 Sep 2024 17:15:12 +0200 Subject: [PATCH 104/161] Lemons, limes, and oranges can now be mutated into each other (#32306) --- Resources/Prototypes/Hydroponics/seeds.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 07e08ef75b8c..7349f3c3d724 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -210,6 +210,8 @@ - FoodLemon mutationPrototypes: - lemoon + - lime + - orange harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -262,6 +264,9 @@ packetPrototype: LimeSeeds productPrototypes: - FoodLime + mutationPrototypes: + - orange + - lemon harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -290,6 +295,8 @@ - FoodOrange mutationPrototypes: - extradimensionalOrange + - lemon + - lime harvestRepeat: Repeat lifespan: 55 maturation: 6 From f8514e781591006bf8109d576dfccad10a5cd6f0 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 15:16:18 +0000 Subject: [PATCH 105/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3afff7a7d294..8b6bd1b2f877 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now grappling gun is clumsy proof. - type: Tweak - id: 6918 - time: '2024-07-14T10:26:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29904 - author: HahayesSiH changes: - message: It is now possible to pet cyborgs. @@ -3923,3 +3916,10 @@ id: 7417 time: '2024-09-22T10:33:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32272 +- author: saga3152 + changes: + - message: Citrus plants can now be mutated into each other. + type: Add + id: 7418 + time: '2024-09-22T15:15:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32306 From d3ff4d54016d79b63512853b68c306a3a5fa240a Mon Sep 17 00:00:00 2001 From: PotentiallyTom <67602105+PotentiallyTom@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:59:56 +0100 Subject: [PATCH 106/161] Makes it possible to disable the vent pressure lockout temporarily with a screwdriver (#31050) * builds * doesn't crash * seems to work * distance cap was dumb * Requested changes * can't find any issues from making the changes * Check for anchor and minor optimisation * Removed unnecessary usings * Code less verbose and cleanup --- .../Unary/Components/GasVentPumpComponent.cs | 69 ++++++++++--------- .../Unary/EntitySystems/GasVentPumpSystem.cs | 46 ++++++++++--- .../Piping/Unary/VentScrewedDoAfterEvent.cs | 9 +++ 3 files changed, 85 insertions(+), 39 deletions(-) create mode 100644 Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs index 7d702904fbe8..fcf3ddf969c7 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs @@ -6,6 +6,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components { // The world if people documented their shit. + [AutoGenerateComponentPause] [RegisterComponent] public sealed partial class GasVentPumpComponent : Component { @@ -15,31 +16,25 @@ public sealed partial class GasVentPumpComponent : Component [ViewVariables] public bool IsDirty { get; set; } = false; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("inlet")] + [DataField] public string Inlet { get; set; } = "pipe"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("outlet")] + [DataField] public string Outlet { get; set; } = "pipe"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pumpDirection")] + [DataField] public VentPumpDirection PumpDirection { get; set; } = VentPumpDirection.Releasing; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pressureChecks")] + [DataField] public VentPressureBound PressureChecks { get; set; } = VentPressureBound.ExternalBound; - [ViewVariables(VVAccess.ReadOnly)] - [DataField("underPressureLockout")] + [DataField] public bool UnderPressureLockout { get; set; } = false; /// /// In releasing mode, do not pump when environment pressure is below this limit. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("underPressureLockoutThreshold")] + [DataField] public float UnderPressureLockoutThreshold = 80; // this must be tuned in conjunction with atmos.mmos_spacing_speed /// @@ -55,12 +50,30 @@ public sealed partial class GasVentPumpComponent : Component /// repressurizing of the development map take about 30 minutes using an oxygen tank (high pressure) /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("underPressureLockoutLeaking")] + [DataField] public float UnderPressureLockoutLeaking = 0.0001f; + /// + /// Is the vent pressure lockout currently manually disabled? + /// + [DataField] + public bool IsPressureLockoutManuallyDisabled = false; + /// + /// The time when the manual pressure lockout will be reenabled. + /// + [DataField] + [AutoPausedField] + public TimeSpan ManualLockoutReenabledAt; + /// + /// How long the lockout should remain manually disabled after being interacted with. + /// + [DataField] + public TimeSpan ManualLockoutDisabledDuration = TimeSpan.FromSeconds(30); // Enough time to fill a 5x5 room + /// + /// How long the doAfter should take when attempting to manually disable the pressure lockout. + /// + public float ManualLockoutDisableDoAfter = 2.0f; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("externalPressureBound")] + [DataField] public float ExternalPressureBound { get => _externalPressureBound; @@ -72,8 +85,7 @@ public float ExternalPressureBound private float _externalPressureBound = Atmospherics.OneAtmosphere; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("internalPressureBound")] + [DataField] public float InternalPressureBound { get => _internalPressureBound; @@ -88,8 +100,7 @@ public float InternalPressureBound /// /// Max pressure of the target gas (NOT relative to source). /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxPressure")] + [DataField] public float MaxPressure = Atmospherics.MaxOutputPressure; /// @@ -100,8 +111,7 @@ public float InternalPressureBound /// is too high, and the vent is connected to a large pipe-net, then someone can nearly instantly flood a /// room with gas. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("targetPressureChange")] + [DataField] public float TargetPressureChange = Atmospherics.OneAtmosphere; /// @@ -111,29 +121,26 @@ public float InternalPressureBound /// Vents cannot suck a pipe completely empty, instead pressurizing a section to a max of /// pipe pressure * PumpPower (in kPa). So a 51 kPa pipe is required for 101 kPA sections at PumpPower 2.0 /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("PumpPower")] + [DataField] public float PumpPower = 2.0f; #region Machine Linking /// /// Whether or not machine linking is enabled for this component. /// - [DataField("canLink")] + [DataField] public bool CanLink = false; - [DataField("pressurizePort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string PressurizePort = "Pressurize"; - [DataField("depressurizePort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string DepressurizePort = "Depressurize"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pressurizePressure")] + [DataField] public float PressurizePressure = Atmospherics.OneAtmosphere; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("depressurizePressure")] + [DataField] public float DepressurizePressure = 0; // When true, ignore under-pressure lockout. Used to re-fill rooms in air alarm "Fill" mode. diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index dbbbf2d00830..9d9862ff1dde 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -7,21 +7,22 @@ using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; -using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; -using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; +using Content.Shared.Atmos.Piping.Unary; using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.Atmos.Visuals; using Content.Shared.Audio; using Content.Shared.DeviceNetwork; +using Content.Shared.DoAfter; using Content.Shared.Examine; +using Content.Shared.Interaction; using Content.Shared.Power; using Content.Shared.Tools.Systems; using JetBrains.Annotations; -using Robust.Server.GameObjects; +using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Unary.EntitySystems { @@ -35,7 +36,9 @@ public sealed class GasVentPumpSystem : EntitySystem [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly WeldableSystem _weldable = default!; - + [Dependency] private readonly SharedToolSystem _toolSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { base.Initialize(); @@ -51,6 +54,8 @@ public override void Initialize() SubscribeLocalEvent(OnSignalReceived); SubscribeLocalEvent(OnAnalyzed); SubscribeLocalEvent(OnWeldChanged); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnVentScrewed); } private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref AtmosDeviceUpdateEvent args) @@ -80,11 +85,16 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref { return; } + // If the lockout has expired, disable it. + if (vent.IsPressureLockoutManuallyDisabled && _timing.CurTime >= vent.ManualLockoutReenabledAt) + { + vent.IsPressureLockoutManuallyDisabled = false; + } var timeDelta = args.dt; var pressureDelta = timeDelta * vent.TargetPressureChange; - var lockout = (environment.Pressure < vent.UnderPressureLockoutThreshold); + var lockout = (environment.Pressure < vent.UnderPressureLockoutThreshold) && !vent.IsPressureLockoutManuallyDisabled; if (vent.UnderPressureLockout != lockout) // update visuals only if this changes { vent.UnderPressureLockout = lockout; @@ -115,7 +125,7 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref var transferMoles = pressureDelta * environment.Volume / (pipe.Air.Temperature * Atmospherics.R); // Only run if the device is under lockout and not being overriden - if (vent.UnderPressureLockout & !vent.PressureLockoutOverride) + if (vent.UnderPressureLockout & !vent.PressureLockoutOverride & !vent.IsPressureLockoutManuallyDisabled) { // Leak only a small amount of gas as a proportion of supply pipe pressure. var pipeDelta = pipe.Air.Pressure - environment.Pressure; @@ -273,7 +283,7 @@ private void UpdateState(EntityUid uid, GasVentPumpComponent vent, AppearanceCom } else if (vent.PumpDirection == VentPumpDirection.Releasing) { - if (vent.UnderPressureLockout & !vent.PressureLockoutOverride) + if (vent.UnderPressureLockout & !vent.PressureLockoutOverride & !vent.IsPressureLockoutManuallyDisabled) _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Lockout, appearance); else _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Out, appearance); @@ -290,7 +300,7 @@ private void OnExamine(EntityUid uid, GasVentPumpComponent component, ExaminedEv return; if (args.IsInDetailsRange) { - if (pumpComponent.PumpDirection == VentPumpDirection.Releasing & pumpComponent.UnderPressureLockout & !pumpComponent.PressureLockoutOverride) + if (pumpComponent.PumpDirection == VentPumpDirection.Releasing & pumpComponent.UnderPressureLockout & !pumpComponent.PressureLockoutOverride & !pumpComponent.IsPressureLockoutManuallyDisabled) { args.PushMarkup(Loc.GetString("gas-vent-pump-uvlo")); } @@ -325,5 +335,25 @@ private void OnWeldChanged(EntityUid uid, GasVentPumpComponent component, ref We { UpdateState(uid, component); } + private void OnInteractUsing(EntityUid uid, GasVentPumpComponent component, InteractUsingEvent args) + { + if (args.Handled + || component.UnderPressureLockout == false + || !_toolSystem.HasQuality(args.Used, "Screwing") + || !Transform(uid).Anchored + ) + { + return; + } + + args.Handled = true; + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.ManualLockoutDisableDoAfter, new VentScrewedDoAfterEvent(), uid, uid, args.Used)); + } + private void OnVentScrewed(EntityUid uid, GasVentPumpComponent component, VentScrewedDoAfterEvent args) + { + component.ManualLockoutReenabledAt = _timing.CurTime + component.ManualLockoutDisabledDuration; + component.IsPressureLockoutManuallyDisabled = true; + } } } diff --git a/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs b/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs new file mode 100644 index 000000000000..1fdc69bcf68b --- /dev/null +++ b/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs @@ -0,0 +1,9 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Atmos.Piping.Unary; + +[Serializable, NetSerializable] +public sealed partial class VentScrewedDoAfterEvent : SimpleDoAfterEvent +{ +} From ee393a1cd8e897e019a83af933329b462c5f6beb Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 20:01:02 +0000 Subject: [PATCH 107/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8b6bd1b2f877..9c6314081868 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: HahayesSiH - changes: - - message: It is now possible to pet cyborgs. - type: Add - - message: Clicking on cyborgs and opening the strip menu no longer unlocks them. - type: Tweak - id: 6919 - time: '2024-07-14T14:09:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30037 - author: deltanedas changes: - message: Fixed ninja shoes not working as magboots. @@ -3923,3 +3914,10 @@ id: 7418 time: '2024-09-22T15:15:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32306 +- author: PotentiallyTom + changes: + - message: Vent pressure lockout can be temporarily disabled with a screwdriver + type: Tweak + id: 7419 + time: '2024-09-22T19:59:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31050 From 8a2c69d18dbc371872edb7b6967db70144831126 Mon Sep 17 00:00:00 2001 From: Killerqu00 <47712032+Killerqu00@users.noreply.github.com> Date: Sun, 22 Sep 2024 22:08:56 +0200 Subject: [PATCH 108/161] reach update :3 (#32387) --- Resources/Maps/reach.yml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index c556d8367f6a..9e9070b68ed3 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -1899,7 +1899,7 @@ entities: - uid: 80 components: - type: Transform - pos: 1.5,9.5 + pos: -0.5,10.5 parent: 2 - proto: BarSignTheLightbulb entities: @@ -7544,8 +7544,8 @@ entities: pos: 7.5,-13.5 parent: 2 - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasPassiveVent @@ -12187,11 +12187,6 @@ entities: - type: Transform pos: 2.5,6.5 parent: 2 - - uid: 1739 - components: - - type: Transform - pos: -0.5,10.5 - parent: 2 - uid: 1949 components: - type: Transform @@ -14361,12 +14356,6 @@ entities: - type: Transform pos: 16.5,-4.5 parent: 2 - - uid: 2081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - uid: 2082 components: - type: Transform From 5e162e776d1fda433797e4e743f089a917287ea0 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:27:48 -0400 Subject: [PATCH 109/161] Add the Syndicate Instigator Shuttle (#32083) * Instigator * sustenance --- .../Maps/Shuttles/ShuttleEvent/instigator.yml | 4052 +++++++++++++++++ .../Prototypes/GameRules/unknown_shuttles.yml | 11 + .../Shuttles/shuttle_incoming_event.yml | 5 + 3 files changed, 4068 insertions(+) create mode 100644 Resources/Maps/Shuttles/ShuttleEvent/instigator.yml diff --git a/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml new file mode 100644 index 000000000000..9c7aec2fa149 --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml @@ -0,0 +1,4052 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 86: FloorShuttleBlack + 91: FloorShuttleRed + 112: FloorTechMaint2 + 113: FloorTechMaint3 + 128: Lattice + 129: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: GX-Instigator + - type: Transform + pos: -0.5,-0.45833334 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: WwAAAAADWwAAAAABWwAAAAABgQAAAAAAgQAAAAAAWwAAAAADVgAAAAAAcAAAAAAAcQAAAAADcQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAADWwAAAAACVgAAAAADgQAAAAAAgQAAAAAAVgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAAAWwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAWwAAAAAAgQAAAAAAVgAAAAAAVgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAABVgAAAAAAVgAAAAACVgAAAAAAVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAACVgAAAAADVgAAAAACVgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVgAAAAACVgAAAAABVgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAACVgAAAAABVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAACVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAVgAAAAAAVgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAABVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAADVgAAAAADVgAAAAABVgAAAAACVgAAAAACVgAAAAABVgAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAABWwAAAAABVgAAAAAAVgAAAAADVgAAAAAAVgAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcQAAAAABcQAAAAAAcAAAAAAAVgAAAAACWwAAAAACgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABgQAAAAAAWwAAAAAAVgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAACVgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAABVgAAAAAAVgAAAAAAVgAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACVgAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAADVgAAAAABVgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAABVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAVgAAAAACVgAAAAACVgAAAAADVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcQAAAAABgQAAAAAAVgAAAAAAVgAAAAACVgAAAAAAVgAAAAACWwAAAAACWwAAAAAC + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#571212FF' + id: BrickTileWhiteInnerNe + decals: + 152: -1,3 + - node: + color: '#571212FF' + id: BrickTileWhiteInnerNw + decals: + 151: -1,3 + - node: + color: '#571212FF' + id: MiniTileBoxOverlay + decals: + 31: -7,2 + 32: 7,2 + - node: + color: '#571212FF' + id: MiniTileCheckerAOverlay + decals: + 22: -6,0 + 23: -6,1 + 24: -6,2 + 25: -6,3 + 26: -6,-1 + 27: -6,-2 + 28: -7,3 + 29: -8,3 + 30: -9,3 + 33: -9,2 + 34: -9,4 + 49: -10,2 + 50: -10,3 + 51: -10,4 + 109: -8,4 + 110: -7,4 + - node: + color: '#571212FF' + id: MiniTileCheckerBOverlay + decals: + 35: 6,-2 + 36: 6,-1 + 37: 6,0 + 38: 6,1 + 39: 6,2 + 40: 6,3 + 41: 7,3 + 42: 8,3 + 43: 9,3 + 44: 9,2 + 45: 9,4 + 46: 10,2 + 47: 10,3 + 48: 10,4 + 111: 8,4 + 112: 7,4 + - node: + color: '#571212FF' + id: MiniTileWhiteBox + decals: + 56: 0,3 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerNe + decals: + 18: -1,-1 + 77: 1,1 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerNe + decals: + 10: 1,4 + 11: 2,3 + 53: 2,2 + 88: -3,-1 + 89: 5,-1 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerNw + decals: + 5: -1,1 + 19: 1,-1 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerNw + decals: + 8: -2,3 + 9: -1,4 + 52: -2,2 + 87: -5,-1 + 90: 3,-1 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerSe + decals: + 76: 1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerSe + decals: + 80: 5,0 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerSw + decals: + 6: -1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerSw + decals: + 79: -5,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerNe + decals: + 54: 1,3 + 58: -2,-1 + 72: 0,0 + 73: -1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerNw + decals: + 55: 1,3 + 59: 2,-1 + 74: 0,0 + 75: 1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerSe + decals: + 62: -2,-1 + 65: -2,2 + 69: -1,1 + 70: 0,1 + 71: 0,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerSw + decals: + 63: 2,-1 + 64: 2,2 + 66: 0,1 + 67: 1,1 + 68: 0,0 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineE + decals: + 0: 0,-1 + 2: -2,0 + 21: -2,1 + - node: + color: '#571212FF' + id: MiniTileWhiteLineE + decals: + 14: 2,1 + 15: 2,0 + 60: 2,-1 + 108: 5,-2 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineN + decals: + 78: 0,1 + 147: 8,11 + 148: 9,11 + - node: + color: '#571212FF' + id: MiniTileWhiteLineN + decals: + 12: 0,4 + 57: 0,2 + 91: 4,-1 + 92: -4,-1 + 114: 9,5 + 115: -9,5 + - node: + color: '#FF9821FF' + id: MiniTileWhiteLineN + decals: + 149: -9,11 + 150: -8,11 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineS + decals: + 4: 0,2 + 145: 8,11 + 146: 9,11 + 153: -1,2 + 154: 1,2 + - node: + color: '#571212FF' + id: MiniTileWhiteLineS + decals: + 16: 1,-1 + 17: -1,-1 + 113: 9,5 + 116: -9,5 + - node: + color: '#FF9821FF' + id: MiniTileWhiteLineS + decals: + 143: -9,11 + 144: -8,11 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineW + decals: + 1: 0,-1 + 3: 2,0 + 20: 2,1 + - node: + color: '#571212FF' + id: MiniTileWhiteLineW + decals: + 7: -2,0 + 13: -2,1 + 61: -2,-1 + 107: -5,-2 + - node: + color: '#571212FF' + id: OffsetCheckerAOverlay + decals: + 117: 8,6 + 118: 9,6 + 119: 10,6 + 120: 10,7 + 121: 9,7 + 122: 8,7 + 123: 8,8 + 124: 9,8 + 125: 10,8 + 126: 9,9 + 127: 8,9 + 128: 8,10 + 129: 9,10 + - node: + color: '#571212FF' + id: OffsetCheckerBOverlay + decals: + 81: 5,-1 + 82: 4,-1 + 83: 3,-1 + 84: -3,-1 + 85: -4,-1 + 86: -5,-1 + 93: 2,-2 + 94: 1,-2 + 95: -1,-2 + 96: -2,-2 + 97: 0,-2 + 98: -1,-3 + 99: 1,-3 + 100: 0,-3 + 101: 5,-2 + 102: 4,-2 + 103: 3,-2 + 104: -3,-2 + 105: -4,-2 + 106: -5,-2 + 130: -8,6 + 131: -9,6 + 132: -10,6 + 133: -10,7 + 134: -9,7 + 135: -8,7 + 136: -8,8 + 137: -9,8 + 138: -10,8 + 139: -9,9 + 140: -8,9 + 141: -8,10 + 142: -9,10 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 30711 + 0,-1: + 0: 65340 + -1,0: + 0: 56828 + 0,1: + 0: 3 + -1,1: + 0: 8 + 1,0: + 0: 56670 + 1,-1: + 0: 30464 + 1: 129 + 1,1: + 1: 16386 + 0: 1032 + 2,0: + 0: 14867 + 1: 8 + 2,1: + 0: 30507 + 2,2: + 0: 13111 + 1: 128 + 1,2: + 1: 32768 + 1,3: + 1: 8 + 2,-1: + 0: 4096 + 1: 16896 + 2,3: + 1: 4612 + -1,-1: + 0: 65414 + 1: 1 + -3,0: + 1: 2 + 0: 35336 + -3,1: + 0: 52362 + -3,2: + 1: 32 + 0: 34956 + -3,-1: + 1: 18432 + -3,3: + 1: 2052 + -2,0: + 0: 30303 + -2,1: + 0: 5379 + 1: 16392 + -2,2: + 0: 4369 + 1: 8192 + -2,-1: + 0: 56320 + 1: 32 + -2,3: + 1: 4098 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: ActionToggleInternals + entities: + - uid: 495 + components: + - type: Transform + parent: 493 + - type: InstantAction + container: 493 +- proto: ActionToggleJetpack + entities: + - uid: 494 + components: + - type: Transform + parent: 493 + - type: InstantAction + container: 493 +- proto: AirCanister + entities: + - uid: 441 + components: + - type: Transform + anchored: True + pos: -8.5,11.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockExternalGlass + entities: + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 127: + - DoorStatus: DoorBolt + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 128: + - DoorStatus: DoorBolt + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 125: + - DoorStatus: DoorBolt + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 126: + - DoorStatus: DoorBolt +- proto: AirlockMaint + entities: + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 +- proto: AirlockShuttleSyndicate + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 +- proto: AirlockSyndicate + entities: + - uid: 519 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 244 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 +- proto: Bed + entities: + - uid: 446 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 +- proto: BedsheetSyndie + entities: + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 1 +- proto: BoxCardboard + entities: + - uid: 531 + components: + - type: MetaData + desc: a box full of frag grenade cartridges + name: frag grenade box + - type: Transform + pos: -0.7699833,1.7199572 + parent: 1 + - type: Storage + storedItems: + 523: + position: 0,0 + _rotation: South + 522: + position: 1,0 + _rotation: South + 525: + position: 2,0 + _rotation: South + 524: + position: 0,2 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 523 + - 522 + - 525 + - 524 + - uid: 532 + components: + - type: MetaData + desc: a box full of EMP cartridges + name: EMP grenade box + - type: Transform + pos: -0.23873329,1.699124 + parent: 1 + - type: Storage + storedItems: + 159: + position: 0,0 + _rotation: South + 131: + position: 1,0 + _rotation: South + 130: + position: 2,0 + _rotation: South + 158: + position: 0,2 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 159 + - 131 + - 130 + - 158 +- proto: BoxFolderBlack + entities: + - uid: 514 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderClipboard + entities: + - uid: 518 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderNuclearCodes + entities: + - uid: 526 + components: + - type: Transform + pos: 1.5254097,1.4605976 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 327 + components: + - type: Transform + pos: -0.46789998,1.480374 + parent: 1 + - uid: 513 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 516 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolCaselessRifle + entities: + - uid: 463 + components: + - type: Transform + pos: -7.332144,10.686393 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -7.311311,7.5718102 + parent: 1 +- proto: ButtonFrameExit + entities: + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 +- proto: C4 + entities: + - uid: 507 + components: + - type: Transform + pos: 8.755206,8.089237 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 8.755206,7.5892377 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 184 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 +- proto: CableHV + entities: + - uid: 214 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 222 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 +- proto: ClosetLegalFilled + entities: + - uid: 511 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 512 + - 513 + - 514 + - 515 + - 516 + - 517 + - 518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClothingBeltAssault + entities: + - uid: 475 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatSyndie + entities: + - uid: 476 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadsetAltSyndicate + entities: + - uid: 133 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 134 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 521 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatSyndieCap + entities: + - uid: 479 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSyndie + entities: + - uid: 484 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSyndieCap + entities: + - uid: 487 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCowboyBlack + entities: + - uid: 474 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 477 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCowboyBrown + entities: + - uid: 472 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterSyndicate + entities: + - uid: 473 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorBlack + entities: + - uid: 482 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesHighheelBoots + entities: + - uid: 485 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerRed + entities: + - uid: 515 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtSyndieFormalDress + entities: + - uid: 488 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerRed + entities: + - uid: 512 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 517 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack + entities: + - uid: 481 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicatePink + entities: + - uid: 478 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 483 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSyndieFormal + entities: + - uid: 480 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 486 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerIFFSyndicate + entities: + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 152 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 147 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: ComputerShuttleSyndie + entities: + - uid: 144 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 +- proto: CrateSyndicateSurplusBundle + entities: + - uid: 459 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 +- proto: CyberPen + entities: + - uid: 328 + components: + - type: Transform + pos: -0.53040004,1.4282906 + parent: 1 +- proto: EnergyDaggerBox + entities: + - uid: 496 + components: + - type: Transform + pos: 8.55729,9.557987 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 155 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 359 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 391 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeBend + entities: + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 352 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 389 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 423 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 427 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeStraight + entities: + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 361 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 362 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 363 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 364 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 365 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 366 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 367 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 368 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 382 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 383 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 405 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 416 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 417 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 418 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 420 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 421 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 422 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 374 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPort + entities: + - uid: 335 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentPump + entities: + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 435 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 436 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GeneratorBasic15kW + entities: + - uid: 199 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 150 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: GrenadeEMP + entities: + - uid: 130 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 131 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 158 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 159 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False +- proto: GrenadeFrag + entities: + - uid: 522 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 523 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 524 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 525 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False +- proto: Grille + entities: + - uid: 108 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 185 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: JetpackMiniFilled + entities: + - uid: 493 + components: + - type: Transform + pos: 8.505206,10.057987 + parent: 1 + - type: GasTank + toggleActionEntity: 495 + - type: Jetpack + toggleActionEntity: 494 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 494 + - 495 +- proto: LockerSyndicate + entities: + - uid: 471 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 134 + - 133 + - 521 + - 487 + - 488 + - 486 + - 485 + - 484 + - 483 + - 482 + - 481 + - 480 + - 479 + - 478 + - 477 + - 476 + - 475 + - 474 + - 473 + - 472 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: PhoneInstrumentSyndicate + entities: + - uid: 498 + components: + - type: Transform + pos: 8.52604,8.64132 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 +- proto: Rack + entities: + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 +- proto: ShuttleGunFriendship + entities: + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 +- proto: SignalButtonDirectional + entities: + - uid: 329 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 208: + - Pressed: Toggle + 209: + - Pressed: Toggle + 210: + - Pressed: Toggle + - uid: 330 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 211: + - Pressed: Toggle + 212: + - Pressed: Toggle + 213: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 198 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 +- proto: StairStageDark + entities: + - uid: 527 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 187 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 +- proto: SuitStorageSyndie + entities: + - uid: 452 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 332 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 +- proto: SurveillanceCameraSecurity + entities: + - uid: 333 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Fore-Port + - uid: 334 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Fore-Starboard + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Aft-Port + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Aft-Starboard +- proto: SyndicateComputerComms + entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +- proto: SyndieFlag + entities: + - uid: 468 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: SyndieHandyFlag + entities: + - uid: 466 + components: + - type: Transform + pos: 8.49851,10.585687 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 8.796873,10.651737 + parent: 1 +- proto: SyndieMiniBomb + entities: + - uid: 506 + components: + - type: Transform + pos: 8.421873,7.766321 + parent: 1 +- proto: SyndieSoldierSpawner + entities: + - uid: 528 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 +- proto: SyndieSoldierTeamLeaderSpawner + entities: + - uid: 530 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: TableFancyBlack + entities: + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 +- proto: ToolboxSyndicateFilled + entities: + - uid: 497 + components: + - type: Transform + pos: 8.505206,9.099654 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 151 + components: + - type: MetaData + name: FIRE! + - type: Transform + pos: 0.48732924,3.7624094 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 129: + - Left: On + - Left: Trigger + - Right: On + - Right: Trigger + - Middle: Off + 132: + - Left: On + - Left: Trigger + - Right: On + - Right: Trigger + - Middle: Off +- proto: VendingMachineClothing + entities: + - uid: 465 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 +- proto: VendingMachineCoffee + entities: + - uid: 535 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 534 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 456 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,13.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 +- proto: WeaponPistolCobra + entities: + - uid: 461 + components: + - type: Transform + pos: -7.4571443,7.4884768 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -7.4154773,10.488477 + parent: 1 +... diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index c721b5622877..7e40e3a1f28f 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -172,6 +172,17 @@ - type: LoadMapRule preloadedGrid: NTIncorporation +- type: entity + id: UnknownShuttleInstigator + parent: BaseUnknownShuttleRule + components: + - type: StationEvent + startAnnouncement: null #dont nark on antags + weight: 1 # lower because antags. + earliestStart: 50 # late to hopefully have enough ghosts to fill all roles quickly (3) and because antags + - type: LoadMapRule + preloadedGrid: Instigator + - type: entity id: UnknownShuttleJoe parent: BaseUnknownShuttleRule diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index 5e1f11eef9ba..a5269a73daef 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -69,6 +69,11 @@ path: /Maps/Shuttles/ShuttleEvent/incorporation.yml copies: 1 +- type: preloadedGrid + id: Instigator + path: /Maps/Shuttles/ShuttleEvent/instigator.yml + copies: 1 + - type: preloadedGrid id: Joe path: /Maps/Shuttles/ShuttleEvent/joe.yml From dd7884ed40114fab1584852647dbb39c24f091e7 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:10:22 +1000 Subject: [PATCH 110/161] Predict vending machine BUI (#32376) --- .../VendingMachineBoundUserInterface.cs | 20 +++---------- .../VendingMachines/VendingMachineSystem.cs | 10 +++++++ .../VendingMachines/VendingMachineSystem.cs | 30 +++---------------- .../SharedVendingMachineSystem.cs | 5 ++-- .../VendingMachineComponent.cs | 23 ++++---------- .../VendingMachineInterfaceState.cs | 11 ------- .../Structures/Machines/vending_machines.yml | 3 ++ 7 files changed, 30 insertions(+), 72 deletions(-) diff --git a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs index f8313882a2fe..28b1b25adef0 100644 --- a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs +++ b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs @@ -23,29 +23,17 @@ protected override void Open() { base.Open(); - var vendingMachineSys = EntMan.System(); - - _cachedInventory = vendingMachineSys.GetAllInventory(Owner); - _menu = this.CreateWindow(); _menu.OpenCenteredLeft(); _menu.Title = EntMan.GetComponent(Owner).EntityName; - _menu.OnItemSelected += OnItemSelected; - - _menu.Populate(_cachedInventory); - - _menu.OpenCenteredLeft(); + Refresh(); } - protected override void UpdateState(BoundUserInterfaceState state) + public void Refresh() { - base.UpdateState(state); - - if (state is not VendingMachineInterfaceState newState) - return; - - _cachedInventory = newState.Inventory; + var system = EntMan.System(); + _cachedInventory = system.GetAllInventory(Owner); _menu?.Populate(_cachedInventory); } diff --git a/Content.Client/VendingMachines/VendingMachineSystem.cs b/Content.Client/VendingMachines/VendingMachineSystem.cs index 922a75d24a26..1b1dde2b67ef 100644 --- a/Content.Client/VendingMachines/VendingMachineSystem.cs +++ b/Content.Client/VendingMachines/VendingMachineSystem.cs @@ -8,6 +8,7 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem { [Dependency] private readonly AnimationPlayerSystem _animationPlayer = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; public override void Initialize() { @@ -15,6 +16,15 @@ public override void Initialize() SubscribeLocalEvent(OnAppearanceChange); SubscribeLocalEvent(OnAnimationCompleted); + SubscribeLocalEvent(OnVendingAfterState); + } + + private void OnVendingAfterState(EntityUid uid, VendingMachineComponent component, ref AfterAutoHandleStateEvent args) + { + if (_uiSystem.TryGetOpenUi(uid, VendingMachineUiKey.Key, out var bui)) + { + bui.Refresh(); + } } private void OnAnimationCompleted(EntityUid uid, VendingMachineComponent component, AnimationCompletedEvent args) diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index a265ce2d431b..38407a98c729 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -34,10 +34,8 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; - [Dependency] private readonly SharedActionsSystem _action = default!; [Dependency] private readonly PricingSystem _pricing = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; - [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SpeakOnUIClosedSystem _speakOnUIClosed = default!; @@ -47,7 +45,6 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentMapInit); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnBreak); SubscribeLocalEvent(OnEmagged); @@ -59,7 +56,6 @@ public override void Initialize() Subs.BuiEvents(VendingMachineUiKey.Key, subs => { - subs.Event(OnBoundUIOpened); subs.Event(OnInventoryEjectMessage); }); @@ -70,12 +66,6 @@ public override void Initialize() SubscribeLocalEvent(OnPriceCalculation); } - private void OnComponentMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) - { - _action.AddAction(uid, ref component.ActionEntity, component.Action, uid); - Dirty(uid, component); - } - private void OnVendingPrice(EntityUid uid, VendingMachineComponent component, ref PriceCalculationEvent args) { var price = 0.0; @@ -94,9 +84,9 @@ private void OnVendingPrice(EntityUid uid, VendingMachineComponent component, re args.Price += price; } - protected override void OnComponentInit(EntityUid uid, VendingMachineComponent component, ComponentInit args) + protected override void OnMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) { - base.OnComponentInit(uid, component, args); + base.OnMapInit(uid, component, args); if (HasComp(uid)) { @@ -110,18 +100,6 @@ private void OnActivatableUIOpenAttempt(EntityUid uid, VendingMachineComponent c args.Cancel(); } - private void OnBoundUIOpened(EntityUid uid, VendingMachineComponent component, BoundUIOpenedEvent args) - { - UpdateVendingMachineInterfaceState(uid, component); - } - - private void UpdateVendingMachineInterfaceState(EntityUid uid, VendingMachineComponent component) - { - var state = new VendingMachineInterfaceState(GetAllInventory(uid, component)); - - _userInterfaceSystem.SetUiState(uid, VendingMachineUiKey.Key, state); - } - private void OnInventoryEjectMessage(EntityUid uid, VendingMachineComponent component, VendingMachineEjectMessage args) { if (!this.IsPowered(uid, EntityManager)) @@ -297,7 +275,7 @@ public void TryEjectVendorItem(EntityUid uid, InventoryType type, string itemId, _speakOnUIClosed.TrySetFlag((uid, speakComponent)); entry.Amount--; - UpdateVendingMachineInterfaceState(uid, vendComponent); + Dirty(uid, vendComponent); TryUpdateVisualState(uid, vendComponent); Audio.PlayPvs(vendComponent.SoundVend, uid); } @@ -493,7 +471,7 @@ public void TryRestockInventory(EntityUid uid, VendingMachineComponent? vendComp RestockInventoryFromPrototype(uid, vendComponent); - UpdateVendingMachineInterfaceState(uid, vendComponent); + Dirty(uid, vendComponent); TryUpdateVisualState(uid, vendComponent); } diff --git a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs index 59f8489ac625..94562ce8d1bf 100644 --- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs +++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs @@ -23,11 +23,11 @@ public abstract partial class SharedVendingMachineSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnAfterInteract); } - protected virtual void OnComponentInit(EntityUid uid, VendingMachineComponent component, ComponentInit args) + protected virtual void OnMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) { RestockInventoryFromPrototype(uid, component, component.InitialStockQuality); } @@ -46,6 +46,7 @@ public void RestockInventoryFromPrototype(EntityUid uid, AddInventoryFromPrototype(uid, packPrototype.StartingInventory, InventoryType.Regular, component, restockQuality); AddInventoryFromPrototype(uid, packPrototype.EmaggedInventory, InventoryType.Emagged, component, restockQuality); AddInventoryFromPrototype(uid, packPrototype.ContrabandInventory, InventoryType.Contraband, component, restockQuality); + Dirty(uid, component); } /// diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index 23130bb8f393..a3c7949600a1 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.VendingMachines { - [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] public sealed partial class VendingMachineComponent : Component { /// @@ -21,7 +21,7 @@ public sealed partial class VendingMachineComponent : Component /// Used by the server to determine how long the vending machine stays in the "Deny" state. /// Used by the client to determine how long the deny animation should be played. /// - [DataField("denyDelay")] + [DataField] public float DenyDelay = 2.0f; /// @@ -29,16 +29,16 @@ public sealed partial class VendingMachineComponent : Component /// The selected item is dispensed afer this delay. /// Used by the client to determine how long the deny animation should be played. /// - [DataField("ejectDelay")] + [DataField] public float EjectDelay = 1.2f; - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary Inventory = new(); - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary EmaggedInventory = new(); - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary ContrabandInventory = new(); public bool Contraband; @@ -102,17 +102,6 @@ public sealed partial class VendingMachineComponent : Component // Yoinked from: https://github.com/discordia-space/CEV-Eris/blob/35bbad6764b14e15c03a816e3e89aa1751660ba9/sound/machines/Custom_deny.ogg public SoundSpecifier SoundDeny = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg"); - /// - /// The action available to the player controlling the vending machine - /// - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - [AutoNetworkedField] - public string? Action = "ActionVendingThrow"; - - [DataField("actionEntity")] - [AutoNetworkedField] - public EntityUid? ActionEntity; - public float NonLimitedEjectForce = 7.5f; public float NonLimitedEjectRange = 5f; diff --git a/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs b/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs index 82758b17f60e..27651bb1cb4a 100644 --- a/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs +++ b/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs @@ -2,17 +2,6 @@ namespace Content.Shared.VendingMachines { - [NetSerializable, Serializable] - public sealed class VendingMachineInterfaceState : BoundUserInterfaceState - { - public List Inventory; - - public VendingMachineInterfaceState(List inventory) - { - Inventory = inventory; - } - } - [Serializable, NetSerializable] public sealed class VendingMachineEjectMessage : BoundUserInterfaceMessage { diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index a6cf9ef0e308..99879cfbc945 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -5,6 +5,9 @@ description: Just add capitalism! abstract: true components: + - type: ActionGrant + actions: + - ActionVendingThrow - type: StationAiWhitelist - type: AmbientOnPowered - type: AmbientSound From b2cb813f54b04a10a12a862e5de6d053acb4c3a2 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 23 Sep 2024 14:55:30 +1000 Subject: [PATCH 111/161] Include container ents in examine (#32267) Mainly for closets but if it's like a mouse in a bag they can see what's in the bag type deal. --- Content.Client/Verbs/VerbSystem.cs | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index f990c83d7c2a..f84389195f8c 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -13,6 +13,7 @@ using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Client.State; +using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Utility; @@ -28,6 +29,7 @@ public sealed class VerbSystem : SharedVerbSystem [Dependency] private readonly IStateManager _stateManager = default!; [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly SharedContainerSystem _containers = default!; /// /// When a user right clicks somewhere, how large is the box we use to get entities for the context menu? @@ -81,12 +83,11 @@ public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true // Get entities _entities.Clear(); var entitiesUnderMouse = _tree.QueryAabb(targetPos.MapId, Box2.CenteredAround(targetPos.Position, new Vector2(EntityMenuLookupSize, EntityMenuLookupSize))); + bool Predicate(EntityUid e) => e == player; // Do we have to do FoV checks? if ((visibility & MenuVisibility.NoFov) == 0) { - bool Predicate(EntityUid e) => e == player; - TryComp(player.Value, out ExaminerComponent? examiner); foreach (var ent in entitiesUnderMouse) @@ -103,6 +104,21 @@ public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true } } + // If we're in a container list all other entities in it. + if (_containers.TryGetContainingContainer(player.Value, out var container)) + { + foreach (var ent in container.ContainedEntities) + { + if (ent == player.Value || _entities.Contains(ent)) + continue; + + if ((visibility & MenuVisibility.NoFov) == 0x0 || _examine.CanExamine(player.Value, targetPos, examined: ent)) + { + _entities.Add(ent); + } + } + } + if (_entities.Count == 0) return false; From ad6c5a1ce9943407a73cdd17fb713445345a1166 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 04:56:38 +0000 Subject: [PATCH 112/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9c6314081868..a6161f1248d2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Fixed ninja shoes not working as magboots. - type: Fix - id: 6920 - time: '2024-07-14T15:11:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28586 - author: lzk228 changes: - message: Scarves are eatable again. @@ -3921,3 +3914,10 @@ id: 7419 time: '2024-09-22T19:59:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31050 +- author: metalgearsloth + changes: + - message: You can examine entities inside of your own container again. + type: Fix + id: 7420 + time: '2024-09-23T04:55:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32267 From 3d2aadde1f3b8b023463fd23c701041655ef90dd Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Mon, 23 Sep 2024 01:48:58 -0500 Subject: [PATCH 113/161] L6 Fits in the Suit Storage Slot (#30525) * L6 Fits in the Suit Storage Slot * 5x4 item --- .../Entities/Objects/Weapons/Guns/LMGs/lmgs.yml | 3 +++ .../Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 1165 bytes .../Objects/Weapons/Guns/LMGs/l6.rsi/meta.json | 4 ++++ 3 files changed, 7 insertions(+) create mode 100644 Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml index 1a1514f48cf3..a415927cc568 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml @@ -8,11 +8,14 @@ - type: Sprite - type: Item size: Huge + shape: + - 0,0,4,3 - type: Clothing sprite: Objects/Weapons/Guns/LMGs/l6.rsi quickEquip: false slots: - Back + - suitStorage - type: Wieldable unwieldOnUse: false - type: GunWieldBonus diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..66bba2db27b590f6d332b89ecafd7548cfc8e4bc GIT binary patch literal 1165 zcmV;81akX{P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D1R_a9K~#8N?V3w# z)KC=1?qqcA2qL<4A?T*~32Ny;p-9^i zX%VKrHnk5yN~!$PoZ&WPl6x~rnvwg1kW6*X{Li`Po+S5N<#0G0ju^&k69@ifq0x1k zYChqgBiY*8?wTM}FOM9c70o8Z2B7~!#dF-$;BhiFbyZDHUTJ9+?NP)AVB=e})cCwy z;`;u*2ZhZ7Mt*($tN%$UG^5@B*cPKH02rK``>1Z;x>L9yT)#Hm(u77CFcXabBN1+A z_|o8DOTd@4HDjB$JX41${Zt(tSprZlm(|M3irU%PQoX%>#z8R30OnGZ!IM2b-jN5- z2TvUdI0K_Q50y&AX#PXTqa~yAqIz2G@9kxp0WdZ;)^hCUk6&tf`i7VGAfwOOWd4J3 z4G5!Fs~xA zI4mO%Y&89=LxQ8dy1K01y?<+^#X11hYSnZ8ZvDG=)a&&l zKS)vXFH?t6)<>SvrUrPF_N_)kOdMbF`cDNk$=#)}w8IMfLTSy=$;d_b?LGfIO!fgR$9cIH!lqi1yHV-^;8uj= z90LOv)y&LI|6lCkyVwx04LFbeH0n+20RV)G@Y&f9-Z=^KU2KW-6hfK%rqBCPbR5AT zx+n^l&8uk`dK~})01Nf`)U~Hd8lxlVwg?F6pO*bhrU0b*JP>9}zb!f(4u`|xa5%Dr zN6>EQ5Tns%4I;Bg;cmey0HdR$>hYr|h0OxAq0xre0Pxl&DYd!zTP-bp^8Q{#(1u1p zv&kD{Yyen$mnA7^HpAECih!;S&1jD!HUO-^1`QXL;6TahaTNbW5u{-wE2a%CkoQP0EsTvQgnU-wNB^?{#gdIxZbvjB?n#YUYhR|4RTwdla!#fTpAv)Z5cV zMKq#W8mdvm*8sY)enYaGFx4F!0QTod(d)F|pEde^0yLX!@i(sC`rPld<((DXpwZ!Q fI2;Z~QBdk1VrUzlwGgPK00000NkvXXu0mjf_T(eQ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json index 8cd2e3fe7b80..4b0e50c2b392 100644 --- a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json @@ -47,6 +47,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } From c4b8260f238c6db479e39d2834d23b236be7b938 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 06:50:05 +0000 Subject: [PATCH 114/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a6161f1248d2..b273b33e3fe0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Scarves are eatable again. - type: Fix - id: 6921 - time: '2024-07-14T15:12:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29959 - author: Winkarst-cpu changes: - message: Now addgamerule command processes only valid game rules. @@ -3921,3 +3914,12 @@ id: 7420 time: '2024-09-23T04:55:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32267 +- author: Cojoke-dot + changes: + - message: L6 Saw now fits in the suit slot + type: Tweak + - message: L6 Saw is now a 5x4 item + type: Tweak + id: 7421 + time: '2024-09-23T06:48:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30525 From caf34be616d153401a7fe40fbe932934b3c9daed Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 23 Sep 2024 19:28:42 +1200 Subject: [PATCH 115/161] Entity menu lookup changes (#32395) --- Content.Client/Verbs/VerbSystem.cs | 157 ++++++++++++++--------------- Content.Shared/CCVar/CCVars.cs | 6 ++ 2 files changed, 84 insertions(+), 79 deletions(-) diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index f84389195f8c..f592303d2819 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -1,9 +1,9 @@ using System.Diagnostics.CodeAnalysis; -using System.Linq; using System.Numerics; using Content.Client.Examine; using Content.Client.Gameplay; using Content.Client.Popups; +using Content.Shared.CCVar; using Content.Shared.Examine; using Content.Shared.Tag; using Content.Shared.Verbs; @@ -13,6 +13,7 @@ using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Client.State; +using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Utility; @@ -30,11 +31,10 @@ public sealed class VerbSystem : SharedVerbSystem [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly SharedContainerSystem _containers = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; - /// - /// When a user right clicks somewhere, how large is the box we use to get entities for the context menu? - /// - public const float EntityMenuLookupSize = 0.25f; + private float _lookupSize; /// /// These flags determine what entities the user can see on the context menu. @@ -43,128 +43,127 @@ public sealed class VerbSystem : SharedVerbSystem public Action? OnVerbsResponse; - private List _entities = new(); - public override void Initialize() { base.Initialize(); SubscribeNetworkEvent(HandleVerbResponse); + Subs.CVar(_cfg, CCVars.GameEntityMenuLookup, OnLookupChanged, true); + } + + private void OnLookupChanged(float val) + { + _lookupSize = val; } /// - /// Get all of the entities in an area for displaying on the context menu. + /// Get all of the entities in an area for displaying on the context menu. /// - public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true)] out List? result) + /// True if any entities were found. + public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true)] out List? entities) { - result = null; + entities = null; - if (_stateManager.CurrentState is not GameplayStateBase gameScreenBase) + if (_stateManager.CurrentState is not GameplayStateBase) return false; - var player = _playerManager.LocalEntity; - if (player == null) + if (_playerManager.LocalEntity is not { } player) return false; // If FOV drawing is disabled, we will modify the visibility option to ignore visiblity checks. - var visibility = _eyeManager.CurrentEye.DrawFov - ? Visibility - : Visibility | MenuVisibility.NoFov; + var visibility = _eyeManager.CurrentEye.DrawFov ? Visibility : Visibility | MenuVisibility.NoFov; - var ev = new MenuVisibilityEvent() + var ev = new MenuVisibilityEvent { TargetPos = targetPos, Visibility = visibility, }; - RaiseLocalEvent(player.Value, ref ev); + RaiseLocalEvent(player, ref ev); visibility = ev.Visibility; - // Get entities - _entities.Clear(); - var entitiesUnderMouse = _tree.QueryAabb(targetPos.MapId, Box2.CenteredAround(targetPos.Position, new Vector2(EntityMenuLookupSize, EntityMenuLookupSize))); - bool Predicate(EntityUid e) => e == player; - - // Do we have to do FoV checks? - if ((visibility & MenuVisibility.NoFov) == 0) - { - TryComp(player.Value, out ExaminerComponent? examiner); - - foreach (var ent in entitiesUnderMouse) - { - if (_examine.CanExamine(player.Value, targetPos, Predicate, ent.Uid, examiner)) - _entities.Add(ent.Uid); - } - } - else + // Initially, we include all entities returned by a sprite area lookup + var box = Box2.CenteredAround(targetPos.Position, new Vector2(_lookupSize, _lookupSize)); + var queryResult = _tree.QueryAabb(targetPos.MapId, box); + entities = new List(queryResult.Count); + foreach (var ent in queryResult) { - foreach (var ent in entitiesUnderMouse) - { - _entities.Add(ent.Uid); - } + entities.Add(ent.Uid); } // If we're in a container list all other entities in it. - if (_containers.TryGetContainingContainer(player.Value, out var container)) + // E.g., allow players in lockers to examine / interact with other entities in the same locker + if (_containers.TryGetContainingContainer((player, null), out var container)) { - foreach (var ent in container.ContainedEntities) + // Only include the container contents when clicking near it. + if (entities.Contains(container.Owner) + || _containers.TryGetOuterContainer(container.Owner, Transform(container.Owner), out var outer) + && entities.Contains(outer.Owner)) { - if (ent == player.Value || _entities.Contains(ent)) - continue; - - if ((visibility & MenuVisibility.NoFov) == 0x0 || _examine.CanExamine(player.Value, targetPos, examined: ent)) + // The container itself might be in some other container, so it might not have been added by the + // sprite tree lookup. + if (!entities.Contains(container.Owner)) + entities.Add(container.Owner); + + // TODO Context Menu + // This might miss entities in some situations. E.g., one of the contained entities entity in it, that + // itself has another entity attached to it, then we should be able to "see" that entity. + // E.g., if a security guard is on a segway and gets thrown in a locker, this wouldn't let you see the guard. + foreach (var ent in container.ContainedEntities) { - _entities.Add(ent); + if (!entities.Contains(ent)) + entities.Add(ent); } } } - if (_entities.Count == 0) - return false; - - if (visibility == MenuVisibility.All) + if ((visibility & MenuVisibility.InContainer) != 0) { - result = new (_entities); - return true; + // This is inefficient, but I'm lazy and CBF implementing my own recursive container method. Note that + // this might actually fail to add the contained children of some entities in the menu. E.g., an entity + // with a large sprite aabb, but small broadphase might appear in the menu, but have its children added + // by this. + var flags = LookupFlags.All & ~LookupFlags.Sensors; + foreach (var e in _lookup.GetEntitiesInRange(targetPos, _lookupSize, flags: flags)) + { + if (!entities.Contains(e)) + entities.Add(e); + } } - // remove any entities in containers - if ((visibility & MenuVisibility.InContainer) == 0) + // Do we have to do FoV checks? + if ((visibility & MenuVisibility.NoFov) == 0) { - for (var i = _entities.Count - 1; i >= 0; i--) + TryComp(player, out ExaminerComponent? examiner); + for (var i = entities.Count - 1; i >= 0; i--) { - var entity = _entities[i]; - - if (ContainerSystem.IsInSameOrTransparentContainer(player.Value, entity)) - continue; - - _entities.RemoveSwap(i); + if (!_examine.CanExamine(player, targetPos, e => e == player, entities[i], examiner)) + entities.RemoveSwap(i); } } - // remove any invisible entities - if ((visibility & MenuVisibility.Invisible) == 0) + if ((visibility & MenuVisibility.Invisible) != 0) + return entities.Count != 0; + + for (var i = entities.Count - 1; i >= 0; i--) { - var spriteQuery = GetEntityQuery(); + if (_tagSystem.HasTag(entities[i], "HideContextMenu")) + entities.RemoveSwap(i); + } - for (var i = _entities.Count - 1; i >= 0; i--) - { - var entity = _entities[i]; + // Unless we added entities in containers, every entity should already have a visible sprite due to + // the fact that we used the sprite tree query. + if (container == null && (visibility & MenuVisibility.InContainer) == 0) + return entities.Count != 0; - if (!spriteQuery.TryGetComponent(entity, out var spriteComponent) || - !spriteComponent.Visible || - _tagSystem.HasTag(entity, "HideContextMenu")) - { - _entities.RemoveSwap(i); - } - } + var spriteQuery = GetEntityQuery(); + for (var i = entities.Count - 1; i >= 0; i--) + { + if (!spriteQuery.TryGetComponent(entities[i], out var spriteComponent) || !spriteComponent.Visible) + entities.RemoveSwap(i); } - if (_entities.Count == 0) - return false; - - result = new(_entities); - return true; + return entities.Count != 0; } /// diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index d6d8bafa0e6c..26101c7537ee 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -430,6 +430,12 @@ public static readonly CVarDef public static readonly CVarDef ContrabandExamine = CVarDef.Create("game.contraband_examine", true, CVar.SERVER | CVar.REPLICATED); + /// + /// Size of the lookup area for adding entities to the context menu + /// + public static readonly CVarDef GameEntityMenuLookup = + CVarDef.Create("game.entity_menu_lookup", 0.25f, CVar.CLIENTONLY | CVar.ARCHIVE); + /* * Discord */ From b6845defa039e50d77e287a0c2937e97db8d982f Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 07:29:48 +0000 Subject: [PATCH 116/161] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ Resources/Changelog/Changelog.yml | 15 ++++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index c5b567f69e39..537c6b09ff5b 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -544,5 +544,13 @@ Entries: id: 67 time: '2024-09-15T01:55:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31654 +- author: ElectroJr + changes: + - message: The `menuvis all` once again makes all entities show up in the right-click + context menu. + type: Fix + id: 68 + time: '2024-09-23T07:28:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32395 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b273b33e3fe0..a3dd8da68a65 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now addgamerule command processes only valid game rules. - type: Fix - id: 6922 - time: '2024-07-15T19:18:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29912 - author: Jezithyr changes: - message: Removed the Geras ability from Slimes @@ -3923,3 +3916,11 @@ id: 7421 time: '2024-09-23T06:48:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30525 +- author: ElectroJr + changes: + - message: Entities within the same container as the player only appear in the context + menu when clicking near the container. + type: Fix + id: 7422 + time: '2024-09-23T07:28:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32395 From a7e29f2878a63d62c9c23326e2b8f2dc64d40cc4 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:51:48 +0200 Subject: [PATCH 117/161] Computer wirepanel (#32273) * Computer wirehacking * Power wire now shocks * deconstruction fix * updated tests * Better parenting * maintenance panel sprite * new sprite for maintenance panel open --- .../Interaction/ComputerContruction.cs | 4 +- Resources/Locale/en-US/wires/wire-names.ftl | 1 + .../Computers/base_structurecomputers.yml | 29 +++ .../Machines/Computers/computers.yml | 184 +++++++++++++----- .../Construction/Graphs/machines/computer.yml | 6 +- Resources/Prototypes/Wires/layouts.yml | 35 ++-- .../computers.rsi/generic_panel_open.png | Bin 0 -> 405 bytes .../Machines/computers.rsi/meta.json | 6 +- 8 files changed, 203 insertions(+), 62 deletions(-) create mode 100644 Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs b/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs index 8af5edaf3165..9a819b257bc2 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs @@ -39,7 +39,7 @@ public async Task DeconstructComputer() await StartDeconstruction(ComputerId); // Initial interaction turns id computer into generic computer - await InteractUsing(Screw); + await InteractUsing(Pry); AssertPrototype(ComputerFrame); // Perform deconstruction steps @@ -69,7 +69,7 @@ public async Task ChangeComputer() await SpawnTarget(ComputerId); // Initial interaction turns id computer into generic computer - await InteractUsing(Screw); + await InteractUsing(Pry); AssertPrototype(ComputerFrame); // Perform partial deconstruction steps diff --git a/Resources/Locale/en-US/wires/wire-names.ftl b/Resources/Locale/en-US/wires/wire-names.ftl index 1ac2ae89123f..16ae068eaafc 100644 --- a/Resources/Locale/en-US/wires/wire-names.ftl +++ b/Resources/Locale/en-US/wires/wire-names.ftl @@ -40,6 +40,7 @@ wires-board-name-fatextractor = FatExtractor wires-board-name-flatpacker = Flatpacker wires-board-name-spaceheater = Space Heater wires-board-name-jukebox = Jukebox +wires-board-name-computer = Computer # names that get displayed in the wire hacking hud & admin logs. diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index 204e06c8600a..9baca8b4b6b2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -30,6 +30,8 @@ state: generic - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Appearance - type: GenericVisualizer visuals: @@ -40,6 +42,10 @@ computerLayerKeys: True: { visible: true, shader: unshaded } False: { visible: true, shader: shaded } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: LitOnPowered - type: PointLight radius: 1.5 @@ -61,3 +67,26 @@ - type: LightningTarget priority: 1 - type: RequireProjectileTarget + - type: Electrified + enabled: false + usesApcPower: true + - type: WiresPanel + - type: WiresVisuals + - type: Wires + boardName: wires-board-name-computer + layoutId: Computer +# +# This is overwritten by children, so needs to be defined there +# - type: UserInterface +# interfaces: +# enum.WiresUiKey.Key: +# type: WiresBoundUserInterface + +- type: entity + parent: BaseComputer + id: BaseComputerAiAccess + components: + - type: StationAiWhitelist + - type: Wires + boardName: wires-board-name-computer + layoutId: ComputerAi diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index f9fd10152f60..4cd596e9b448 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -1,10 +1,9 @@ - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerAlert name: atmospheric alerts computer description: Used to access the station's atmospheric automated alert system. components: - - type: StationAiWhitelist - type: Computer board: AlertsComputerCircuitboard - type: Sprite @@ -17,6 +16,8 @@ state: alert-0 - map: ["computerLayerKeys"] state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: GenericVisualizer visuals: enum.ComputerVisuals.Powered: @@ -25,7 +26,7 @@ False: { visible: false } computerLayerKeys: True: { visible: true, shader: unshaded } - False: { visible: true, shader: shaded } + False: { visible: true, shader: shaded } enum.AtmosAlertsComputerVisuals.ComputerLayerScreen: computerLayerScreen: 0: { state: alert-0 } @@ -33,6 +34,10 @@ 2: { state: alert-1 } 3: { state: alert-2 } 4: { state: alert-2 } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: AtmosAlertsComputer - type: ActivatableUI singleUser: true @@ -41,6 +46,8 @@ interfaces: enum.AtmosAlertsComputerUiKey.Key: type: AtmosAlertsComputerBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -58,6 +65,8 @@ interfaces: enum.EmergencyConsoleUiKey.Key: type: EmergencyConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: PointLight radius: 1.5 energy: 1.6 @@ -79,6 +88,8 @@ interfaces: enum.ShuttleConsoleUiKey.Key: type: ShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: RadarConsole - type: WorldLoader radius: 256 @@ -121,6 +132,8 @@ state: shuttle - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: ShuttleConsoleCircuitboard @@ -140,6 +153,8 @@ state: syndishuttle - map: ["computerLayerKeys"] state: syndie_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Tag tags: - Syndicate @@ -170,6 +185,8 @@ state: shuttle - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: DroneConsole components: - type: CargoShuttle @@ -185,12 +202,11 @@ stealGroup: CargoShuttleConsoleCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerIFF name: IFF computer description: Allows you to control the IFF characteristics of this vessel. components: - - type: StationAiWhitelist - type: IFFConsole - type: Sprite layers: @@ -203,12 +219,16 @@ state: helm - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ActivatableUI key: enum.IFFConsoleUiKey.Key - type: UserInterface interfaces: enum.IFFConsoleUiKey.Key: type: IFFConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: ComputerIFFCircuitboard @@ -229,16 +249,17 @@ interfaces: enum.IFFConsoleUiKey.Key: type: IFFConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: ComputerIFFSyndicateCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerPowerMonitoring name: power monitoring computer description: It monitors power levels across the station. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -249,6 +270,8 @@ state: power_monitor - map: ["computerLayerKeys"] state: power_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -270,14 +293,15 @@ interfaces: enum.PowerMonitoringConsoleUiKey.Key: type: PowerMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerMedicalRecords name: medical records computer description: This can be used to check medical records. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -288,6 +312,8 @@ state: medcomp - map: ["computerLayerKeys"] state: med_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -296,17 +322,18 @@ board: MedicalRecordsComputerCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCriminalRecords name: criminal records computer description: This can be used to check criminal records. Only security can modify them. components: - - type: StationAiWhitelist - type: CriminalRecordsConsole - type: UserInterface interfaces: enum.CriminalRecordsConsoleKey.Key: type: CriminalRecordsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ActivatableUI key: enum.CriminalRecordsConsoleKey.Key - type: Sprite @@ -319,6 +346,8 @@ state: explosive - map: ["computerLayerKeys"] state: security_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -332,17 +361,18 @@ - CriminalRecords - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerStationRecords name: station records computer description: This can be used to check station records. components: - - type: StationAiWhitelist - type: GeneralStationRecordConsole - type: UserInterface interfaces: enum.GeneralStationRecordConsoleKey.Key: type: GeneralStationRecordConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ActivatableUI key: enum.GeneralStationRecordConsoleKey.Key - type: PointLight @@ -356,12 +386,11 @@ - Forensics - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCrewMonitoring name: crew monitoring console description: Used to monitor active health sensors built into most of the crew's uniforms. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -372,6 +401,8 @@ state: crew - map: ["computerLayerKeys"] state: med_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -384,6 +415,8 @@ interfaces: enum.CrewMonitoringUIKey.Key: type: CrewMonitoringBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: CrewMonitoringConsole - type: DeviceNetwork deviceNetId: Wireless @@ -392,12 +425,11 @@ range: 1200 - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerResearchAndDevelopment name: R&D computer description: A computer used to interface with R&D tools. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -408,6 +440,8 @@ state: rdcomp - map: ["computerLayerKeys"] state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ResearchClient - type: ResearchConsole - type: ActiveRadio @@ -422,6 +456,8 @@ type: ResearchConsoleBoundUserInterface enum.ResearchClientUiKey.Key: type: ResearchClientBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -437,12 +473,11 @@ - Science - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerAnalysisConsole name: analysis console description: A computer used to interface with the artifact analyzer. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -453,6 +488,8 @@ state: artifact - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ResearchClient - type: AnalysisConsole reportEntityId: PaperArtifactAnalyzer @@ -471,6 +508,8 @@ type: AnalysisConsoleBoundUserInterface enum.ResearchClientUiKey.Key: type: ResearchClientBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -484,12 +523,11 @@ - Xenoarchaeology - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerId name: ID card computer description: Terminal for programming Nanotrasen employee ID cards to access parts of the station. components: - - type: StationAiWhitelist - type: IdCardConsole privilegedIdSlot: name: id-card-console-privileged-id @@ -515,6 +553,8 @@ interfaces: enum.IdCardConsoleUiKey.Key: type: IdCardConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: CrewManifestViewer ownerKey: enum.IdCardConsoleUiKey.Key - type: Sprite @@ -527,6 +567,8 @@ state: id - map: ["computerLayerKeys"] state: id_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: IDComputerCircuitboard - type: PointLight @@ -544,12 +586,11 @@ IdCardConsole-targetId: !type:ContainerSlot - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: computerBodyScanner name: body scanner computer description: A body scanner. components: - - type: StationAiWhitelist - type: ApcPowerReceiver powerLoad: 500 - type: Computer @@ -560,12 +601,11 @@ color: "#1f8c28" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerComms name: communications computer description: A computer used to make station wide announcements via keyboard, set the appropriate alert level, and call the emergency shuttle. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -576,6 +616,8 @@ state: comm - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: AccessReader access: [[ "Command" ]] - type: CommunicationsConsole @@ -588,6 +630,8 @@ interfaces: enum.CommunicationsConsoleUiKey.Key: type: CommunicationsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CommsComputerCircuitboard - type: PointLight @@ -614,6 +658,8 @@ state: comm_syndie - map: ["computerLayerKeys"] state: syndie_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: AccessReader access: [[ "NuclearOperative" ]] - type: CommunicationsConsole @@ -630,12 +676,11 @@ color: "#f71713" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerSolarControl name: solar control computer description: A controller for solar panel arrays. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -646,6 +691,8 @@ state: solar_screen - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: SolarControlConsole - type: ActivatableUI key: enum.SolarControlConsoleUiKey.Key @@ -653,6 +700,8 @@ interfaces: enum.SolarControlConsoleUiKey.Key: type: SolarControlConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: SolarControlComputerCircuitboard - type: PointLight @@ -661,12 +710,11 @@ color: "#e6e227" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerRadar name: mass scanner computer description: A computer for detecting nearby bodies, displaying them by position and mass. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -677,6 +725,8 @@ state: solar_screen - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: RadarConsole - type: ActivatableUI key: enum.RadarConsoleUiKey.Key @@ -684,6 +734,8 @@ interfaces: enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: RadarConsoleCircuitboard - type: PointLight @@ -693,11 +745,10 @@ - type: entity id: ComputerCargoShuttle - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo shuttle computer description: Used to order the shuttle. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -708,6 +759,8 @@ state: supply - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoShuttleConsole - type: ActivatableUI key: enum.CargoConsoleUiKey.Shuttle @@ -715,6 +768,8 @@ interfaces: enum.CargoConsoleUiKey.Shuttle: type: CargoShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoShuttleComputerCircuitboard - type: PointLight @@ -729,11 +784,10 @@ - type: entity id: ComputerCargoOrders - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo request computer description: Used to order supplies and approve requests. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -744,6 +798,8 @@ state: request - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoOrderConsole - type: BankClient - type: ActiveRadio @@ -755,6 +811,8 @@ interfaces: enum.CargoConsoleUiKey.Orders: type: CargoOrderConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoRequestComputerCircuitboard - type: PointLight @@ -778,11 +836,10 @@ - type: entity id: ComputerCargoBounty - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo bounty computer description: Used to manage currently active bounties. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -793,6 +850,8 @@ state: bounty - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoBountyConsole - type: ActivatableUI key: enum.CargoConsoleUiKey.Bounty @@ -800,6 +859,8 @@ interfaces: enum.CargoConsoleUiKey.Bounty: type: CargoBountyConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoBountyComputerCircuitboard - type: PointLight @@ -814,12 +875,11 @@ - Cargo - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCloningConsole name: cloning console computer description: The centerpiece of the cloning system, medicine's greatest accomplishment. It has lots of ports and wires. components: - - type: StationAiWhitelist - type: CloningConsole - type: DeviceList - type: DeviceNetwork @@ -834,6 +894,8 @@ state: dna - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ApcPowerReceiver powerLoad: 3100 #We want this to fail first so I transferred most of the scanner and pod's power here. (3500 in total) - type: Computer @@ -853,6 +915,8 @@ interfaces: enum.CloningConsoleUiKey.Key: type: CloningConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Speech speechVerb: Robotic speechSounds: Pai @@ -865,11 +929,10 @@ - type: entity id: ComputerSalvageExpedition - parent: BaseComputer + parent: BaseComputerAiAccess name: salvage expeditions computer description: Used to accept salvage missions, if you're tough enough. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -880,6 +943,8 @@ state: mining - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Appearance - type: GenericVisualizer visuals: @@ -890,6 +955,10 @@ computerLayerKeys: True: { visible: true, shader: unshaded } False: { visible: true } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: SalvageExpeditionConsole - type: ActivatableUI key: enum.SalvageConsoleUiKey.Expedition @@ -898,6 +967,8 @@ interfaces: enum.SalvageConsoleUiKey.Expedition: type: SalvageExpeditionConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: SalvageExpeditionsComputerCircuitboard - type: PointLight @@ -925,6 +996,8 @@ state: cameras - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: SurveillanceCameraMonitorCircuitboard - type: DeviceNetwork @@ -943,6 +1016,8 @@ interfaces: enum.SurveillanceCameraMonitorUiKey.Key: type: SurveillanceCameraMonitorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -960,6 +1035,8 @@ state: cameras - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: SurveillanceWirelessCameraMonitorCircuitboard - type: DeviceNetwork @@ -980,14 +1057,15 @@ interfaces: enum.SurveillanceCameraMonitorUiKey.Key: type: SurveillanceCameraMonitorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity id: ComputerPalletConsole - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo sale computer description: Used to sell goods loaded onto cargo pallets. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -998,6 +1076,8 @@ state: request - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Anchorable flags: - Anchorable @@ -1008,6 +1088,8 @@ interfaces: enum.CargoPalletConsoleUiKey.Sale: type: CargoPalletConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoSaleComputerCircuitboard - type: PointLight @@ -1019,12 +1101,11 @@ - Cargo - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerMassMedia name: news manager console description: Write your message to the world! components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1035,6 +1116,8 @@ state: service - map: ["computerLayerKeys"] state: service_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: ComputerMassMediaCircuitboard - type: DeviceNetworkRequiresPower @@ -1050,6 +1133,8 @@ interfaces: enum.NewsWriterUiKey.Key: type: NewsWriterBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -1070,6 +1155,8 @@ state: sensors - map: ["computerLayerKeys"] state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -1083,6 +1170,8 @@ interfaces: enum.SensorMonitoringConsoleUiKey.Key: type: SensorMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: DeviceNetwork deviceNetId: AtmosDevices receiveFrequencyId: AtmosMonitor @@ -1095,12 +1184,11 @@ - type: AtmosDevice - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerRoboticsControl name: robotics control console description: Used to remotely monitor, disable and destroy the station's cyborgs. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1111,6 +1199,8 @@ state: robot - map: ["computerLayerKeys"] state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: RoboticsConsole - type: ActiveRadio channels: @@ -1121,6 +1211,8 @@ interfaces: enum.RoboticsConsoleUiKey.Key: type: RoboticsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: DeviceNetwork @@ -1150,6 +1242,8 @@ state: aiupload - map: [ "computerLayerKeys" ] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ApcPowerReceiver powerLoad: 1000 - type: Computer diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml index 4792bb216f3e..b3c9cac92622 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml @@ -117,15 +117,15 @@ amount: 2 steps: - tool: Prying + doAfter: 1 - node: computer entity: !type:BoardNodeEntity { container: board } edges: - to: monitorUnsecured - conditions: - - !type:AllWiresCut {} steps: - - tool: Screwing + - tool: Prying + doAfter: 1 - node: monitorBroken entity: ComputerBroken diff --git a/Resources/Prototypes/Wires/layouts.yml b/Resources/Prototypes/Wires/layouts.yml index 7b42ef8b7530..955bae0104a6 100644 --- a/Resources/Prototypes/Wires/layouts.yml +++ b/Resources/Prototypes/Wires/layouts.yml @@ -156,22 +156,35 @@ id: TrainingDefusable dummyWires: 0 wires: - - !type:ActivateWireAction - - !type:BoltWireAction - - !type:DelayWireAction - - !type:ProceedWireAction - - !type:BoomWireAction - + - !type:ActivateWireAction + - !type:BoltWireAction + - !type:DelayWireAction + - !type:ProceedWireAction + - !type:BoomWireAction + - type: wireLayout id: Jukebox dummyWires: 2 wires: - - !type:PowerWireAction - - !type:AiInteractWireAction - + - !type:PowerWireAction + - !type:AiInteractWireAction + - type: wireLayout id: AnomalyGenerator dummyWires: 2 wires: - - !type:PowerWireAction - - !type:AiInteractWireAction + - !type:PowerWireAction + - !type:AiInteractWireAction + +- type: wireLayout + id: Computer + dummyWires: 3 + wires: + - !type:PowerWireAction + +- type: wireLayout + id: ComputerAi + dummyWires: 2 + wires: + - !type:PowerWireAction + - !type:AiInteractWireAction diff --git a/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png b/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png new file mode 100644 index 0000000000000000000000000000000000000000..ac7f9f66414fd6796d958d8e76b2182ca3fcc238 GIT binary patch literal 405 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9GGLLkg|>2BR01_nlV zPZ!6KinzD84EdT2M2>wtl=o;sq4`%Gs|qn zIdGF`?m#}ZdL8&{1e0N|GBIsM%58kV%qJ?{HL#Ud;9JApKTYf{%rbkr1S3+S=FAmB{^%Y kXHCll=>ThEae2TylPRI>R|8u;Fq|1YUHx3vIVCg!0QoDTu>b%7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index b6741b195d2a..5355f379ab12 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273.", "size": { "x": 32, "y": 32 @@ -1013,6 +1013,10 @@ "name": "generic_keys", "directions": 4 }, + { + "name": "generic_panel_open", + "directions": 4 + }, { "name": "generic_keyboard", "directions": 4 From 0a3273a4361294302852b4cd6876baafdd1fe613 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 10:52:54 +0000 Subject: [PATCH 118/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a3dd8da68a65..00417a2a9d3b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Jezithyr - changes: - - message: Removed the Geras ability from Slimes - type: Remove - id: 6923 - time: '2024-07-16T22:50:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29731 - author: K-Dynamic changes: - message: nerfed paraylze timer of all slippable objects (including soaps, water @@ -3924,3 +3917,12 @@ id: 7422 time: '2024-09-23T07:28:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32395 +- author: Errant + changes: + - message: Computers now have a maintenance panel with a Power and AI wire (if AI-connected). + type: Tweak + - message: Computer deconstruction now begins with the crowbar, not the screwdriver. + type: Tweak + id: 7423 + time: '2024-09-23T10:51:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32273 From aab423667ef7bc2dd4a6c50fbe21c370634ce936 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:12:23 +0200 Subject: [PATCH 119/161] Fix guidebook books don't have damage (#32403) --- Resources/Prototypes/Entities/Objects/Misc/books.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Entities/Objects/Misc/books.yml index 15ecd5d2a80d..21269366d408 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/books.yml @@ -60,6 +60,15 @@ openOnActivation: true guides: - SS14 + - type: MeleeWeapon # Should write it again since BaseGuidebook doesn't inherit BookBase + soundHit: + collection: Punch + damage: + types: + Blunt: 1 + - type: DamageOtherOnHit + damage: + types: - type: entity id: BookSpaceEncyclopedia From 16c46af6c5db1344fa648562cb0047d8deddfc15 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 11:13:29 +0000 Subject: [PATCH 120/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 00417a2a9d3b..e31d122ed08a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: K-Dynamic - changes: - - message: nerfed paraylze timer of all slippable objects (including soaps, water - puddles, and clown-related items) - type: Tweak - id: 6924 - time: '2024-07-16T23:26:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27879 - author: EmoGarbage404 changes: - message: Resprited wall signs. @@ -3926,3 +3918,10 @@ id: 7423 time: '2024-09-23T10:51:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32273 +- author: lzk228 + changes: + - message: Guidebook books now do damage like default writeable books. + type: Fix + id: 7424 + time: '2024-09-23T11:12:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32403 From 24140d8c8a23ed7222a48e1a2b0f2e2fa4cda2c4 Mon Sep 17 00:00:00 2001 From: Jophire <36978900+Jophire@users.noreply.github.com> Date: Mon, 23 Sep 2024 09:08:10 -0400 Subject: [PATCH 121/161] VIM have Passenger Access. (#32302) * Revert "Update mechs.yml" This reverts commit 4a44065b11c427581462a9bfa46fc66ff8878cf4. * Reapply "Update mechs.yml" This reverts commit fb5db29f4ae58106180ac836d01f953b816e7a61. * Revert "Reapply "Update mechs.yml"" This reverts commit c845b6bb3d3e6e80ce7a8aa290b10e2f71bca726. * Reapply "Reapply "Update mechs.yml"" This reverts commit 41b8934fd100337c31b26fc5e269f65e1f459970. * VIM Door Stuck Fix Vim No longer gets stuck in doors. * VIM has Passenger Access Debug Tested on the wrong map. Much easier solution. Just give the mech Access tags. * Moved tags to proper VIM. Moved access tag to the non-admin VIM. --- Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 99d39a82499b..1fbde27e71b0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -288,6 +288,9 @@ - type: MovementSpeedModifier baseWalkSpeed: 2.25 baseSprintSpeed: 3.6 + - type: Access + tags: + - Maintenance # TOOD: buzz / chime actions # TODO: builtin flashlight From 31db37e8264219c4cb7c7e1c51a0a602e3639a1d Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 13:09:17 +0000 Subject: [PATCH 122/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e31d122ed08a..aac913670962 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: Resprited wall signs. - type: Tweak - id: 6925 - time: '2024-07-17T04:35:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29806 - author: lzk228 changes: - message: Added health examine for caustic and cold damage. @@ -3925,3 +3918,10 @@ id: 7424 time: '2024-09-23T11:12:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32403 +- author: Jophire + changes: + - message: VIM mech now can open maintenance doors! + type: Add + id: 7425 + time: '2024-09-23T13:08:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32302 From 5e9a0c9d9d975a1041e2eeb64e692676360e1144 Mon Sep 17 00:00:00 2001 From: spanky-spanky Date: Mon, 23 Sep 2024 12:17:45 -0400 Subject: [PATCH 123/161] Omega Minor Sec Update (#32410) * Updated Omega armory and Warden office. * Adjusted walls, a decal, and an air sensor. --- Resources/Maps/omega.yml | 1483 +++++++++++++++++++++++--------------- 1 file changed, 894 insertions(+), 589 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index b8cf3c6fc000..708edad454a0 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -81,7 +81,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 @@ -161,7 +161,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -193,11 +193,11 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAATQAAAAAAHQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA + tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -209,7 +209,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -294,7 +294,6 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 1605: -35,19 1864: 47,-4 1865: 49,-4 1866: 55,-4 @@ -318,6 +317,7 @@ entities: 1871: 55,-2 1872: 49,-2 2080: 47,-2 + 2188: -35.0297,19.625114 - node: color: '#FFFFFFFF' id: Bot @@ -377,7 +377,6 @@ entities: 1234: -16,-26 1531: 2,-36 1532: -15,-14 - 1604: -37,20 1725: -37,4 1726: -37,5 1735: -32,4 @@ -397,6 +396,10 @@ entities: 2120: -40,-16 2122: -51,0 2128: -58,0 + 2152: -37,22 + 2153: -36,22 + 2182: -34,20 + 2183: -38,15 - node: angle: 4.71238898038469 rad color: '#DE3A3AFF' @@ -414,8 +417,6 @@ entities: 1599: -32,-10 1600: -33,-10 1601: -34,-10 - 1602: -36,21 - 1603: -37,21 1742: -35,4 1743: -34,5 1913: 24,15 @@ -1258,7 +1259,6 @@ entities: 297: 30,1 444: -5,-26 445: -3,-31 - 559: -33,17 560: -35,13 612: -27,28 613: -31,28 @@ -1454,7 +1454,6 @@ entities: 295: 29,4 296: 30,4 432: -3,-25 - 551: -35,17 600: -27,32 601: -28,32 602: -29,32 @@ -1557,7 +1556,6 @@ entities: 290: 29,2 291: 28,2 435: -3,-30 - 552: -35,14 606: -32,29 607: -31,29 608: -30,29 @@ -1670,8 +1668,6 @@ entities: 545: -32,18 546: -32,19 547: -32,20 - 555: -36,15 - 556: -36,16 592: -32,26 593: -32,27 594: -28,26 @@ -1755,12 +1751,11 @@ entities: 441: -2,-28 442: -2,-27 443: -2,-26 - 557: -34,15 - 558: -34,16 596: -26,26 597: -26,27 598: -30,26 599: -30,27 + 2163: -34,15 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -1984,6 +1979,9 @@ entities: 528: -27,17 544: -32,17 616: -26,10 + 2160: -35,16 + 2161: -36,16 + 2162: -37,16 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -2265,6 +2263,14 @@ entities: 542: -32,10 548: -32,15 615: -26,11 + 2164: -35,14 + 2165: -36,14 + 2166: -37,14 + 2172: -35,18 + 2176: -34,18 + 2177: -36,18 + 2180: -30,11 + 2184: -33,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -2443,6 +2449,10 @@ entities: 540: -29,17 541: -29,20 617: -27,10 + 2173: -35,18 + 2175: -34,18 + 2178: -36,18 + 2185: -33,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -2560,7 +2570,6 @@ entities: decals: 286: 27,4 430: -4,-25 - 550: -36,17 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -2605,7 +2614,7 @@ entities: decals: 288: 31,2 434: -2,-30 - 553: -34,14 + 2159: -34,14 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -2650,7 +2659,6 @@ entities: decals: 285: 27,2 433: -4,-30 - 554: -36,14 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -2696,7 +2704,7 @@ entities: decals: 287: 31,4 431: -2,-25 - 549: -34,17 + 2158: -34,16 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -2774,11 +2782,17 @@ entities: id: WarnCornerGreyscaleSW decals: 1174: -13,-24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 2144: -35,21 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 1235: -15,-29 + 2143: -37,21 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -2798,12 +2812,14 @@ entities: decals: 935: 23,3 1901: 26,16 + 2149: -37,21 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 934: 25,3 2132: -56,1 + 2150: -35,21 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2815,6 +2831,11 @@ entities: id: WarnEnd decals: 42: 7,15 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 2142: -37,20 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -2836,6 +2857,7 @@ entities: 2097: -60,0 2098: -60,1 2099: -60,2 + 2146: -35,20 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -2904,6 +2926,7 @@ entities: 2078: -45,-4 2129: -58,1 2130: -57,1 + 2148: -36,21 - node: color: '#FFFFFFFF' id: WarnLineS @@ -2913,6 +2936,11 @@ entities: 2131: -56,0 2133: -59,4 2140: -59,5 + 2147: -35,20 + 2167: -37,14 + 2168: -37,15 + 2169: -37,16 + 2179: -36,18 - node: color: '#FFFFFFFF' id: WarnLineW @@ -2933,6 +2961,7 @@ entities: 2094: -49,5 2095: -48,5 2138: -56,5 + 2145: -36,21 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2945,10 +2974,6 @@ entities: 218: 14,44 219: 13,44 257: 10,50 - 584: -34,21 - 585: -35,21 - 586: -36,21 - 587: -37,21 871: -53,-12 872: -54,-12 873: -55,-12 @@ -3005,10 +3030,6 @@ entities: 427: 24,-23 428: 25,-23 429: 26,-23 - 498: -34,19 - 499: -35,19 - 500: -36,19 - 501: -37,19 590: -30,22 591: -31,22 724: -43,-4 @@ -3454,7 +3475,7 @@ entities: -8,3: 0: 65535 -9,4: - 0: 29431 + 0: 12071 -8,5: 0: 65391 -8,6: @@ -4188,14 +4209,11 @@ entities: 1: 784 -11,4: 6: 546 - 0: 8 -11,6: 0: 49152 -11,3: 0: 34823 1: 1792 - -10,5: - 0: 152 -11,7: 0: 2184 -10,7: @@ -4203,11 +4221,13 @@ entities: -10,6: 0: 3296 -10,4: - 0: 32904 + 0: 2060 + -10,5: + 0: 3276 -10,3: - 0: 35087 + 0: 52495 -9,5: - 0: 119 + 0: 1911 -9,6: 0: 4400 -13,0: @@ -4296,6 +4316,8 @@ entities: 0: 5392 -15,-2: 0: 2295 + -15,-1: + 0: 1 -15,-4: 0: 16384 -14,-2: @@ -4555,6 +4577,7 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: NavMap - proto: AcousticGuitarInstrument entities: - uid: 1755 @@ -4866,6 +4889,9 @@ entities: - 7873 - 7887 - 7886 + - 7743 + - 13696 + - 13697 - uid: 12213 components: - type: Transform @@ -4876,18 +4902,6 @@ entities: - 7905 - 7907 - 12214 - - uid: 12215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 4812 - - type: DeviceList - devices: - - 12216 - - 12212 - - 7906 - - 7908 - uid: 12219 components: - type: Transform @@ -5504,6 +5518,18 @@ entities: - 12688 - 12764 - 12766 + - uid: 13156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 4812 + - type: DeviceList + devices: + - 12212 + - 13522 + - 7908 + - 5174 - uid: 13204 components: - type: Transform @@ -5535,17 +5561,30 @@ entities: - 9504 - 9421 - 13408 + - 13683 + - 13682 + - uid: 13677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 13676 + - 10972 + - 8372 - proto: AirAlarmElectronics entities: - uid: 10719 components: - type: Transform - pos: -30.29477,5.0635805 + pos: -31.969843,3.438716 parent: 4812 - uid: 10720 components: - type: Transform - pos: -30.216644,4.9385805 + pos: -31.876093,3.44914 parent: 4812 - proto: AirCanister entities: @@ -5608,20 +5647,21 @@ entities: parent: 4812 - proto: AirlockArmoryGlassLocked entities: - - uid: 7800 + - uid: 7802 components: - type: Transform - pos: -34.5,18.5 + pos: -34.5,13.5 parent: 4812 - - uid: 7801 + - uid: 10941 components: - type: Transform - pos: -32.5,17.5 + rot: 3.141592653589793 rad + pos: -34.5,19.5 parent: 4812 - - uid: 7802 + - uid: 12471 components: - type: Transform - pos: -34.5,13.5 + pos: -34.5,17.5 parent: 4812 - proto: AirlockAtmosphericsGlassLocked entities: @@ -5831,11 +5871,6 @@ entities: parent: 4812 - proto: AirlockCommandLocked entities: - - uid: 5174 - components: - - type: Transform - pos: -24.5,23.5 - parent: 4812 - uid: 11928 components: - type: Transform @@ -6637,23 +6672,28 @@ entities: parent: 4812 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 7935 + - uid: 2965 components: - type: Transform pos: -22.5,26.5 parent: 4812 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 7934 + - uid: 2918 components: - type: Transform - pos: -18.5,25.5 + pos: -24.5,23.5 parent: 4812 - - uid: 7936 + - uid: 4138 components: - type: Transform pos: -22.5,21.5 parent: 4812 + - uid: 7934 + components: + - type: Transform + pos: -18.5,25.5 + parent: 4812 - uid: 8242 components: - type: Transform @@ -7266,6 +7306,11 @@ entities: - type: Transform pos: -30.5,25.5 parent: 4812 + - uid: 12052 + components: + - type: Transform + pos: -32.5,18.5 + parent: 4812 - proto: AirlockServiceLocked entities: - uid: 6675 @@ -7315,6 +7360,15 @@ entities: - type: DeviceNetwork deviceLists: - 13204 + - uid: 5174 + components: + - type: Transform + pos: -35.5,15.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 + - 13155 - uid: 8805 components: - type: Transform @@ -7333,6 +7387,7 @@ entities: - type: DeviceNetwork deviceLists: - 13607 + - 13681 - uid: 12170 components: - type: Transform @@ -7405,16 +7460,14 @@ entities: - type: Transform pos: -31.5,16.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 12214 components: - type: Transform pos: -38.5,11.5 parent: 4812 - - uid: 12216 - components: - - type: Transform - pos: -35.5,16.5 - parent: 4812 - uid: 12218 components: - type: Transform @@ -7700,6 +7753,15 @@ entities: deviceLists: - 12697 - 9224 + - uid: 13676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,21.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 - proto: AltarSpawner entities: - uid: 4008 @@ -9007,6 +9069,11 @@ entities: - type: Transform pos: 26.5,6.5 parent: 4812 + - uid: 7739 + components: + - type: Transform + pos: -39.5,18.5 + parent: 4812 - uid: 8460 components: - type: Transform @@ -9297,6 +9364,11 @@ entities: - type: Transform pos: -43.5,-32.5 parent: 4812 + - uid: 9626 + components: + - type: Transform + pos: -39.5,17.5 + parent: 4812 - uid: 9638 components: - type: Transform @@ -9592,31 +9664,6 @@ entities: - type: Transform pos: -58.5,-8.5 parent: 4812 - - uid: 10926 - components: - - type: Transform - pos: -38.5,14.5 - parent: 4812 - - uid: 10927 - components: - - type: Transform - pos: -38.5,15.5 - parent: 4812 - - uid: 10928 - components: - - type: Transform - pos: -38.5,16.5 - parent: 4812 - - uid: 10929 - components: - - type: Transform - pos: -38.5,17.5 - parent: 4812 - - uid: 10941 - components: - - type: Transform - pos: -33.5,24.5 - parent: 4812 - uid: 10942 components: - type: Transform @@ -9632,11 +9679,6 @@ entities: - type: Transform pos: -33.5,27.5 parent: 4812 - - uid: 10945 - components: - - type: Transform - pos: -34.5,24.5 - parent: 4812 - uid: 10947 components: - type: Transform @@ -9692,11 +9734,6 @@ entities: - type: Transform pos: -35.5,30.5 parent: 4812 - - uid: 10963 - components: - - type: Transform - pos: -35.5,24.5 - parent: 4812 - uid: 10965 components: - type: Transform @@ -9707,56 +9744,11 @@ entities: - type: Transform pos: -39.5,16.5 parent: 4812 - - uid: 10967 - components: - - type: Transform - pos: -39.5,17.5 - parent: 4812 - - uid: 10969 - components: - - type: Transform - pos: -39.5,19.5 - parent: 4812 - - uid: 10970 - components: - - type: Transform - pos: -39.5,20.5 - parent: 4812 - - uid: 10972 - components: - - type: Transform - pos: -39.5,22.5 - parent: 4812 - - uid: 10973 - components: - - type: Transform - pos: -39.5,23.5 - parent: 4812 - - uid: 10974 - components: - - type: Transform - pos: -39.5,24.5 - parent: 4812 - - uid: 10975 - components: - - type: Transform - pos: -38.5,24.5 - parent: 4812 - - uid: 10977 - components: - - type: Transform - pos: -36.5,24.5 - parent: 4812 - uid: 10982 components: - type: Transform pos: -40.5,23.5 parent: 4812 - - uid: 10983 - components: - - type: Transform - pos: -39.5,18.5 - parent: 4812 - uid: 10984 components: - type: Transform @@ -9867,11 +9859,6 @@ entities: - type: Transform pos: -40.5,21.5 parent: 4812 - - uid: 11014 - components: - - type: Transform - pos: -37.5,24.5 - parent: 4812 - uid: 11016 components: - type: Transform @@ -10312,6 +10299,11 @@ entities: - type: Transform pos: 27.5,8.5 parent: 4812 + - uid: 12470 + components: + - type: Transform + pos: -40.5,16.5 + parent: 4812 - uid: 12678 components: - type: Transform @@ -10694,11 +10686,6 @@ entities: - type: Transform pos: -56.5,-1.5 parent: 4812 - - uid: 13522 - components: - - type: Transform - pos: -59.5,-3.5 - parent: 4812 - uid: 13523 components: - type: Transform @@ -11935,13 +11922,6 @@ entities: - type: Transform pos: -40.434937,-35.118546 parent: 4812 -- proto: BoxShotgunIncendiary - entities: - - uid: 12055 - components: - - type: Transform - pos: -35.55101,19.647282 - parent: 4812 - proto: BoxSterileMask entities: - uid: 9028 @@ -17664,6 +17644,16 @@ entities: - type: Transform pos: -11.5,-15.5 parent: 4812 + - uid: 7800 + components: + - type: Transform + pos: -36.5,21.5 + parent: 4812 + - uid: 8057 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 - uid: 8061 components: - type: Transform @@ -17874,11 +17864,6 @@ entities: - type: Transform pos: -34.5,20.5 parent: 4812 - - uid: 8104 - components: - - type: Transform - pos: -35.5,20.5 - parent: 4812 - uid: 8105 components: - type: Transform @@ -20989,6 +20974,11 @@ entities: - type: Transform pos: -60.5,5.5 parent: 4812 + - uid: 13631 + components: + - type: Transform + pos: -34.5,21.5 + parent: 4812 - uid: 13660 components: - type: Transform @@ -24557,6 +24547,11 @@ entities: - type: Transform pos: -15.5,-18.5 parent: 4812 + - uid: 732 + components: + - type: Transform + pos: -34.5,15.5 + parent: 4812 - uid: 971 components: - type: Transform @@ -26332,6 +26327,21 @@ entities: - type: Transform pos: -1.5,-20.5 parent: 4812 + - uid: 7801 + components: + - type: Transform + pos: -34.5,12.5 + parent: 4812 + - uid: 7906 + components: + - type: Transform + pos: -34.5,17.5 + parent: 4812 + - uid: 7936 + components: + - type: Transform + pos: -34.5,13.5 + parent: 4812 - uid: 7986 components: - type: Transform @@ -26605,7 +26615,7 @@ entities: - uid: 8040 components: - type: Transform - pos: -33.5,14.5 + pos: -34.5,18.5 parent: 4812 - uid: 8041 components: @@ -26617,56 +26627,21 @@ entities: - type: Transform pos: -34.5,14.5 parent: 4812 - - uid: 8043 - components: - - type: Transform - pos: -35.5,14.5 - parent: 4812 - uid: 8044 components: - type: Transform pos: -35.5,13.5 parent: 4812 - - uid: 8045 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - uid: 8046 components: - type: Transform - pos: -35.5,16.5 + pos: -34.5,19.5 parent: 4812 - uid: 8047 components: - type: Transform pos: -35.5,17.5 parent: 4812 - - uid: 8048 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 8049 - components: - - type: Transform - pos: -33.5,15.5 - parent: 4812 - - uid: 8050 - components: - - type: Transform - pos: -33.5,16.5 - parent: 4812 - - uid: 8051 - components: - - type: Transform - pos: -33.5,17.5 - parent: 4812 - - uid: 8052 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - uid: 8053 components: - type: Transform @@ -26677,11 +26652,6 @@ entities: - type: Transform pos: -33.5,20.5 parent: 4812 - - uid: 8055 - components: - - type: Transform - pos: -32.5,19.5 - parent: 4812 - uid: 8056 components: - type: Transform @@ -26692,6 +26662,11 @@ entities: - type: Transform pos: -31.5,19.5 parent: 4812 + - uid: 8104 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 - uid: 8177 components: - type: Transform @@ -27392,6 +27367,11 @@ entities: - type: Transform pos: -38.5,1.5 parent: 4812 + - uid: 12145 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 - uid: 12381 components: - type: Transform @@ -27402,6 +27382,11 @@ entities: - type: Transform pos: -45.5,5.5 parent: 4812 + - uid: 12663 + components: + - type: Transform + pos: -34.5,16.5 + parent: 4812 - uid: 12699 components: - type: Transform @@ -27642,6 +27627,21 @@ entities: - type: Transform pos: -55.5,6.5 parent: 4812 + - uid: 13693 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 + - uid: 13694 + components: + - type: Transform + pos: -32.5,16.5 + parent: 4812 + - uid: 13695 + components: + - type: Transform + pos: -32.5,15.5 + parent: 4812 - proto: CableMVStack entities: - uid: 8586 @@ -30536,12 +30536,6 @@ entities: - type: Transform pos: -17.5,15.5 parent: 4812 - - uid: 8338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 4812 - uid: 8366 components: - type: Transform @@ -30553,6 +30547,12 @@ entities: - type: Transform pos: -30.5,1.5 parent: 4812 + - uid: 9658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 4812 - uid: 9878 components: - type: Transform @@ -32367,7 +32367,7 @@ entities: - uid: 8443 components: - type: Transform - pos: -36.423813,15.378265 + pos: -35.493202,16.440695 parent: 4812 - proto: ClothingHandsGlovesColorGray entities: @@ -32440,13 +32440,6 @@ entities: - type: Transform pos: 13.532155,-11.236504 parent: 4812 -- proto: ClothingHeadHatBeretWarden - entities: - - uid: 12145 - components: - - type: Transform - pos: -35.744057,17.561283 - parent: 4812 - proto: ClothingHeadHatCone entities: - uid: 11339 @@ -32622,6 +32615,18 @@ entities: - type: Transform pos: -10.496132,3.670351 parent: 4812 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8050 + components: + - type: Transform + pos: -33.264034,22.538214 + parent: 4812 + - uid: 8331 + components: + - type: Transform + pos: -33.534866,22.538214 + parent: 4812 - proto: ClothingHeadHelmetSyndicate entities: - uid: 11672 @@ -32816,58 +32821,36 @@ entities: - type: Transform pos: -43.53869,-26.441507 parent: 4812 -- proto: ClothingOuterArmorBasic - entities: - - uid: 9636 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - - uid: 9658 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - - uid: 9971 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - proto: ClothingOuterArmorBulletproof entities: - - uid: 9972 - components: - - type: Transform - pos: -35.562195,19.41048 - parent: 4812 - - uid: 9990 + - uid: 8049 components: - type: Transform - pos: -35.562195,19.41048 + pos: -33.441116,22.298464 parent: 4812 - - uid: 9992 + - uid: 8145 components: - type: Transform - pos: -35.562195,19.41048 + pos: -33.211952,22.277617 parent: 4812 - proto: ClothingOuterArmorReflective entities: - uid: 10685 components: - type: Transform - pos: -33.364815,20.521324 + pos: -33.774452,22.319311 parent: 4812 - proto: ClothingOuterArmorRiot entities: - uid: 10958 components: - type: Transform - pos: -33.39286,20.650888 + pos: -33.732784,22.652876 parent: 4812 - uid: 10976 components: - type: Transform - pos: -33.627235,20.729013 + pos: -33.336952,22.652876 parent: 4812 - proto: ClothingOuterCoatBomber entities: @@ -32920,18 +32903,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 10602 - components: - - type: Transform - pos: -36.600456,17.618195 - parent: 4812 - - uid: 12429 - components: - - type: Transform - pos: -36.45983,17.524445 - parent: 4812 - proto: ClothingOuterHardsuitSpatio entities: - uid: 12424 @@ -33522,6 +33493,12 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-26.5 parent: 4812 + - uid: 8143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 4812 - uid: 8264 components: - type: Transform @@ -33558,17 +33535,17 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,23.5 parent: 4812 - - uid: 8331 - components: - - type: Transform - pos: -33.5,16.5 - parent: 4812 - uid: 8365 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,10.5 parent: 4812 + - uid: 12631 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 - proto: ComputerFrame entities: - uid: 11147 @@ -33745,11 +33722,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-26.5 parent: 4812 - - uid: 8332 + - uid: 8337 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,14.5 + pos: -35.5,14.5 parent: 4812 - proto: ComputerTechnologyDiskTerminal entities: @@ -34245,6 +34222,13 @@ entities: - 0 - 0 - 0 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 13664 + components: + - type: Transform + pos: -36.5,20.5 + parent: 4812 - proto: CrateTrashCart entities: - uid: 6171 @@ -34457,10 +34441,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconArmory entities: - - uid: 9626 + - uid: 12216 components: - type: Transform - pos: -34.5,20.5 + pos: -36.5,21.5 parent: 4812 - proto: DefaultStationBeaconArrivals entities: @@ -34819,10 +34803,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconTEG entities: - - uid: 13631 + - uid: 10970 components: - type: Transform - pos: -54.5,3.5 + pos: -52.5,3.5 parent: 4812 - proto: DefaultStationBeaconTheater entities: @@ -37710,10 +37694,10 @@ entities: - type: Transform pos: -26.5,-25.5 parent: 4812 - - uid: 8339 + - uid: 8333 components: - type: Transform - pos: -35.5,17.5 + pos: -36.5,14.5 parent: 4812 - proto: DonkpocketBoxSpawner entities: @@ -38011,7 +37995,7 @@ entities: - uid: 8436 components: - type: Transform - pos: -36.520676,15.807589 + pos: -36.014038,16.6179 parent: 4812 - proto: DrinkVodkaBottleFull entities: @@ -38464,6 +38448,13 @@ entities: parent: 4812 - type: FaxMachine name: Library + - uid: 13221 + components: + - type: Transform + pos: -29.5,10.5 + parent: 4812 + - type: FaxMachine + name: Security - proto: FaxMachineCaptain entities: - uid: 7298 @@ -38684,24 +38675,17 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,16.5 + pos: -32.5,17.5 parent: 4812 - type: DeviceList devices: - 12211 - - 12212 - 7782 - 7783 - - uid: 12217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,16.5 - parent: 4812 - - type: DeviceList - devices: - - 12216 - 12212 + - 7743 + - 13696 + - 13697 - uid: 12221 components: - type: Transform @@ -39076,6 +39060,27 @@ entities: - 5600 - 5599 - 12355 + - uid: 13155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 4812 + - type: DeviceList + devices: + - 12212 + - 5174 + - uid: 13681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 4812 + - type: DeviceList + devices: + - 13683 + - 13682 + - 9504 - proto: FireAxeCabinetFilled entities: - uid: 13381 @@ -39280,6 +39285,15 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 4812 + - uid: 7743 + components: + - type: Transform + pos: -31.5,10.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 - uid: 8591 components: - type: Transform @@ -39366,6 +39380,45 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-24.5 parent: 4812 + - uid: 13682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,6.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 + - 13681 + - uid: 13683 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 + - 13681 + - uid: 13696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,20.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 + - uid: 13697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,20.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 - proto: FirelockElectronics entities: - uid: 10718 @@ -39797,11 +39850,17 @@ entities: - type: Transform pos: -26.5,12.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 7783 components: - type: Transform pos: -25.5,12.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 7784 components: - type: Transform @@ -39927,6 +39986,11 @@ entities: - type: Transform pos: -32.5,15.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13155 + - 13156 + - 12210 - uid: 13228 components: - type: Transform @@ -40837,6 +40901,8 @@ entities: - type: Transform pos: -47.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasMixerFlipped entities: - uid: 9515 @@ -40856,6 +40922,8 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasOutletInjector entities: - uid: 4002 @@ -40908,6 +40976,8 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPassiveGate entities: - uid: 5801 @@ -40999,6 +41069,8 @@ entities: - type: Transform pos: -57.5,7.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9901 components: - type: Transform @@ -41010,11 +41082,15 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12775 components: - type: Transform pos: -58.5,9.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeBend entities: - uid: 560 @@ -41513,6 +41589,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9220 components: - type: Transform @@ -41526,6 +41604,8 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9354 components: - type: Transform @@ -41547,6 +41627,8 @@ entities: rot: 3.141592653589793 rad pos: -58.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9718 components: - type: Transform @@ -41584,6 +41666,8 @@ entities: rot: 3.141592653589793 rad pos: -57.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11972 components: - type: Transform @@ -41641,33 +41725,45 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13462 components: - type: Transform pos: -56.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13483 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13507 components: - type: Transform pos: -54.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13508 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13539 components: - type: Transform pos: -51.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeFourway entities: - uid: 402 @@ -49109,6 +49205,13 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 7761 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7797 components: - type: Transform @@ -49646,6 +49749,22 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 8058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8225 components: - type: Transform @@ -49850,6 +49969,8 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 8728 components: - type: Transform @@ -50514,6 +50635,8 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9226 components: - type: Transform @@ -50629,6 +50752,8 @@ entities: - type: Transform pos: -55.5,-0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9269 components: - type: Transform @@ -50691,6 +50816,8 @@ entities: - type: Transform pos: -57.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9350 components: - type: Transform @@ -50782,6 +50909,8 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 10777 components: - type: Transform @@ -50794,6 +50923,13 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10975 + components: + - type: Transform + pos: -35.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11707 components: - type: Transform @@ -50808,6 +50944,8 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11963 components: - type: Transform @@ -51275,6 +51413,8 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12793 components: - type: Transform @@ -51745,6 +51885,8 @@ entities: rot: 3.141592653589793 rad pos: -50.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13431 components: - type: Transform @@ -51757,63 +51899,85 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13442 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13444 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13450 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13504 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13525 components: - type: Transform pos: -50.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13527 components: - type: Transform pos: -50.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13530 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,7.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13531 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,8.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13533 components: - type: Transform pos: -55.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13549 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeTJunction entities: - uid: 373 @@ -53311,6 +53475,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8757 components: - type: Transform @@ -53381,17 +53553,23 @@ entities: - type: Transform pos: -55.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9320 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9528 components: - type: Transform pos: -57.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9869 components: - type: Transform @@ -53422,6 +53600,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11982 components: - type: Transform @@ -53483,6 +53669,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12858 components: - type: Transform @@ -53527,18 +53715,24 @@ entities: rot: 3.141592653589793 rad pos: -51.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13445 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13502 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPort entities: - uid: 3467 @@ -53621,6 +53815,8 @@ entities: - type: Transform pos: -48.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13528 components: - type: Transform @@ -53638,6 +53834,8 @@ entities: rot: 3.141592653589793 rad pos: -56.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPressurePump entities: - uid: 3406 @@ -53712,6 +53910,8 @@ entities: - type: Transform pos: -58.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11900 components: - type: Transform @@ -53742,17 +53942,23 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13434 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13516 components: - type: Transform pos: -50.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasThermoMachineFreezer entities: - uid: 859 @@ -53777,6 +53983,8 @@ entities: rot: 3.141592653589793 rad pos: -54.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13674 components: - type: Transform @@ -53797,6 +54005,8 @@ entities: rot: 3.141592653589793 rad pos: -47.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13494 components: - type: Transform @@ -53833,6 +54043,8 @@ entities: parent: 4812 - type: GasValve open: False + - type: AtmosPipeColor + color: '#947507FF' - uid: 9924 components: - type: Transform @@ -54522,13 +54734,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7906 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7910 components: - type: Transform @@ -54592,6 +54797,17 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,18.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8562 components: - type: Transform @@ -54636,6 +54852,16 @@ entities: - 13607 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10972 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11962 components: - type: Transform @@ -54776,6 +55002,17 @@ entities: - 13607 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,15.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 711 @@ -55350,6 +55587,9 @@ entities: - type: Transform pos: -34.5,15.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 - type: AtmosPipeColor color: '#990000FF' - uid: 7909 @@ -55614,30 +55854,40 @@ entities: rot: 3.141592653589793 rad pos: -50.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13225 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13369 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13452 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13474 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GeneratorBasic15kW entities: - uid: 1729 @@ -55647,10 +55897,10 @@ entities: parent: 4812 - proto: GeneratorRTG entities: - - uid: 2918 + - uid: 7760 components: - type: Transform - pos: -39.5,21.5 + pos: -59.5,-3.5 parent: 4812 - proto: Girder entities: @@ -56125,6 +56375,11 @@ entities: - type: Transform pos: -13.5,26.5 parent: 4812 + - uid: 2595 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 - uid: 2607 components: - type: Transform @@ -57633,20 +57888,10 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,33.5 parent: 4812 - - uid: 8057 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 8058 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 8059 + - uid: 8052 components: - type: Transform - pos: -32.5,19.5 + pos: -35.5,17.5 parent: 4812 - uid: 8060 components: @@ -58219,6 +58464,11 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 4812 + - uid: 9636 + components: + - type: Transform + pos: -33.5,19.5 + parent: 4812 - uid: 9649 components: - type: Transform @@ -58767,6 +59017,11 @@ entities: - type: Transform pos: -19.5,33.5 parent: 4812 + - uid: 12058 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 - uid: 12108 components: - type: Transform @@ -59567,6 +59822,12 @@ entities: - type: Transform pos: -57.5,16.5 parent: 4812 + - uid: 13691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 4812 - proto: GrilleBroken entities: - uid: 1544 @@ -59848,19 +60109,33 @@ entities: - type: Transform pos: -0.5,-56.5 parent: 4812 +- proto: GunSafeLaserCarbine + entities: + - uid: 12053 + components: + - type: Transform + pos: -37.5,22.5 + parent: 4812 - proto: GunSafeRifleLecter entities: - - uid: 4809 + - uid: 12215 components: - type: Transform - pos: -36.5,19.5 + pos: -37.5,20.5 + parent: 4812 +- proto: GunSafeShotgunKammerer + entities: + - uid: 12054 + components: + - type: Transform + pos: -34.5,22.5 parent: 4812 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 10442 + - uid: 8377 components: - type: Transform - pos: -33.5,19.5 + pos: -37.5,21.5 parent: 4812 - proto: Handcuffs entities: @@ -59953,30 +60228,38 @@ entities: parent: 4812 - proto: HeatExchanger entities: - - uid: 2965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-1.5 - parent: 4812 - uid: 4581 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9291 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-1.5 parent: 4812 - - uid: 13221 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9569 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: Hemostat entities: - uid: 6244 @@ -60224,24 +60507,24 @@ entities: - uid: 9679 components: - type: Transform - pos: -30.41609,4.5644865 + pos: -31.44901,3.4804118 parent: 4812 - uid: 9680 components: - type: Transform - pos: -30.41609,4.5644865 + pos: -31.407343,3.438716 parent: 4812 - proto: InflatableWallStack entities: - uid: 9677 components: - type: Transform - pos: -30.681715,4.7676115 + pos: -31.66776,3.7514334 parent: 4812 - uid: 9678 components: - type: Transform - pos: -30.681715,4.7676115 + pos: -31.60526,3.6784658 parent: 4812 - proto: IngotGold entities: @@ -60461,6 +60744,13 @@ entities: - type: Transform pos: 9.516455,14.564514 parent: 4812 +- proto: JetpackSecurityFilled + entities: + - uid: 13680 + components: + - type: Transform + pos: -33.539055,21.668404 + parent: 4812 - proto: KitchenKnife entities: - uid: 1642 @@ -60869,10 +61159,10 @@ entities: parent: 4812 - proto: LockerAtmosphericsFilled entities: - - uid: 9570 + - uid: 9571 components: - type: Transform - pos: -29.5,5.5 + pos: -28.5,5.5 parent: 4812 - type: EntityStorage air: @@ -60892,29 +61182,11 @@ entities: - 0 - 0 - 0 - - uid: 9571 + - uid: 10969 components: - type: Transform - pos: -28.5,5.5 + pos: -28.5,4.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerBoozeFilled entities: - uid: 1648 @@ -61236,29 +61508,11 @@ entities: - type: Transform pos: -28.5,24.5 parent: 4812 - - uid: 8359 + - uid: 10926 components: - type: Transform - pos: -31.5,18.5 + pos: -31.5,19.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezer entities: - uid: 1538 @@ -61661,29 +61915,11 @@ entities: parent: 4812 - proto: LockerWardenFilled entities: - - uid: 8337 + - uid: 12520 components: - type: Transform - pos: -36.5,14.5 + pos: -37.5,14.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWeldingSuppliesFilled entities: - uid: 11898 @@ -62716,12 +62952,12 @@ entities: - uid: 9675 components: - type: Transform - pos: -30.275465,5.5801115 + pos: -32.292763,3.542955 parent: 4812 - uid: 9676 components: - type: Transform - pos: -30.275465,5.5801115 + pos: -32.21984,3.4804118 parent: 4812 - uid: 11950 components: @@ -62969,10 +63205,10 @@ entities: parent: 4812 - proto: PortableFlasher entities: - - uid: 12520 + - uid: 11923 components: - type: Transform - pos: -36.5,20.5 + pos: -33.5,20.5 parent: 4812 - proto: PortableGeneratorJrPacman entities: @@ -63355,13 +63591,6 @@ entities: - type: Transform pos: -27.5,-5.5 parent: 4812 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 13664 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 4812 - proto: PosterLegitScience entities: - uid: 6367 @@ -63811,12 +64040,6 @@ entities: parent: 4812 - proto: Poweredlight entities: - - uid: 732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 4812 - uid: 742 components: - type: Transform @@ -64697,22 +64920,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8144 components: - type: Transform @@ -64721,14 +64928,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8247 components: - type: Transform @@ -64766,6 +64965,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8359 + components: + - type: Transform + pos: -35.5,22.5 + parent: 4812 - uid: 8603 components: - type: Transform @@ -64866,14 +65070,17 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9823 + - uid: 9972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,1.5 + rot: 1.5707963267948966 rad + pos: -54.5,12.5 + parent: 4812 + - uid: 10442 + components: + - type: Transform + pos: -32.5,5.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10660 components: - type: Transform @@ -65059,13 +65266,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11923 - components: - - type: Transform - pos: -30.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11924 components: - type: Transform @@ -65168,6 +65368,24 @@ entities: - type: Transform pos: -52.5,6.5 parent: 4812 + - uid: 13678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,18.5 + parent: 4812 + - uid: 13679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,15.5 + parent: 4812 + - uid: 13698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,17.5 + parent: 4812 - proto: PoweredlightEmpty entities: - uid: 11249 @@ -65827,6 +66045,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,1.5 + parent: 4812 - uid: 10696 components: - type: Transform @@ -66026,11 +66250,6 @@ entities: - type: Transform pos: 3.5,14.5 parent: 4812 - - uid: 2595 - components: - - type: Transform - pos: -36.5,17.5 - parent: 4812 - uid: 2699 components: - type: Transform @@ -66126,11 +66345,6 @@ entities: - type: Transform pos: -16.5,16.5 parent: 4812 - - uid: 8377 - components: - - type: Transform - pos: -35.5,19.5 - parent: 4812 - uid: 8424 components: - type: Transform @@ -66253,7 +66467,7 @@ entities: - uid: 8453 components: - type: Transform - pos: -29.452932,10.599279 + pos: -30.22465,10.760374 parent: 4812 - proto: Railing entities: @@ -66286,6 +66500,18 @@ entities: rot: 3.141592653589793 rad pos: -32.5,3.5 parent: 4812 + - uid: 10983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 4812 + - uid: 11014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 4812 - uid: 12877 components: - type: Transform @@ -66889,25 +67115,16 @@ entities: parent: 4812 - proto: ReinforcedPlasmaWindow entities: - - uid: 4138 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 4139 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 4140 + - uid: 4141 components: - type: Transform - pos: -32.5,19.5 + pos: -32.5,20.5 parent: 4812 - - uid: 4141 + - uid: 8371 components: - type: Transform - pos: -32.5,20.5 + rot: 3.141592653589793 rad + pos: -33.5,19.5 parent: 4812 - uid: 9119 components: @@ -67012,6 +67229,12 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,1.5 parent: 4812 + - uid: 10973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,19.5 + parent: 4812 - uid: 11887 components: - type: Transform @@ -68673,6 +68896,17 @@ entities: rot: 3.141592653589793 rad pos: -44.5,13.5 parent: 4812 + - uid: 8051 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 + - uid: 8142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 4812 - uid: 8169 components: - type: Transform @@ -68988,6 +69222,11 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,4.5 parent: 4812 + - uid: 10928 + components: + - type: Transform + pos: -35.5,17.5 + parent: 4812 - uid: 11047 components: - type: Transform @@ -69432,6 +69671,20 @@ entities: - type: Transform pos: -14.491153,4.5839243 parent: 4812 +- proto: RiotBulletShield + entities: + - uid: 7803 + components: + - type: Transform + pos: -33.720795,21.923859 + parent: 4812 +- proto: RiotLaserShield + entities: + - uid: 7935 + components: + - type: Transform + pos: -33.356216,21.923859 + parent: 4812 - proto: RobocopCircuitBoard entities: - uid: 12651 @@ -69586,16 +69839,11 @@ entities: parent: 4812 - proto: SecurityTechFab entities: - - uid: 8371 + - uid: 10945 components: - type: Transform - pos: -34.5,21.5 + pos: -35.5,20.5 parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Glass - - Plastic - - Steel - proto: SeedExtractor entities: - uid: 1086 @@ -69786,12 +70034,12 @@ entities: - uid: 9673 components: - type: Transform - pos: -30.650465,5.5347195 + pos: -32.71984,3.6993136 parent: 4812 - uid: 9674 components: - type: Transform - pos: -30.650465,5.5347195 + pos: -32.636513,3.6576178 parent: 4812 - uid: 9725 components: @@ -70341,10 +70589,10 @@ entities: parent: 4812 - proto: SignArmory entities: - - uid: 7803 + - uid: 745 components: - type: Transform - pos: -36.5,18.5 + pos: -36.5,19.5 parent: 4812 - proto: SignAtmos entities: @@ -70716,6 +70964,12 @@ entities: - type: Transform pos: -38.5,-9.5 parent: 4812 + - uid: 13690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,18.5 + parent: 4812 - proto: SignEngine entities: - uid: 10775 @@ -70887,6 +71141,12 @@ entities: - type: Transform pos: -46.5,1.5 parent: 4812 + - uid: 13692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,23.5 + parent: 4812 - proto: SignPlaque entities: - uid: 7570 @@ -71052,6 +71312,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-45.5 parent: 4812 + - uid: 13685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,19.5 + parent: 4812 - proto: SignSecureSmall entities: - uid: 2931 @@ -71114,6 +71380,12 @@ entities: - type: Transform pos: -33.5,-38.5 parent: 4812 + - uid: 9971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 4812 - uid: 10751 components: - type: Transform @@ -71964,10 +72236,10 @@ entities: parent: 4812 - proto: SpawnMobMcGriff entities: - - uid: 8340 + - uid: 12632 components: - type: Transform - pos: -35.5,17.5 + pos: -36.5,14.5 parent: 4812 - proto: SpawnMobMonkeyPunpun entities: @@ -72032,15 +72304,15 @@ entities: parent: 4812 - proto: SpawnPointAtmos entities: - - uid: 13155 + - uid: 9570 components: - type: Transform - pos: -28.5,4.5 + pos: -29.5,5.5 parent: 4812 - - uid: 13156 + - uid: 13684 components: - type: Transform - pos: -29.5,3.5 + pos: -29.5,4.5 parent: 4812 - proto: SpawnPointBartender entities: @@ -72749,6 +73021,18 @@ entities: - type: Transform pos: 30.5,-39.5 parent: 4812 +- proto: SuitStorageAtmos + entities: + - uid: 13688 + components: + - type: Transform + pos: -30.5,4.5 + parent: 4812 + - uid: 13689 + components: + - type: Transform + pos: -30.5,5.5 + parent: 4812 - proto: SuitStorageCaptain entities: - uid: 746 @@ -72828,17 +73112,29 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 4812 -- proto: SuitStorageWarden +- proto: SuitStorageSec entities: - - uid: 745 + - uid: 8043 components: - type: Transform - pos: -36.5,21.5 + pos: -36.5,18.5 parent: 4812 - - uid: 12663 + - uid: 8045 components: - type: Transform - pos: -35.5,21.5 + pos: -35.5,22.5 + parent: 4812 + - uid: 12217 + components: + - type: Transform + pos: -36.5,22.5 + parent: 4812 +- proto: SuitStorageWarden + entities: + - uid: 10967 + components: + - type: Transform + pos: -37.5,15.5 parent: 4812 - proto: SurveillanceCameraCommand entities: @@ -73706,10 +74002,10 @@ entities: parent: 4812 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 8372 + - uid: 9990 components: - type: Transform - pos: -33.5,21.5 + pos: -37.5,16.5 parent: 4812 - proto: SurveillanceCameraRouterService entities: @@ -73804,16 +74100,13 @@ entities: id: Anomaly Generator - proto: SurveillanceCameraSecurity entities: - - uid: 12058 + - uid: 10974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 + rot: 3.141592653589793 rad + pos: -35.5,22.5 parent: 4812 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True id: Armory - uid: 12059 components: @@ -75125,11 +75418,6 @@ entities: - type: Transform pos: -32.5,15.5 parent: 4812 - - uid: 8333 - components: - - type: Transform - pos: -36.5,15.5 - parent: 4812 - uid: 8334 components: - type: Transform @@ -75242,16 +75530,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-24.5 parent: 4812 - - uid: 9568 - components: - - type: Transform - pos: -30.5,4.5 - parent: 4812 - - uid: 9569 - components: - - type: Transform - pos: -30.5,5.5 - parent: 4812 - uid: 9724 components: - type: Transform @@ -75272,6 +75550,12 @@ entities: - type: Transform pos: -32.5,-7.5 parent: 4812 + - uid: 9823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,21.5 + parent: 4812 - uid: 10633 components: - type: Transform @@ -75297,6 +75581,11 @@ entities: - type: Transform pos: -27.5,-0.5 parent: 4812 + - uid: 10977 + components: + - type: Transform + pos: -35.5,16.5 + parent: 4812 - uid: 11144 components: - type: Transform @@ -75337,10 +75626,10 @@ entities: - type: Transform pos: -10.5,17.5 parent: 4812 - - uid: 12054 + - uid: 12055 components: - type: Transform - pos: -33.5,20.5 + pos: -33.5,22.5 parent: 4812 - uid: 12673 components: @@ -75348,6 +75637,18 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 4812 + - uid: 13686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,3.5 + parent: 4812 + - uid: 13687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 4812 - proto: TableReinforcedGlass entities: - uid: 6303 @@ -78620,6 +78921,16 @@ entities: - type: Transform pos: 16.5,-6.5 parent: 4812 + - uid: 4139 + components: + - type: Transform + pos: -38.5,16.5 + parent: 4812 + - uid: 4140 + components: + - type: Transform + pos: -38.5,15.5 + parent: 4812 - uid: 4178 components: - type: Transform @@ -78777,6 +79088,11 @@ entities: - type: Transform pos: -9.5,-31.5 parent: 4812 + - uid: 4809 + components: + - type: Transform + pos: -38.5,14.5 + parent: 4812 - uid: 4828 components: - type: Transform @@ -79380,7 +79696,7 @@ entities: - uid: 5595 components: - type: Transform - pos: -38.5,18.5 + pos: -38.5,17.5 parent: 4812 - uid: 5769 components: @@ -80088,52 +80404,42 @@ entities: - uid: 7732 components: - type: Transform - pos: -32.5,18.5 + pos: -39.5,24.5 parent: 4812 - uid: 7733 components: - type: Transform - pos: -33.5,22.5 + pos: -38.5,24.5 parent: 4812 - uid: 7734 components: - type: Transform - pos: -34.5,22.5 + pos: -37.5,24.5 parent: 4812 - uid: 7735 components: - type: Transform - pos: -35.5,22.5 + pos: -38.5,18.5 parent: 4812 - uid: 7736 components: - type: Transform - pos: -36.5,22.5 + pos: -39.5,22.5 parent: 4812 - uid: 7737 components: - type: Transform - pos: -37.5,18.5 + pos: -39.5,20.5 parent: 4812 - uid: 7738 components: - type: Transform - pos: -37.5,19.5 - parent: 4812 - - uid: 7739 - components: - - type: Transform - pos: -37.5,20.5 + pos: -39.5,19.5 parent: 4812 - uid: 7740 components: - type: Transform - pos: -36.5,18.5 - parent: 4812 - - uid: 7743 - components: - - type: Transform - pos: -32.5,16.5 + pos: -33.5,24.5 parent: 4812 - uid: 7744 components: @@ -80173,32 +80479,22 @@ entities: - uid: 7756 components: - type: Transform - pos: -37.5,21.5 + pos: -34.5,24.5 parent: 4812 - uid: 7757 components: - type: Transform - pos: -37.5,22.5 + pos: -36.5,24.5 parent: 4812 - uid: 7758 components: - type: Transform - pos: -37.5,17.5 + pos: -39.5,21.5 parent: 4812 - uid: 7759 components: - type: Transform - pos: -37.5,16.5 - parent: 4812 - - uid: 7760 - components: - - type: Transform - pos: -37.5,15.5 - parent: 4812 - - uid: 7761 - components: - - type: Transform - pos: -37.5,14.5 + pos: -35.5,24.5 parent: 4812 - uid: 7762 components: @@ -80345,11 +80641,32 @@ entities: - type: Transform pos: -35.5,8.5 parent: 4812 + - uid: 8048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,19.5 + parent: 4812 + - uid: 8055 + components: + - type: Transform + pos: -32.5,17.5 + parent: 4812 - uid: 8267 components: - type: Transform pos: -35.5,3.5 parent: 4812 + - uid: 8339 + components: + - type: Transform + pos: -39.5,23.5 + parent: 4812 + - uid: 8340 + components: + - type: Transform + pos: -36.5,17.5 + parent: 4812 - uid: 8358 components: - type: Transform @@ -81662,6 +81979,11 @@ entities: - type: Transform pos: -46.5,-19.5 parent: 4812 + - uid: 9992 + components: + - type: Transform + pos: -37.5,19.5 + parent: 4812 - uid: 10414 components: - type: Transform @@ -81718,6 +82040,16 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,3.5 parent: 4812 + - uid: 10929 + components: + - type: Transform + pos: -36.5,19.5 + parent: 4812 + - uid: 10963 + components: + - type: Transform + pos: -37.5,17.5 + parent: 4812 - uid: 10964 components: - type: Transform @@ -82084,6 +82416,11 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,12.5 parent: 4812 + - uid: 12429 + components: + - type: Transform + pos: -37.5,18.5 + parent: 4812 - uid: 12582 components: - type: Transform @@ -85897,51 +86234,13 @@ entities: - uid: 3754 components: - type: Transform - pos: -33.40336,20.459352 + pos: -35.564545,16.749907 parent: 4812 - uid: 3759 components: - type: Transform - pos: -33.40336,20.459352 + pos: -35.46038,16.551853 parent: 4812 -- proto: WeaponLaserCarbine - entities: - - uid: 12470 - components: - - type: Transform - pos: -33.4461,20.270079 - parent: 4812 - - uid: 12471 - components: - - type: Transform - pos: -33.4461,20.218811 - parent: 4812 - - uid: 12631 - components: - - type: Transform - pos: -33.43493,20.166264 - parent: 4812 - - uid: 12632 - components: - - type: Transform - pos: -33.388054,20.103764 - parent: 4812 -- proto: WeaponShotgunKammerer - entities: - - uid: 12052 - components: - - type: Transform - pos: -35.535385,19.569157 - parent: 4812 - - type: BallisticAmmoProvider - unspawnedCount: 4 - - uid: 12053 - components: - - type: Transform - pos: -35.410385,19.412907 - parent: 4812 - - type: BallisticAmmoProvider - unspawnedCount: 4 - proto: WeaponSubMachineGunWt550 entities: - uid: 13165 @@ -86362,6 +86661,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,19.5 parent: 4812 + - uid: 8332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 4812 - proto: WindoorTheatreLocked entities: - uid: 896 From 20bb9ede110efcb6c8c2d804f0ec038d3dd0f831 Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Mon, 23 Sep 2024 20:19:15 +0000 Subject: [PATCH 124/161] fix(contraband): Make contraband work with chameleon items (#30986) * formatting --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../EntitySystems/SharedChameleonClothingSystem.cs | 13 +++++++++++++ Content.Shared/Contraband/ContrabandSystem.cs | 12 +++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index f5df04037ee6..2b10b41fee8d 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Components; using Content.Shared.Clothing.Components; +using Content.Shared.Contraband; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; @@ -13,6 +14,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ClothingSystem _clothingSystem = default!; + [Dependency] private readonly ContrabandSystem _contraband = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedItemSystem _itemSystem = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -68,6 +70,17 @@ protected void UpdateVisuals(EntityUid uid, ChameleonClothingComponent component { _clothingSystem.CopyVisuals(uid, otherClothing, clothing); } + + // properly mark contraband + if (proto.TryGetComponent("Contraband", out ContrabandComponent? contra)) + { + EnsureComp(uid, out var current); + _contraband.CopyDetails(uid, contra, current); + } + else + { + RemComp(uid); + } } protected virtual void UpdateSprite(EntityUid uid, EntityPrototype proto) { } diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index 22181ce99ada..e6931f2860a1 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -33,6 +33,16 @@ private void SetContrabandExamine(bool val) _contrabandExamineEnabled = val; } + public void CopyDetails(EntityUid uid, ContrabandComponent other, ContrabandComponent? contraband = null) + { + if (!Resolve(uid, ref contraband)) + return; + + contraband.Severity = other.Severity; + contraband.AllowedDepartments = other.AllowedDepartments; + Dirty(uid, contraband); + } + private void OnExamined(Entity ent, ref ExaminedEvent args) { if (!_contrabandExamineEnabled) @@ -45,7 +55,7 @@ private void OnExamined(Entity ent, ref ExaminedEvent args) using (args.PushGroup(nameof(ContrabandComponent))) { var severity = _proto.Index(ent.Comp.Severity); - if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null }) + if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null }) { // TODO shouldn't department prototypes have a localized name instead of just using the ID for this? var list = ContentLocalizationManager.FormatList(ent.Comp.AllowedDepartments.Select(p => Loc.GetString($"department-{p.Id}")).ToList()); From 95104de11772a6aba1b914b9b0b4743ef5f4641f Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:49:34 +0200 Subject: [PATCH 125/161] Fix cadet pda (#32399) --- .../Entities/Objects/Devices/pda.yml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 48e7a28debeb..f8109ca3ee48 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -115,11 +115,11 @@ speechVerb: Robotic - type: entity + parent: BasePDA id: BaseSecurityPDA abstract: true components: - type: CartridgeLoader - uiKey: enum.PdaUiKey.Key preinstalled: - CrewManifestCartridge - NotekeeperCartridge @@ -184,7 +184,7 @@ - Medical Doctor - type: entity - parent: BasePDA + parent: BaseSecurityPDA id: SecurityCadetPDA name: security cadet PDA description: Why isn't it red? @@ -445,7 +445,7 @@ state: pda-library - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: LawyerPDA name: lawyer PDA description: For lawyers to poach dubious clients. @@ -488,7 +488,7 @@ state: pda-janitor - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: CaptainPDA name: captain PDA description: Surprisingly no different from your PDA. @@ -663,7 +663,7 @@ state: pda-science - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: HoSPDA name: head of security PDA description: Whosoever bears this PDA is the law. @@ -678,7 +678,7 @@ state: pda-hos - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: WardenPDA name: warden PDA description: The OS appears to have been jailbroken. @@ -693,7 +693,7 @@ state: pda-warden - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: SecurityPDA name: security PDA description: Red to hide the stains of passenger blood. @@ -707,7 +707,7 @@ state: pda-security - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: CentcomPDA name: CentComm PDA description: Light green sign of walking bureaucracy. @@ -847,7 +847,7 @@ - Cartridge - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: ERTLeaderPDA name: ERT Leader PDA suffix: Leader @@ -995,7 +995,7 @@ state: pda-boxer - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: DetectivePDA name: detective PDA description: Smells like rain... pouring down the rooftops... @@ -1095,7 +1095,7 @@ state: pda-seniorphysician - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: SeniorOfficerPDA name: senior officer PDA description: Beaten, battered and broken, but just barely useable. From d0bb4086782558cce52bc58d7d940304ade81021 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 21:50:41 +0000 Subject: [PATCH 126/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index aac913670962..7cc55f2a11c3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Added health examine for caustic and cold damage. - type: Add - id: 6926 - time: '2024-07-17T06:19:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29989 - author: lzk228 changes: - message: Surgery saws now are normal-sized (no more pocket circular saw). @@ -3925,3 +3918,10 @@ id: 7425 time: '2024-09-23T13:08:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32302 +- author: lzk228 + changes: + - message: Cadet PDA now has wanted list cartridge preinstalled. + type: Fix + id: 7426 + time: '2024-09-23T21:49:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32399 From 594aad0fa978fb9a625f41f537a866348ee019ed Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Tue, 24 Sep 2024 00:36:05 +0100 Subject: [PATCH 127/161] Paper QOL improvements (#32418) * Don't add newlines (fixes #32357) * Improve UI around max paper length (Fixes #32344) * Display a "fill progress" indicator so users know how close they are to filling it * Don't allow users to save a paper which went over the limit, to avoid them losing data they want to keep. --------- Co-authored-by: Eoin Mcloughlin --- .../Paper/UI/PaperBoundUserInterface.cs | 5 ++ Content.Client/Paper/UI/PaperWindow.xaml | 11 +++-- Content.Client/Paper/UI/PaperWindow.xaml.cs | 49 ++++++++++++++++++- Content.Shared/Paper/PaperSystem.cs | 2 +- .../Locale/en-US/paper/paper-component.ftl | 3 ++ 5 files changed, 63 insertions(+), 7 deletions(-) diff --git a/Content.Client/Paper/UI/PaperBoundUserInterface.cs b/Content.Client/Paper/UI/PaperBoundUserInterface.cs index 63645bc01e91..ec417f749b9b 100644 --- a/Content.Client/Paper/UI/PaperBoundUserInterface.cs +++ b/Content.Client/Paper/UI/PaperBoundUserInterface.cs @@ -2,6 +2,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Utility; +using Content.Shared.Paper; using static Content.Shared.Paper.PaperComponent; namespace Content.Client.Paper.UI; @@ -23,6 +24,10 @@ protected override void Open() _window = this.CreateWindow(); _window.OnSaved += InputOnTextEntered; + if (EntMan.TryGetComponent(Owner, out var paper)) + { + _window.MaxInputLength = paper.ContentSize; + } if (EntMan.TryGetComponent(Owner, out var visuals)) { _window.InitVisuals(Owner, visuals); diff --git a/Content.Client/Paper/UI/PaperWindow.xaml b/Content.Client/Paper/UI/PaperWindow.xaml index 2344afd5ef70..503ae928a3ed 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml +++ b/Content.Client/Paper/UI/PaperWindow.xaml @@ -15,10 +15,13 @@ - - - + + + + + diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 81b831068c39..02c4ed64c359 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -48,6 +48,20 @@ public sealed partial class PaperWindow : BaseWindow public event Action? OnSaved; + private int _MaxInputLength = -1; + public int MaxInputLength + { + get + { + return _MaxInputLength; + } + set + { + _MaxInputLength = value; + UpdateFillState(); + } + } + public PaperWindow() { IoCManager.InjectDependencies(this); @@ -63,11 +77,21 @@ public PaperWindow() { if (args.Function == EngineKeyFunctions.MultilineTextSubmit) { - RunOnSaved(); - args.Handle(); + // SaveButton is disabled when we hit the max input limit. Just check + // that flag instead of trying to calculate the input length again + if (!SaveButton.Disabled) + { + RunOnSaved(); + args.Handle(); + } } }; + Input.OnTextChanged += args => + { + UpdateFillState(); + }; + SaveButton.OnPressed += _ => { RunOnSaved(); @@ -126,6 +150,7 @@ public void InitVisuals(EntityUid entity, PaperVisualsComponent visuals) PaperContent.ModulateSelfOverride = visuals.ContentImageModulate; WrittenTextLabel.ModulateSelfOverride = visuals.FontAccentColor; + FillStatus.ModulateSelfOverride = visuals.FontAccentColor; var contentImage = visuals.ContentImagePath != null ? _resCache.GetResource(visuals.ContentImagePath) : null; if (contentImage != null) @@ -296,5 +321,25 @@ private void RunOnSaved() { OnSaved?.Invoke(Rope.Collapse(Input.TextRope)); } + + private void UpdateFillState() + { + if (MaxInputLength != -1) + { + var inputLength = Input.TextLength; + + FillStatus.Text = Loc.GetString("paper-ui-fill-level", + ("currentLength", inputLength), + ("maxLength", MaxInputLength)); + + // Disable the save button if we've gone over the limit + SaveButton.Disabled = inputLength > MaxInputLength; + } + else + { + FillStatus.Text = ""; + SaveButton.Disabled = false; + } + } } } diff --git a/Content.Shared/Paper/PaperSystem.cs b/Content.Shared/Paper/PaperSystem.cs index 0f4bfef983dc..211eb7eba814 100644 --- a/Content.Shared/Paper/PaperSystem.cs +++ b/Content.Shared/Paper/PaperSystem.cs @@ -201,7 +201,7 @@ public bool TryStamp(Entity entity, StampDisplayInfo stampInfo, public void SetContent(Entity entity, string content) { - entity.Comp.Content = content + '\n'; + entity.Comp.Content = content; Dirty(entity); UpdateUserInterface(entity); diff --git a/Resources/Locale/en-US/paper/paper-component.ftl b/Resources/Locale/en-US/paper/paper-component.ftl index c2d9d5712bf6..7425ea2da164 100644 --- a/Resources/Locale/en-US/paper/paper-component.ftl +++ b/Resources/Locale/en-US/paper/paper-component.ftl @@ -11,6 +11,9 @@ paper-component-examine-detail-stamped-by = {CAPITALIZE(THE($paper))} {CONJUGATE paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} stamps {THE($target)} with {THE($stamp)}. paper-component-action-stamp-paper-self = You stamp {THE($target)} with {THE($stamp)}. +# Indicator to show how full a paper is +paper-ui-fill-level = {$currentLength}/{$maxLength} + paper-ui-save-button = Save ({$keybind}) paper-tamper-proof-modified-message = This page was written using tamper-proof ink. From 1450d76337597323f2cac761529024a332afb6a1 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 24 Sep 2024 01:38:09 +0200 Subject: [PATCH 128/161] Fix OOC not re-enabling if restartroundnow is used (#32401) The ChatSystem code for re-enabling OOC only ran during PostRound, which gets skipped over when doing restartroundnow. Now it does this on PreRoundLobby too. --- Content.Server/Chat/Systems/ChatSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index bcbc6a6144c9..fb84c785d276 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -122,6 +122,7 @@ private void OnGameChange(GameRunLevelChangedEvent ev) _configurationManager.SetCVar(CCVars.OocEnabled, false); break; case GameRunLevel.PostRound: + case GameRunLevel.PreRoundLobby: if (!_configurationManager.GetCVar(CCVars.OocEnableDuringRound)) _configurationManager.SetCVar(CCVars.OocEnabled, true); break; From f1bd0be7728a663e7b382a611c243313528516eb Mon Sep 17 00:00:00 2001 From: Myra Date: Tue, 24 Sep 2024 02:31:08 +0200 Subject: [PATCH 129/161] Remove all command age requirements (#32340) From what I can tell this was merged with this on accident. Maintainers see the maint review thread on this. The original pr also claimed this was as an example. In my opinion wizden should not have an age requirement for command. --- Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml | 2 -- Resources/Prototypes/Roles/Jobs/Command/captain.yml | 2 -- Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml | 2 -- Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml | 2 -- .../Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml | 2 -- Resources/Prototypes/Roles/Jobs/Science/research_director.yml | 2 -- Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml | 2 -- 7 files changed, 14 deletions(-) diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 1beef052f828..515e2f8425a7 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -15,8 +15,6 @@ time: 36000 #10 hours - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: QuartermasterGear icon: "JobIconQuarterMaster" diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index e74c307204bf..79634aa5d9f7 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -16,8 +16,6 @@ - !type:DepartmentTimeRequirement department: Command time: 54000 # 15 hours - - !type:AgeRequirement - requiredAge: 21 weight: 20 startingGear: CaptainGear icon: "JobIconCaptain" diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 7cac1456d4f1..d5521f767f18 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -16,8 +16,6 @@ - !type:DepartmentTimeRequirement department: Command time: 36000 # 10 hours - - !type:AgeRequirement - requiredAge: 21 weight: 20 startingGear: HoPGear icon: "JobIconHeadOfPersonnel" diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index f9f94d21bbce..0ee0b6736ca7 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -15,8 +15,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: ChiefEngineerGear icon: "JobIconChiefEngineer" diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 0d3b5bb80511..25871134155e 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -17,8 +17,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: CMOGear icon: "JobIconChiefMedicalOfficer" diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index 48dffcb98cb8..b54ba54b1a47 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -9,8 +9,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: ResearchDirectorGear icon: "JobIconResearchDirector" diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 7a5f5b6dcde3..044df7f69e20 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -15,8 +15,6 @@ time: 108000 # 30 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: HoSGear icon: "JobIconHeadOfSecurity" From dc4d638ce97cc53a0e8e2d94d23ae7edd0027303 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 00:32:14 +0000 Subject: [PATCH 130/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7cc55f2a11c3..03d2ab112772 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Surgery saws now are normal-sized (no more pocket circular saw). - type: Tweak - id: 6927 - time: '2024-07-17T06:26:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29995 - author: Winkarst-cpu changes: - message: The super door remote is now able to control Syndicate doors. @@ -3925,3 +3918,10 @@ id: 7426 time: '2024-09-23T21:49:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32399 +- author: Vasilis + changes: + - message: Removed the age requirement for command jobs. + type: Tweak + id: 7427 + time: '2024-09-24T00:31:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32340 From 9d75a228c0ed599b104f3c28335d545289058573 Mon Sep 17 00:00:00 2001 From: spanky-spanky Date: Tue, 24 Sep 2024 00:48:14 -0400 Subject: [PATCH 131/161] Add missing LV cables in Omega atmos (#32417) Adds missing LV wire in atmos burn chambers. --- Resources/Maps/omega.yml | 62 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 708edad454a0..7709234a6a15 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -20994,6 +20994,56 @@ entities: - type: Transform pos: -55.5,6.5 parent: 4812 + - uid: 13699 + components: + - type: Transform + pos: -55.5,9.5 + parent: 4812 + - uid: 13700 + components: + - type: Transform + pos: -56.5,9.5 + parent: 4812 + - uid: 13701 + components: + - type: Transform + pos: -57.5,9.5 + parent: 4812 + - uid: 13702 + components: + - type: Transform + pos: -58.5,9.5 + parent: 4812 + - uid: 13703 + components: + - type: Transform + pos: -59.5,9.5 + parent: 4812 + - uid: 13704 + components: + - type: Transform + pos: -60.5,9.5 + parent: 4812 + - uid: 13705 + components: + - type: Transform + pos: -58.5,0.5 + parent: 4812 + - uid: 13706 + components: + - type: Transform + pos: -59.5,0.5 + parent: 4812 + - uid: 13707 + components: + - type: Transform + pos: -60.5,0.5 + parent: 4812 + - uid: 13708 + components: + - type: Transform + pos: -61.5,0.5 + parent: 4812 - proto: CableApcStack entities: - uid: 6196 @@ -86503,6 +86553,12 @@ entities: rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 4812 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 - proto: WindoorSecureChemistryLocked entities: - uid: 6582 @@ -86588,12 +86644,6 @@ entities: parent: 4812 - proto: WindoorSecureSalvageLocked entities: - - uid: 13169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 4812 - uid: 13253 components: - type: Transform From 50395e25cf35277150930ccfc1a73c8747846647 Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Tue, 24 Sep 2024 17:23:48 +0300 Subject: [PATCH 132/161] Allow AreaInsert pickups for one item (#32153) Update SharedStorageSystem.cs --- Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index d6fde292a147..ca4b788867f5 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -453,7 +453,7 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt } //If there's only one then let's be generous - if (_entList.Count > 1) + if (_entList.Count >= 1) { var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(_entList)), uid, target: uid) { From 49d4e4c465a9734f8de970c01b024fe595fc9dd7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 14:24:56 +0000 Subject: [PATCH 133/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 03d2ab112772..667f365d50c2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: The super door remote is now able to control Syndicate doors. - type: Fix - id: 6928 - time: '2024-07-17T13:50:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30033 - author: Errant changes: - message: Vox are temporarily removed from Space Ninjas and all Unknown Shuttle @@ -3925,3 +3918,10 @@ id: 7427 time: '2024-09-24T00:31:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32340 +- author: whatston3 + changes: + - message: Area insert items can pick up single item sets when clicking on the floor. + type: Fix + id: 7428 + time: '2024-09-24T14:23:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32153 From efd989435e875a12e7044fb525ef7bd8aea9a4de Mon Sep 17 00:00:00 2001 From: LordEclipse <106132477+LordEclipse@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:06:58 -0400 Subject: [PATCH 134/161] Antimov in both Traitor & Nukie Uplinks (#31916) Adds Antimov AI Lawboard to Uplinks Automatic changelog update Co-authored-by: PJBot --- .../Locale/en-US/store/uplink-catalog.ftl | 3 ++ .../Prototypes/Catalog/uplink_catalog.yml | 38 ++++++++++++++++++- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 90676fbfe35d..45d7ad28165e 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -166,6 +166,9 @@ uplink-syndicate-martyr-module-desc = Turn your emagged borg friend into a walki uplink-singularity-beacon-name = Singularity Beacon uplink-singularity-beacon-desc = A device that attracts singularities. Has to be anchored and powered. Causes singularities to grow when consumed. +uplink-antimov-law-name = Antimov Law Circuit +uplink-antimov-law-desc = A very dangerous Lawset to use when you want to cause the A.I. to go haywire, use with caution. + # Implants uplink-storage-implanter-name = Storage Implanter uplink-storage-implanter-desc = Hide goodies inside of yourself with new bluespace technology! diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index efa288a44b89..c84e88d0771b 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -993,11 +993,47 @@ categories: - UplinkDisruption conditions: - - !type:BuyerWhitelistCondition + - !type:BuyerWhitelistCondition blacklist: components: - SurplusBundle +- type: listing + id: UplinkAntimovCircuitBoard + name: uplink-antimov-law-name + description: uplink-antimov-law-desc + productEntity: AntimovCircuitBoard + discountCategory: usualDiscounts + discountDownTo: + Telecrystal: 10 + cost: + Telecrystal: 14 + categories: + - UplinkDisruption + conditions: + - !type:StoreWhitelistCondition + blacklist: + tags: + - NukeOpsUplink + +- type: listing + id: UplinkNukieAntimovCircuitBoard + name: uplink-antimov-law-name + description: uplink-antimov-law-desc + productEntity: AntimovCircuitBoard + discountCategory: rareDiscounts + discountDownTo: + Telecrystal: 20 + cost: + Telecrystal: 24 + categories: + - UplinkDisruption + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - type: listing id: UplinkSurplusBundle name: uplink-surplus-bundle-name From b883f796606c722cf429bf904e82c1becd309983 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 15:08:06 +0000 Subject: [PATCH 135/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 667f365d50c2..c5a3353f5389 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Errant - changes: - - message: Vox are temporarily removed from Space Ninjas and all Unknown Shuttle - ghostroles, until code supports giving them species-specific gear. - type: Tweak - id: 6929 - time: '2024-07-17T22:04:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30099 - author: Cojoke-dot changes: - message: You can no longer teleport objects that should not be in other objects @@ -3925,3 +3917,11 @@ id: 7428 time: '2024-09-24T14:23:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32153 +- author: LordEclipse + changes: + - message: The Antimov Law Board is now available in both the Traitor and Nuclear + Operative Uplinks, 14 and 24 TC respectively. + type: Add + id: 7429 + time: '2024-09-24T15:06:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31916 From 87932bce57cd9ef0a37db76c75eeeefe27b1b79d Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Tue, 24 Sep 2024 17:19:40 +0200 Subject: [PATCH 136/161] craftable freezers (#32277) * Craftable freezers * oh i forgot that --- .../Objects/Devices/Electronics/misc.yml | 15 ++++++ .../Entities/Structures/Machines/lathe.yml | 1 + .../Storage/Closets/Lockers/lockers.yml | 5 ++ .../Structures/Storage/Crates/crates.yml | 5 ++ .../Crafting/Graphs/storage/cratefreezer.yml | 42 +++++++++++++++++ .../Crafting/Graphs/storage/tallbox.yml | 43 ++++++++++++++++++ .../Prototypes/Recipes/Crafting/crates.yml | 11 +++++ .../Prototypes/Recipes/Crafting/tallbox.yml | 13 +++++- .../Prototypes/Recipes/Lathes/electronics.yml | 5 ++ Resources/Prototypes/tags.yml | 3 ++ .../Storage/closet.rsi/freezer_icon.png | Bin 0 -> 444 bytes .../Structures/Storage/closet.rsi/meta.json | 3 ++ 12 files changed, 145 insertions(+), 1 deletion(-) create mode 100644 Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml create mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml create mode 100644 Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml new file mode 100644 index 000000000000..62a4ee72947e --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml @@ -0,0 +1,15 @@ +- type: entity + parent: BaseElectronics + id: FreezerElectronics + name: freezer electronics + description: An electronics board used in kitchen freezers. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: door_electronics + - type: Tag + tags: + - FreezerElectronics + - type: DoorElectronics + - type: StaticPrice + price: 55 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 538da8d93e6e..666550cd8a17 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -198,6 +198,7 @@ - ClothingHeadHatWelding - WetFloorSign - ClothingHeadHatCone + - FreezerElectronics - Flare - type: EmagLatheRecipes emagStaticRecipes: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 89dc4d475524..244ccf2e30c4 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -170,6 +170,11 @@ - type: ExplosionResistance damageCoefficient: 0.50 - type: AntiRottingContainer + - type: Construction + graph: ClosetFreezer + node: done + containers: + - entity_storage - type: entity id: LockerFreezer diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 4c540d7b77f2..3ed0ee534895 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -42,6 +42,11 @@ - type: AntiRottingContainer - type: ExplosionResistance damageCoefficient: 0.50 + - type: Construction + graph: CrateFreezer + node: done + containers: + - entity_storage - type: entity parent: CratePlastic diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml new file mode 100644 index 000000000000..a43d84e1734e --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml @@ -0,0 +1,42 @@ +- type: constructionGraph + id: CrateFreezer + start: start + graph: + - node: start + edges: + - to: done + steps: + - material: Steel + amount: 5 + - material: Cable + amount: 2 + doAfter: 5 + - tag: FreezerElectronics + name: freezer electronics + icon: + sprite: Objects/Misc/module.rsi + state: door_electronics + - node: done + entity: CrateFreezer + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + conditions: + - !type:StorageWelded + welded: false + - !type:Locked + locked: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + - !type:SpawnPrototype + prototype: FreezerElectronics + amount: 1 + - !type:EmptyAllContainers + - !type:DeleteEntity diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml index e72c56ff44c3..17696eaaff88 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml @@ -61,6 +61,49 @@ - !type:EmptyAllContainers - !type:DeleteEntity +- type: constructionGraph + id: ClosetFreezer + start: start + graph: + - node: start + edges: + - to: done + steps: + - material: Steel + amount: 4 + - material: Cable + amount: 2 + doAfter: 5 + - tag: FreezerElectronics + name: freezer electronics + icon: + sprite: Objects/Misc/module.rsi + state: door_electronics + - node: done + entity: LockerFreezerBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + conditions: + - !type:StorageWelded + welded: false + - !type:Locked + locked: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 4 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + - !type:SpawnPrototype + prototype: FreezerElectronics + amount: 1 + - !type:EmptyAllContainers + - !type:DeleteEntity + - type: constructionGraph id: ClosetWall start: start diff --git a/Resources/Prototypes/Recipes/Crafting/crates.yml b/Resources/Prototypes/Recipes/Crafting/crates.yml index 72fabc2221b6..25450b7d9825 100644 --- a/Resources/Prototypes/Recipes/Crafting/crates.yml +++ b/Resources/Prototypes/Recipes/Crafting/crates.yml @@ -31,6 +31,17 @@ icon: { sprite: Structures/Storage/Crates/secure.rsi, state: icon } objectType: Structure +- type: construction + name: freezer + id: CrateFreezer + graph: CrateFreezer + startNode: start + targetNode: done + category: construction-category-storage + description: A metal freezing crate for storing things. + icon: { sprite: Structures/Storage/Crates/freezer.rsi, state: icon } + objectType: Structure + - type: construction name: plastic crate id: CratePlastic diff --git a/Resources/Prototypes/Recipes/Crafting/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/tallbox.yml index 21a7ec8225db..c90142de4454 100644 --- a/Resources/Prototypes/Recipes/Crafting/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/tallbox.yml @@ -20,6 +20,17 @@ icon: { sprite: Structures/Storage/closet.rsi, state: secure_icon } objectType: Structure +- type: construction + id: ClosetFreezer + name: freezer + graph: ClosetFreezer + startNode: start + targetNode: done + category: construction-category-storage + description: A tall steel box with freezing abilities. + icon: { sprite: Structures/Storage/closet.rsi, state: freezer_icon } + objectType: Structure + - type: construction id: ClosetWall name: wall closet @@ -34,4 +45,4 @@ canRotate: true canBuildInImpassable: true conditions: - - !type:WallmountCondition \ No newline at end of file + - !type:WallmountCondition diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 818ba0fe3748..99ff9f25eef1 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -98,6 +98,11 @@ id: DoorElectronics result: DoorElectronics +- type: latheRecipe + parent: BaseCheapElectronicsRecipe + id: FreezerElectronics + result: FreezerElectronics + - type: latheRecipe parent: BaseElectronicsRecipe id: AirAlarmElectronics diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 1ddee10e6307..2a07d061d3aa 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -647,6 +647,9 @@ - type: Tag id: ForceNoFixRotations # fixrotations command WON'T target this +- type: Tag + id: FreezerElectronics + - type: Tag id: Fruit diff --git a/Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png b/Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ab148aa7cb258bcb96b2aeb109071de1672bc528 GIT binary patch literal 444 zcmV;t0Ym-ipF4kPQZ7CV zzJe)=0^vNXkMl(qga>bJoa>v8k+uaT-3j7SmPe=Fr mJ!D!{6^Z`?*c&qax1v|Y`)ZW)1JP;#0000 Date: Tue, 24 Sep 2024 15:20:46 +0000 Subject: [PATCH 137/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c5a3353f5389..aaeb4a9d9070 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: You can no longer teleport objects that should not be in other objects - into other objects with the Quantum Spin Inverter - type: Fix - id: 6930 - time: '2024-07-18T00:40:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29200 - author: Plykiya changes: - message: Stun batons no longer use up charges when hitting objects without stamina. @@ -3925,3 +3917,11 @@ id: 7429 time: '2024-09-24T15:06:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31916 +- author: lzk228 + changes: + - message: Freezer electronics added to autolathe, with which you can craft locker + freezer or crate freezer. + type: Add + id: 7430 + time: '2024-09-24T15:19:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32277 From 042f0d3f47036d7f9e61ca29643885c250992fb7 Mon Sep 17 00:00:00 2001 From: Milon Date: Tue, 24 Sep 2024 17:48:32 +0200 Subject: [PATCH 138/161] fix paper staying on fire forever (#32412) okay who did that --- Resources/Prototypes/Entities/Objects/Misc/paper.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index d26bdf25c7c0..0605ceb9f996 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -35,9 +35,7 @@ - type: PaperVisuals - type: Flammable fireSpread: true - canResistFire: false alwaysCombustible: true - canExtinguish: false # Mwahaha! Let the world burn because of one piece of paper! damage: types: Heat: 1 From f3e185c063cdcdeac57e94ffbceb49dd3d2534bf Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 15:49:38 +0000 Subject: [PATCH 139/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index aaeb4a9d9070..1c8bcd0bd3d5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Stun batons no longer use up charges when hitting objects without stamina. - type: Fix - id: 6931 - time: '2024-07-18T00:48:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30136 - author: Sh18RW changes: - message: Moth can't eat boots with an item more @@ -3925,3 +3918,10 @@ id: 7430 time: '2024-09-24T15:19:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32277 +- author: MilonPL + changes: + - message: Paper will no longer stay on fire indefinitely. + type: Fix + id: 7431 + time: '2024-09-24T15:48:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32412 From 241be37185b84ce6d3fd0c8b5672bb41c926a4e0 Mon Sep 17 00:00:00 2001 From: ArchRBX <5040911+ArchRBX@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:02:51 +0100 Subject: [PATCH 140/161] AstroNav GPS Cartridge (#32194) * initial commit * adds astronav cartridge to QM locker * changes requested in review * fix merge conflicts * fixes the statuscontrol disappearing if you eject the cartridge but still have it installed * fix notificationsenabled on salv pda proto * fixes lingering statuscontrol on eject while held --------- Co-authored-by: archrbx --- .../GPS/Components/HandheldGPSComponent.cs | 9 ----- .../GPS/Systems/HandheldGpsSystem.cs | 2 +- .../GPS/UI/HandheldGpsStatusControl.cs | 15 +++++--- .../Cartridges/AstroNavCartridgeComponent.cs | 9 +++++ .../Cartridges/AstroNavCartridgeSystem.cs | 32 ++++++++++++++++++ Content.Server/Entry/IgnoredComponents.cs | 1 - .../GPS/Components/HandheldGPSComponent.cs | 10 ++++++ .../Components/SharedHandheldGPSComponent.cs | 9 ----- .../en-US/cartridge-loader/cartridges.ftl | 2 ++ .../Catalog/Fills/Lockers/heads.yml | 1 + .../Entities/Objects/Devices/cartridges.yml | 19 +++++++++++ .../Entities/Objects/Devices/pda.yml | 7 ++++ .../Devices/cartridge.rsi/cart-nav.png | Bin 0 -> 300 bytes .../Objects/Devices/cartridge.rsi/meta.json | 11 +++--- 14 files changed, 99 insertions(+), 28 deletions(-) delete mode 100644 Content.Client/GPS/Components/HandheldGPSComponent.cs create mode 100644 Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs create mode 100644 Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs create mode 100644 Content.Shared/GPS/Components/HandheldGPSComponent.cs delete mode 100644 Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs create mode 100644 Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png diff --git a/Content.Client/GPS/Components/HandheldGPSComponent.cs b/Content.Client/GPS/Components/HandheldGPSComponent.cs deleted file mode 100644 index 0f5271fd80c4..000000000000 --- a/Content.Client/GPS/Components/HandheldGPSComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.GPS; - -namespace Content.Client.GPS.Components -{ - [RegisterComponent] - public sealed partial class HandheldGPSComponent : SharedHandheldGPSComponent - { - } -} diff --git a/Content.Client/GPS/Systems/HandheldGpsSystem.cs b/Content.Client/GPS/Systems/HandheldGpsSystem.cs index cc2b888da37f..3f38a3b69529 100644 --- a/Content.Client/GPS/Systems/HandheldGpsSystem.cs +++ b/Content.Client/GPS/Systems/HandheldGpsSystem.cs @@ -1,4 +1,4 @@ -using Content.Client.GPS.Components; +using Content.Shared.GPS.Components; using Content.Client.GPS.UI; using Content.Client.Items; diff --git a/Content.Client/GPS/UI/HandheldGpsStatusControl.cs b/Content.Client/GPS/UI/HandheldGpsStatusControl.cs index 7dcf3f29c519..57645e386e73 100644 --- a/Content.Client/GPS/UI/HandheldGpsStatusControl.cs +++ b/Content.Client/GPS/UI/HandheldGpsStatusControl.cs @@ -1,4 +1,4 @@ -using Content.Client.GPS.Components; +using Content.Shared.GPS.Components; using Content.Client.Message; using Content.Client.Stylesheets; using Robust.Client.GameObjects; @@ -30,6 +30,13 @@ protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); + // don't display the label if the gps component is being removed + if (_parent.Comp.LifeStage > ComponentLifeStage.Running) + { + _label.Visible = false; + return; + } + _updateDif += args.DeltaSeconds; if (_updateDif < _parent.Comp.UpdateRate) return; @@ -44,9 +51,9 @@ private void UpdateGpsDetails() var posText = "Error"; if (_entMan.TryGetComponent(_parent, out TransformComponent? transComp)) { - var pos = _transform.GetMapCoordinates(_parent.Owner, xform: transComp); - var x = (int) pos.X; - var y = (int) pos.Y; + var pos = _transform.GetMapCoordinates(_parent.Owner, xform: transComp); + var x = (int)pos.X; + var y = (int)pos.Y; posText = $"({x}, {y})"; } _label.SetMarkup(Loc.GetString("handheld-gps-coordinates-title", ("coordinates", posText))); diff --git a/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs new file mode 100644 index 000000000000..fd616a1c803d --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs @@ -0,0 +1,9 @@ +using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.GPS; + +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent] +public sealed partial class AstroNavCartridgeComponent : Component +{ +} diff --git a/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs new file mode 100644 index 000000000000..60d14789fa01 --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.GPS.Components; + +namespace Content.Server.CartridgeLoader.Cartridges; + +public sealed class AstroNavCartridgeSystem : EntitySystem +{ + [Dependency] private readonly CartridgeLoaderSystem _cartridgeLoaderSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCartridgeAdded); + SubscribeLocalEvent(OnCartridgeRemoved); + } + + private void OnCartridgeAdded(Entity ent, ref CartridgeAddedEvent args) + { + EnsureComp(args.Loader); + } + + private void OnCartridgeRemoved(Entity ent, ref CartridgeRemovedEvent args) + { + // only remove when the program itself is removed + if (!_cartridgeLoaderSystem.HasProgram(args.Loader)) + { + RemComp(args.Loader); + } + } +} diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index d9b81c8e5a5b..04c45662272b 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -12,7 +12,6 @@ public static class IgnoredComponents "GuideHelp", "Clickable", "Icon", - "HandheldGPS", "CableVisualizer", "SolutionItemStatus", "UIFragment", diff --git a/Content.Shared/GPS/Components/HandheldGPSComponent.cs b/Content.Shared/GPS/Components/HandheldGPSComponent.cs new file mode 100644 index 000000000000..a0af09098676 --- /dev/null +++ b/Content.Shared/GPS/Components/HandheldGPSComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.GPS.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class HandheldGPSComponent : Component +{ + [DataField] + public float UpdateRate = 1.5f; +} diff --git a/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs b/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs deleted file mode 100644 index 3c30738857bd..000000000000 --- a/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ - -namespace Content.Shared.GPS -{ - public abstract partial class SharedHandheldGPSComponent : Component - { - [DataField("updateRate")] - public float UpdateRate = 1.5f; - } -} diff --git a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl index 2db27f5be09a..804da0992fa3 100644 --- a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl @@ -20,6 +20,8 @@ log-probe-label-time = Time log-probe-label-accessor = Accessed by log-probe-label-number = # +astro-nav-program-name = AstroNav + # Wanted list cartridge wanted-list-program-name = Wanted list wanted-list-label-no-records = It's all right, cowboy diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 31ebad618370..2ca2b0f74046 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -17,6 +17,7 @@ - id: RubberStampApproved - id: RubberStampDenied - id: RubberStampQm + - id: AstroNavCartridge - type: entity id: LockerQuarterMasterFilled diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index 91493f48cd1f..aee26b077698 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -116,3 +116,22 @@ - type: WantedListCartridge - type: StealTarget stealGroup: WantedListCartridge + +- type: entity + parent: BaseItem + id: AstroNavCartridge + name: AstroNav cartridge + description: A program for navigation that provides GPS coordinates. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-nav + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-nav + - type: Cartridge + programName: astro-nav-program-name + icon: + sprite: Objects/Devices/gps.rsi + state: icon + - type: AstroNavCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index f8109ca3ee48..c6952fdd6aa2 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -400,6 +400,13 @@ accentVColor: "#8900c9" - type: Icon state: pda-miner + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - AstroNavCartridge - type: entity parent: BasePDA diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png new file mode 100644 index 0000000000000000000000000000000000000000..427129da0ed3c3745dda6f4c80f872b860497315 GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCilI0(?STIXOAi)zzh>qzsLm9GpV@0y3)i7{Z&C&V0|Ns=K|!GM zuz-^+K#H#<$S?RmGGK5$aOVV2hO@vUvKXk~FbFdq&tH)O6fE>~aSXBWe|zCBSAzmi zL*Re2vv+>)&kJtX)Lrs>-)sl|?2L@d{8jP|k&_N{O1xh7rdBWB=p4I42J3s11K&F~ zvT8B-oG=zL4skrfytwB=eW3XYVIdaL9~+rpc(48DEVFIlyJ`cUu)&Rm^Hj$ Ys#v327E!^u8E83!r>mdKI;Vst0BSF1{Qv*} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index d5fad5600621..e7415fe1c271 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav made by ArchRBX (github)", "size": { "x": 32, "y": 32 @@ -58,6 +58,9 @@ { "name": "cart-mi" }, + { + "name": "cart-nav" + }, { "name": "cart-ord" }, @@ -70,6 +73,9 @@ { "name": "cart-s" }, + { + "name": "cart-sec" + }, { "name": "cart-tear" }, @@ -79,9 +85,6 @@ { "name": "cart-y" }, - { - "name": "cart-sec" - }, { "name": "insert_overlay" } From 4bca634ff6ba4836c683d394d20e7cf0c4a4916e Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 17:03:58 +0000 Subject: [PATCH 141/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c8bcd0bd3d5..2035b48264c1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Sh18RW - changes: - - message: Moth can't eat boots with an item more - type: Fix - id: 6932 - time: '2024-07-18T22:34:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30019 - author: portfiend changes: - message: Reptilians display correct mask sprites in character customization screen. @@ -3925,3 +3918,14 @@ id: 7431 time: '2024-09-24T15:48:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32412 +- author: ArchRBX + changes: + - message: The AstroNav PDA cartridge has now been added, which turns your PDA into + a handheld GPS + type: Add + - message: The AstroNav cartridge has been added to the QM locker, and comes preinstalled + on salvage PDA's + type: Add + id: 7432 + time: '2024-09-24T17:02:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32194 From e36d735064d2f66156877a9d72ee1063ebb76425 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 24 Sep 2024 22:43:02 +0200 Subject: [PATCH 142/161] Fix cartesian explosion in pref loading (#32434) Lol .AsSingleQuery(). Some people's preferences wouldn't load on Lizard. Turns out the entire preferences set is loaded with a morbillion joins in a single query and one person had 240,000 (!!!) rows returned for their preferences query. Yeah. --- Content.Server/Database/ServerDbBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 3c59c36f77e3..b750c13e2129 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -52,7 +52,7 @@ public ServerDbBase(ISawmill opsLog) .ThenInclude(h => h.Loadouts) .ThenInclude(l => l.Groups) .ThenInclude(group => group.Loadouts) - .AsSingleQuery() + .AsSplitQuery() .SingleOrDefaultAsync(p => p.UserId == userId.UserId, cancel); if (prefs is null) From 89dbef7461abe1de886075cc011bc2e0af2bd40a Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 20:44:08 +0000 Subject: [PATCH 143/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2035b48264c1..b6243e2c1723 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: portfiend - changes: - - message: Reptilians display correct mask sprites in character customization screen. - type: Fix - id: 6933 - time: '2024-07-18T22:36:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30095 - author: Plykiya changes: - message: You no longer deal double damage to your first target when throwing an @@ -3929,3 +3922,10 @@ id: 7432 time: '2024-09-24T17:02:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32194 +- author: PJB3005 + changes: + - message: Fixed some people's preferences taking ages to load, hopefully. + type: Fix + id: 7433 + time: '2024-09-24T20:43:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32434 From 95a159f9509aac615bcd7265a841dadeabaa453c Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Tue, 24 Sep 2024 21:37:45 +0000 Subject: [PATCH 144/161] fix(BatterySelfRecharger): Fully charge BatterySelfRechargers (#30627) --- Content.Server/Power/EntitySystems/BatterySystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Power/EntitySystems/BatterySystem.cs b/Content.Server/Power/EntitySystems/BatterySystem.cs index 0a0f2068b58e..ed2d54ffaa60 100644 --- a/Content.Server/Power/EntitySystems/BatterySystem.cs +++ b/Content.Server/Power/EntitySystems/BatterySystem.cs @@ -84,7 +84,6 @@ public override void Update(float frameTime) while (query.MoveNext(out var uid, out var comp, out var batt)) { if (!comp.AutoRecharge) continue; - if (batt.IsFullyCharged) continue; SetCharge(uid, batt.CurrentCharge + comp.AutoRechargeRate * frameTime, batt); } } @@ -138,7 +137,8 @@ public void SetCharge(EntityUid uid, float value, BatteryComponent? battery = nu var old = battery.CurrentCharge; battery.CurrentCharge = MathHelper.Clamp(value, 0, battery.MaxCharge); - if (MathHelper.CloseTo(battery.CurrentCharge, old)) + if (MathHelper.CloseTo(battery.CurrentCharge, old) && + !(old != battery.CurrentCharge && battery.CurrentCharge == battery.MaxCharge)) return; var ev = new ChargeChangedEvent(battery.CurrentCharge, battery.MaxCharge); From 55366dc594ea124c890283212a5258ac76e2a081 Mon Sep 17 00:00:00 2001 From: Moomoobeef <62638182+Moomoobeef@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:58:46 -0700 Subject: [PATCH 145/161] Most papers are no longer trash (#32343) most papers are not trash anymore --- .../Prototypes/Entities/Objects/Misc/paper.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 0605ceb9f996..5c3cd4449625 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -28,7 +28,6 @@ - type: Tag tags: - Document - - Trash - Paper - type: Appearance - type: FaxableObject @@ -79,6 +78,11 @@ id: PaperScrap description: 'A crumpled up piece of white paper.' components: + - type: Tag + tags: + - Document + - Trash + - Paper - type: Sprite layers: - state: scrap @@ -176,6 +180,11 @@ visible: false - type: PaperLabelType paperType: Invoice + - type: Tag + tags: + - Document + - Trash + - Paper - type: PaperVisuals backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" @@ -205,6 +214,11 @@ visible: false - type: PaperLabelType paperType: Bounty + - type: Tag + tags: + - Document + - Trash + - Paper - type: PaperVisuals backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" From 52e85fe726a9c17184c1c31eea78a0d50d32a7b7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 21:59:53 +0000 Subject: [PATCH 146/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b6243e2c1723..a31711b81609 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You no longer deal double damage to your first target when throwing an - item. - type: Fix - id: 6934 - time: '2024-07-19T01:08:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30115 - author: deepdarkdepths changes: - message: Removed the description about geras in the Slime guidebook section. @@ -3929,3 +3921,10 @@ id: 7433 time: '2024-09-24T20:43:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32434 +- author: Moomoobeef + changes: + - message: Most papers are no longer considered trash. + type: Tweak + id: 7434 + time: '2024-09-24T21:58:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32343 From d1812c11fde58ffa23967c50524472c6324334a2 Mon Sep 17 00:00:00 2001 From: goet <6637097+goet@users.noreply.github.com> Date: Wed, 25 Sep 2024 07:21:24 +0200 Subject: [PATCH 147/161] Fix contraband never getting added to vend inventory (#32431) * fix contraband never getting added to vend inventory * Revert "fix contraband never getting added to vend inventory" This reverts commit e7fb3a60c3cb6fcbf41d7f015f13dbc7b1c1901d. * readd setter method to system * fix again without reparenting --- .../VendingMachineContrabandWireAction.cs | 11 ++++++++++- .../VendingMachines/VendingMachineSystem.cs | 12 ++++++++++++ .../VendingMachines/VendingMachineComponent.cs | 1 + 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs b/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs index 22a0341fcbea..39231fbe8349 100644 --- a/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs +++ b/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs @@ -7,11 +7,20 @@ namespace Content.Server.VendingMachines; [DataDefinition] public sealed partial class VendingMachineContrabandWireAction : BaseToggleWireAction { + private VendingMachineSystem _vendingMachineSystem = default!; + public override Color Color { get; set; } = Color.Green; public override string Name { get; set; } = "wire-name-vending-contraband"; public override object? StatusKey { get; } = ContrabandWireKey.StatusKey; public override object? TimeoutKey { get; } = ContrabandWireKey.TimeoutKey; + public override void Initialize() + { + base.Initialize(); + + _vendingMachineSystem = EntityManager.System(); + } + public override StatusLightState? GetLightState(Wire wire) { if (EntityManager.TryGetComponent(wire.Owner, out VendingMachineComponent? vending)) @@ -28,7 +37,7 @@ public override void ToggleValue(EntityUid owner, bool setting) { if (EntityManager.TryGetComponent(owner, out VendingMachineComponent? vending)) { - vending.Contraband = !setting; + _vendingMachineSystem.SetContraband(owner, !vending.Contraband, vending); } } diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 38407a98c729..90fe4cb7d8ae 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -192,6 +192,18 @@ public void SetShooting(EntityUid uid, bool canShoot, VendingMachineComponent? c component.CanShoot = canShoot; } + /// + /// Sets the property of the vending machine. + /// + public void SetContraband(EntityUid uid, bool contraband, VendingMachineComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + component.Contraband = contraband; + Dirty(uid, component); + } + public void Deny(EntityUid uid, VendingMachineComponent? vendComponent = null) { if (!Resolve(uid, ref vendComponent)) diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index a3c7949600a1..50023a023ab1 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -41,6 +41,7 @@ public sealed partial class VendingMachineComponent : Component [DataField, AutoNetworkedField] public Dictionary ContrabandInventory = new(); + [DataField, AutoNetworkedField] public bool Contraband; public bool Ejecting; From 31c45d6169c0ef336b54c7257b454d1db546b3f5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 05:22:30 +0000 Subject: [PATCH 148/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a31711b81609..3905edbc13a4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deepdarkdepths - changes: - - message: Removed the description about geras in the Slime guidebook section. - type: Remove - id: 6935 - time: '2024-07-19T09:04:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30140 - author: Blackern5000 changes: - message: Nuclear operatives are now able to purchase durable armor which is NOT @@ -3928,3 +3921,10 @@ id: 7434 time: '2024-09-24T21:58:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32343 +- author: goet + changes: + - message: Vending machines can be hacked again. + type: Fix + id: 7435 + time: '2024-09-25T05:21:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32431 From 0dedc9d91aa17848d9a829a2708765375cf18242 Mon Sep 17 00:00:00 2001 From: Zylofan <80375291+Zylofan@users.noreply.github.com> Date: Wed, 25 Sep 2024 06:50:15 -0400 Subject: [PATCH 149/161] Skull Helm Hand Sprite now turns (#32442) Fixed a typo for the bone helmet that made it not rotate when held in the right hand. --- .../Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json index bbb0aac66482..a470e0094432 100644 --- a/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json @@ -20,7 +20,7 @@ }, { "name": "inhand-right", - "direction": 4 + "directions": 4 } ] } From 7168959929b87dd392c5cbc3d29bdb9bd315c060 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Wed, 25 Sep 2024 10:27:28 -0400 Subject: [PATCH 150/161] Adds real-time charge & disabled action information to Actions (#31821) --- Content.Client/Actions/ActionsSystem.cs | 27 ++++++++ Content.Shared/Actions/BaseActionComponent.cs | 14 ++++ Content.Shared/Actions/SharedActionsSystem.cs | 64 +++++++++++++++++-- 3 files changed, 99 insertions(+), 6 deletions(-) diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index 26a22fa8b8df..7b13233bab5c 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -51,6 +51,29 @@ public override void Initialize() SubscribeLocalEvent(OnEntityWorldTargetHandleState); } + public override void FrameUpdate(float frameTime) + { + base.FrameUpdate(frameTime); + + var worldActionQuery = EntityQueryEnumerator(); + while (worldActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + + var instantActionQuery = EntityQueryEnumerator(); + while (instantActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + + var entityActionQuery = EntityQueryEnumerator(); + while (entityActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + } + private void OnInstantHandleState(EntityUid uid, InstantActionComponent component, ref ComponentHandleState args) { if (args.Current is not InstantActionComponentState state) @@ -95,6 +118,8 @@ private void BaseHandleState(EntityUid uid, BaseActionComponent component, Ba component.Icon = state.Icon; component.IconOn = state.IconOn; component.IconColor = state.IconColor; + component.OriginalIconColor = state.OriginalIconColor; + component.DisabledIconColor = state.DisabledIconColor; component.Keywords.Clear(); component.Keywords.UnionWith(state.Keywords); component.Enabled = state.Enabled; @@ -125,6 +150,8 @@ public override void UpdateAction(EntityUid? actionId, BaseActionComponent? acti if (!ResolveActionData(actionId, ref action)) return; + action.IconColor = action.Charges < 1 ? action.DisabledIconColor : action.OriginalIconColor; + base.UpdateAction(actionId, action); if (_playerManager.LocalEntity != action.AttachedEntity) return; diff --git a/Content.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs index 9156f747f5c9..01452bdc72e0 100644 --- a/Content.Shared/Actions/BaseActionComponent.cs +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -40,6 +40,16 @@ public abstract partial class BaseActionComponent : Component /// [DataField("iconColor")] public Color IconColor = Color.White; + /// + /// The original this action was. + /// + [DataField] public Color OriginalIconColor; + + /// + /// The color the action should turn to when disabled + /// + [DataField] public Color DisabledIconColor = Color.DimGray; + /// /// Keywords that can be used to search for this action in the action menu. /// @@ -179,6 +189,8 @@ public abstract class BaseActionComponentState : ComponentState public SpriteSpecifier? Icon; public SpriteSpecifier? IconOn; public Color IconColor; + public Color OriginalIconColor; + public Color DisabledIconColor; public HashSet Keywords; public bool Enabled; public bool Toggled; @@ -209,6 +221,8 @@ protected BaseActionComponentState(BaseActionComponent component, IEntityManager Icon = component.Icon; IconOn = component.IconOn; IconColor = component.IconColor; + OriginalIconColor = component.OriginalIconColor; + DisabledIconColor = component.DisabledIconColor; Keywords = component.Keywords; Enabled = component.Enabled; Toggled = component.Toggled; diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 275634542825..76b8a1b081b4 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -69,8 +69,42 @@ public override void Initialize() SubscribeAllEvent(OnActionRequest); } + public override void Update(float frameTime) + { + base.Update(frameTime); + + var worldActionQuery = EntityQueryEnumerator(); + while (worldActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + + var instantActionQuery = EntityQueryEnumerator(); + while (instantActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + + var entityActionQuery = EntityQueryEnumerator(); + while (entityActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + } + private void OnActionMapInit(EntityUid uid, BaseActionComponent component, MapInitEvent args) { + component.OriginalIconColor = component.IconColor; + if (component.Charges == null) return; @@ -326,14 +360,18 @@ public void RemoveCharges(EntityUid? actionId, int? removeCharges) Dirty(actionId.Value, action); } - public void ResetCharges(EntityUid? actionId) + public void ResetCharges(EntityUid? actionId, bool update = false, bool dirty = false) { if (!TryGetActionData(actionId, out var action)) return; action.Charges = action.MaxCharges; - UpdateAction(actionId, action); - Dirty(actionId.Value, action); + + if (update) + UpdateAction(actionId, action); + + if (dirty) + Dirty(actionId.Value, action); } private void OnActionsGetState(EntityUid uid, ActionsComponent component, ref ComponentGetState args) @@ -386,13 +424,12 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg return; var curTime = GameTiming.CurTime; - // TODO: Check for charge recovery timer - if (action.Cooldown.HasValue && action.Cooldown.Value.End > curTime) + if (IsCooldownActive(action, curTime)) return; // TODO: Replace with individual charge recovery when we have the visuals to aid it if (action is { Charges: < 1, RenewCharges: true }) - ResetCharges(actionEnt); + ResetCharges(actionEnt, true, true); BaseActionEvent? performEvent = null; @@ -1072,4 +1109,19 @@ public void SetEntityIcon(EntityUid uid, EntityUid? icon, BaseActionComponent? a action.EntityIcon = icon; Dirty(uid, action); } + + /// + /// Checks if the action has a cooldown and if it's still active + /// + protected bool IsCooldownActive(BaseActionComponent action, TimeSpan? curTime = null) + { + curTime ??= GameTiming.CurTime; + // TODO: Check for charge recovery timer + return action.Cooldown.HasValue && action.Cooldown.Value.End > curTime; + } + + protected bool ShouldResetCharges(BaseActionComponent action) + { + return action is { Charges: < 1, RenewCharges: true }; + } } From e0a3d3d91a5c2e07bef8f9fbfc214d3c4a2816e1 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:41:34 -0400 Subject: [PATCH 151/161] Fix agent ID card unlimited range (#32445) * Fix agent ID card unlimited range * update order to be more optimized --- Content.Server/Access/Systems/AgentIDCardSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 8f1d0d4f820a..4de908bc3019 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -32,7 +32,7 @@ public override void Initialize() private void OnAfterInteract(EntityUid uid, AgentIDCardComponent component, AfterInteractEvent args) { - if (!TryComp(args.Target, out var targetAccess) || !HasComp(args.Target) || args.Target == null) + if (args.Target == null || !args.CanReach || !TryComp(args.Target, out var targetAccess) || !HasComp(args.Target)) return; if (!TryComp(uid, out var access) || !HasComp(uid)) From d2ed93ed629c18de589e2a881db9294db47328cd Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 15:42:42 +0000 Subject: [PATCH 152/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3905edbc13a4..6aec9cc60dda 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: Nuclear operatives are now able to purchase durable armor which is NOT - space-proof. - type: Add - id: 6936 - time: '2024-07-19T09:38:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29845 - author: Plykiya, slarticodefast changes: - message: Explosive pens now correctly embed into their target. @@ -3928,3 +3920,10 @@ id: 7435 time: '2024-09-25T05:21:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32431 +- author: themias + changes: + - message: Agent ID card can now only copy access within interaction range. + type: Fix + id: 7436 + time: '2024-09-25T15:41:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32445 From 6459f7156b30859e06d49640b9c6ed32214e42e4 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Wed, 25 Sep 2024 18:49:43 +0200 Subject: [PATCH 153/161] Remove binary channel access to silicons without laws. (#32385) Mostly feature proofing but these should not have binary access. ESPECIALLY pais Say we had malf ai and it was talking with other borgs about its plans. The owner of the pai (or any of these silicons) can just listen into this. Someone can just wake up a pai and ask it to monitor the binary channel. There's a reason the binary radio chip is a syndicate item. Some of these also have no reason to be able to talk on binary, are you gonna ask the ai to bother someone to refill your vend stock? Are you gonna clown with the AI and other borgs as a clown borg and annoy them? --- Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml | 5 ----- Resources/Prototypes/Entities/Objects/Fun/pai.yml | 4 ---- .../Entities/Structures/Machines/vending_machines.yml | 4 ---- 3 files changed, 13 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 857115e10f19..d5b4366e2bae 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -32,12 +32,8 @@ factions: - SimpleNeutral - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: HealthExaminable examinableTypes: @@ -396,6 +392,5 @@ - Bot - type: ActiveRadio channels: - - Binary - Common - Supply diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index 4695f1c125d2..ff662c2186aa 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -44,12 +44,8 @@ stopSearchVerbPopup: pai-system-stopped-searching - type: Examiner - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: DoAfter - type: Actions diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 99879cfbc945..e047614ac246 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -79,12 +79,8 @@ speechVerb: Robotic speechSounds: Vending - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: DoAfter - type: Electrified From 92c5c873d4b62e34adb564649067b6b6d7bee6c3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 16:50:51 +0000 Subject: [PATCH 154/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6aec9cc60dda..f93e445a366a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya, slarticodefast - changes: - - message: Explosive pens now correctly embed into their target. - type: Fix - id: 6937 - time: '2024-07-19T09:42:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30112 - author: ThatOneEnby1337 changes: - message: News Reporters are now able to use markup tags in their reports without @@ -3927,3 +3920,10 @@ id: 7436 time: '2024-09-25T15:41:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32445 +- author: Myra + changes: + - message: Silicon with no laws will not have binary channel access. + type: Remove + id: 7437 + time: '2024-09-25T16:49:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32385 From b2dad9ff90d515bf04e823e8991e0ef66cf5c967 Mon Sep 17 00:00:00 2001 From: august-sun <45527070+august-sun@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:27:30 -0600 Subject: [PATCH 155/161] Makes the rolling pin craftable (#32285) * Makes the rolling pin craftable * Update Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Prototypes/Entities/Objects/Tools/tools.yml | 3 +++ .../Crafting/Graphs/improvised/rolling_pin.yml | 15 +++++++++++++++ .../Prototypes/Recipes/Crafting/improvised.yml | 15 ++++++++++++++- 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index d985560ac2da..41d167352f29 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -514,3 +514,6 @@ - type: Tag tags: - RollingPin + - type: Construction + graph: WoodenRollingPin + node: rollingpin diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml new file mode 100644 index 000000000000..caa9ebbea91a --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml @@ -0,0 +1,15 @@ +- type: constructionGraph + id: WoodenRollingPin + start: start + graph: + - node: start + edges: + - to: rollingpin + steps: + - material: WoodPlank + amount: 2 + - material: MetalRod + amount: 1 + doAfter: 2 + - node: rollingpin + entity: RollingPin diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index 38d254c1416d..c87f4eb3d20c 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -145,7 +145,7 @@ targetNode: shell category: construction-category-weapons objectType: Item - description: A homemade shotgun shell that shoots painful glass shrapnel. The spread is so wide that it couldn't hit the broad side of a Barn + description: A homemade shotgun shell that shoots painful glass shrapnel. The spread is so wide that it couldn't hit the broad side of a barn. icon: sprite: Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi state: improvised @@ -214,3 +214,16 @@ icon: sprite: Objects/Weapons/Bombs/pipebomb.rsi state: icon + +- type: construction + name: rolling pin + id: rollingpin + graph: WoodenRollingPin + startNode: start + targetNode: rollingpin + category: construction-category-tools + objectType: Item + description: A rolling pin, used for cooking and defending the kitchen. + icon: + sprite: Objects/Tools/rolling_pin.rsi + state: icon From 5a585f70e5a6ae80702c2b90f7613829dd946ba6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 17:28:36 +0000 Subject: [PATCH 156/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f93e445a366a..50812ba2b62e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ThatOneEnby1337 - changes: - - message: News Reporters are now able to use markup tags in their reports without - bricking the PDAs of readers - type: Fix - id: 6938 - time: '2024-07-19T14:18:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30169 - author: themias changes: - message: Mailing units are functional again @@ -3927,3 +3919,10 @@ id: 7437 time: '2024-09-25T16:49:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32385 +- author: august-sun + changes: + - message: Rolling pins are now craftable. + type: Tweak + id: 7438 + time: '2024-09-25T17:27:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32285 From 548973bc1fcdd78655918dda99ee0385d9da5556 Mon Sep 17 00:00:00 2001 From: BramvanZijp <56019239+BramvanZijp@users.noreply.github.com> Date: Wed, 25 Sep 2024 19:39:49 +0200 Subject: [PATCH 157/161] Fix Doctors Delight metabolism Rate (#32297) * Fix Doctors Delight metabolism Rate * Combine Drink and Medicine instead of halving their motabolism rate. * Removed unintentional newline. Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Remove metabolismRate since it is setting it to the default. Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 1aa03bf4c936..602d6296b3d3 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -875,8 +875,6 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.05 - Medicine: - effects: - !type:HealthChange damage: groups: From 9c2fe85d4765e03c5c4b931b76e8dbbb8fb2955b Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 17:40:55 +0000 Subject: [PATCH 158/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 50812ba2b62e..f010f4808bab 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Mailing units are functional again - type: Fix - id: 6939 - time: '2024-07-20T02:31:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30174 - author: Ghagliiarghii changes: - message: Nuclear Operatives' Reinforcements now have a PDA! @@ -3926,3 +3919,11 @@ id: 7438 time: '2024-09-25T17:27:30.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32285 +- author: BramvanZijp + changes: + - message: Fixed an issue that caused Doctors Delight to metabolize twice the normal + speed, which also halved its effectiveness. + type: Fix + id: 7439 + time: '2024-09-25T17:39:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32297 From 0f729bca0d9811dd92982efe78714548dc72d18c Mon Sep 17 00:00:00 2001 From: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com> Date: Thu, 26 Sep 2024 05:58:18 -0500 Subject: [PATCH 159/161] Makes `BaseAdvancedPen` abstract (#32454) Co-authored-by: Velcroboy --- Resources/Prototypes/Entities/Objects/Misc/pen.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Misc/pen.yml b/Resources/Prototypes/Entities/Objects/Misc/pen.yml index b0a466f89134..55117e636024 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/pen.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/pen.yml @@ -59,6 +59,7 @@ - type: entity id: BaseAdvancedPen parent: PenEmbeddable + abstract: true components: - type: Tag tags: From fd1f4a39295ba6836ca2776fb57f65f6fe80728c Mon Sep 17 00:00:00 2001 From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Thu, 26 Sep 2024 16:46:17 +0400 Subject: [PATCH 160/161] lower frezon/n2o sale prices, make frezon take more trit (#32407) * lower gas prices * set trit ratio from 1:50 to 1:8 --- Content.Shared/Atmos/Atmospherics.cs | 2 +- Resources/Prototypes/Atmospherics/gases.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index 1e40daf3dde4..19766d92e6ef 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -233,7 +233,7 @@ public static class Atmospherics /// /// 1 mol of Tritium is required per X mol of oxygen. /// - public const float FrezonProductionTritRatio = 50.0f; + public const float FrezonProductionTritRatio = 8.0f; /// /// 1 / X of the tritium is converted into Frezon each tick diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml index 5c54b5a01532..b6c83091c517 100644 --- a/Resources/Prototypes/Atmospherics/gases.yml +++ b/Resources/Prototypes/Atmospherics/gases.yml @@ -86,7 +86,7 @@ molarMass: 44 color: 8F00FF reagent: NitrousOxide - pricePerMole: 1 + pricePerMole: 0.1 - type: gas id: 8 @@ -99,4 +99,4 @@ gasMolesVisible: 0.6 color: 3a758c reagent: Frezon - pricePerMole: 3 + pricePerMole: 0.3 From 4491550a5eb4aa65cefb500af8b975930e94c781 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 26 Sep 2024 12:47:24 +0000 Subject: [PATCH 161/161] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f010f4808bab..2df1cb7dcd62 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Ghagliiarghii - changes: - - message: Nuclear Operatives' Reinforcements now have a PDA! - type: Tweak - id: 6940 - time: '2024-07-20T02:59:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28088 - author: Plykiya changes: - message: Chameleon scarves now work again. @@ -3927,3 +3920,12 @@ id: 7439 time: '2024-09-25T17:39:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32297 +- author: Ilya246 + changes: + - message: Atmos gas sell prices significantly lowered. + type: Tweak + - message: Frezon now consumes significantly more tritium to produce. + type: Tweak + id: 7440 + time: '2024-09-26T12:46:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32407