From b84d57381f1ccce5304ff94b92efe18c5c98c563 Mon Sep 17 00:00:00 2001 From: Girma35 Date: Wed, 22 Jan 2025 16:21:10 -1200 Subject: [PATCH] Initial commit: Add Freerouting CLI tool --- .gitattributes | 12 + .gitignore | 7 +- build.gradle | 6 + freerouting-docker/Dockerfile.dev | 30 + freerouting-docker/Dockerfile.layout | 2 + freerouting-docker/ls | 0 gradle-wrapper.sh | 104 + gradle.properties | 5 + gradle/libs.versions.toml | 2 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43583 bytes gradle/wrapper/gradle-wrapper.properties | 7 + gradlew | 251 + gradlew.bat | 94 + output/freerouting_cli.py | 120 + output/input.dsn | 14340 +++++++++++++++++++++ package-lock.json | 2416 ++++ settings.gradle | 8 + 17 files changed, 17403 insertions(+), 1 deletion(-) create mode 100644 .gitattributes create mode 100644 build.gradle create mode 100644 freerouting-docker/Dockerfile.dev create mode 100644 freerouting-docker/Dockerfile.layout create mode 100644 freerouting-docker/ls create mode 100644 gradle-wrapper.sh create mode 100644 gradle.properties create mode 100644 gradle/libs.versions.toml create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 output/freerouting_cli.py create mode 100644 output/input.dsn create mode 100644 package-lock.json create mode 100644 settings.gradle diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f91f646 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,12 @@ +# +# https://help.github.com/articles/dealing-with-line-endings/ +# +# Linux start script should use lf +/gradlew text eol=lf + +# These are Windows script files and should use crlf +*.bat text eol=crlf + +# Binary files should be left untouched +*.jar binary + diff --git a/.gitignore b/.gitignore index 72a14f1..a438c82 100644 --- a/.gitignore +++ b/.gitignore @@ -177,4 +177,9 @@ dist .vscode .aider* -test-output.dsn \ No newline at end of file +test-output.dsn +# Ignore Gradle project-specific cache directory +.gradle + +# Ignore Gradle build output directory +build diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..078727a --- /dev/null +++ b/build.gradle @@ -0,0 +1,6 @@ +/* + * This file was generated by the Gradle 'init' task. + * + * This is a general purpose Gradle build. + * Learn more about Gradle by exploring our Samples at https://docs.gradle.org/8.12/samples + */ diff --git a/freerouting-docker/Dockerfile.dev b/freerouting-docker/Dockerfile.dev new file mode 100644 index 0000000..2cb73b8 --- /dev/null +++ b/freerouting-docker/Dockerfile.dev @@ -0,0 +1,30 @@ +# Stage 1: Build the application +FROM eclipse-temurin:21-jdk-jammy AS build + +# Set the working directory in the container +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Gradle build the application +RUN ./gradlew build + +# Stage 2: Create the final image +FROM eclipse-temurin:21-jre-jammy + +# Set the working directory in the container +WORKDIR /app + +# Copy the built application from the build stage +COPY --from=build /app/build/libs/freerouting-executable.jar /app/freerouting-executable.jar + +# Expose the port the app runs on +EXPOSE 37864 + +# Define a writable volume +VOLUME /mnt/freerouting + + +# Run the application +CMD ["java", "-jar", "/app/freerouting-executable.jar", "--api_server-enabled=true", "--gui-enabled=false", "--feature_flags-save_jobs=1", "--user_data_path=/mnt/freerouting", "--profile-email=api@freerouting.app"] \ No newline at end of file diff --git a/freerouting-docker/Dockerfile.layout b/freerouting-docker/Dockerfile.layout new file mode 100644 index 0000000..d3a9ff1 --- /dev/null +++ b/freerouting-docker/Dockerfile.layout @@ -0,0 +1,2 @@ +[Editors] +Order= diff --git a/freerouting-docker/ls b/freerouting-docker/ls new file mode 100644 index 0000000..e69de29 diff --git a/gradle-wrapper.sh b/gradle-wrapper.sh new file mode 100644 index 0000000..9986a2b --- /dev/null +++ b/gradle-wrapper.sh @@ -0,0 +1,104 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +# Freerouting CLI for interacting with the Freerouting API +# Adjustments for custom configuration paths and CLI commands +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in + /*) app_path=$link ;; + *) app_path=$APP_HOME$link ;; + esac +done + +APP_BASE_NAME=${0##*/} +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +# Define constants for Freerouting +FREEROUTING_API_URL="https://api.freerouting.app" +FREEROUTING_CLI_PATH="$APP_HOME/cli" + +# Set Java command +JAVACMD=java +if [ ! -x "$JAVACMD" ] ; then + die "ERROR: Java is not found in your PATH. Please install Java or set JAVA_HOME." +fi + +# Configuration function for Freerouting CLI +configure_freerouting() { + echo "Configuring Freerouting CLI..." + + if [ -n "$1" ]; then + profile_id="$1" + echo "Setting profile ID: $profile_id" + freerouting config set-profile "$profile_id" + else + echo "Creating a new profile..." + freerouting config create-profile + fi + + if [ -n "$2" ]; then + api_url="$2" + echo "Setting custom API URL: $api_url" + freerouting config set-api-url "$api_url" + else + echo "Using default API URL: $FREEROUTING_API_URL" + fi +} + +# Start Freerouting local server +start_local_server() { + echo "Starting Freerouting local server..." + freerouting server start +} + +# Check API system status +check_system_status() { + echo "Checking Freerouting API system status..." + freerouting system status +} + +# Main functionality to handle CLI commands +case $1 in + "config") + configure_freerouting "$2" "$3" + ;; + "server") + start_local_server + ;; + "status") + check_system_status + ;; + *) + echo "Usage: $0 {config|server|status}" + exit 1 + ;; +esac + diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..377538c --- /dev/null +++ b/gradle.properties @@ -0,0 +1,5 @@ +# This file was generated by the Gradle 'init' task. +# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties + +org.gradle.configuration-cache=true + diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 0000000..4ac3234 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,2 @@ +# This file was generated by the Gradle 'init' task. +# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..a4b76b9530d66f5e68d973ea569d8e19de379189 GIT binary patch literal 43583 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 yu?e%!_ptzGB|8GrCfu%p?(_ zQccdaaVK$5bz;*rnyK{_SQYM>;aES6Qs^lj9lEs6_J+%nIiuQC*fN;z8md>r_~Mfl zU%p5Dt_YT>gQqfr@`cR!$NWr~+`CZb%dn;WtzrAOI>P_JtsB76PYe*<%H(y>qx-`Kq!X_; z<{RpAqYhE=L1r*M)gNF3B8r(<%8mo*SR2hu zccLRZwGARt)Hlo1euqTyM>^!HK*!Q2P;4UYrysje@;(<|$&%vQekbn|0Ruu_Io(w4#%p6ld2Yp7tlA`Y$cciThP zKzNGIMPXX%&Ud0uQh!uQZz|FB`4KGD?3!ND?wQt6!n*f4EmCoJUh&b?;B{|lxs#F- z31~HQ`SF4x$&v00@(P+j1pAaj5!s`)b2RDBp*PB=2IB>oBF!*6vwr7Dp%zpAx*dPr zb@Zjq^XjN?O4QcZ*O+8>)|HlrR>oD*?WQl5ri3R#2?*W6iJ>>kH%KnnME&TT@ZzrHS$Q%LC?n|e>V+D+8D zYc4)QddFz7I8#}y#Wj6>4P%34dZH~OUDb?uP%-E zwjXM(?Sg~1!|wI(RVuxbu)-rH+O=igSho_pDCw(c6b=P zKk4ATlB?bj9+HHlh<_!&z0rx13K3ZrAR8W)!@Y}o`?a*JJsD+twZIv`W)@Y?Amu_u zz``@-e2X}27$i(2=9rvIu5uTUOVhzwu%mNazS|lZb&PT;XE2|B&W1>=B58#*!~D&) zfVmJGg8UdP*fx(>Cj^?yS^zH#o-$Q-*$SnK(ZVFkw+er=>N^7!)FtP3y~Xxnu^nzY zikgB>Nj0%;WOltWIob|}%lo?_C7<``a5hEkx&1ku$|)i>Rh6@3h*`slY=9U}(Ql_< zaNG*J8vb&@zpdhAvv`?{=zDedJ23TD&Zg__snRAH4eh~^oawdYi6A3w8<Ozh@Kw)#bdktM^GVb zrG08?0bG?|NG+w^&JvD*7LAbjED{_Zkc`3H!My>0u5Q}m!+6VokMLXxl`Mkd=g&Xx z-a>m*#G3SLlhbKB!)tnzfWOBV;u;ftU}S!NdD5+YtOjLg?X}dl>7m^gOpihrf1;PY zvll&>dIuUGs{Qnd- zwIR3oIrct8Va^Tm0t#(bJD7c$Z7DO9*7NnRZorrSm`b`cxz>OIC;jSE3DO8`hX955ui`s%||YQtt2 z5DNA&pG-V+4oI2s*x^>-$6J?p=I>C|9wZF8z;VjR??Icg?1w2v5Me+FgAeGGa8(3S z4vg*$>zC-WIVZtJ7}o9{D-7d>zCe|z#<9>CFve-OPAYsneTb^JH!Enaza#j}^mXy1 z+ULn^10+rWLF6j2>Ya@@Kq?26>AqK{A_| zQKb*~F1>sE*=d?A?W7N2j?L09_7n+HGi{VY;MoTGr_)G9)ot$p!-UY5zZ2Xtbm=t z@dpPSGwgH=QtIcEulQNI>S-#ifbnO5EWkI;$A|pxJd885oM+ zGZ0_0gDvG8q2xebj+fbCHYfAXuZStH2j~|d^sBAzo46(K8n59+T6rzBwK)^rfPT+B zyIFw)9YC-V^rhtK`!3jrhmW-sTmM+tPH+;nwjL#-SjQPUZ53L@A>y*rt(#M(qsiB2 zx6B)dI}6Wlsw%bJ8h|(lhkJVogQZA&n{?Vgs6gNSXzuZpEyu*xySy8ro07QZ7Vk1!3tJphN_5V7qOiyK8p z#@jcDD8nmtYi1^l8ml;AF<#IPK?!pqf9D4moYk>d99Im}Jtwj6c#+A;f)CQ*f-hZ< z=p_T86jog%!p)D&5g9taSwYi&eP z#JuEK%+NULWus;0w32-SYFku#i}d~+{Pkho&^{;RxzP&0!RCm3-9K6`>KZpnzS6?L z^H^V*s!8<>x8bomvD%rh>Zp3>Db%kyin;qtl+jAv8Oo~1g~mqGAC&Qi_wy|xEt2iz zWAJEfTV%cl2Cs<1L&DLRVVH05EDq`pH7Oh7sR`NNkL%wi}8n>IXcO40hp+J+sC!W?!krJf!GJNE8uj zg-y~Ns-<~D?yqbzVRB}G>0A^f0!^N7l=$m0OdZuqAOQqLc zX?AEGr1Ht+inZ-Qiwnl@Z0qukd__a!C*CKuGdy5#nD7VUBM^6OCpxCa2A(X;e0&V4 zM&WR8+wErQ7UIc6LY~Q9x%Sn*Tn>>P`^t&idaOEnOd(Ufw#>NoR^1QdhJ8s`h^|R_ zXX`c5*O~Xdvh%q;7L!_!ohf$NfEBmCde|#uVZvEo>OfEq%+Ns7&_f$OR9xsihRpBb z+cjk8LyDm@U{YN>+r46?nn{7Gh(;WhFw6GAxtcKD+YWV?uge>;+q#Xx4!GpRkVZYu zzsF}1)7$?%s9g9CH=Zs+B%M_)+~*j3L0&Q9u7!|+T`^O{xE6qvAP?XWv9_MrZKdo& z%IyU)$Q95AB4!#hT!_dA>4e@zjOBD*Y=XjtMm)V|+IXzjuM;(l+8aA5#Kaz_$rR6! zj>#&^DidYD$nUY(D$mH`9eb|dtV0b{S>H6FBfq>t5`;OxA4Nn{J(+XihF(stSche7$es&~N$epi&PDM_N`As;*9D^L==2Q7Z2zD+CiU(|+-kL*VG+&9!Yb3LgPy?A zm7Z&^qRG_JIxK7-FBzZI3Q<;{`DIxtc48k> zc|0dmX;Z=W$+)qE)~`yn6MdoJ4co;%!`ddy+FV538Y)j(vg}5*k(WK)KWZ3WaOG!8 z!syGn=s{H$odtpqFrT#JGM*utN7B((abXnpDM6w56nhw}OY}0TiTG1#f*VFZr+^-g zbP10`$LPq_;PvrA1XXlyx2uM^mrjTzX}w{yuLo-cOClE8MMk47T25G8M!9Z5ypOSV zAJUBGEg5L2fY)ZGJb^E34R2zJ?}Vf>{~gB!8=5Z) z9y$>5c)=;o0HeHHSuE4U)#vG&KF|I%-cF6f$~pdYJWk_dD}iOA>iA$O$+4%@>JU08 zS`ep)$XLPJ+n0_i@PkF#ri6T8?ZeAot$6JIYHm&P6EB=BiaNY|aA$W0I+nz*zkz_z zkEru!tj!QUffq%)8y0y`T&`fuus-1p>=^hnBiBqD^hXrPs`PY9tU3m0np~rISY09> z`P3s=-kt_cYcxWd{de@}TwSqg*xVhp;E9zCsnXo6z z?f&Sv^U7n4`xr=mXle94HzOdN!2kB~4=%)u&N!+2;z6UYKUDqi-s6AZ!haB;@&B`? z_TRX0%@suz^TRdCb?!vNJYPY8L_}&07uySH9%W^Tc&1pia6y1q#?*Drf}GjGbPjBS zbOPcUY#*$3sL2x4v_i*Y=N7E$mR}J%|GUI(>WEr+28+V z%v5{#e!UF*6~G&%;l*q*$V?&r$Pp^sE^i-0$+RH3ERUUdQ0>rAq2(2QAbG}$y{de( z>{qD~GGuOk559Y@%$?N^1ApVL_a704>8OD%8Y%8B;FCt%AoPu8*D1 zLB5X>b}Syz81pn;xnB}%0FnwazlWfUV)Z-~rZg6~b z6!9J$EcE&sEbzcy?CI~=boWA&eeIa%z(7SE^qgVLz??1Vbc1*aRvc%Mri)AJaAG!p z$X!_9Ds;Zz)f+;%s&dRcJt2==P{^j3bf0M=nJd&xwUGlUFn?H=2W(*2I2Gdu zv!gYCwM10aeus)`RIZSrCK=&oKaO_Ry~D1B5!y0R=%!i2*KfXGYX&gNv_u+n9wiR5 z*e$Zjju&ODRW3phN925%S(jL+bCHv6rZtc?!*`1TyYXT6%Ju=|X;6D@lq$8T zW{Y|e39ioPez(pBH%k)HzFITXHvnD6hw^lIoUMA;qAJ^CU?top1fo@s7xT13Fvn1H z6JWa-6+FJF#x>~+A;D~;VDs26>^oH0EI`IYT2iagy23?nyJ==i{g4%HrAf1-*v zK1)~@&(KkwR7TL}L(A@C_S0G;-GMDy=MJn2$FP5s<%wC)4jC5PXoxrQBFZ_k0P{{s@sz+gX`-!=T8rcB(=7vW}^K6oLWMmp(rwDh}b zwaGGd>yEy6fHv%jM$yJXo5oMAQ>c9j`**}F?MCry;T@47@r?&sKHgVe$MCqk#Z_3S z1GZI~nOEN*P~+UaFGnj{{Jo@16`(qVNtbU>O0Hf57-P>x8Jikp=`s8xWs^dAJ9lCQ z)GFm+=OV%AMVqVATtN@|vp61VVAHRn87}%PC^RAzJ%JngmZTasWBAWsoAqBU+8L8u z4A&Pe?fmTm0?mK-BL9t+{y7o(7jm+RpOhL9KnY#E&qu^}B6=K_dB}*VlSEiC9fn)+V=J;OnN)Ta5v66ic1rG+dGAJ1 z1%Zb_+!$=tQ~lxQrzv3x#CPb?CekEkA}0MYSgx$Jdd}q8+R=ma$|&1a#)TQ=l$1tQ z=tL9&_^vJ)Pk}EDO-va`UCT1m#Uty1{v^A3P~83_#v^ozH}6*9mIjIr;t3Uv%@VeW zGL6(CwCUp)Jq%G0bIG%?{_*Y#5IHf*5M@wPo6A{$Um++Co$wLC=J1aoG93&T7Ho}P z=mGEPP7GbvoG!uD$k(H3A$Z))+i{Hy?QHdk>3xSBXR0j!11O^mEe9RHmw!pvzv?Ua~2_l2Yh~_!s1qS`|0~0)YsbHSz8!mG)WiJE| z2f($6TQtt6L_f~ApQYQKSb=`053LgrQq7G@98#igV>y#i==-nEjQ!XNu9 z~;mE+gtj4IDDNQJ~JVk5Ux6&LCSFL!y=>79kE9=V}J7tD==Ga+IW zX)r7>VZ9dY=V&}DR))xUoV!u(Z|%3ciQi_2jl}3=$Agc(`RPb z8kEBpvY>1FGQ9W$n>Cq=DIpski};nE)`p3IUw1Oz0|wxll^)4dq3;CCY@RyJgFgc# zKouFh!`?Xuo{IMz^xi-h=StCis_M7yq$u) z?XHvw*HP0VgR+KR6wI)jEMX|ssqYvSf*_3W8zVTQzD?3>H!#>InzpSO)@SC8q*ii- z%%h}_#0{4JG;Jm`4zg};BPTGkYamx$Xo#O~lBirRY)q=5M45n{GCfV7h9qwyu1NxOMoP4)jjZMxmT|IQQh0U7C$EbnMN<3)Kk?fFHYq$d|ICu>KbY_hO zTZM+uKHe(cIZfEqyzyYSUBZa8;Fcut-GN!HSA9ius`ltNebF46ZX_BbZNU}}ZOm{M2&nANL9@0qvih15(|`S~z}m&h!u4x~(%MAO$jHRWNfuxWF#B)E&g3ghSQ9|> z(MFaLQj)NE0lowyjvg8z0#m6FIuKE9lDO~Glg}nSb7`~^&#(Lw{}GVOS>U)m8bF}x zVjbXljBm34Cs-yM6TVusr+3kYFjr28STT3g056y3cH5Tmge~ASxBj z%|yb>$eF;WgrcOZf569sDZOVwoo%8>XO>XQOX1OyN9I-SQgrm;U;+#3OI(zrWyow3 zk==|{lt2xrQ%FIXOTejR>;wv(Pb8u8}BUpx?yd(Abh6? zsoO3VYWkeLnF43&@*#MQ9-i-d0t*xN-UEyNKeyNMHw|A(k(_6QKO=nKMCxD(W(Yop zsRQ)QeL4X3Lxp^L%wzi2-WVSsf61dqliPUM7srDB?Wm6Lzn0&{*}|IsKQW;02(Y&| zaTKv|`U(pSzuvR6Rduu$wzK_W-Y-7>7s?G$)U}&uK;<>vU}^^ns@Z!p+9?St1s)dG zK%y6xkPyyS1$~&6v{kl?Md6gwM|>mt6Upm>oa8RLD^8T{0?HC!Z>;(Bob7el(DV6x zi`I)$&E&ngwFS@bi4^xFLAn`=fzTC;aimE^!cMI2n@Vo%Ae-ne`RF((&5y6xsjjAZ zVguVoQ?Z9uk$2ON;ersE%PU*xGO@T*;j1BO5#TuZKEf(mB7|g7pcEA=nYJ{s3vlbg zd4-DUlD{*6o%Gc^N!Nptgay>j6E5;3psI+C3Q!1ZIbeCubW%w4pq9)MSDyB{HLm|k zxv-{$$A*pS@csolri$Ge<4VZ}e~78JOL-EVyrbxKra^d{?|NnPp86!q>t<&IP07?Z z^>~IK^k#OEKgRH+LjllZXk7iA>2cfH6+(e&9ku5poo~6y{GC5>(bRK7hwjiurqAiZ zg*DmtgY}v83IjE&AbiWgMyFbaRUPZ{lYiz$U^&Zt2YjG<%m((&_JUbZcfJ22(>bi5 z!J?<7AySj0JZ&<-qXX;mcV!f~>G=sB0KnjWca4}vrtunD^1TrpfeS^4dvFr!65knK zZh`d;*VOkPs4*-9kL>$GP0`(M!j~B;#x?Ba~&s6CopvO86oM?-? zOw#dIRc;6A6T?B`Qp%^<U5 z19x(ywSH$_N+Io!6;e?`tWaM$`=Db!gzx|lQ${DG!zb1Zl&|{kX0y6xvO1o z220r<-oaS^^R2pEyY;=Qllqpmue|5yI~D|iI!IGt@iod{Opz@*ml^w2bNs)p`M(Io z|E;;m*Xpjd9l)4G#KaWfV(t8YUn@A;nK^#xgv=LtnArX|vWQVuw3}B${h+frU2>9^ z!l6)!Uo4`5k`<<;E(ido7M6lKTgWezNLq>U*=uz&s=cc$1%>VrAeOoUtA|T6gO4>UNqsdK=NF*8|~*sl&wI=x9-EGiq*aqV!(VVXA57 zw9*o6Ir8Lj1npUXvlevtn(_+^X5rzdR>#(}4YcB9O50q97%rW2me5_L=%ffYPUSRc z!vv?Kv>dH994Qi>U(a<0KF6NH5b16enCp+mw^Hb3Xs1^tThFpz!3QuN#}KBbww`(h z7GO)1olDqy6?T$()R7y%NYx*B0k_2IBiZ14&8|JPFxeMF{vW>HF-Vi3+ZOI=+qP}n zw(+!WcTd~4ZJX1!ZM&y!+uyt=&i!+~d(V%GjH;-NsEEv6nS1TERt|RHh!0>W4+4pp z1-*EzAM~i`+1f(VEHI8So`S`akPfPTfq*`l{Fz`hS%k#JS0cjT2mS0#QLGf=J?1`he3W*;m4)ce8*WFq1sdP=~$5RlH1EdWm|~dCvKOi4*I_96{^95p#B<(n!d?B z=o`0{t+&OMwKcxiBECznJcfH!fL(z3OvmxP#oWd48|mMjpE||zdiTBdWelj8&Qosv zZFp@&UgXuvJw5y=q6*28AtxZzo-UUpkRW%ne+Ylf!V-0+uQXBW=5S1o#6LXNtY5!I z%Rkz#(S8Pjz*P7bqB6L|M#Er{|QLae-Y{KA>`^} z@lPjeX>90X|34S-7}ZVXe{wEei1<{*e8T-Nbj8JmD4iwcE+Hg_zhkPVm#=@b$;)h6 z<<6y`nPa`f3I6`!28d@kdM{uJOgM%`EvlQ5B2bL)Sl=|y@YB3KeOzz=9cUW3clPAU z^sYc}xf9{4Oj?L5MOlYxR{+>w=vJjvbyO5}ptT(o6dR|ygO$)nVCvNGnq(6;bHlBd zl?w-|plD8spjDF03g5ip;W3Z z><0{BCq!Dw;h5~#1BuQilq*TwEu)qy50@+BE4bX28+7erX{BD4H)N+7U`AVEuREE8 z;X?~fyhF-x_sRfHIj~6f(+^@H)D=ngP;mwJjxhQUbUdzk8f94Ab%59-eRIq?ZKrwD z(BFI=)xrUlgu(b|hAysqK<}8bslmNNeD=#JW*}^~Nrswn^xw*nL@Tx!49bfJecV&KC2G4q5a!NSv)06A_5N3Y?veAz;Gv+@U3R% z)~UA8-0LvVE{}8LVDOHzp~2twReqf}ODIyXMM6=W>kL|OHcx9P%+aJGYi_Om)b!xe zF40Vntn0+VP>o<$AtP&JANjXBn7$}C@{+@3I@cqlwR2MdwGhVPxlTIcRVu@Ho-wO` z_~Or~IMG)A_`6-p)KPS@cT9mu9RGA>dVh5wY$NM9-^c@N=hcNaw4ITjm;iWSP^ZX| z)_XpaI61<+La+U&&%2a z0za$)-wZP@mwSELo#3!PGTt$uy0C(nTT@9NX*r3Ctw6J~7A(m#8fE)0RBd`TdKfAT zCf@$MAxjP`O(u9s@c0Fd@|}UQ6qp)O5Q5DPCeE6mSIh|Rj{$cAVIWsA=xPKVKxdhg zLzPZ`3CS+KIO;T}0Ip!fAUaNU>++ZJZRk@I(h<)RsJUhZ&Ru9*!4Ptn;gX^~4E8W^TSR&~3BAZc#HquXn)OW|TJ`CTahk+{qe`5+ixON^zA9IFd8)kc%*!AiLu z>`SFoZ5bW-%7}xZ>gpJcx_hpF$2l+533{gW{a7ce^B9sIdmLrI0)4yivZ^(Vh@-1q zFT!NQK$Iz^xu%|EOK=n>ug;(7J4OnS$;yWmq>A;hsD_0oAbLYhW^1Vdt9>;(JIYjf zdb+&f&D4@4AS?!*XpH>8egQvSVX`36jMd>$+RgI|pEg))^djhGSo&#lhS~9%NuWfX zDDH;3T*GzRT@5=7ibO>N-6_XPBYxno@mD_3I#rDD?iADxX`! zh*v8^i*JEMzyN#bGEBz7;UYXki*Xr(9xXax(_1qVW=Ml)kSuvK$coq2A(5ZGhs_pF z$*w}FbN6+QDseuB9=fdp_MTs)nQf!2SlROQ!gBJBCXD&@-VurqHj0wm@LWX-TDmS= z71M__vAok|@!qgi#H&H%Vg-((ZfxPAL8AI{x|VV!9)ZE}_l>iWk8UPTGHs*?u7RfP z5MC&=c6X;XlUzrz5q?(!eO@~* zoh2I*%J7dF!!_!vXoSIn5o|wj1#_>K*&CIn{qSaRc&iFVxt*^20ngCL;QonIS>I5^ zMw8HXm>W0PGd*}Ko)f|~dDd%;Wu_RWI_d;&2g6R3S63Uzjd7dn%Svu-OKpx*o|N>F zZg=-~qLb~VRLpv`k zWSdfHh@?dp=s_X`{yxOlxE$4iuyS;Z-x!*E6eqmEm*j2bE@=ZI0YZ5%Yj29!5+J$4h{s($nakA`xgbO8w zi=*r}PWz#lTL_DSAu1?f%-2OjD}NHXp4pXOsCW;DS@BC3h-q4_l`<))8WgzkdXg3! zs1WMt32kS2E#L0p_|x+x**TFV=gn`m9BWlzF{b%6j-odf4{7a4y4Uaef@YaeuPhU8 zHBvRqN^;$Jizy+ z=zW{E5<>2gp$pH{M@S*!sJVQU)b*J5*bX4h>5VJve#Q6ga}cQ&iL#=(u+KroWrxa%8&~p{WEUF0il=db;-$=A;&9M{Rq`ouZ5m%BHT6%st%saGsD6)fQgLN}x@d3q>FC;=f%O3Cyg=Ke@Gh`XW za@RajqOE9UB6eE=zhG%|dYS)IW)&y&Id2n7r)6p_)vlRP7NJL(x4UbhlcFXWT8?K=%s7;z?Vjts?y2+r|uk8Wt(DM*73^W%pAkZa1Jd zNoE)8FvQA>Z`eR5Z@Ig6kS5?0h;`Y&OL2D&xnnAUzQz{YSdh0k zB3exx%A2TyI)M*EM6htrxSlep!Kk(P(VP`$p0G~f$smld6W1r_Z+o?=IB@^weq>5VYsYZZR@` z&XJFxd5{|KPZmVOSxc@^%71C@;z}}WhbF9p!%yLj3j%YOlPL5s>7I3vj25 z@xmf=*z%Wb4;Va6SDk9cv|r*lhZ`(y_*M@>q;wrn)oQx%B(2A$9(74>;$zmQ!4fN; z>XurIk-7@wZys<+7XL@0Fhe-f%*=(weaQEdR9Eh6>Kl-EcI({qoZqyzziGwpg-GM#251sK_ z=3|kitS!j%;fpc@oWn65SEL73^N&t>Ix37xgs= zYG%eQDJc|rqHFia0!_sm7`@lvcv)gfy(+KXA@E{3t1DaZ$DijWAcA)E0@X?2ziJ{v z&KOYZ|DdkM{}t+@{@*6ge}m%xfjIxi%qh`=^2Rwz@w0cCvZ&Tc#UmCDbVwABrON^x zEBK43FO@weA8s7zggCOWhMvGGE`baZ62cC)VHyy!5Zbt%ieH+XN|OLbAFPZWyC6)p z4P3%8sq9HdS3=ih^0OOlqTPbKuzQ?lBEI{w^ReUO{V?@`ARsL|S*%yOS=Z%sF)>-y z(LAQdhgAcuF6LQjRYfdbD1g4o%tV4EiK&ElLB&^VZHbrV1K>tHTO{#XTo>)2UMm`2 z^t4s;vnMQgf-njU-RVBRw0P0-m#d-u`(kq7NL&2T)TjI_@iKuPAK-@oH(J8?%(e!0Ir$yG32@CGUPn5w4)+9@8c&pGx z+K3GKESI4*`tYlmMHt@br;jBWTei&(a=iYslc^c#RU3Q&sYp zSG){)V<(g7+8W!Wxeb5zJb4XE{I|&Y4UrFWr%LHkdQ;~XU zgy^dH-Z3lmY+0G~?DrC_S4@=>0oM8Isw%g(id10gWkoz2Q%7W$bFk@mIzTCcIB(K8 zc<5h&ZzCdT=9n-D>&a8vl+=ZF*`uTvQviG_bLde*k>{^)&0o*b05x$MO3gVLUx`xZ z43j+>!u?XV)Yp@MmG%Y`+COH2?nQcMrQ%k~6#O%PeD_WvFO~Kct za4XoCM_X!c5vhRkIdV=xUB3xI2NNStK*8_Zl!cFjOvp-AY=D;5{uXj}GV{LK1~IE2 z|KffUiBaStRr;10R~K2VVtf{TzM7FaPm;Y(zQjILn+tIPSrJh&EMf6evaBKIvi42-WYU9Vhj~3< zZSM-B;E`g_o8_XTM9IzEL=9Lb^SPhe(f(-`Yh=X6O7+6ALXnTcUFpI>ekl6v)ZQeNCg2 z^H|{SKXHU*%nBQ@I3It0m^h+6tvI@FS=MYS$ZpBaG7j#V@P2ZuYySbp@hA# ze(kc;P4i_-_UDP?%<6>%tTRih6VBgScKU^BV6Aoeg6Uh(W^#J^V$Xo^4#Ekp ztqQVK^g9gKMTHvV7nb64UU7p~!B?>Y0oFH5T7#BSW#YfSB@5PtE~#SCCg3p^o=NkMk$<8- z6PT*yIKGrvne7+y3}_!AC8NNeI?iTY(&nakN>>U-zT0wzZf-RuyZk^X9H-DT_*wk= z;&0}6LsGtfVa1q)CEUPlx#(ED@-?H<1_FrHU#z5^P3lEB|qsxEyn%FOpjx z3S?~gvoXy~L(Q{Jh6*i~=f%9kM1>RGjBzQh_SaIDfSU_9!<>*Pm>l)cJD@wlyxpBV z4Fmhc2q=R_wHCEK69<*wG%}mgD1=FHi4h!98B-*vMu4ZGW~%IrYSLGU{^TuseqVgV zLP<%wirIL`VLyJv9XG_p8w@Q4HzNt-o;U@Au{7%Ji;53!7V8Rv0^Lu^Vf*sL>R(;c zQG_ZuFl)Mh-xEIkGu}?_(HwkB2jS;HdPLSxVU&Jxy9*XRG~^HY(f0g8Q}iqnVmgjI zfd=``2&8GsycjR?M%(zMjn;tn9agcq;&rR!Hp z$B*gzHsQ~aXw8c|a(L^LW(|`yGc!qOnV(ZjU_Q-4z1&0;jG&vAKuNG=F|H?@m5^N@ zq{E!1n;)kNTJ>|Hb2ODt-7U~-MOIFo%9I)_@7fnX+eMMNh>)V$IXesJpBn|uo8f~#aOFytCT zf9&%MCLf8mp4kwHTcojWmM3LU=#|{3L>E}SKwOd?%{HogCZ_Z1BSA}P#O(%H$;z7XyJ^sjGX;j5 zrzp>|Ud;*&VAU3x#f{CKwY7Vc{%TKKqmB@oTHA9;>?!nvMA;8+Jh=cambHz#J18x~ zs!dF>$*AnsQ{{82r5Aw&^7eRCdvcgyxH?*DV5(I$qXh^zS>us*I66_MbL8y4d3ULj z{S(ipo+T3Ag!+5`NU2sc+@*m{_X|&p#O-SAqF&g_n7ObB82~$p%fXA5GLHMC+#qqL zdt`sJC&6C2)=juQ_!NeD>U8lDVpAOkW*khf7MCcs$A(wiIl#B9HM%~GtQ^}yBPjT@ z+E=|A!Z?A(rwzZ;T}o6pOVqHzTr*i;Wrc%&36kc@jXq~+w8kVrs;%=IFdACoLAcCAmhFNpbP8;s`zG|HC2Gv?I~w4ITy=g$`0qMQdkijLSOtX6xW%Z9Nw<;M- zMN`c7=$QxN00DiSjbVt9Mi6-pjv*j(_8PyV-il8Q-&TwBwH1gz1uoxs6~uU}PrgWB zIAE_I-a1EqlIaGQNbcp@iI8W1sm9fBBNOk(k&iLBe%MCo#?xI$%ZmGA?=)M9D=0t7 zc)Q0LnI)kCy{`jCGy9lYX%mUsDWwsY`;jE(;Us@gmWPqjmXL+Hu#^;k%eT>{nMtzj zsV`Iy6leTA8-PndszF;N^X@CJrTw5IIm!GPeu)H2#FQitR{1p;MasQVAG3*+=9FYK zw*k!HT(YQorfQj+1*mCV458(T5=fH`um$gS38hw(OqVMyunQ;rW5aPbF##A3fGH6h z@W)i9Uff?qz`YbK4c}JzQpuxuE3pcQO)%xBRZp{zJ^-*|oryTxJ-rR+MXJ)!f=+pp z10H|DdGd2exhi+hftcYbM0_}C0ZI-2vh+$fU1acsB-YXid7O|=9L!3e@$H*6?G*Zp z%qFB(sgl=FcC=E4CYGp4CN>=M8#5r!RU!u+FJVlH6=gI5xHVD&k;Ta*M28BsxfMV~ zLz+@6TxnfLhF@5=yQo^1&S}cmTN@m!7*c6z;}~*!hNBjuE>NLVl2EwN!F+)0$R1S! zR|lF%n!9fkZ@gPW|x|B={V6x3`=jS*$Pu0+5OWf?wnIy>Y1MbbGSncpKO0qE(qO=ts z!~@&!N`10S593pVQu4FzpOh!tvg}p%zCU(aV5=~K#bKi zHdJ1>tQSrhW%KOky;iW+O_n;`l9~omqM%sdxdLtI`TrJzN6BQz+7xOl*rM>xVI2~# z)7FJ^Dc{DC<%~VS?@WXzuOG$YPLC;>#vUJ^MmtbSL`_yXtNKa$Hk+l-c!aC7gn(Cg ze?YPYZ(2Jw{SF6MiO5(%_pTo7j@&DHNW`|lD`~{iH+_eSTS&OC*2WTT*a`?|9w1dh zh1nh@$a}T#WE5$7Od~NvSEU)T(W$p$s5fe^GpG+7fdJ9=enRT9$wEk+ZaB>G3$KQO zgq?-rZZnIv!p#>Ty~}c*Lb_jxJg$eGM*XwHUwuQ|o^}b3^T6Bxx{!?va8aC@-xK*H ztJBFvFfsSWu89%@b^l3-B~O!CXs)I6Y}y#0C0U0R0WG zybjroj$io0j}3%P7zADXOwHwafT#uu*zfM!oD$6aJx7+WL%t-@6^rD_a_M?S^>c;z zMK580bZXo1f*L$CuMeM4Mp!;P@}b~$cd(s5*q~FP+NHSq;nw3fbWyH)i2)-;gQl{S zZO!T}A}fC}vUdskGSq&{`oxt~0i?0xhr6I47_tBc`fqaSrMOzR4>0H^;A zF)hX1nfHs)%Zb-(YGX;=#2R6C{BG;k=?FfP?9{_uFLri~-~AJ;jw({4MU7e*d)?P@ zXX*GkNY9ItFjhwgAIWq7Y!ksbMzfqpG)IrqKx9q{zu%Mdl+{Dis#p9q`02pr1LG8R z@As?eG!>IoROgS!@J*to<27coFc1zpkh?w=)h9CbYe%^Q!Ui46Y*HO0mr% zEff-*$ndMNw}H2a5@BsGj5oFfd!T(F&0$<{GO!Qdd?McKkorh=5{EIjDTHU`So>8V zBA-fqVLb2;u7UhDV1xMI?y>fe3~4urv3%PX)lDw+HYa;HFkaLqi4c~VtCm&Ca+9C~ zge+67hp#R9`+Euq59WhHX&7~RlXn=--m8$iZ~~1C8cv^2(qO#X0?vl91gzUKBeR1J z^p4!!&7)3#@@X&2aF2-)1Ffcc^F8r|RtdL2X%HgN&XU-KH2SLCbpw?J5xJ*!F-ypZ zMG%AJ!Pr&}`LW?E!K~=(NJxuSVTRCGJ$2a*Ao=uUDSys!OFYu!Vs2IT;xQ6EubLIl z+?+nMGeQQhh~??0!s4iQ#gm3!BpMpnY?04kK375e((Uc7B3RMj;wE?BCoQGu=UlZt!EZ1Q*auI)dj3Jj{Ujgt zW5hd~-HWBLI_3HuO) zNrb^XzPsTIb=*a69wAAA3J6AAZZ1VsYbIG}a`=d6?PjM)3EPaDpW2YP$|GrBX{q*! z$KBHNif)OKMBCFP5>!1d=DK>8u+Upm-{hj5o|Wn$vh1&K!lVfDB&47lw$tJ?d5|=B z^(_9=(1T3Fte)z^>|3**n}mIX;mMN5v2F#l(q*CvU{Ga`@VMp#%rQkDBy7kYbmb-q z<5!4iuB#Q_lLZ8}h|hPODI^U6`gzLJre9u3k3c#%86IKI*^H-@I48Bi*@avYm4v!n0+v zWu{M{&F8#p9cx+gF0yTB_<2QUrjMPo9*7^-uP#~gGW~y3nfPAoV%amgr>PSyVAd@l)}8#X zR5zV6t*uKJZL}?NYvPVK6J0v4iVpwiN|>+t3aYiZSp;m0!(1`bHO}TEtWR1tY%BPB z(W!0DmXbZAsT$iC13p4f>u*ZAy@JoLAkJhzFf1#4;#1deO8#8d&89}en&z!W&A3++^1(;>0SB1*54d@y&9Pn;^IAf3GiXbfT`_>{R+Xv; zQvgL>+0#8-laO!j#-WB~(I>l0NCMt_;@Gp_f0#^c)t?&#Xh1-7RR0@zPyBz!U#0Av zT?}n({(p?p7!4S2ZBw)#KdCG)uPnZe+U|0{BW!m)9 zi_9$F?m<`2!`JNFv+w8MK_K)qJ^aO@7-Ig>cM4-r0bi=>?B_2mFNJ}aE3<+QCzRr*NA!QjHw# z`1OsvcoD0?%jq{*7b!l|L1+Tw0TTAM4XMq7*ntc-Ived>Sj_ZtS|uVdpfg1_I9knY z2{GM_j5sDC7(W&}#s{jqbybqJWyn?{PW*&cQIU|*v8YGOKKlGl@?c#TCnmnAkAzV- zmK={|1G90zz=YUvC}+fMqts0d4vgA%t6Jhjv?d;(Z}(Ep8fTZfHA9``fdUHkA+z3+ zhh{ohP%Bj?T~{i0sYCQ}uC#5BwN`skI7`|c%kqkyWIQ;!ysvA8H`b-t()n6>GJj6xlYDu~8qX{AFo$Cm3d|XFL=4uvc?Keb zzb0ZmMoXca6Mob>JqkNuoP>B2Z>D`Q(TvrG6m`j}-1rGP!g|qoL=$FVQYxJQjFn33lODt3Wb1j8VR zlR++vIT6^DtYxAv_hxupbLLN3e0%A%a+hWTKDV3!Fjr^cWJ{scsAdfhpI)`Bms^M6 zQG$waKgFr=c|p9Piug=fcJvZ1ThMnNhQvBAg-8~b1?6wL*WyqXhtj^g(Ke}mEfZVM zJuLNTUVh#WsE*a6uqiz`b#9ZYg3+2%=C(6AvZGc=u&<6??!slB1a9K)=VL zY9EL^mfyKnD zSJyYBc_>G;5RRnrNgzJz#Rkn3S1`mZgO`(r5;Hw6MveN(URf_XS-r58Cn80K)ArH4 z#Rrd~LG1W&@ttw85cjp8xV&>$b%nSXH_*W}7Ch2pg$$c0BdEo-HWRTZcxngIBJad> z;C>b{jIXjb_9Jis?NZJsdm^EG}e*pR&DAy0EaSGi3XWTa(>C%tz1n$u?5Fb z1qtl?;_yjYo)(gB^iQq?=jusF%kywm?CJP~zEHi0NbZ);$(H$w(Hy@{i>$wcVRD_X|w-~(0Z9BJyh zhNh;+eQ9BEIs;tPz%jSVnfCP!3L&9YtEP;svoj_bNzeGSQIAjd zBss@A;)R^WAu-37RQrM%{DfBNRx>v!G31Z}8-El9IOJlb_MSoMu2}GDYycNaf>uny z+8xykD-7ONCM!APry_Lw6-yT>5!tR}W;W`C)1>pxSs5o1z#j7%m=&=7O4hz+Lsqm` z*>{+xsabZPr&X=}G@obTb{nPTkccJX8w3CG7X+1+t{JcMabv~UNv+G?txRqXib~c^Mo}`q{$`;EBNJ;#F*{gvS12kV?AZ%O0SFB$^ zn+}!HbmEj}w{Vq(G)OGAzH}R~kS^;(-s&=ectz8vN!_)Yl$$U@HNTI-pV`LSj7Opu zTZ5zZ)-S_{GcEQPIQXLQ#oMS`HPu{`SQiAZ)m1at*Hy%3xma|>o`h%E%8BEbi9p0r zVjcsh<{NBKQ4eKlXU|}@XJ#@uQw*$4BxKn6#W~I4T<^f99~(=}a`&3(ur8R9t+|AQ zWkQx7l}wa48-jO@ft2h+7qn%SJtL%~890FG0s5g*kNbL3I&@brh&f6)TlM`K^(bhr zJWM6N6x3flOw$@|C@kPi7yP&SP?bzP-E|HSXQXG>7gk|R9BTj`e=4de9C6+H7H7n# z#GJeVs1mtHhLDmVO?LkYRQc`DVOJ_vdl8VUihO-j#t=0T3%Fc1f9F73ufJz*adn*p zc%&vi(4NqHu^R>sAT_0EDjVR8bc%wTz#$;%NU-kbDyL_dg0%TFafZwZ?5KZpcuaO54Z9hX zD$u>q!-9`U6-D`E#`W~fIfiIF5_m6{fvM)b1NG3xf4Auw;Go~Fu7cth#DlUn{@~yu z=B;RT*dp?bO}o%4x7k9v{r=Y@^YQ^UUm(Qmliw8brO^=NP+UOohLYiaEB3^DB56&V zK?4jV61B|1Uj_5fBKW;8LdwOFZKWp)g{B%7g1~DgO&N& z#lisxf?R~Z@?3E$Mms$$JK8oe@X`5m98V*aV6Ua}8Xs2#A!{x?IP|N(%nxsH?^c{& z@vY&R1QmQs83BW28qAmJfS7MYi=h(YK??@EhjL-t*5W!p z^gYX!Q6-vBqcv~ruw@oMaU&qp0Fb(dbVzm5xJN%0o_^@fWq$oa3X?9s%+b)x4w-q5Koe(@j6Ez7V@~NRFvd zfBH~)U5!ix3isg`6be__wBJp=1@yfsCMw1C@y+9WYD9_C%{Q~7^0AF2KFryfLlUP# zwrtJEcH)jm48!6tUcxiurAMaiD04C&tPe6DI0#aoqz#Bt0_7_*X*TsF7u*zv(iEfA z;$@?XVu~oX#1YXtceQL{dSneL&*nDug^OW$DSLF0M1Im|sSX8R26&)<0Fbh^*l6!5wfSu8MpMoh=2l z^^0Sr$UpZp*9oqa23fcCfm7`ya2<4wzJ`Axt7e4jJrRFVf?nY~2&tRL* zd;6_njcz01c>$IvN=?K}9ie%Z(BO@JG2J}fT#BJQ+f5LFSgup7i!xWRKw6)iITjZU z%l6hPZia>R!`aZjwCp}I zg)%20;}f+&@t;(%5;RHL>K_&7MH^S+7<|(SZH!u zznW|jz$uA`P9@ZWtJgv$EFp>)K&Gt+4C6#*khZQXS*S~6N%JDT$r`aJDs9|uXWdbg zBwho$phWx}x!qy8&}6y5Vr$G{yGSE*r$^r{}pw zVTZKvikRZ`J_IJrjc=X1uw?estdwm&bEahku&D04HD+0Bm~q#YGS6gp!KLf$A{%Qd z&&yX@Hp>~(wU{|(#U&Bf92+1i&Q*-S+=y=3pSZy$#8Uc$#7oiJUuO{cE6=tsPhwPe| zxQpK>`Dbka`V)$}e6_OXKLB%i76~4N*zA?X+PrhH<&)}prET;kel24kW%+9))G^JI zsq7L{P}^#QsZViX%KgxBvEugr>ZmFqe^oAg?{EI=&_O#e)F3V#rc z8$4}0Zr19qd3tE4#$3_f=Bbx9oV6VO!d3(R===i-7p=Vj`520w0D3W6lQfY48}!D* z&)lZMG;~er2qBoI2gsX+Ts-hnpS~NYRDtPd^FPzn!^&yxRy#CSz(b&E*tL|jIkq|l zf%>)7Dtu>jCf`-7R#*GhGn4FkYf;B$+9IxmqH|lf6$4irg{0ept__%)V*R_OK=T06 zyT_m-o@Kp6U{l5h>W1hGq*X#8*y@<;vsOFqEjTQXFEotR+{3}ODDnj;o0@!bB5x=N z394FojuGOtVKBlVRLtHp%EJv_G5q=AgF)SKyRN5=cGBjDWv4LDn$IL`*=~J7u&Dy5 zrMc83y+w^F&{?X(KOOAl-sWZDb{9X9#jrQtmrEXD?;h-}SYT7yM(X_6qksM=K_a;Z z3u0qT0TtaNvDER_8x*rxXw&C^|h{P1qxK|@pS7vdlZ#P z7PdB7MmC2}%sdzAxt>;WM1s0??`1983O4nFK|hVAbHcZ3x{PzytQLkCVk7hA!Lo` zEJH?4qw|}WH{dc4z%aB=0XqsFW?^p=X}4xnCJXK%c#ItOSjdSO`UXJyuc8bh^Cf}8 z@Ht|vXd^6{Fgai8*tmyRGmD_s_nv~r^Fy7j`Bu`6=G)5H$i7Q7lvQnmea&TGvJp9a|qOrUymZ$6G|Ly z#zOCg++$3iB$!6!>215A4!iryregKuUT344X)jQb3|9qY>c0LO{6Vby05n~VFzd?q zgGZv&FGlkiH*`fTurp>B8v&nSxNz)=5IF$=@rgND4d`!AaaX;_lK~)-U8la_Wa8i?NJC@BURO*sUW)E9oyv3RG^YGfN%BmxzjlT)bp*$<| zX3tt?EAy<&K+bhIuMs-g#=d1}N_?isY)6Ay$mDOKRh z4v1asEGWoAp=srraLW^h&_Uw|6O+r;wns=uwYm=JN4Q!quD8SQRSeEcGh|Eb5Jg8m zOT}u;N|x@aq)=&;wufCc^#)5U^VcZw;d_wwaoh9$p@Xrc{DD6GZUqZ ziC6OT^zSq@-lhbgR8B+e;7_Giv;DK5gn^$bs<6~SUadiosfewWDJu`XsBfOd1|p=q zE>m=zF}!lObA%ePey~gqU8S6h-^J2Y?>7)L2+%8kV}Gp=h`Xm_}rlm)SyUS=`=S7msKu zC|T!gPiI1rWGb1z$Md?0YJQ;%>uPLOXf1Z>N~`~JHJ!^@D5kSXQ4ugnFZ>^`zH8CAiZmp z6Ms|#2gcGsQ{{u7+Nb9sA?U>(0e$5V1|WVwY`Kn)rsnnZ4=1u=7u!4WexZD^IQ1Jk zfF#NLe>W$3m&C^ULjdw+5|)-BSHwpegdyt9NYC{3@QtMfd8GrIWDu`gd0nv-3LpGCh@wgBaG z176tikL!_NXM+Bv#7q^cyn9$XSeZR6#!B4JE@GVH zoobHZN_*RF#@_SVYKkQ_igme-Y5U}cV(hkR#k1c{bQNMji zU7aE`?dHyx=1`kOYZo_8U7?3-7vHOp`Qe%Z*i+FX!s?6huNp0iCEW-Z7E&jRWmUW_ z67j>)Ew!yq)hhG4o?^z}HWH-e=es#xJUhDRc4B51M4~E-l5VZ!&zQq`gWe`?}#b~7w1LH4Xa-UCT5LXkXQWheBa2YJYbyQ zl1pXR%b(KCXMO0OsXgl0P0Og<{(@&z1aokU-Pq`eQq*JYgt8xdFQ6S z6Z3IFSua8W&M#`~*L#r>Jfd6*BzJ?JFdBR#bDv$_0N!_5vnmo@!>vULcDm`MFU823 zpG9pqjqz^FE5zMDoGqhs5OMmC{Y3iVcl>F}5Rs24Y5B^mYQ;1T&ks@pIApHOdrzXF z-SdX}Hf{X;TaSxG_T$0~#RhqKISGKNK47}0*x&nRIPtmdwxc&QT3$8&!3fWu1eZ_P zJveQj^hJL#Sn!*4k`3}(d(aasl&7G0j0-*_2xtAnoX1@9+h zO#c>YQg60Z;o{Bi=3i7S`Ic+ZE>K{(u|#)9y}q*j8uKQ1^>+(BI}m%1v3$=4ojGBc zm+o1*!T&b}-lVvZqIUBc8V}QyFEgm#oyIuC{8WqUNV{Toz`oxhYpP!_p2oHHh5P@iB*NVo~2=GQm+8Yrkm2Xjc_VyHg1c0>+o~@>*Qzo zHVBJS>$$}$_4EniTI;b1WShX<5-p#TPB&!;lP!lBVBbLOOxh6FuYloD%m;n{r|;MU3!q4AVkua~fieeWu2 zQAQ$ue(IklX6+V;F1vCu-&V?I3d42FgWgsb_e^29ol}HYft?{SLf>DrmOp9o!t>I^ zY7fBCk+E8n_|apgM|-;^=#B?6RnFKlN`oR)`e$+;D=yO-(U^jV;rft^G_zl`n7qnM zL z*-Y4Phq+ZI1$j$F-f;`CD#|`-T~OM5Q>x}a>B~Gb3-+9i>Lfr|Ca6S^8g*{*?_5!x zH_N!SoRP=gX1?)q%>QTY!r77e2j9W(I!uAz{T`NdNmPBBUzi2{`XMB^zJGGwFWeA9 z{fk33#*9SO0)DjROug+(M)I-pKA!CX;IY(#gE!UxXVsa)X!UftIN98{pt#4MJHOhY zM$_l}-TJlxY?LS6Nuz1T<44m<4i^8k@D$zuCPrkmz@sdv+{ciyFJG2Zwy&%c7;atIeTdh!a(R^QXnu1Oq1b42*OQFWnyQ zWeQrdvP|w_idy53Wa<{QH^lFmEd+VlJkyiC>6B#s)F;w-{c;aKIm;Kp50HnA-o3lY z9B~F$gJ@yYE#g#X&3ADx&tO+P_@mnQTz9gv30_sTsaGXkfNYXY{$(>*PEN3QL>I!k zp)KibPhrfX3%Z$H6SY`rXGYS~143wZrG2;=FLj50+VM6soI~up_>fU(2Wl@{BRsMi zO%sL3x?2l1cXTF)k&moNsHfQrQ+wu(gBt{sk#CU=UhrvJIncy@tJX5klLjgMn>~h= zg|FR&;@eh|C7`>s_9c~0-{IAPV){l|Ts`i=)AW;d9&KPc3fMeoTS%8@V~D8*h;&(^>yjT84MM}=%#LS7shLAuuj(0VAYoozhWjq z4LEr?wUe2^WGwdTIgWBkDUJa>YP@5d9^Rs$kCXmMRxuF*YMVrn?0NFyPl}>`&dqZb z<5eqR=ZG3>n2{6v6BvJ`YBZeeTtB88TAY(x0a58EWyuf>+^|x8Qa6wA|1Nb_p|nA zWWa}|z8a)--Wj`LqyFk_a3gN2>5{Rl_wbW?#by7&i*^hRknK%jwIH6=dQ8*-_{*x0j^DUfMX0`|K@6C<|1cgZ~D(e5vBFFm;HTZF(!vT8=T$K+|F)x3kqzBV4-=p1V(lzi(s7jdu0>LD#N=$Lk#3HkG!a zIF<7>%B7sRNzJ66KrFV76J<2bdYhxll0y2^_rdG=I%AgW4~)1Nvz=$1UkE^J%BxLo z+lUci`UcU062os*=`-j4IfSQA{w@y|3}Vk?i;&SSdh8n+$iHA#%ERL{;EpXl6u&8@ zzg}?hkEOUOJt?ZL=pWZFJ19mI1@P=$U5*Im1e_8Z${JsM>Ov?nh8Z zP5QvI!{Jy@&BP48%P2{Jr_VgzW;P@7)M9n|lDT|Ep#}7C$&ud&6>C^5ZiwKIg2McPU(4jhM!BD@@L(Gd*Nu$ji(ljZ<{FIeW_1Mmf;76{LU z-ywN~=uNN)Xi6$<12A9y)K%X|(W0p|&>>4OXB?IiYr||WKDOJPxiSe01NSV-h24^L z_>m$;|C+q!Mj**-qQ$L-*++en(g|hw;M!^%_h-iDjFHLo-n3JpB;p?+o2;`*jpvJU zLY^lt)Un4joij^^)O(CKs@7E%*!w>!HA4Q?0}oBJ7Nr8NQ7QmY^4~jvf0-`%waOLn zdNjAPaC0_7c|RVhw)+71NWjRi!y>C+Bl;Z`NiL^zn2*0kmj5gyhCLCxts*cWCdRI| zjsd=sT5BVJc^$GxP~YF$-U{-?kW6r@^vHXB%{CqYzU@1>dzf#3SYedJG-Rm6^RB7s zGM5PR(yKPKR)>?~vpUIeTP7A1sc8-knnJk*9)3t^e%izbdm>Y=W{$wm(cy1RB-19i za#828DMBY+ps#7Y8^6t)=Ea@%Nkt)O6JCx|ybC;Ap}Z@Zw~*}3P>MZLPb4Enxz9Wf zssobT^(R@KuShj8>@!1M7tm|2%-pYYDxz-5`rCbaTCG5{;Uxm z*g=+H1X8{NUvFGzz~wXa%Eo};I;~`37*WrRU&K0dPSB$yk(Z*@K&+mFal^?c zurbqB-+|Kb5|sznT;?Pj!+kgFY1#Dr;_%A(GIQC{3ct|{*Bji%FNa6c-thbpBkA;U zURV!Dr&X{0J}iht#-Qp2=xzuh(fM>zRoiGrYl5ttw2#r34gC41CCOC31m~^UPTK@s z6;A@)7O7_%C)>bnAXerYuAHdE93>j2N}H${zEc6&SbZ|-fiG*-qtGuy-qDelH(|u$ zorf8_T6Zqe#Ub!+e3oSyrskt_HyW_^5lrWt#30l)tHk|j$@YyEkXUOV;6B51L;M@=NIWZXU;GrAa(LGxO%|im%7F<-6N;en0Cr zLH>l*y?pMwt`1*cH~LdBPFY_l;~`N!Clyfr;7w<^X;&(ZiVdF1S5e(+Q%60zgh)s4 zn2yj$+mE=miVERP(g8}G4<85^-5f@qxh2ec?n+$A_`?qN=iyT1?U@t?V6DM~BIlBB z>u~eXm-aE>R0sQy!-I4xtCNi!!qh?R1!kKf6BoH2GG{L4%PAz0{Sh6xpuyI%*~u)s z%rLuFl)uQUCBQAtMyN;%)zFMx4loh7uTfKeB2Xif`lN?2gq6NhWhfz0u5WP9J>=V2 zo{mLtSy&BA!mSzs&CrKWq^y40JF5a&GSXIi2= z{EYb59J4}VwikL4P=>+mc6{($FNE@e=VUwG+KV21;<@lrN`mnz5jYGASyvz7BOG_6(p^eTxD-4O#lROgon;R35=|nj#eHIfJBYPWG>H>`dHKCDZ3`R{-?HO0mE~(5_WYcFmp8sU?wr*UkAQiNDGc6T zA%}GOLXlOWqL?WwfHO8MB#8M8*~Y*gz;1rWWoVSXP&IbKxbQ8+s%4Jnt?kDsq7btI zCDr0PZ)b;B%!lu&CT#RJzm{l{2fq|BcY85`w~3LSK<><@(2EdzFLt9Y_`;WXL6x`0 zDoQ?=?I@Hbr;*VVll1Gmd8*%tiXggMK81a+T(5Gx6;eNb8=uYn z5BG-0g>pP21NPn>$ntBh>`*})Fl|38oC^9Qz>~MAazH%3Q~Qb!ALMf$srexgPZ2@&c~+hxRi1;}+)-06)!#Mq<6GhP z-Q?qmgo${aFBApb5p}$1OJKTClfi8%PpnczyVKkoHw7Ml9e7ikrF0d~UB}i3vizos zXW4DN$SiEV9{faLt5bHy2a>33K%7Td-n5C*N;f&ZqAg#2hIqEb(y<&f4u5BWJ>2^4 z414GosL=Aom#m&=x_v<0-fp1r%oVJ{T-(xnomNJ(Dryv zh?vj+%=II_nV+@NR+(!fZZVM&(W6{6%9cm+o+Z6}KqzLw{(>E86uA1`_K$HqINlb1 zKelh3-jr2I9V?ych`{hta9wQ2c9=MM`2cC{m6^MhlL2{DLv7C^j z$xXBCnDl_;l|bPGMX@*tV)B!c|4oZyftUlP*?$YU9C_eAsuVHJ58?)zpbr30P*C`T z7y#ao`uE-SOG(Pi+`$=e^mle~)pRrdwL5)N;o{gpW21of(QE#U6w%*C~`v-z0QqBML!!5EeYA5IQB0 z^l01c;L6E(iytN!LhL}wfwP7W9PNAkb+)Cst?qg#$n;z41O4&v+8-zPs+XNb-q zIeeBCh#ivnFLUCwfS;p{LC0O7tm+Sf9Jn)~b%uwP{%69;QC)Ok0t%*a5M+=;y8j=v z#!*pp$9@!x;UMIs4~hP#pnfVc!%-D<+wsG@R2+J&%73lK|2G!EQC)O05TCV=&3g)C!lT=czLpZ@Sa%TYuoE?v8T8`V;e$#Zf2_Nj6nvBgh1)2 GZ~q4|mN%#X literal 0 HcmV?d00001 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..cea7a79 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..f3b75f3 --- /dev/null +++ b/gradlew @@ -0,0 +1,251 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..9d21a21 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/output/freerouting_cli.py b/output/freerouting_cli.py new file mode 100644 index 0000000..132f92d --- /dev/null +++ b/output/freerouting_cli.py @@ -0,0 +1,120 @@ +import docker +import requests +import os +import base64 +import time +import argparse + + +def freeroute_board(board_filepath, output_filepath): + """ + Automates board routing using the Freerouting Docker container. + + Args: + board_filepath (str): Path to the input DSN file. + output_filepath (str): Path to save the output SES file. + + Returns: + bool: True if successful, False otherwise. + """ + client = docker.from_env() + container = None + + try: + # Run the Freerouting Docker container + container = client.containers.run( + "ghcr.io/tscircuit/freerouting:master", # Ensure the correct image and tag + detach=True, + ports={"37864/tcp": 37864}, + volumes={ + os.path.abspath(os.path.dirname(board_filepath)): {"bind": "/input", "mode": "ro"}, + os.path.abspath(os.path.dirname(output_filepath)): {"bind": "/output", "mode": "rw"} + }, + working_dir="/input" + ) + + # Allow the container time to initialize + time.sleep(5) + + # Read and encode the input DSN file + with open(board_filepath, "rb") as f: + dsn_data = base64.b64encode(f.read()).decode("utf-8") + + # Create a routing session + session_create_url = "http://localhost:37864/v1/sessions/create" + session_response = requests.post(session_create_url) + session_response.raise_for_status() + session_id = session_response.json()["id"] + + # Enqueue a routing job + board_filename = os.path.basename(board_filepath) + job_enqueue_url = "http://localhost:37864/v1/jobs/enqueue" + job_data = {"session_id": session_id, "name": board_filename} + job_response = requests.post(job_enqueue_url, json=job_data) + job_response.raise_for_status() + job_id = job_response.json()["id"] + + # Upload input DSN data to the job + job_input_url = f"http://localhost:37864/v1/jobs/{job_id}/input" + input_data = {"filename": board_filename, "data": dsn_data} + input_response = requests.post(job_input_url, json=input_data) + input_response.raise_for_status() + + # Start the routing job + job_start_url = f"http://localhost:37864/v1/jobs/{job_id}/start" + start_response = requests.put(job_start_url) + start_response.raise_for_status() + + # Poll the job status until completion + while True: + job_status_url = f"http://localhost:37864/v1/jobs/{job_id}" + status_response = requests.get(job_status_url) + status_response.raise_for_status() + job_status = status_response.json()["state"] + if job_status in ("COMPLETED", "FAILED"): + break + time.sleep(5) + + # Retrieve and decode the output SES file + job_output_url = f"http://localhost:37864/v1/jobs/{job_id}/output" + output_response = requests.get(job_output_url) + output_response.raise_for_status() + ses_data = base64.b64decode(output_response.json()["data"]).decode("utf-8") + + with open(output_filepath, "w") as outfile: + outfile.write(ses_data) + + print("Routing complete. Output saved to:", output_filepath) + return True + + except requests.exceptions.RequestException as e: + print(f"API request failed: {e}") + return False + except docker.errors.APIError as e: + print(f"Docker API Error: {e}") + return False + except Exception as e: + print(f"An unexpected error occurred: {e}") + return False + finally: + if container: + container.stop() + container.remove() + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Route a board using Freerouting in Docker.") + parser.add_argument("input_dsn", help="Path to the input DSN file.") + parser.add_argument("output_ses", help="Path to the output SES file.") + args = parser.parse_args() + + # Check if the input DSN file exists + if not os.path.exists(args.input_dsn): + print(f"Error: Input DSN file '{args.input_dsn}' not found.") + exit(1) + + # Run the routing process + if freeroute_board(args.input_dsn, args.output_ses): + exit(0) # Success + else: + exit(1) # Failure diff --git a/output/input.dsn b/output/input.dsn new file mode 100644 index 0000000..846610f --- /dev/null +++ b/output/input.dsn @@ -0,0 +1,14340 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid e40e8cef-4fb0-4fc3-be09-3875b2cc8469) + + (paper "A2") + + (lib_symbols + (symbol "Diode:1N4001" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "1N4001" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (id 2) (at 0 -4.445 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.vishay.com/docs/88503/1n4001.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "50V 1A General Purpose Rectifier Diode, DO-41" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "D*DO?41*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "1N4001_0_1" + (polyline + (pts + (xy -1.27 1.27) + (xy -1.27 -1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy -1.27 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 1.27) + (xy 1.27 -1.27) + (xy -1.27 0) + (xy 1.27 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "1N4001_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "H" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "MountingHole" (id 1) (at 0 3.175 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "MountingHole_0_1" + (circle (center 0 0) (radius 1.27) + (stroke (width 1.27) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "H" (id 0) (at 0 6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "MountingHole_Pad_0_1" + (circle (center 0 1.27) (radius 1.27) + (stroke (width 1.27) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "MountingHole_Pad_1_1" + (pin input line (at 0 -2.54 90) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Relay:DIPxx-1Axx-11x" (in_bom yes) (on_board yes) + (property "Reference" "K" (id 0) (at 8.89 3.81 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "DIPxx-1Axx-11x" (id 1) (at 8.89 1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Relay_THT:Relay_StandexMeder_DIP_LowProfile" (id 2) (at 8.89 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "Single Pole Reed Relay SPST" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Standex Meder DIP reed relay, SPST, Closing Contact" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Relay*StandexMeder*DIP*LowProfile*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DIPxx-1Axx-11x_0_0" + (polyline + (pts + (xy 5.08 5.08) + (xy 5.08 2.54) + (xy 4.445 3.175) + (xy 5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DIPxx-1Axx-11x_0_1" + (rectangle (start -10.16 5.08) (end 7.62 -5.08) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (rectangle (start -8.255 1.905) (end -1.905 -1.905) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -7.62 -1.905) + (xy -2.54 1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -5.08 -5.08) + (xy -5.08 -1.905) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -5.08 5.08) + (xy -5.08 1.905) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.905 0) + (xy -1.27 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -0.635 0) + (xy 0 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 0) + (xy 1.27 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 0) + (xy 2.54 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.175 0) + (xy 3.81 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -2.54) + (xy 3.175 3.81) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -2.54) + (xy 5.08 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DIPxx-1Axx-11x_1_1" + (pin passive line (at 5.08 -7.62 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -7.62 90) (length 2.54) hide + (name "~" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 7.62 270) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 7.62 270) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 7.62 270) (length 2.54) hide + (name "~" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "TLP2962:Opto" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Opto" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Opto_0_1" + (rectangle (start -1.27 -2.54) (end 3.81 -8.89) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "Opto_1_1" + (pin input line (at -3.81 -3.81 0) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -3.81 -5.08 0) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -3.81 -6.35 0) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -3.81 -7.62 0) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 -7.62 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 -6.35 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 -5.08 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 -3.81 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Transistor_BJT:2N3904" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at 5.08 1.905 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 5.08 0 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 5.08 -1.905 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/2N3903-D.PDF" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_keywords" "NPN Transistor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "0.2A Ic, 40V Vce, Small Signal NPN Transistor, TO-92" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO?92*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "2N3904_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "2N3904_1_1" + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Transistor_FET:2N7000" (pin_names hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at 5.08 1.905 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N7000" (id 1) (at 5.08 0 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 5.08 -1.905 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_keywords" "N-Channel MOSFET Logic-Level" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO?92*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "2N7000_0_1" + (polyline + (pts + (xy 0.254 0) + (xy -2.54 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.254 1.905) + (xy 0.254 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.27) + (xy 0.762 -2.286) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 0.508) + (xy 0.762 -0.508) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 2.286) + (xy 0.762 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 -2.54) + (xy 2.54 0) + (xy 0.762 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.778) + (xy 3.302 -1.778) + (xy 3.302 1.778) + (xy 0.762 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 0) + (xy 2.032 0.381) + (xy 2.032 -0.381) + (xy 1.016 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy 2.794 0.508) + (xy 2.921 0.381) + (xy 3.683 0.381) + (xy 3.81 0.254) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 0.381) + (xy 2.921 -0.254) + (xy 3.683 -0.254) + (xy 3.302 0.381) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 1.651 0) (radius 2.794) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.54 -1.778) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 1.778) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "2N7000_1_1" + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -5.08 0 0) (length 2.54) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Transistor_FET:IRF9540N" (pin_names hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at 5.08 1.905 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 5.08 0 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 5.08 -1.905 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_keywords" "P-Channel MOSFET HEXFET" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "-23A Id, -100V Vds, 117mOhm Rds, P-Channel HEXFET Power MOSFET, TO-220" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO?220*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "IRF9540N_0_1" + (polyline + (pts + (xy 0.254 0) + (xy -2.54 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.254 1.905) + (xy 0.254 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.27) + (xy 0.762 -2.286) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 0.508) + (xy 0.762 -0.508) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 2.286) + (xy 0.762 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 -2.54) + (xy 2.54 0) + (xy 0.762 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 1.778) + (xy 3.302 1.778) + (xy 3.302 -1.778) + (xy 0.762 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 0) + (xy 1.27 0.381) + (xy 1.27 -0.381) + (xy 2.286 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy 2.794 -0.508) + (xy 2.921 -0.381) + (xy 3.683 -0.381) + (xy 3.81 -0.254) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -0.381) + (xy 2.921 0.254) + (xy 3.683 0.254) + (xy 3.302 -0.381) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 1.651 0) (radius 2.794) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.54 -1.778) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 1.778) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "IRF9540N_1_1" + (pin input line (at -5.08 0 0) (length 2.54) + (name "G" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Transistor_FET:IRLB8721PBF" (pin_names hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at 6.35 1.905 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRLB8721PBF" (id 1) (at 6.35 0 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 6.35 -1.905 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_keywords" "N-Channel HEXFET MOSFET Logic-Level" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO?220*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "IRLB8721PBF_0_1" + (polyline + (pts + (xy 0.254 0) + (xy -2.54 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.254 1.905) + (xy 0.254 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.27) + (xy 0.762 -2.286) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 0.508) + (xy 0.762 -0.508) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 2.286) + (xy 0.762 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 -2.54) + (xy 2.54 0) + (xy 0.762 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.778) + (xy 3.302 -1.778) + (xy 3.302 1.778) + (xy 0.762 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 0) + (xy 2.032 0.381) + (xy 2.032 -0.381) + (xy 1.016 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy 2.794 0.508) + (xy 2.921 0.381) + (xy 3.683 0.381) + (xy 3.81 0.254) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 0.381) + (xy 2.921 -0.254) + (xy 3.683 -0.254) + (xy 3.302 0.381) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 1.651 0) (radius 2.794) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.54 -1.778) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 1.778) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "IRLB8721PBF_1_1" + (pin input line (at -5.08 0 0) (length 2.54) + (name "G" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "mega+mosfet-rescue:1622172-1-1622172-1" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at -3.81 1.4986 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Value" "1622172-1-1622172-1" (id 1) (at -3.81 -3.302 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Footprint" "RESAD640W45L370D200" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "ki_locked" "" (id 10) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (symbol "1622172-1-1622172-1_0_0" + (polyline + (pts + (xy -2.54 0) + (xy -2.159 1.016) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.159 1.016) + (xy -1.524 -1.016) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -1.016) + (xy -0.889 1.016) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -0.889 1.016) + (xy -0.254 -1.016) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -0.254 -1.016) + (xy 0.381 1.016) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.381 1.016) + (xy 1.016 -1.016) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 -1.016) + (xy 1.651 1.016) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.651 1.016) + (xy 2.286 -1.016) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -1.016) + (xy 2.54 0) + ) + (stroke (width 0.2032) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 2.54) + (name "1" (effects (font (size 1.016 1.016)))) + (number "1" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "2" (effects (font (size 1.016 1.016)))) + (number "2" (effects (font (size 1.016 1.016)))) + ) + ) + ) + (symbol "mega+mosfet-rescue:6pin-Modules" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "6pin-Modules" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "modules:6pin" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "6pin-Modules_0_1" + (rectangle (start 11.43 -1.27) (end -3.81 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "6pin-Modules_1_1" + (pin passive line (at -2.54 -3.81 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -3.81 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -3.81 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -3.81 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 10.16 -3.81 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "mega+mosfet-rescue:Arduino_Mega2560_Shield-arduino" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "XA" (id 0) (at 2.54 0 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "Arduino_Mega2560_Shield-arduino" (id 1) (at -2.54 0 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 17.78 69.85 0) + (effects (font (size 1.524 1.524)) hide) + ) + (property "Datasheet" "" (id 3) (at 17.78 69.85 0) + (effects (font (size 1.524 1.524)) hide) + ) + (property "ki_fp_filters" "Arduino_Mega2560_Shield" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Arduino_Mega2560_Shield-arduino_0_0" + (rectangle (start -25.4 -58.42) (end 25.4 58.42) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (rectangle (start -20.32 -54.61) (end -12.7 -54.61) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -19.05 -31.75) (end -12.7 -31.75) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -19.05 -19.05) (end -12.7 -19.05) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -19.05 26.67) (end -12.7 26.67) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -17.78 -26.67) (end -16.51 -26.67) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -17.78 -24.13) (end -16.51 -24.13) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -16.51 -25.4) (end -13.97 -25.4) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -16.51 -24.13) (end -16.51 -26.67) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -16.51 54.61) (end -12.7 54.61) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -15.24 34.29) (end -12.7 34.29) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -15.24 36.83) (end -12.7 36.83) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -12.7 -54.61) (end -12.7 -48.26) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -12.7 -31.75) (end -12.7 -38.1) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -12.7 26.67) (end -12.7 27.94) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -12.7 34.29) (end -12.7 33.02) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -12.7 41.91) (end -12.7 36.83) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -12.7 49.53) (end -12.7 54.61) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -6.35 48.26) (end -6.35 45.72) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -2.54 45.72) (end -6.35 45.72) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -21.59 21.59) + (xy -12.7 21.59) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -12.7 -19.05) + (xy -12.7 -7.62) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -12.7 10.16) + (xy -12.7 21.59) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 12.7 -54.61) + (xy 16.51 -54.61) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 12.7 54.61) + (xy 16.51 54.61) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 17.78 -34.29) + (xy 16.51 -34.29) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 15.24 36.83) + (xy 15.24 27.94) + (xy 20.32 26.67) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 15.24 44.45) + (xy 15.24 53.34) + (xy 16.51 54.61) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 20.32 -31.75) + (xy 17.78 -33.02) + (xy 17.78 -35.56) + (xy 20.32 -36.83) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 6.35 45.72) (end 2.54 45.72) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 6.35 46.99) (end 6.35 45.72) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (text "Analogue I/O" (at -12.7 1.27 900) + (effects (font (size 1.524 1.524))) + ) + (text "I²C" (at -12.7 30.48 900) + (effects (font (size 1.524 1.524))) + ) + (text "Misc." (at -12.7 -25.4 900) + (effects (font (size 1.524 1.524))) + ) + (text "Power" (at -12.7 -43.18 900) + (effects (font (size 1.524 1.524))) + ) + (text "PWM" (at 15.24 -34.29 900) + (effects (font (size 1.524 1.524))) + ) + (text "PWM" (at 15.24 40.64 900) + (effects (font (size 1.524 1.524))) + ) + (text "Serial" (at -12.7 45.72 900) + (effects (font (size 1.524 1.524))) + ) + (text "SPI" (at 0 45.72 0) + (effects (font (size 1.524 1.524))) + ) + ) + (symbol "Arduino_Mega2560_Shield-arduino_1_0" + (rectangle (start 12.7 -54.61) (end 12.7 -3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 12.7 54.61) (end 12.7 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (text "GPIO" (at 12.7 0 900) + (effects (font (size 1.524 1.524))) + ) + ) + (symbol "Arduino_Mega2560_Shield-arduino_1_1" + (pin power_in line (at -33.02 -44.45 0) (length 7.62) + (name "3.3V" (effects (font (size 1.27 1.27)))) + (number "3V3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -46.99 0) (length 7.62) + (name "5V" (effects (font (size 1.27 1.27)))) + (number "5V1" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 1.27 66.04 270) (length 7.62) + (name "SPI_5V" (effects (font (size 1.27 1.27)))) + (number "5V2" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -49.53 0) (length 7.62) + (name "5V" (effects (font (size 1.27 1.27)))) + (number "5V3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -52.07 0) (length 7.62) + (name "5V" (effects (font (size 1.27 1.27)))) + (number "5V4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 21.59 0) (length 7.62) + (name "A0" (effects (font (size 1.27 1.27)))) + (number "A0" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 19.05 0) (length 7.62) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "A1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 -3.81 0) (length 7.62) + (name "A10" (effects (font (size 1.27 1.27)))) + (number "A10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 -6.35 0) (length 7.62) + (name "A11" (effects (font (size 1.27 1.27)))) + (number "A11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 -8.89 0) (length 7.62) + (name "A12" (effects (font (size 1.27 1.27)))) + (number "A12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 -11.43 0) (length 7.62) + (name "A13" (effects (font (size 1.27 1.27)))) + (number "A13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 -13.97 0) (length 7.62) + (name "A14" (effects (font (size 1.27 1.27)))) + (number "A14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 -16.51 0) (length 7.62) + (name "A15" (effects (font (size 1.27 1.27)))) + (number "A15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 16.51 0) (length 7.62) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "A2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 13.97 0) (length 7.62) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "A3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 11.43 0) (length 7.62) + (name "A4" (effects (font (size 1.27 1.27)))) + (number "A4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 8.89 0) (length 7.62) + (name "A5" (effects (font (size 1.27 1.27)))) + (number "A5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 6.35 0) (length 7.62) + (name "A6" (effects (font (size 1.27 1.27)))) + (number "A6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 3.81 0) (length 7.62) + (name "A7" (effects (font (size 1.27 1.27)))) + (number "A7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 1.27 0) (length 7.62) + (name "A8" (effects (font (size 1.27 1.27)))) + (number "A8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 -1.27 0) (length 7.62) + (name "A9" (effects (font (size 1.27 1.27)))) + (number "A9" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -33.02 -19.05 0) (length 7.62) + (name "AREF" (effects (font (size 1.27 1.27)))) + (number "AREF" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 54.61 0) (length 7.62) + (name "D0_RX0" (effects (font (size 1.27 1.27)))) + (number "D0" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 52.07 0) (length 7.62) + (name "D1_TX0" (effects (font (size 1.27 1.27)))) + (number "D1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 34.29 180) (length 7.62) + (name "D10" (effects (font (size 1.27 1.27)))) + (number "D10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 31.75 180) (length 7.62) + (name "D11" (effects (font (size 1.27 1.27)))) + (number "D11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 29.21 180) (length 7.62) + (name "D12" (effects (font (size 1.27 1.27)))) + (number "D12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 26.67 180) (length 7.62) + (name "D13" (effects (font (size 1.27 1.27)))) + (number "D13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 36.83 0) (length 7.62) + (name "D14_TX3" (effects (font (size 1.27 1.27)))) + (number "D14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 39.37 0) (length 7.62) + (name "D15_RX3" (effects (font (size 1.27 1.27)))) + (number "D15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 41.91 0) (length 7.62) + (name "D16_TX2" (effects (font (size 1.27 1.27)))) + (number "D16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 44.45 0) (length 7.62) + (name "D17_RX2" (effects (font (size 1.27 1.27)))) + (number "D17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 46.99 0) (length 7.62) + (name "D18_TX1" (effects (font (size 1.27 1.27)))) + (number "D18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 49.53 0) (length 7.62) + (name "D19_RX1" (effects (font (size 1.27 1.27)))) + (number "D19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 54.61 180) (length 7.62) + (name "D2_INT0" (effects (font (size 1.27 1.27)))) + (number "D2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 34.29 0) (length 7.62) + (name "D20_SDA" (effects (font (size 1.27 1.27)))) + (number "D20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional clock (at -33.02 31.75 0) (length 7.62) + (name "D21_SCL" (effects (font (size 1.27 1.27)))) + (number "D21" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 24.13 180) (length 7.62) + (name "D22" (effects (font (size 1.27 1.27)))) + (number "D22" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 21.59 180) (length 7.62) + (name "D23" (effects (font (size 1.27 1.27)))) + (number "D23" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 19.05 180) (length 7.62) + (name "D24" (effects (font (size 1.27 1.27)))) + (number "D24" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 16.51 180) (length 7.62) + (name "D25" (effects (font (size 1.27 1.27)))) + (number "D25" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 13.97 180) (length 7.62) + (name "D26" (effects (font (size 1.27 1.27)))) + (number "D26" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 11.43 180) (length 7.62) + (name "D27" (effects (font (size 1.27 1.27)))) + (number "D27" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 8.89 180) (length 7.62) + (name "D28" (effects (font (size 1.27 1.27)))) + (number "D28" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 6.35 180) (length 7.62) + (name "D29" (effects (font (size 1.27 1.27)))) + (number "D29" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 52.07 180) (length 7.62) + (name "D3_INT1" (effects (font (size 1.27 1.27)))) + (number "D3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 3.81 180) (length 7.62) + (name "D30" (effects (font (size 1.27 1.27)))) + (number "D30" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 1.27 180) (length 7.62) + (name "D31" (effects (font (size 1.27 1.27)))) + (number "D31" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -1.27 180) (length 7.62) + (name "D32" (effects (font (size 1.27 1.27)))) + (number "D32" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -3.81 180) (length 7.62) + (name "D33" (effects (font (size 1.27 1.27)))) + (number "D33" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -6.35 180) (length 7.62) + (name "D34" (effects (font (size 1.27 1.27)))) + (number "D34" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -8.89 180) (length 7.62) + (name "D35" (effects (font (size 1.27 1.27)))) + (number "D35" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -11.43 180) (length 7.62) + (name "D36" (effects (font (size 1.27 1.27)))) + (number "D36" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -13.97 180) (length 7.62) + (name "D37" (effects (font (size 1.27 1.27)))) + (number "D37" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -16.51 180) (length 7.62) + (name "D38" (effects (font (size 1.27 1.27)))) + (number "D38" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -19.05 180) (length 7.62) + (name "D39" (effects (font (size 1.27 1.27)))) + (number "D39" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 49.53 180) (length 7.62) + (name "D4" (effects (font (size 1.27 1.27)))) + (number "D4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -21.59 180) (length 7.62) + (name "D40" (effects (font (size 1.27 1.27)))) + (number "D40" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -24.13 180) (length 7.62) + (name "D41" (effects (font (size 1.27 1.27)))) + (number "D41" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -26.67 180) (length 7.62) + (name "D42" (effects (font (size 1.27 1.27)))) + (number "D42" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -29.21 180) (length 7.62) + (name "D43" (effects (font (size 1.27 1.27)))) + (number "D43" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -31.75 180) (length 7.62) + (name "D44" (effects (font (size 1.27 1.27)))) + (number "D44" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -34.29 180) (length 7.62) + (name "D45" (effects (font (size 1.27 1.27)))) + (number "D45" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -36.83 180) (length 7.62) + (name "D46" (effects (font (size 1.27 1.27)))) + (number "D46" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -39.37 180) (length 7.62) + (name "D47" (effects (font (size 1.27 1.27)))) + (number "D47" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -41.91 180) (length 7.62) + (name "D48" (effects (font (size 1.27 1.27)))) + (number "D48" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -44.45 180) (length 7.62) + (name "D49" (effects (font (size 1.27 1.27)))) + (number "D49" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 46.99 180) (length 7.62) + (name "D5" (effects (font (size 1.27 1.27)))) + (number "D5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -46.99 180) (length 7.62) + (name "D50" (effects (font (size 1.27 1.27)))) + (number "D50" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -49.53 180) (length 7.62) + (name "D51" (effects (font (size 1.27 1.27)))) + (number "D51" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -52.07 180) (length 7.62) + (name "D52" (effects (font (size 1.27 1.27)))) + (number "D52" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 -54.61 180) (length 7.62) + (name "D53_SS" (effects (font (size 1.27 1.27)))) + (number "D53" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 44.45 180) (length 7.62) + (name "D6" (effects (font (size 1.27 1.27)))) + (number "D6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 41.91 180) (length 7.62) + (name "D7" (effects (font (size 1.27 1.27)))) + (number "D7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 39.37 180) (length 7.62) + (name "D8" (effects (font (size 1.27 1.27)))) + (number "D8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 33.02 36.83 180) (length 7.62) + (name "D9" (effects (font (size 1.27 1.27)))) + (number "D9" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -31.75 0) (length 7.62) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "GND1" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -34.29 0) (length 7.62) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "GND2" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -36.83 0) (length 7.62) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "GND3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 3.81 66.04 270) (length 7.62) + (name "SPI_GND" (effects (font (size 1.27 1.27)))) + (number "GND4" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -39.37 0) (length 7.62) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "GND5" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -41.91 0) (length 7.62) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "GND6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at -33.02 -26.67 0) (length 7.62) + (name "IOREF" (effects (font (size 1.27 1.27)))) + (number "IORF" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 66.04 270) (length 7.62) + (name "SPI_MISO" (effects (font (size 1.27 1.27)))) + (number "MISO" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at -3.81 66.04 270) (length 7.62) + (name "SPI_MOSI" (effects (font (size 1.27 1.27)))) + (number "MOSI" (effects (font (size 1.27 1.27)))) + ) + (pin open_collector input_low (at -33.02 -24.13 0) (length 7.62) + (name "RESET" (effects (font (size 1.27 1.27)))) + (number "RST1" (effects (font (size 1.27 1.27)))) + ) + (pin open_collector input_low (at 6.35 66.04 270) (length 7.62) + (name "SPI_RESET" (effects (font (size 1.27 1.27)))) + (number "RST2" (effects (font (size 1.27 1.27)))) + ) + (pin output clock (at -1.27 66.04 270) (length 7.62) + (name "SPI_SCK" (effects (font (size 1.27 1.27)))) + (number "SCK" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional clock (at -33.02 26.67 0) (length 7.62) + (name "SCL" (effects (font (size 1.27 1.27)))) + (number "SCL" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -33.02 29.21 0) (length 7.62) + (name "SDA" (effects (font (size 1.27 1.27)))) + (number "SDA" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -33.02 -54.61 0) (length 7.62) + (name "VIN" (effects (font (size 1.27 1.27)))) + (number "VIN" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "mega+mosfet-rescue:Idealdiode-New_Library" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "DI" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Idealdiode-New_Library" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Idealdiode-New_Library_0_1" + (rectangle (start -1.27 -1.27) (end 0 -2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "Idealdiode-New_Library_1_1" + (pin passive line (at -3.81 -2.54 0) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "A" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -1.27 180) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "C" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "mega+mosfet-rescue:TO-3-5-amp-reg-TO3-5amp" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "RG" (id 0) (at -1.27 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TO-3-5-amp-reg-TO3-5amp" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TO-3-5-amp-reg-TO3-5amp_0_1" + (rectangle (start 10.16 -10.16) (end -10.16 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "TO-3-5-amp-reg-TO3-5amp_1_1" + (pin bidirectional line (at -3.81 -12.7 90) (length 2.54) + (name "Adj" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 3.81 -12.7 90) (length 2.54) + (name "In" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 0 -12.7 90) (length 2.54) + (name "Out" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "mega+mosfet3-rescue:1-776267-1-14waypcb" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -5.08 18.3134 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Value" "1-776267-1-14waypcb" (id 1) (at -5.08 -22.6314 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Footprint" "TE_1-776267-1" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Comment" "1-776267-1" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "ki_locked" "" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (symbol "1-776267-1-14waypcb_0_0" + (rectangle (start -5.08 -20.32) (end 5.08 17.78) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at 10.16 15.24 180) (length 5.08) + (name "1" (effects (font (size 1.016 1.016)))) + (number "1" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -7.62 180) (length 5.08) + (name "10" (effects (font (size 1.016 1.016)))) + (number "10" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -10.16 180) (length 5.08) + (name "11" (effects (font (size 1.016 1.016)))) + (number "11" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -12.7 180) (length 5.08) + (name "12" (effects (font (size 1.016 1.016)))) + (number "12" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -15.24 180) (length 5.08) + (name "13" (effects (font (size 1.016 1.016)))) + (number "13" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -17.78 180) (length 5.08) + (name "14" (effects (font (size 1.016 1.016)))) + (number "14" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 12.7 180) (length 5.08) + (name "2" (effects (font (size 1.016 1.016)))) + (number "2" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 10.16 180) (length 5.08) + (name "3" (effects (font (size 1.016 1.016)))) + (number "3" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 7.62 180) (length 5.08) + (name "4" (effects (font (size 1.016 1.016)))) + (number "4" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 5.08 180) (length 5.08) + (name "5" (effects (font (size 1.016 1.016)))) + (number "5" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 2.54 180) (length 5.08) + (name "6" (effects (font (size 1.016 1.016)))) + (number "6" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 0 180) (length 5.08) + (name "7" (effects (font (size 1.016 1.016)))) + (number "7" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -2.54 180) (length 5.08) + (name "8" (effects (font (size 1.016 1.016)))) + (number "8" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -5.08 180) (length 5.08) + (name "9" (effects (font (size 1.016 1.016)))) + (number "9" (effects (font (size 1.016 1.016)))) + ) + ) + ) + (symbol "mega+mosfet3-rescue:776163-1-35waypcb" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -5.334 46.3042 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Value" "776163-1-35waypcb" (id 1) (at -5.08 -50.8254 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Footprint" "TE_776163-1" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "MANUFACTURER" "TE Connectivity" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "PARTREV" "J8" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "STANDARD" "Manufacturers recommendation" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "ki_locked" "" (id 7) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (symbol "776163-1-35waypcb_0_0" + (rectangle (start -5.08 -45.72) (end 5.08 45.72) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at 10.16 43.18 180) (length 5.08) + (name "1" (effects (font (size 1.016 1.016)))) + (number "1" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 20.32 180) (length 5.08) + (name "10" (effects (font (size 1.016 1.016)))) + (number "10" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 17.78 180) (length 5.08) + (name "11" (effects (font (size 1.016 1.016)))) + (number "11" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 15.24 180) (length 5.08) + (name "12" (effects (font (size 1.016 1.016)))) + (number "12" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 12.7 180) (length 5.08) + (name "13" (effects (font (size 1.016 1.016)))) + (number "13" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 10.16 180) (length 5.08) + (name "14" (effects (font (size 1.016 1.016)))) + (number "14" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 7.62 180) (length 5.08) + (name "15" (effects (font (size 1.016 1.016)))) + (number "15" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 5.08 180) (length 5.08) + (name "16" (effects (font (size 1.016 1.016)))) + (number "16" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 2.54 180) (length 5.08) + (name "17" (effects (font (size 1.016 1.016)))) + (number "17" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 0 180) (length 5.08) + (name "18" (effects (font (size 1.016 1.016)))) + (number "18" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -2.54 180) (length 5.08) + (name "19" (effects (font (size 1.016 1.016)))) + (number "19" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 40.64 180) (length 5.08) + (name "2" (effects (font (size 1.016 1.016)))) + (number "2" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -5.08 180) (length 5.08) + (name "20" (effects (font (size 1.016 1.016)))) + (number "20" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -7.62 180) (length 5.08) + (name "21" (effects (font (size 1.016 1.016)))) + (number "21" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -10.16 180) (length 5.08) + (name "22" (effects (font (size 1.016 1.016)))) + (number "22" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -12.7 180) (length 5.08) + (name "23" (effects (font (size 1.016 1.016)))) + (number "23" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -15.24 180) (length 5.08) + (name "24" (effects (font (size 1.016 1.016)))) + (number "24" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -17.78 180) (length 5.08) + (name "25" (effects (font (size 1.016 1.016)))) + (number "25" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -20.32 180) (length 5.08) + (name "26" (effects (font (size 1.016 1.016)))) + (number "26" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -22.86 180) (length 5.08) + (name "27" (effects (font (size 1.016 1.016)))) + (number "27" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -25.4 180) (length 5.08) + (name "28" (effects (font (size 1.016 1.016)))) + (number "28" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -27.94 180) (length 5.08) + (name "29" (effects (font (size 1.016 1.016)))) + (number "29" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 38.1 180) (length 5.08) + (name "3" (effects (font (size 1.016 1.016)))) + (number "3" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -30.48 180) (length 5.08) + (name "30" (effects (font (size 1.016 1.016)))) + (number "30" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -33.02 180) (length 5.08) + (name "31" (effects (font (size 1.016 1.016)))) + (number "31" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -35.56 180) (length 5.08) + (name "32" (effects (font (size 1.016 1.016)))) + (number "32" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -38.1 180) (length 5.08) + (name "33" (effects (font (size 1.016 1.016)))) + (number "33" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -40.64 180) (length 5.08) + (name "34" (effects (font (size 1.016 1.016)))) + (number "34" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 -43.18 180) (length 5.08) + (name "35" (effects (font (size 1.016 1.016)))) + (number "35" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 35.56 180) (length 5.08) + (name "4" (effects (font (size 1.016 1.016)))) + (number "4" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 33.02 180) (length 5.08) + (name "5" (effects (font (size 1.016 1.016)))) + (number "5" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 30.48 180) (length 5.08) + (name "6" (effects (font (size 1.016 1.016)))) + (number "6" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 27.94 180) (length 5.08) + (name "7" (effects (font (size 1.016 1.016)))) + (number "7" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 25.4 180) (length 5.08) + (name "8" (effects (font (size 1.016 1.016)))) + (number "8" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 10.16 22.86 180) (length 5.08) + (name "9" (effects (font (size 1.016 1.016)))) + (number "9" (effects (font (size 1.016 1.016)))) + ) + ) + ) + (symbol "mega+mosfet3-rescue:CP-Device" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "CP-Device" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CP-Device_0_1" + (rectangle (start -2.286 0.508) (end 2.286 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.286) + (xy -0.762 2.286) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 2.794) + (xy -1.27 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 2.286 -0.508) (end -2.286 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "CP-Device_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 83.312 290.576) (diameter 0) (color 0 0 0 0) + (uuid 000b46d6-b833-4804-8f56-56d539f76d09) + ) + (junction (at 194.437 -34.417) (diameter 0) (color 0 0 0 0) + (uuid 01422660-08c8-48f3-98ca-26cbe7f98f5b) + ) + (junction (at 508.762 141.224) (diameter 0) (color 0 0 0 0) + (uuid 01c59306-91a3-452b-92b5-9af8f8f257d6) + ) + (junction (at 128.27 15.748) (diameter 0) (color 0 0 0 0) + (uuid 03d57b22-a0ad-4d3d-9d1c-5573371e6c2f) + ) + (junction (at 78.359 -125.603) (diameter 0) (color 0 0 0 0) + (uuid 0452da17-4ccf-4bdc-9fc3-b0a09600bd55) + ) + (junction (at 138.43 200.914) (diameter 0) (color 0 0 0 0) + (uuid 06a501d2-8202-46f0-b02a-4e7114132c92) + ) + (junction (at 414.655 202.438) (diameter 0) (color 0 0 0 0) + (uuid 06fb8a5e-69f3-44ca-bc88-4da9a1408625) + ) + (junction (at 170.815 70.358) (diameter 0) (color 0 0 0 0) + (uuid 073c8287-235c-4712-a9a0-60a07a1119d5) + ) + (junction (at 165.735 70.358) (diameter 0) (color 0 0 0 0) + (uuid 0774b60f-e343-428b-9125-3ca983239ad5) + ) + (junction (at 64.389 -57.023) (diameter 0) (color 0 0 0 0) + (uuid 082af52d-cc2f-436d-b3cc-65de6b845339) + ) + (junction (at 331.724 203.962) (diameter 0) (color 0 0 0 0) + (uuid 083becc8-e25d-4206-9636-55457650bbe3) + ) + (junction (at 128.27 22.352) (diameter 0) (color 0 0 0 0) + (uuid 08926936-9ea4-4894-afca-caca47f3c238) + ) + (junction (at 158.496 105.791) (diameter 0) (color 0 0 0 0) + (uuid 09ab0b5c-3dee-42c8-b9e5-de0673874ccd) + ) + (junction (at 227.076 117.094) (diameter 0) (color 0 0 0 0) + (uuid 0aa1e38d-f07a-4820-b628-a171234563bb) + ) + (junction (at 356.362 189.738) (diameter 0) (color 0 0 0 0) + (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac) + ) + (junction (at -130.0988 182.118) (diameter 0) (color 0 0 0 0) + (uuid 0b4f29f1-c31d-4265-849f-903a896d8bc6) + ) + (junction (at 81.534 91.821) (diameter 0) (color 0 0 0 0) + (uuid 0e416ef5-3e03-4fa4-b2a6-3ab634a5ee03) + ) + (junction (at 349.758 248.92) (diameter 0) (color 0 0 0 0) + (uuid 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13) + ) + (junction (at 326.898 82.55) (diameter 0) (color 0 0 0 0) + (uuid 0fd35a3e-b394-4aae-875a-fac843f9cbb7) + ) + (junction (at 336.55 82.55) (diameter 0) (color 0 0 0 0) + (uuid 100847e3-630c-4c13-ba45-180e92370805) + ) + (junction (at 367.284 115.316) (diameter 0) (color 0 0 0 0) + (uuid 123968c6-74e7-4754-8c36-08ea08e42555) + ) + (junction (at 295.656 70.358) (diameter 0) (color 0 0 0 0) + (uuid 128cfb34-809d-4606-bf29-7ab91f99e879) + ) + (junction (at 290.068 160.782) (diameter 0) (color 0 0 0 0) + (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4) + ) + (junction (at 142.24 321.564) (diameter 0) (color 0 0 0 0) + (uuid 15699041-ed40-45ee-87d8-f5e206a88536) + ) + (junction (at 114.9096 -79.883) (diameter 0) (color 0 0 0 0) + (uuid 15725fb8-3d19-49e0-9d3a-20bc9fbda587) + ) + (junction (at 295.656 74.93) (diameter 0) (color 0 0 0 0) + (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea) + ) + (junction (at 547.116 185.42) (diameter 0) (color 0 0 0 0) + (uuid 16d5bf81-590a-4149-97e0-64f3b3ad6f52) + ) + (junction (at 315.722 108.204) (diameter 0) (color 0 0 0 0) + (uuid 18c61c95-8af1-4986-b67e-c7af9c15ab6b) + ) + (junction (at 331.724 150.114) (diameter 0) (color 0 0 0 0) + (uuid 18eef4d3-c3b1-4511-89f0-f3ca5fbf521d) + ) + (junction (at 194.437 -39.497) (diameter 0) (color 0 0 0 0) + (uuid 19d6a411-8997-491d-aace-09fdbc63404d) + ) + (junction (at 295.656 312.674) (diameter 0) (color 0 0 0 0) + (uuid 1b023dd4-5185-4576-b544-68a05b9c360b) + ) + (junction (at 320.548 229.616) (diameter 0) (color 0 0 0 0) + (uuid 1bdd5841-68b7-42e2-9447-cbdb608d8a08) + ) + (junction (at 353.568 -5.334) (diameter 0) (color 0 0 0 0) + (uuid 1c611160-2e0d-4f3d-8a9d-794ee2546b90) + ) + (junction (at -52.832 293.497) (diameter 0) (color 0 0 0 0) + (uuid 1db46316-f403-492b-8814-154fc43d62a8) + ) + (junction (at 301.244 150.368) (diameter 0) (color 0 0 0 0) + (uuid 22591446-6d82-47ac-b525-9e9deb496c8c) + ) + (junction (at 119.8372 -116.4336) (diameter 0) (color 0 0 0 0) + (uuid 228026bf-f257-40c8-b827-af29cb3f8d04) + ) + (junction (at 288.798 74.93) (diameter 0) (color 0 0 0 0) + (uuid 22962957-1efd-404d-83db-5b233b6c15b0) + ) + (junction (at 354.076 338.328) (diameter 0) (color 0 0 0 0) + (uuid 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce) + ) + (junction (at -158.6484 182.4736) (diameter 0) (color 0 0 0 0) + (uuid 23495341-9a9d-4f2f-baaa-fae18cf3c0ec) + ) + (junction (at 65.024 -100.203) (diameter 0) (color 0 0 0 0) + (uuid 248d15cd-dd0c-425d-94cb-b44ccf865457) + ) + (junction (at 359.156 -21.59) (diameter 0) (color 0 0 0 0) + (uuid 2712ee24-d53a-4f7d-9ca5-4b6b71654c66) + ) + (junction (at 126.365 198.374) (diameter 0) (color 0 0 0 0) + (uuid 2888a7b6-95ce-4ddd-9337-330d0ffe5bf0) + ) + (junction (at 194.437 -44.577) (diameter 0) (color 0 0 0 0) + (uuid 28f921ab-5f55-47f8-b726-02e567145cd5) + ) + (junction (at 295.021 -5.334) (diameter 0) (color 0 0 0 0) + (uuid 296d15a2-9e3f-47da-a167-097adb0f9a35) + ) + (junction (at 81.534 81.788) (diameter 0) (color 0 0 0 0) + (uuid 2aabebab-10c6-4637-946b-cda31980f550) + ) + (junction (at 407.162 159.766) (diameter 0) (color 0 0 0 0) + (uuid 2ad4b4ba-3abd-4313-bed9-1edce936a95e) + ) + (junction (at -129.54 163.0172) (diameter 0) (color 0 0 0 0) + (uuid 2c41734b-575f-42dc-a3c1-d1da1954beeb) + ) + (junction (at 349.758 233.68) (diameter 0) (color 0 0 0 0) + (uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea) + ) + (junction (at 330.2 278.384) (diameter 0) (color 0 0 0 0) + (uuid 2de1ffee-2174-41d2-8969-68b8d21e5a7d) + ) + (junction (at 367.538 150.114) (diameter 0) (color 0 0 0 0) + (uuid 35ef9c4a-35f6-467b-a704-b1d9354880cf) + ) + (junction (at 65.024 -102.743) (diameter 0) (color 0 0 0 0) + (uuid 3aec5e23-e675-4bcf-9a9e-48cb59d51927) + ) + (junction (at 379.73 -87.63) (diameter 0) (color 0 0 0 0) + (uuid 3ba59656-e36e-4caa-8957-90ed8686b3d3) + ) + (junction (at 66.04 -72.263) (diameter 0) (color 0 0 0 0) + (uuid 3d19e22b-2666-4e7d-825d-37a04ed07fa1) + ) + (junction (at 430.784 -67.31) (diameter 0) (color 0 0 0 0) + (uuid 3f0c3fb9-57f0-4439-b2df-3c934842d7db) + ) + (junction (at 87.376 182.372) (diameter 0) (color 0 0 0 0) + (uuid 4160bbf7-ffff-4c5c-a647-5ee58ddecf06) + ) + (junction (at 527.177 -153.416) (diameter 0) (color 0 0 0 0) + (uuid 419715bf-ffaa-4f14-ba39-b7cca3633324) + ) + (junction (at 83.312 308.356) (diameter 0) (color 0 0 0 0) + (uuid 4346fe55-f906-453a-b81a-1c013104a598) + ) + (junction (at 17.907 134.493) (diameter 0) (color 0 0 0 0) + (uuid 43f4cf53-1dc5-4426-bbd2-fabe9c3d45ec) + ) + (junction (at 393.446 98.044) (diameter 0) (color 0 0 0 0) + (uuid 45a58c23-3e6d-4df0-af01-6d5948b0075c) + ) + (junction (at 393.192 200.914) (diameter 0) (color 0 0 0 0) + (uuid 469f89fd-f629-46b7-b106-a0088168c9ec) + ) + (junction (at 22.352 208.153) (diameter 0) (color 0 0 0 0) + (uuid 4c4b4317-29d0-438a-b331-525ede18773a) + ) + (junction (at 214.63 35.56) (diameter 0) (color 0 0 0 0) + (uuid 4cb2ad15-5094-4716-a296-9c341914cf35) + ) + (junction (at 315.722 92.964) (diameter 0) (color 0 0 0 0) + (uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f) + ) + (junction (at 97.79 231.14) (diameter 0) (color 0 0 0 0) + (uuid 4dd18ab1-e548-4729-aefc-b9a9ce9450b9) + ) + (junction (at 148.336 31.242) (diameter 0) (color 0 0 0 0) + (uuid 4f3dc5bc-04e8-4dcc-91dd-8782e84f321d) + ) + (junction (at 162.179 98.552) (diameter 0) (color 0 0 0 0) + (uuid 4fc3183f-297c-42b7-b3bd-25a9ea18c844) + ) + (junction (at -43.815 293.497) (diameter 0) (color 0 0 0 0) + (uuid 50cd7dd2-4ee6-4ead-a8d7-6798eb55f8db) + ) + (junction (at 212.09 35.56) (diameter 0) (color 0 0 0 0) + (uuid 50d092a1-cb48-4b36-9419-53ddb3f8fa14) + ) + (junction (at 45.974 163.703) (diameter 0) (color 0 0 0 0) + (uuid 50d1b079-69d0-4ce3-9173-2cd75787db46) + ) + (junction (at 321.056 82.55) (diameter 0) (color 0 0 0 0) + (uuid 528fd7da-c9a6-40ae-9f1a-60f6a7f4d534) + ) + (junction (at -55.372 296.545) (diameter 0) (color 0 0 0 0) + (uuid 532cb9ef-7fac-483b-aaf5-b83d764d0176) + ) + (junction (at 126.365 198.501) (diameter 0) (color 0 0 0 0) + (uuid 547f7fcf-17fa-47df-8b9c-118863342c08) + ) + (junction (at 212.344 249.174) (diameter 0) (color 0 0 0 0) + (uuid 54ed3ee1-891b-418e-ab9c-6a18747d7388) + ) + (junction (at 194.437 -42.037) (diameter 0) (color 0 0 0 0) + (uuid 55b28997-b330-40d1-b32a-125cd071668d) + ) + (junction (at 83.312 263.398) (diameter 0) (color 0 0 0 0) + (uuid 57f248a7-365e-4c42-b80d-5a7d1f9dfaf3) + ) + (junction (at 291.084 273.304) (diameter 0) (color 0 0 0 0) + (uuid 59cb2966-1e9c-4b3b-b3c8-7499378d8dde) + ) + (junction (at 391.414 356.87) (diameter 0) (color 0 0 0 0) + (uuid 59f0d455-e755-468b-b6fc-86d8b15dfd09) + ) + (junction (at 219.71 38.1) (diameter 0) (color 0 0 0 0) + (uuid 5a010660-4a0b-4680-b361-32d4c3b60537) + ) + (junction (at 129.032 258.318) (diameter 0) (color 0 0 0 0) + (uuid 5a319d05-1a85-43fe-a179-ebcee7212a03) + ) + (junction (at 239.3696 -72.517) (diameter 0) (color 0 0 0 0) + (uuid 5ada7f91-5904-42e3-9685-f72b7712a307) + ) + (junction (at 374.015 -97.79) (diameter 0) (color 0 0 0 0) + (uuid 5b5611ee-3a4f-4573-978f-2e48db0ecaf5) + ) + (junction (at 73.152 57.531) (diameter 0) (color 0 0 0 0) + (uuid 5de5a872-aa15-495b-b53b-b8a64bbfa4f0) + ) + (junction (at 369.697 -102.87) (diameter 0) (color 0 0 0 0) + (uuid 5f74c6fb-337b-40a9-9b79-933f2f30429a) + ) + (junction (at 390.398 223.012) (diameter 0) (color 0 0 0 0) + (uuid 616287d9-a51f-498c-8b91-be46a0aa3a7f) + ) + (junction (at 50.165 155.956) (diameter 0) (color 0 0 0 0) + (uuid 617498ce-8469-4f4b-9f2b-09a2437561eb) + ) + (junction (at 16.891 200.152) (diameter 0) (color 0 0 0 0) + (uuid 6239967a-77bd-4ec9-89cd-e04efd8dbe26) + ) + (junction (at 390.398 150.114) (diameter 0) (color 0 0 0 0) + (uuid 6241e6d3-a754-45b6-9f7c-e43019b93226) + ) + (junction (at 350.266 140.97) (diameter 0) (color 0 0 0 0) + (uuid 63c56ea4-91a3-4172-b9de-a4388cc8f894) + ) + (junction (at 367.284 82.55) (diameter 0) (color 0 0 0 0) + (uuid 6513181c-0a6a-4560-9a18-17450c36ae2a) + ) + (junction (at 398.78 221.996) (diameter 0) (color 0 0 0 0) + (uuid 653e74f0-0a40-4ab5-8f5c-787bbaf1d723) + ) + (junction (at 340.868 149.352) (diameter 0) (color 0 0 0 0) + (uuid 66218487-e316-4467-9eba-79d4626ab24e) + ) + (junction (at 15.494 168.021) (diameter 0) (color 0 0 0 0) + (uuid 6999550c-f78a-4aae-9243-1b3881f5bb3b) + ) + (junction (at -148.59 152.8064) (diameter 0) (color 0 0 0 0) + (uuid 6ab3c0df-1af7-4d59-bbc2-223f71e7ee8b) + ) + (junction (at 365.252 327.914) (diameter 0) (color 0 0 0 0) + (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa) + ) + (junction (at 374.142 257.81) (diameter 0) (color 0 0 0 0) + (uuid 6cb93665-0bcd-4104-8633-fffd1811eee0) + ) + (junction (at 74.93 252.73) (diameter 0) (color 0 0 0 0) + (uuid 6ea0f2f7-b064-4b8f-bd17-48195d1c83d1) + ) + (junction (at 194.437 -26.797) (diameter 0) (color 0 0 0 0) + (uuid 6fb8126a-bcf3-40a3-924c-e2fbe8dba36a) + ) + (junction (at 17.145 161.417) (diameter 0) (color 0 0 0 0) + (uuid 71079b24-2e2e-494b-a607-86ccdae75c6e) + ) + (junction (at 277.622 307.594) (diameter 0) (color 0 0 0 0) + (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1) + ) + (junction (at 46.101 163.703) (diameter 0) (color 0 0 0 0) + (uuid 73e6727a-4142-4550-8b13-48b2fe1b6366) + ) + (junction (at 19.558 161.544) (diameter 0) (color 0 0 0 0) + (uuid 75394ad7-3f8f-4fbe-9b5a-9af5550426cb) + ) + (junction (at 148.336 70.358) (diameter 0) (color 0 0 0 0) + (uuid 761492e2-a989-4596-80c3-fcd6943df072) + ) + (junction (at 148.336 11.176) (diameter 0) (color 0 0 0 0) + (uuid 778b0e81-d70b-4705-ae45-b4c475c88dab) + ) + (junction (at 367.538 179.324) (diameter 0) (color 0 0 0 0) + (uuid 79451892-db6b-4999-916d-6392174ee493) + ) + (junction (at 93.345 170.942) (diameter 0) (color 0 0 0 0) + (uuid 79bd7607-8381-4bff-b61a-a2c7ffa05fe5) + ) + (junction (at 356.108 140.97) (diameter 0) (color 0 0 0 0) + (uuid 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d) + ) + (junction (at 374.142 297.18) (diameter 0) (color 0 0 0 0) + (uuid 7d2eba81-aa80-4257-a5a7-9a6179da897e) + ) + (junction (at 398.272 241.3) (diameter 0) (color 0 0 0 0) + (uuid 7de6564c-7ad6-4d57-a54c-8d2835ff5cdc) + ) + (junction (at 20.828 167.894) (diameter 0) (color 0 0 0 0) + (uuid 80f8688d-7731-4c37-ada6-644cdd5daacc) + ) + (junction (at 23.622 221.488) (diameter 0) (color 0 0 0 0) + (uuid 80f8c1b4-10dd-40fe-b7f7-67988bc3ad81) + ) + (junction (at 376.047 -92.71) (diameter 0) (color 0 0 0 0) + (uuid 810d1828-323c-409a-960d-456fda8be10a) + ) + (junction (at 219.71 74.93) (diameter 0) (color 0 0 0 0) + (uuid 81ab7ed7-7160-4650-b711-4daa2902dc8b) + ) + (junction (at 304.038 252.476) (diameter 0) (color 0 0 0 0) + (uuid 8486c294-aa7e-43c3-b257-1ca3356dd17a) + ) + (junction (at 379.222 357.378) (diameter 0) (color 0 0 0 0) + (uuid 84d4e166-b429-409a-ab37-c6a10fd82ff5) + ) + (junction (at 94.996 56.642) (diameter 0) (color 0 0 0 0) + (uuid 85621d90-361e-49b6-9449-b54a16cce021) + ) + (junction (at 45.974 167.132) (diameter 0) (color 0 0 0 0) + (uuid 87a32952-c8e5-40ba-af1d-1a8829a6c906) + ) + (junction (at 320.548 214.376) (diameter 0) (color 0 0 0 0) + (uuid 89e83c2e-e90a-4a50-b278-880bac0cfb49) + ) + (junction (at 307.721 101.6) (diameter 0) (color 0 0 0 0) + (uuid 8a349cc7-8fab-4bec-8325-cecf14310bc5) + ) + (junction (at 19.558 161.417) (diameter 0) (color 0 0 0 0) + (uuid 8aa8d47e-f495-4049-8ac9-7f2ac3205412) + ) + (junction (at 480.568 186.436) (diameter 0) (color 0 0 0 0) + (uuid 8aff0f38-92a8-45ec-b106-b185e93ca3fd) + ) + (junction (at 273.05 268.224) (diameter 0) (color 0 0 0 0) + (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39) + ) + (junction (at 78.359 -120.523) (diameter 0) (color 0 0 0 0) + (uuid 8d054a8d-7435-41ed-8832-6067aada259a) + ) + (junction (at 194.437 -36.957) (diameter 0) (color 0 0 0 0) + (uuid 8e6e5f4d-6567-459b-ac23-dfc1d101e708) + ) + (junction (at 82.423 76.708) (diameter 0) (color 0 0 0 0) + (uuid 8f8bb641-6f96-48dd-a2de-b7e2aaf6efe0) + ) + (junction (at 134.747 -22.098) (diameter 0) (color 0 0 0 0) + (uuid 9116f42f-8d27-4055-8fab-af8b6ed6959f) + ) + (junction (at 437.642 169.672) (diameter 0) (color 0 0 0 0) + (uuid 91fc5800-6029-46b1-848d-ca0091f97267) + ) + (junction (at 313.182 108.204) (diameter 0) (color 0 0 0 0) + (uuid 9286cf02-1563-41d2-9931-c192c33bab31) + ) + (junction (at 213.614 246.634) (diameter 0) (color 0 0 0 0) + (uuid 929a9b03-e99e-4b88-8e16-759f8c6b59a5) + ) + (junction (at 103.378 76.708) (diameter 0) (color 0 0 0 0) + (uuid 9404ce4c-2ce6-4f88-8062-13577800d257) + ) + (junction (at 463.677 -137.16) (diameter 0) (color 0 0 0 0) + (uuid 94a21413-9821-4587-923e-f37548a5150a) + ) + (junction (at 358.14 252.476) (diameter 0) (color 0 0 0 0) + (uuid 9529c01f-e1cd-40be-b7f0-83780a544249) + ) + (junction (at -153.67 160.4264) (diameter 0) (color 0 0 0 0) + (uuid 956fb0d3-10b0-45ec-bd88-9c2908d0c278) + ) + (junction (at -124.206 171.958) (diameter 0) (color 0 0 0 0) + (uuid 9922aca0-5a16-477a-a4db-66fb2535747f) + ) + (junction (at 465.328 151.384) (diameter 0) (color 0 0 0 0) + (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7) + ) + (junction (at 374.396 367.284) (diameter 0) (color 0 0 0 0) + (uuid 9b07d532-5f76-4469-8dbf-25ac27eef589) + ) + (junction (at 377.698 -49.53) (diameter 0) (color 0 0 0 0) + (uuid 9cab0c4e-2726-433f-a46f-c25156ae2489) + ) + (junction (at 395.986 127) (diameter 0) (color 0 0 0 0) + (uuid a09cb1c4-cc63-49c7-a35f-4b80c3ba2217) + ) + (junction (at 79.248 263.398) (diameter 0) (color 0 0 0 0) + (uuid a239fd1d-dfbb-49fd-b565-8c3de9dcf42b) + ) + (junction (at 356.108 125.73) (diameter 0) (color 0 0 0 0) + (uuid a24ce0e2-fdd3-4e6a-b754-5dee9713dd27) + ) + (junction (at 325.882 344.17) (diameter 0) (color 0 0 0 0) + (uuid a281de60-7af0-498c-be0b-24572e88b490) + ) + (junction (at 495.046 141.478) (diameter 0) (color 0 0 0 0) + (uuid a4911204-1308-4d17-90a9-1ff5f9c57c9b) + ) + (junction (at -158.0896 152.8064) (diameter 0) (color 0 0 0 0) + (uuid a66fa63e-6d21-4c3c-98c9-a9ded5420e7c) + ) + (junction (at -158.0896 163.3728) (diameter 0) (color 0 0 0 0) + (uuid a72c1437-2e01-4e95-8a72-d7217cc82d8f) + ) + (junction (at 118.11 22.352) (diameter 0) (color 0 0 0 0) + (uuid a7c83b25-afbd-4974-8870-387db8f81a5c) + ) + (junction (at 287.274 98.806) (diameter 0) (color 0 0 0 0) + (uuid aa565413-e7e1-4f3c-8a91-55e3e0a6e3ef) + ) + (junction (at 134.62 91.821) (diameter 0) (color 0 0 0 0) + (uuid acfcaba7-a8b8-4c21-a793-d3e0373f34dc) + ) + (junction (at 317.5 108.204) (diameter 0) (color 0 0 0 0) + (uuid ae0e6b31-27d7-4383-a4fc-7557b0a19382) + ) + (junction (at 328.676 149.352) (diameter 0) (color 0 0 0 0) + (uuid aeb03be9-98f0-43f6-9432-1bb35aa04bab) + ) + (junction (at 128.397 152.4) (diameter 0) (color 0 0 0 0) + (uuid b034f82f-3ce9-4423-89ad-7ecf03d348d0) + ) + (junction (at 74.93 67.818) (diameter 0) (color 0 0 0 0) + (uuid b1ba92d5-0d41-4be9-b483-47d08dc1785d) + ) + (junction (at 194.437 -31.877) (diameter 0) (color 0 0 0 0) + (uuid b6e7e52e-fa7c-4663-b29b-8d72461a55fb) + ) + (junction (at 136.398 241.554) (diameter 0) (color 0 0 0 0) + (uuid bb5d2eae-a96e-45dd-89aa-125fe22cc2fa) + ) + (junction (at 80.518 291.592) (diameter 0) (color 0 0 0 0) + (uuid bce25bd3-0fe5-4c8f-bd6c-39e2d62ee70a) + ) + (junction (at 407.162 98.044) (diameter 0) (color 0 0 0 0) + (uuid be118b00-015b-445a-8fc5-7bf35350fda8) + ) + (junction (at 291.084 278.384) (diameter 0) (color 0 0 0 0) + (uuid be41ac9e-b8ba-4089-983b-b84269707f1c) + ) + (junction (at 64.77 67.818) (diameter 0) (color 0 0 0 0) + (uuid bf6104a1-a529-4c00-b4ae-92001543f7ec) + ) + (junction (at 148.336 28.321) (diameter 0) (color 0 0 0 0) + (uuid bfcdffb4-9a75-4453-a5cf-48d0c88fa2a7) + ) + (junction (at 422.402 169.672) (diameter 0) (color 0 0 0 0) + (uuid c07eebcc-30d2-439d-8030-faea6ade4486) + ) + (junction (at -154.2288 179.5272) (diameter 0) (color 0 0 0 0) + (uuid c2331e7a-f35f-493a-b62a-4c6fc78fc2b3) + ) + (junction (at 323.596 196.85) (diameter 0) (color 0 0 0 0) + (uuid c25b90aa-c787-46a1-8b80-e5b9fd45039a) + ) + (junction (at 491.744 176.022) (diameter 0) (color 0 0 0 0) + (uuid c2dd13db-24b6-40f1-b75b-b9ab893d92ea) + ) + (junction (at 537.337 -155.956) (diameter 0) (color 0 0 0 0) + (uuid c60045a9-c6dd-4a1d-b776-92c82360c330) + ) + (junction (at 102.87 188.214) (diameter 0) (color 0 0 0 0) + (uuid c6462399-f2e4-4f1a-b34a-b49a04c8bdb9) + ) + (junction (at 391.287 356.87) (diameter 0) (color 0 0 0 0) + (uuid ca2c5f3f-362b-4808-b8c2-86726d31aa11) + ) + (junction (at 127 -69.723) (diameter 0) (color 0 0 0 0) + (uuid ca2c6135-06b9-49ec-b90b-71e52fd66fd1) + ) + (junction (at 41.275 155.956) (diameter 0) (color 0 0 0 0) + (uuid cce1404b-fc30-47cc-b852-e0061990f2bb) + ) + (junction (at 298.45 176.022) (diameter 0) (color 0 0 0 0) + (uuid cebb9021-66d3-4116-98d4-5e6f3c1552be) + ) + (junction (at 360.934 223.266) (diameter 0) (color 0 0 0 0) + (uuid d01102e9-b170-4eb1-a0a4-9a31feb850b7) + ) + (junction (at 476.504 117.602) (diameter 0) (color 0 0 0 0) + (uuid d1cd5391-31d2-459f-8adb-4ae3f304a833) + ) + (junction (at 383.921 -82.55) (diameter 0) (color 0 0 0 0) + (uuid d26fce45-c1d6-42bc-931d-972bf3799097) + ) + (junction (at 397.002 155.448) (diameter 0) (color 0 0 0 0) + (uuid d337c492-7429-4618-b378-df29f72737e3) + ) + (junction (at 532.257 -154.813) (diameter 0) (color 0 0 0 0) + (uuid d37a42c4-6950-4517-b4dd-96056acf0925) + ) + (junction (at 299.466 252.476) (diameter 0) (color 0 0 0 0) + (uuid d38aa458-d7c4-47af-ba08-2b6be506a3fd) + ) + (junction (at 139.7 31.242) (diameter 0) (color 0 0 0 0) + (uuid d3db736b-0e33-4126-b950-5488923df40e) + ) + (junction (at 214.63 118.11) (diameter 0) (color 0 0 0 0) + (uuid d8f24303-7e52-49a9-9e82-8d60c3aaa009) + ) + (junction (at 109.728 243.586) (diameter 0) (color 0 0 0 0) + (uuid dd4f23cd-8f89-457c-8b93-3828f8c20a8d) + ) + (junction (at 374.015 -69.85) (diameter 0) (color 0 0 0 0) + (uuid de91796c-56de-4405-8fcc-748bd6a08e86) + ) + (junction (at 488.95 201.676) (diameter 0) (color 0 0 0 0) + (uuid df83f395-2d18-47e2-a370-952ca41c2b3a) + ) + (junction (at 377.698 -15.621) (diameter 0) (color 0 0 0 0) + (uuid e2701ea2-e23f-44f2-a20e-c9e74ea88bb1) + ) + (junction (at -158.6484 172.3136) (diameter 0) (color 0 0 0 0) + (uuid e5115bd5-8d4d-48dc-81be-1eca537ca19f) + ) + (junction (at 231.902 130.937) (diameter 0) (color 0 0 0 0) + (uuid e5a646a9-6eed-4a57-91fe-8d48ff28b5f9) + ) + (junction (at 65.024 -105.283) (diameter 0) (color 0 0 0 0) + (uuid e63748d3-3196-486f-8f95-bb4d9876653d) + ) + (junction (at 231.775 131.191) (diameter 0) (color 0 0 0 0) + (uuid e6888b19-70c1-4772-9216-b3b53946bc0a) + ) + (junction (at 473.71 166.624) (diameter 0) (color 0 0 0 0) + (uuid e70d061b-28f0-4421-ad15-0598604086e8) + ) + (junction (at 379.222 317.754) (diameter 0) (color 0 0 0 0) + (uuid ea28e946-b74f-4ba8-ac7b-b1884c5e7296) + ) + (junction (at 476.504 140.97) (diameter 0) (color 0 0 0 0) + (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03) + ) + (junction (at 363.22 377.698) (diameter 0) (color 0 0 0 0) + (uuid eb6a726e-fed9-4891-95fa-b4d4a5f77b35) + ) + (junction (at 185.674 56.642) (diameter 0) (color 0 0 0 0) + (uuid ef400389-7e37-4c93-8647-76318089d59f) + ) + (junction (at 94.996 76.708) (diameter 0) (color 0 0 0 0) + (uuid f220d6a7-3170-4e04-8de6-2df0c3962fe0) + ) + (junction (at 74.93 66.04) (diameter 0) (color 0 0 0 0) + (uuid f321809c-ab7a-4356-9b11-4c0d46c421ba) + ) + (junction (at 66.04 -74.803) (diameter 0) (color 0 0 0 0) + (uuid f368b66f-c8a4-4ccf-b925-3f03c13bf28f) + ) + (junction (at 130.556 -53.594) (diameter 0) (color 0 0 0 0) + (uuid f43f384e-6bcf-4d6c-ac65-2e849bdb75c5) + ) + (junction (at 28.067 127.254) (diameter 0) (color 0 0 0 0) + (uuid f60d71f9-9a8e-4a62-960d-f7b9664aea76) + ) + (junction (at 114.808 258.318) (diameter 0) (color 0 0 0 0) + (uuid f7758f2a-e5c9-405c-960a-353b36eaf72d) + ) + (junction (at 194.437 -29.337) (diameter 0) (color 0 0 0 0) + (uuid f89b1d5e-28c8-498c-b199-7acbd8607540) + ) + (junction (at 79.756 265.684) (diameter 0) (color 0 0 0 0) + (uuid f8e9fc00-8f60-4688-b1c9-6de1e4c0c204) + ) + (junction (at 307.594 101.6) (diameter 0) (color 0 0 0 0) + (uuid fb2a8fa4-2a3c-4728-b419-69f5223aa9b6) + ) + (junction (at 392.684 82.55) (diameter 0) (color 0 0 0 0) + (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb) + ) + (junction (at 77.47 265.684) (diameter 0) (color 0 0 0 0) + (uuid fe6d9604-2924-4f38-950b-a31e8a281973) + ) + (junction (at 240.1824 -69.977) (diameter 0) (color 0 0 0 0) + (uuid fef41456-388b-4344-b936-39e6e3fcacd3) + ) + (junction (at 512.826 188.214) (diameter 0) (color 0 0 0 0) + (uuid ff2f00dc-dff2-4a19-af27-f5c793a8d261) + ) + + (no_connect (at 144.907 103.251) (uuid 01fc814d-9eea-4bf1-8081-7d43b592d566)) + (no_connect (at 144.907 107.061) (uuid 01fc814d-9eea-4bf1-8081-7d43b592d567)) + (no_connect (at 155.067 104.521) (uuid 01fc814d-9eea-4bf1-8081-7d43b592d568)) + (no_connect (at 190.246 -47.117) (uuid 0534e40a-cb42-4353-bb76-de5d3053ce4e)) + (no_connect (at 64.389 -110.363) (uuid 0b8317eb-bbd9-4c68-a14b-c4db95a75212)) + (no_connect (at 81.788 110.998) (uuid 2a7b454b-33d0-415b-a881-1e25aa3c68e8)) + (no_connect (at 63.754 290.576) (uuid 3b033091-cd81-4a21-8dce-84859d021f7b)) + (no_connect (at 61.214 290.576) (uuid 3b033091-cd81-4a21-8dce-84859d021f7c)) + (no_connect (at 79.248 110.998) (uuid 5ef6df0f-275d-47e9-8bb9-e00bf14e5ff3)) + (no_connect (at 175.26 131.064) (uuid 5f02d257-19bf-4462-8fd3-98d9a93d2ec0)) + (no_connect (at 177.8 131.064) (uuid 5f02d257-19bf-4462-8fd3-98d9a93d2ec1)) + (no_connect (at 172.72 131.064) (uuid 5f02d257-19bf-4462-8fd3-98d9a93d2ec2)) + (no_connect (at 138.43 216.154) (uuid 5febdfdd-e711-4c52-8cad-b5fc17302673)) + (no_connect (at -166.3192 191.6684) (uuid 6ad593c6-3403-4d9b-a764-127d7cef193e)) + (no_connect (at 138.43 231.394) (uuid 95406caf-0450-48d9-ae98-a4a698661ff2)) + (no_connect (at 138.43 223.774) (uuid 95406caf-0450-48d9-ae98-a4a698661ff3)) + (no_connect (at 138.43 221.234) (uuid 95406caf-0450-48d9-ae98-a4a698661ff4)) + (no_connect (at 138.43 145.034) (uuid ae0df6e8-e558-434b-a86a-3dcb667d4808)) + (no_connect (at 224.79 35.56) (uuid bbdcacfd-4c44-48c0-b2d3-6772c3ec0adf)) + (no_connect (at 222.25 35.56) (uuid bbdcacfd-4c44-48c0-b2d3-6772c3ec0ae0)) + (no_connect (at 138.43 249.174) (uuid ce69c5bc-a29b-4398-b7f9-ddb86958f155)) + (no_connect (at 61.214 300.736) (uuid e0d79696-f06b-4e26-96ce-58a46fbc50fb)) + (no_connect (at 73.914 300.736) (uuid e193690d-1dbd-40dc-990e-440aae107b4c)) + + (wire (pts (xy 84.328 386.08) (xy 347.853 386.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00185541-0a55-4e62-91d8-99e7a7720d36) + ) + (wire (pts (xy 529.971 -52.07) (xy 529.971 164.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00627221-b0fd-448e-b5a6-250d249697c2) + ) + (wire (pts (xy 328.676 149.352) (xy 317.5 149.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 008da5b9-6f95-4113-b7d0-d93ac62efd33) + ) + (wire (pts (xy 358.14 252.73) (xy 358.14 252.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583) + ) + (wire (pts (xy 185.674 11.176) (xy 185.674 56.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 009b0d62-e9ea-4825-9fdf-befd291c76ce) + ) + (wire (pts (xy 617.728 273.558) (xy 416.052 273.558)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00c9c1c9-df78-4bf8-a378-9edee7dafbe3) + ) + (wire (pts (xy 74.168 -18.542) (xy 74.168 -44.323)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00e39da0-4b3e-4884-a91e-86d729914953) + ) + (wire (pts (xy 436.88 157.226) (xy 442.976 157.226)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 015f5586-ba76-4a98-9114-f5cd2c67134d) + ) + (wire (pts (xy 78.867 -13.97) (xy 78.867 -49.403)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01600802-66c5-45a2-be7f-4fa2327d845b) + ) + (wire (pts (xy 207.645 -57.277) (xy 190.246 -57.277)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01c54577-6862-4ca7-bb55-524c2e995aee) + ) + (wire (pts (xy 325.12 308.61) (xy 325.12 321.437)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01caafb3-af8a-4642-870c-c290b286d040) + ) + (wire (pts (xy 136.398 241.554) (xy 136.398 321.564)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01f82238-6335-48fe-8b0a-6853e227345a) + ) + (wire (pts (xy 420.116 115.824) (xy 420.116 -92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0208dcec-5844-41d6-8382-4437ac8ac82d) + ) + (wire (pts (xy 63.881 207.137) (xy 18.161 207.137)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 020b7e1f-8bb0-4882-91d4-7894bf18db84) + ) + (wire (pts (xy 105.41 216.154) (xy 105.41 331.724)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 022502e0-e724-4b75-bc35-3c5984dbeb76) + ) + (wire (pts (xy 51.435 179.197) (xy 15.494 179.197)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02289c61-13df-495e-a809-03e3a71bb201) + ) + (wire (pts (xy 115.316 211.328) (xy 115.316 195.834)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02538207-54a8-4266-8d51-23871852b2ff) + ) + (wire (pts (xy 465.328 166.624) (xy 473.71 166.624)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51) + ) + (wire (pts (xy 241.554 223.52) (xy 241.554 219.964)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0325ec43-0390-4ae2-b055-b1ec6ce17b1c) + ) + (wire (pts (xy -129.54 163.0172) (xy -118.2116 163.0172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0326ef12-3010-4501-a84f-510fb2e9a186) + ) + (wire (pts (xy 359.156 -67.31) (xy 430.784 -67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 037a257a-ceb2-409c-ab24-48a743172dae) + ) + (wire (pts (xy -33.9852 149.606) (xy -33.9852 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 039d3c65-8672-4bc9-af25-cf35f778d7b1) + ) + (wire (pts (xy 204.47 142.494) (xy 217.932 142.494)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592) + ) + (wire (pts (xy 56.134 182.372) (xy 56.134 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 044dde97-ee2e-473a-9264-ed4dff1893a5) + ) + (wire (pts (xy 13.462 221.488) (xy 13.462 225.298)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 044de712-d3da-40ed-9c9f-d91ef285c74c) + ) + (wire (pts (xy 479.806 74.676) (xy 479.806 76.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 046ca2d8-3ca1-4c64-8090-c45e9adcf30e) + ) + (wire (pts (xy -14.351 275.336) (xy -14.351 -26.543)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04868f85-bc69-4fa9-8e62-d78ffe5ae58e) + ) + (wire (pts (xy 342.9 410.591) (xy 636.27 410.591)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04b78285-4974-4fa0-8f4e-46d399f5727c) + ) + (wire (pts (xy 328.676 187.452) (xy 328.676 149.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04cf2f2c-74bf-400d-b4f6-201720df00ed) + ) + (wire (pts (xy 561.848 122.682) (xy 508.762 122.682)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04d60995-4f82-4f17-8f82-2f27a0a779cc) + ) + (wire (pts (xy 17.145 161.417) (xy 19.558 161.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 052acc87-8ff9-4162-8f55-f7121d221d0a) + ) + (wire (pts (xy 66.04 -72.263) (xy 110.617 -72.263)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 054f8e07-0141-451f-a3c4-ea786b83b680) + ) + (wire (pts (xy 216.789 367.792) (xy 216.789 160.274)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 056788ec-4ecf-4826-b996-bd884a6442a0) + ) + (wire (pts (xy 331.47 221.996) (xy 331.47 219.456)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47) + ) + (wire (pts (xy 20.193 208.153) (xy 22.352 208.153)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 058e77a4-10af-4bc8-a984-5984d3bbee4c) + ) + (wire (pts (xy 194.437 -29.337) (xy 194.437 -26.797)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 059f4155-bed3-4fb2-9baa-d569f31b7e5d) + ) + (wire (pts (xy -148.59 152.8064) (xy -148.59 149.606)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05b3e47a-02cc-4bab-b0ea-0a5ebd3f6a60) + ) + (wire (pts (xy 463.55 -5.334) (xy 463.55 138.811)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05c4a04b-0442-4e18-9747-3d9fc4a562fe) + ) + (wire (pts (xy 204.47 167.894) (xy 215.265 167.894)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05f2859d-2820-4e84-b395-696011feb13b) + ) + (wire (pts (xy 359.156 -46.99) (xy 484.124 -46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 062fbe79-da43-4e6a-bd6f-509557f2df9b) + ) + (wire (pts (xy 576.58 248.666) (xy 576.58 -19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 064853d1-fee5-4dc2-a187-8cbdd26d3919) + ) + (wire (pts (xy 325.12 321.437) (xy 268.986 321.437)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0648b195-3f37-49a2-a952-4c5886b521de) + ) + (wire (pts (xy 204.47 241.554) (xy 240.792 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 065b9982-55f2-4822-977e-07e8a06e7b35) + ) + (wire (pts (xy 74.168 110.998) (xy 74.168 161.544)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06665bf8-cef1-4e75-8d5b-1537b3c1b090) + ) + (wire (pts (xy 605.155 373.507) (xy 605.155 -146.431)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0667208e-872f-444a-9ed0-78a1b5f392d2) + ) + (wire (pts (xy 244.475 258.191) (xy 244.475 230.251)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0674c5a1-ca4b-4b6b-aa60-3847e1a37d52) + ) + (wire (pts (xy 127.635 51.943) (xy 263.271 51.943)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06b6db7e-5210-41ec-a47b-0127ebbe0786) + ) + (wire (pts (xy 64.389 -117.983) (xy 119.8372 -117.983)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06f279f5-5fd3-4c46-8f90-333531845f09) + ) + (wire (pts (xy -52.197 81.788) (xy -52.197 268.605)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07838c19-bdee-4759-9a7b-a62a5deb9737) + ) + (wire (pts (xy 198.12 96.012) (xy 109.728 96.012)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15) + ) + (wire (pts (xy 118.999 -95.123) (xy 118.999 -103.124)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 082621c8-b51d-48fd-937c-afceb255b94e) + ) + (wire (pts (xy 77.47 150.368) (xy 77.47 265.684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 082aed28-f9e8-49e7-96ee-b5aa9f0319c7) + ) + (wire (pts (xy 165.735 91.059) (xy 165.735 70.358)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0844b132-5386-469c-86ff-d527c8a00608) + ) + (wire (pts (xy 168.656 98.552) (xy 162.179 98.552)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08ac4c42-16f0-4513-b91e-bf0b3a111257) + ) + (wire (pts (xy 478.282 221.996) (xy 478.282 254.508)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08da8f18-02c3-4a28-a400-670f01755980) + ) + (wire (pts (xy 138.43 160.274) (xy 134.366 160.274)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08ec951f-e7eb-41cf-9589-697107a98e88) + ) + (wire (pts (xy 234.188 158.75) (xy 235.077 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08fa8ff6-09a7-484c-b1d9-0e3b7c49bb26) + ) + (wire (pts (xy 413.766 164.465) (xy 377.698 164.465)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09321bf4-1ea1-49b5-b1f9-ac29d6606a74) + ) + (wire (pts (xy 405.892 265.684) (xy 621.284 265.684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 098afe52-27f0-4ec0-bf39-4eb766d2a851) + ) + (wire (pts (xy 127.762 165.354) (xy 127.762 164.084)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 099473f1-6598-46ff-a50f-4c520832170d) + ) + (wire (pts (xy 96.52 212.344) (xy 129.032 212.344)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e) + ) + (wire (pts (xy 452.628 255.27) (xy 452.628 180.086)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09c6ca89-863f-42d4-867e-9a769c316610) + ) + (wire (pts (xy 231.648 142.875) (xy 272.796 142.875)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a2d185c-629f-461f-8b6b-f91f1894e6ba) + ) + (wire (pts (xy 114.808 258.318) (xy 120.396 258.318)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2) + ) + (wire (pts (xy 134.747 -15.875) (xy 134.747 -22.098)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a83f85d-78ad-480a-a5ba-773caced8f09) + ) + (wire (pts (xy 14.478 200.152) (xy 14.478 200.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ab1512b-eb91-4574-b11f-326e0ff10082) + ) + (wire (pts (xy 23.622 220.98) (xy 23.622 221.488)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b110cbc-e477-4bdc-9c81-26a3d588d354) + ) + (wire (pts (xy 304.038 252.476) (xy 304.038 312.674)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153) + ) + (wire (pts (xy 379.73 -87.63) (xy 379.73 -59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ba3fcf8-07bd-443d-be28-f69a4ad80df4) + ) + (wire (pts (xy 126.365 198.501) (xy 96.012 198.501)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bbd2e43-3eb0-4216-861b-a58366dbe43d) + ) + (wire (pts (xy 107.696 -28.829) (xy 107.696 -64.643)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c345fc5-964b-48c0-9452-55507c868edc) + ) + (wire (pts (xy 97.79 241.554) (xy 136.398 241.554)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c544a8c-9f45-4205-9bca-1d91c95d58ef) + ) + (wire (pts (xy 132.842 147.574) (xy 138.43 147.574)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c5dddf1-38df-43d2-b49c-e7b691dab0ab) + ) + (wire (pts (xy 504.317 -158.623) (xy 504.317 -154.813)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c75753f-ac98-42bf-95d0-ee8de408989d) + ) + (wire (pts (xy 432.308 120.142) (xy 432.308 86.868)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c9bbc06-f1c0-4359-8448-9c515b32a886) + ) + (wire (pts (xy 132.842 142.748) (xy 132.842 147.574)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ce1dd44-f307-4f98-9f0d-478fd87daa64) + ) + (wire (pts (xy 331.724 150.114) (xy 367.538 150.114)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ceb97d6-1b0f-4b71-921e-b0955c30c998) + ) + (wire (pts (xy 602.996 235.204) (xy 602.996 -147.828)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d1c133a-5b0b-4fe0-b915-2f72b13b37e9) + ) + (wire (pts (xy 15.24 182.88) (xy 13.843 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d32fbdb-2a37-4863-af10-fc85c1c6174f) + ) + (wire (pts (xy 359.156 -77.47) (xy 377.698 -77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d7333ca-0587-43cb-9af7-f59016c85820) + ) + (wire (pts (xy 83.566 199.898) (xy 108.204 199.898)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d993e48-cea3-4104-9c5a-d8f97b64a3ac) + ) + (wire (pts (xy 190.246 -36.957) (xy 194.437 -36.957)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dcb5ab5-f291-489d-b2bc-0f0b25b801ee) + ) + (wire (pts (xy 204.47 226.314) (xy 226.314 226.314)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7) + ) + (wire (pts (xy -47.244 360.934) (xy -47.244 286.385)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e11718f-21aa-474d-9bf4-88d875870740) + ) + (wire (pts (xy 190.246 -87.757) (xy 217.805 -87.757)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e1c6bbc-4cc4-4ce9-b48a-8292bb286da8) + ) + (wire (pts (xy 136.398 321.564) (xy 142.24 321.564)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae) + ) + (wire (pts (xy 136.398 240.03) (xy 140.208 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e592cd4-1950-44ef-9727-8e526f4c4e12) + ) + (wire (pts (xy 523.367 -158.623) (xy 523.367 -120.523)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ef32369-e37b-408d-9752-7cbb993d9abb) + ) + (wire (pts (xy 310.0832 254.0508) (xy 310.0832 184.3024)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f18c88d-d624-49f8-a15f-cf86e2781449) + ) + (wire (pts (xy 72.898 334.772) (xy -171.8056 334.772)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f30bf21-95e8-4b22-b11f-9d464a992362) + ) + (wire (pts (xy 74.93 76.708) (xy 82.423 76.708)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f3121ae-1081-4d81-b548-dceafa613e21) + ) + (wire (pts (xy 397.002 148.59) (xy 449.58 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f62e92c-dce6-45dc-a560-b9db10f66ff3) + ) + (polyline (pts (xy 81.788 279.4) (xy 81.788 293.878)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f9b475c-adb7-41fc-b827-33d4eaa86b99) + ) + + (wire (pts (xy 129.032 157.734) (xy 138.43 157.734)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fb27e11-fde6-4a25-adbb-e9684771b369) + ) + (wire (pts (xy 295.656 74.93) (xy 295.656 76.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb) + ) + (wire (pts (xy 356.362 189.484) (xy 356.362 189.738)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9) + ) + (wire (pts (xy 492.252 93.726) (xy 436.372 93.726)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ff398d7-e6e2-4972-a7a4-438407886f34) + ) + (wire (pts (xy 391.414 278.003) (xy 588.518 278.003)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fffb828-f291-41d3-a83c-4eaa3df13f3a) + ) + (wire (pts (xy 56.134 150.368) (xy 77.47 150.368)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa) + ) + (wire (pts (xy 109.474 251.714) (xy 114.3 251.714)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10d8ad0e-6a08-4053-92aa-23a15910fd21) + ) + (wire (pts (xy 64.389 -87.503) (xy 148.717 -87.503)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10df6e07-cc84-4b25-a71b-19a35b4b40da) + ) + (wire (pts (xy 204.47 236.474) (xy 220.98 236.474)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10e52e95-44f3-4059-a86d-dcda603e0623) + ) + (wire (pts (xy 225.044 -105.537) (xy 225.044 -21.844)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10e5ae6d-e43e-4ff8-abc5-fd9df16782da) + ) + (wire (pts (xy 399.542 162.56) (xy 397.002 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 112371bd-7aa2-4b47-b184-50d12afc2534) + ) + (wire (pts (xy 71.374 290.576) (xy 71.374 291.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 113ffcdf-4c54-4e37-81dc-f91efa934ba7) + ) + (wire (pts (xy 343.916 131.572) (xy 348.488 131.572)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1199146e-a60b-416a-b503-e77d6d2892f9) + ) + (wire (pts (xy 16.383 134.493) (xy 16.383 -4.064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 119c633c-175b-4b38-bbc1-1a076032c16e) + ) + (wire (pts (xy 270.256 263.906) (xy 270.256 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11c7c8d4-4c4b-4330-bb59-1eec2e98b255) + ) + (wire (pts (xy 613.791 254.508) (xy 478.282 254.508)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11cae898-6e02-4314-87c3-bfa88f249303) + ) + (wire (pts (xy 107.061 215.011) (xy 113.665 215.011)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 121b7b08-bed9-441b-b060-efed31f37089) + ) + (wire (pts (xy 360.934 223.012) (xy 390.398 223.012)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37) + ) + (wire (pts (xy 458.597 -146.558) (xy 307.721 -146.558)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12481f4a-71b0-43a4-a69b-bc048ed999f0) + ) + (wire (pts (xy 377.698 -15.621) (xy 154.559 -15.621)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12721b60-b423-4830-af94-c68b76872f05) + ) + (wire (pts (xy 617.728 -135.763) (xy 617.728 273.558)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 127b0e8c-8b10-4db4-b691-908ac98caaf1) + ) + (wire (pts (xy 128.397 60.325) (xy 128.397 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 128a7556-cb3d-406d-b84d-6d9efc7f9ed8) + ) + (wire (pts (xy 367.284 82.55) (xy 392.684 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12a24e86-2c38-4685-bba9-fff8dddb4cb0) + ) + (wire (pts (xy 190.246 -31.877) (xy 194.437 -31.877)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12c9f3e1-9431-42f8-b6f8-fb6fd35fc1cb) + ) + (wire (pts (xy 480.568 187.198) (xy 480.568 186.436)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7) + ) + (wire (pts (xy 480.568 197.358) (xy 480.568 201.676)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1317ff66-8ecf-46c9-9612-8d2eae03c537) + ) + (wire (pts (xy 198.12 -18.796) (xy 149.352 -18.796)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 133bb99a-82f3-4f77-a20b-451874ac44f4) + ) + (wire (pts (xy -10.668 272.415) (xy 225.298 272.415)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1354903a-b7d2-4e04-b220-6c6c8f058ef7) + ) + (wire (pts (xy 99.06 175.514) (xy 99.06 171.958)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919) + ) + (wire (pts (xy -49.784 414.528) (xy -49.784 291.465)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1416f46f-efcf-4c99-81af-d39cf81f2652) + ) + (wire (pts (xy 291.084 273.304) (xy 299.466 273.304)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1427bb3f-0689-4b41-a816-cd79a5202fd0) + ) + (wire (pts (xy 334.01 196.85) (xy 334.01 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65) + ) + (wire (pts (xy 113.665 215.011) (xy 113.665 153.543)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14a3cbec-b1b9-4736-8e00-ba5be98954ab) + ) + (wire (pts (xy 84.0232 246.634) (xy 84.0232 242.7732)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14c31453-552d-4e96-9dd6-b261cd0a2a9d) + ) + (wire (pts (xy 79.248 115.824) (xy 79.248 263.398)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15189cef-9045-423b-b4f6-a763d4e75704) + ) + (wire (pts (xy 495.554 86.868) (xy 495.554 83.566)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1527299a-08b3-47c3-929f-a75c83be365e) + ) + (wire (pts (xy 69.088 236.22) (xy 81.788 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 152cd84e-bbed-4df5-a866-d1ab977b0966) + ) + (wire (pts (xy 393.446 101.092) (xy 393.446 98.044)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 153169ce-9fac-4868-bc4e-e1381c5bb726) + ) + (wire (pts (xy -43.815 355.219) (xy -43.815 293.497)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1533b475-c834-40d3-ae2c-55eb46ae810f) + ) + (wire (pts (xy 391.414 278.003) (xy 391.414 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1558a593-7554-4709-a27f-f70400a2199d) + ) + (wire (pts (xy 412.75 159.766) (xy 412.75 115.824)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1569382e-a4f5-4166-a19c-b78580f8c980) + ) + (wire (pts (xy 139.7 23.114) (xy 139.7 31.242)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 159c8092-f459-40eb-b409-c2cace814e6e) + ) + (wire (pts (xy 520.446 179.578) (xy 520.446 183.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15a5a11b-0ea1-4f6e-b356-cc2d530615ed) + ) + (wire (pts (xy 243.84 198.12) (xy 243.84 174.498)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771) + ) + (wire (pts (xy 84.0232 242.7732) (xy -124.206 242.7732)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1645e033-6fb9-45c1-895d-8fa9920da383) + ) + (wire (pts (xy 509.397 -155.956) (xy 537.337 -155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 168e91de-8892-4570-a62e-0a6a88daec47) + ) + (wire (pts (xy 413.004 215.9) (xy 413.004 211.328)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16aa2316-1a67-45e5-b6c4-e59dd85814f4) + ) + (wire (pts (xy 401.066 219.71) (xy 398.526 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1732b93f-cd0e-4ca4-a905-bb406354ca33) + ) + (wire (pts (xy 217.678 170.434) (xy 217.678 147.574)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 173fd4a7-b485-4e9d-8724-470865466784) + ) + (wire (pts (xy 468.376 192.278) (xy 472.948 192.278)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1755646e-fc08-4e43-a301-d9b3ea704cf6) + ) + (wire (pts (xy 126.238 170.434) (xy 138.43 170.434)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 178ae27e-edb9-4ffb-bd13-c0a6dd659606) + ) + (wire (pts (xy 272.796 142.875) (xy 272.796 -82.677)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17adff9d-c581-42e4-b552-035b922b5256) + ) + (wire (pts (xy 497.586 148.844) (xy 495.046 148.844)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17cf1c88-8d51-4538-aa76-e35ac22d0ed0) + ) + (wire (pts (xy 115.316 195.834) (xy 138.43 195.834)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17ed3508-fa2e-4593-a799-bfd39a6cc14d) + ) + (wire (pts (xy 93.345 -10.287) (xy 93.345 170.942)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1843d2c0-629c-44e7-8460-03ced60a2111) + ) + (wire (pts (xy 72.39 250.952) (xy 72.39 265.684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1855ca44-ab48-4b76-a210-97fc81d916c4) + ) + (wire (pts (xy 148.336 70.358) (xy 165.735 70.358)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 186c3f1e-1c94-498e-abf2-1069980f6633) + ) + (wire (pts (xy 138.43 165.354) (xy 127.762 165.354)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1876c30c-72b2-4a8d-9f32-bf8b213530b4) + ) + (wire (pts (xy 109.347 -9.017) (xy 60.325 -9.017)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18a9dea8-caa6-40a3-962a-7699d9146e17) + ) + (wire (pts (xy 50.165 -20.066) (xy 77.343 -20.066)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18b6dcb6-5ab3-481b-b998-33e8cf6d281f) + ) + (wire (pts (xy 321.056 77.978) (xy 321.056 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18ca5aef-6a2c-41ac-9e7f-bf7acb716e53) + ) + (wire (pts (xy 563.372 183.388) (xy 563.372 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18cf1537-83e6-4374-a277-6e3e21479ab0) + ) + (wire (pts (xy 328.93 233.426) (xy 338.836 233.426)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd) + ) + (wire (pts (xy 436.372 93.726) (xy 436.372 123.444)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18dee026-9999-4f10-8c36-736131349406) + ) + (wire (pts (xy 81.534 81.788) (xy 81.534 91.821)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18ee575f-d41e-4a26-ac0a-b229112d8877) + ) + (wire (pts (xy 476.504 140.97) (xy 476.504 146.304)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18f1018d-5857-4c32-a072-f3de80352f74) + ) + (wire (pts (xy 170.815 70.358) (xy 295.656 70.358)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19264aae-fe9e-4afc-84ac-56ec33a3b20d) + ) + (wire (pts (xy 228.092 131.191) (xy 228.092 155.194)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 198642f2-8db4-475b-ac24-9da65c994a3a) + ) + (wire (pts (xy 116.078 184.023) (xy 116.078 205.994)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19a5aacd-255a-4bf3-89c1-efd2ab61016c) + ) + (wire (pts (xy 76.708 159.512) (xy 76.708 110.998)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a22eb2d-f625-4371-a918-ff1b97dc8219) + ) + (wire (pts (xy 204.47 170.434) (xy 217.678 170.434)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a7e7b16-fc7c-4e64-9ace-48cc78112437) + ) + (wire (pts (xy 244.475 230.251) (xy 269.748 230.251)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a85ffd6-ef8b-418f-990e-456d1ffab00e) + ) + (wire (pts (xy 217.805 -10.287) (xy 93.345 -10.287)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a9f0d73-6986-450b-8da5-dca8d718cd0d) + ) + (wire (pts (xy 209.55 162.814) (xy 209.55 360.934)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa) + ) + (wire (pts (xy 240.1824 -119.7102) (xy 134.2644 -119.7102)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b0cadc8-e770-48eb-9cf7-9d0a815cf8eb) + ) + (wire (pts (xy 454.914 129.286) (xy 461.264 129.286)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b5a32e4-0b8e-4f38-b679-71dc277c2087) + ) + (wire (pts (xy 325.882 344.17) (xy 331.724 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b8d5810-67b5-41f5-a4e9-e6c2cc9fec50) + ) + (wire (pts (xy 591.566 335.661) (xy 591.566 -155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bb16fed-1537-47fa-90f6-8dc136da5d16) + ) + (wire (pts (xy 83.312 263.398) (xy 133.096 263.398)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bd80cf9-f42a-4aee-a408-9dbf4e81e625) + ) + (wire (pts (xy 62.23 258.826) (xy 62.23 271.272)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bf7d0f9-0dcf-4d7c-b58c-318e3dc42bc9) + ) + (wire (pts (xy 455.168 180.086) (xy 452.628 180.086)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c4dfe58-85b1-467f-8e9d-bdb7a0d0ca8e) + ) + (wire (pts (xy 102.362 -56.896) (xy 102.362 -24.257)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c57f8a5-0a6c-44cd-b514-5b9d5f8cc98b) + ) + (wire (pts (xy 356.362 189.738) (xy 359.918 189.738)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c68b844-c861-46b7-b734-0242168a4220) + ) + (wire (pts (xy 465.582 -36.83) (xy 359.156 -36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c7ec62e-d96c-4a0d-ac32-e919b90a3c5b) + ) + (wire (pts (xy 112.776 193.294) (xy 112.776 210.058)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5) + ) + (wire (pts (xy 30.48 142.748) (xy 30.48 310.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cacb878-9da4-41fc-aa80-018bc841e19a) + ) + (wire (pts (xy 320.04 275.082) (xy 309.118 275.082)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cb22080-0f59-4c18-a6e6-8685ef44ec53) + ) + (wire (pts (xy 79.756 310.896) (xy 71.374 310.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cbbfee4-06dd-44ee-af91-d336edf2459c) + ) + (wire (pts (xy 323.596 196.85) (xy 334.01 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cd08355-701e-4fba-886f-d48517dcccf5) + ) + (wire (pts (xy 64.389 -46.863) (xy 77.343 -46.863)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cd85cce-d94a-4a92-8af2-23d3a2b66793) + ) + (wire (pts (xy 401.32 200.914) (xy 401.32 198.882)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d0d5161-c82f-4c77-a9ca-15d017db65d3) + ) + (wire (pts (xy 87.63 66.04) (xy 87.63 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b) + ) + (wire (pts (xy 522.224 -82.55) (xy 383.921 -82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d2d8ec8-1f1b-4d06-9a35-eff8e386bdb8) + ) + (wire (pts (xy 359.156 -21.59) (xy 359.156 -21.463)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d6c2d6c-bee0-401d-9749-98f17833afdd) + ) + (wire (pts (xy -148.59 149.606) (xy -33.9852 149.606)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d6f48f7-6571-40d0-a486-dc7a9beb7e18) + ) + (wire (pts (xy 537.337 -155.956) (xy 537.337 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d801ac4-6429-45d9-ad70-9dd82bd9c030) + ) + (wire (pts (xy 73.914 303.784) (xy 73.914 308.356)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1de61170-5337-44c5-ba28-bd477db4bff1) + ) + (wire (pts (xy 231.902 140.462) (xy 252.73 140.462)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dfbf353-5b24-4c0f-8322-8fcd514ae75e) + ) + (wire (pts (xy 194.31 103.124) (xy 194.31 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e48966e-d29d-4521-8939-ec8ac570431d) + ) + (wire (pts (xy 96.012 198.501) (xy 96.012 212.598)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1eca5f72-2356-4c55-919d-595727faf3b9) + ) + (wire (pts (xy 463.677 -157.226) (xy 456.057 -157.226)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ed7574f-dfd9-48ef-889b-e65459b62f49) + ) + (wire (pts (xy 269.748 230.251) (xy 269.748 117.094)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f01b2a1-9ae4-4793-9d17-5ed5c0966b9f) + ) + (wire (pts (xy 310.769 -147.701) (xy 494.157 -147.701)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f70d207-e63d-4692-be1f-5b6fa8599d57) + ) + (wire (pts (xy 290.068 160.528) (xy 290.068 160.782)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9) + ) + (wire (pts (xy 340.868 140.97) (xy 350.266 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2035ea48-3ef5-4d7f-8c3c-50981b30c89a) + ) + (wire (pts (xy 518.287 -87.63) (xy 379.73 -87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 207932d1-3fbf-4bd3-8ef6-a6601aaaae72) + ) + (wire (pts (xy 138.43 188.214) (xy 105.918 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20901d7e-a300-4069-8967-a6a7e97a68bc) + ) + (wire (pts (xy 210.566 251.714) (xy 210.566 306.578)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b) + ) + (wire (pts (xy 53.848 293.37) (xy 66.04 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2) + ) + (wire (pts (xy 230.124 143.51) (xy 436.88 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21492bcd-343a-4b2b-b55a-b4586c11bdeb) + ) + (wire (pts (xy 551.688 147.828) (xy 556.006 147.828)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2151a218-87ec-4d43-b5fa-736242c52602) + ) + (wire (pts (xy 379.222 278.384) (xy 330.2 278.384)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2165c9a4-eb84-4cb6-a870-2fdc39d2511b) + ) + (wire (pts (xy 606.679 391.795) (xy 444.627 391.795)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 217a6ab0-8c75-4e09-8113-c7b7b906da43) + ) + (wire (pts (xy -143.51 163.0172) (xy -129.54 163.0172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 219b198c-359f-459c-9a6b-5c49a61d556f) + ) + (wire (pts (xy 190.246 -95.377) (xy 289.941 -95.377)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21a4e5f9-158c-4a1e-a6d3-12c826291e62) + ) + (wire (pts (xy 134.874 49.784) (xy 134.874 22.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21ca1c08-b8a3-4bdc-9356-70a4d86ee444) + ) + (wire (pts (xy 356.108 126.492) (xy 356.108 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273) + ) + (wire (pts (xy -40.767 357.124) (xy -40.767 281.305)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22312754-c8c2-4400-b598-394e06b2be81) + ) + (wire (pts (xy -158.6484 171.9072) (xy -158.6484 172.3136)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2238ef91-4c7f-4d46-8462-5cdede5f61a6) + ) + (wire (pts (xy 244.602 176.276) (xy 257.556 176.276)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 224768bc-6009-43ba-aa4a-70cbaa15b5a3) + ) + (wire (pts (xy -19.05 -28.829) (xy 107.696 -28.829)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 224e8890-cdee-45fd-bd2e-64fe49c2de75) + ) + (wire (pts (xy 484.124 77.597) (xy 492.506 77.597)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 226f524c-89b4-46ed-86fd-c8ea41059fd4) + ) + (wire (pts (xy 109.347 -9.017) (xy 109.347 -92.583)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2276e018-ceb6-4356-b3fe-3b8fe418011b) + ) + (wire (pts (xy 489.966 51.308) (xy 407.162 51.308)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2276ec6c-cdcc-4369-86b4-8267d991001e) + ) + (wire (pts (xy 441.706 180.34) (xy 445.008 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2295a793-dfca-4b86-a3e5-abf1834e2790) + ) + (wire (pts (xy 298.196 219.202) (xy 298.196 220.218)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22999e73-da32-43a5-9163-4b3a41614f25) + ) + (wire (pts (xy 471.424 105.918) (xy 440.69 105.918)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22ab392d-1989-4185-9178-8083812ea067) + ) + (wire (pts (xy 316.738 56.642) (xy 316.738 77.978)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22c28634-55a5-4f76-9217-6b70ddd108b8) + ) + (wire (pts (xy 128.397 152.4) (xy 128.397 153.543)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22cb26b9-d501-4786-ab70-b7ac2868619c) + ) + (wire (pts (xy 353.568 -5.334) (xy 463.55 -5.334)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22ecb7a5-dc08-4d51-9f10-32899809ad6c) + ) + (wire (pts (xy 478.917 -158.623) (xy 478.917 -144.272)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22fd57c4-481e-4417-b920-694451210da2) + ) + (wire (pts (xy 330.2 275.082) (xy 330.2 278.384)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 235067e2-1686-40fe-a9a0-61704311b2b1) + ) + (wire (pts (xy 277.622 299.466) (xy 277.622 307.594)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 241e0c85-4796-48eb-a5a0-1c0f2d6e5910) + ) + (wire (pts (xy 17.907 153.162) (xy 17.145 153.162)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 245a6fb4-6361-4438-82ca-8861d43ca7f5) + ) + (wire (pts (xy 67.31 259.334) (xy 67.31 268.732)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 247ebffd-2cb6-4379-ba6e-21861fea3913) + ) + (wire (pts (xy 393.7 339.598) (xy 393.7 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24a492d9-25a9-4fba-b51b-3effb576b351) + ) + (wire (pts (xy 62.23 271.272) (xy 217.678 271.272)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24adc223-60f0-4497-98a3-d664c5a13280) + ) + (wire (pts (xy 204.47 155.194) (xy 228.092 155.194)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24b72b0d-63b8-4e06-89d0-e94dcf39a600) + ) + (wire (pts (xy 429.514 235.204) (xy 602.996 235.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24d3ee68-60f0-4c8a-a72b-065f1026fd87) + ) + (wire (pts (xy 325.882 340.614) (xy 325.882 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24fbbd33-4896-414c-ba79-167809dd0e90) + ) + (wire (pts (xy 63.754 300.736) (xy 63.754 309.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24fd922c-d488-4d61-b6dc-9d3e359ccc82) + ) + (wire (pts (xy 224.028 231.394) (xy 224.028 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 252f1275-081d-4d77-8bd5-3b9e6916ef42) + ) + (wire (pts (xy 83.312 308.356) (xy 73.914 308.356)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 254f7cc6-cee1-44ca-9afe-939b318201aa) + ) + (wire (pts (xy 323.215 69.342) (xy 323.215 56.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25625d99-d45f-4b2f-9e62-009a122611f4) + ) + (wire (pts (xy 377.698 -49.53) (xy 377.698 -77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2571f4c8-d7fc-4e8c-94df-f480e56bb717) + ) + (wire (pts (xy 119.761 -30.099) (xy 69.977 -30.099)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25b39db8-8576-4473-b331-b912323e85f4) + ) + (wire (pts (xy 207.772 125.476) (xy 96.774 125.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25bc3602-3fb4-4a04-94e3-21ba22562c24) + ) + (wire (pts (xy 152.4 -84.963) (xy 152.4 -137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25c0c83a-69e4-4bb3-a4ba-e35ba5e17f0f) + ) + (wire (pts (xy 327.406 238.506) (xy 327.406 239.522)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf) + ) + (wire (pts (xy -32.893 278.765) (xy -57.404 278.765)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 260f62f6-a6cf-45e0-9208-51504e701f69) + ) + (wire (pts (xy -158.6484 182.4736) (xy -158.6484 197.2056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 262414d6-363a-4657-b0a6-5e63e43f2266) + ) + (wire (pts (xy 286.893 -12.319) (xy 286.893 -92.837)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2628b16a-8b1e-4398-be45-c147110e73bb) + ) + (wire (pts (xy 88.392 114.046) (xy 282.448 114.046)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26296271-780a-4da9-8e69-910d9240bca1) + ) + (wire (pts (xy 204.47 211.074) (xy 263.906 211.074)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 269f19c3-6824-45a8-be29-fa58d70cbb42) + ) + (wire (pts (xy 37.338 344.932) (xy 37.338 123.444)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26a22c19-4cc5-4237-9651-0edc4f854154) + ) + (wire (pts (xy 284.226 -69.977) (xy 284.226 139.954)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26edc121-4167-44e5-9aaf-65f4ac255233) + ) + (wire (pts (xy 437.642 169.672) (xy 422.402 169.672)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 275b6416-db29-42cc-9307-bf426917c3b4) + ) + (wire (pts (xy 212.09 116.332) (xy 212.09 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2765a021-71f1-4136-b72b-81c2c6882946) + ) + (wire (pts (xy 138.43 200.787) (xy 138.43 200.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 278deae2-fb37-4957-b2cb-afac30cacb12) + ) + (wire (pts (xy 246.38 -123.825) (xy 631.571 -123.825)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2792ed93-89db-4e51-99ff-281323e776eb) + ) + (wire (pts (xy -173.9392 191.6684) (xy -173.9392 197.2056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 279ca15d-927a-4203-be7a-66d338c68519) + ) + (wire (pts (xy 342.646 149.352) (xy 340.868 149.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27b2eb82-662b-42d8-90e6-830fec4bb8d2) + ) + (wire (pts (xy 456.057 -157.226) (xy 456.057 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27b32d30-a0e6-48e4-8f63-c61987047d29) + ) + (wire (pts (xy 204.47 195.834) (xy 227.076 195.834)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 283c990c-ae5a-4e41-a3ad-b40ca29fe90e) + ) + (wire (pts (xy 314.706 229.616) (xy 314.706 187.452)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2878a73c-5447-4cd9-8194-14f52ab9459c) + ) + (wire (pts (xy 110.744 49.784) (xy 110.744 214.122)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28d267fd-6d61-43bb-9705-8d59d7a44e81) + ) + (wire (pts (xy 300.228 -113.157) (xy 190.246 -113.157)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 290c753b-3b9b-4c45-85a5-65bd9eae1f9e) + ) + (wire (pts (xy 105.918 70.358) (xy 148.336 70.358)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 291935ec-f8ff-41f0-8717-e68b8af7b8c1) + ) + (wire (pts (xy 320.548 215.138) (xy 320.548 214.376)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29195ea4-8218-44a1-b4bf-466bee0082e4) + ) + (wire (pts (xy 420.116 -92.71) (xy 376.047 -92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 291e4200-f3c9-4b61-8158-17e8c4424a24) + ) + (wire (pts (xy 326.644 106.172) (xy 399.542 106.172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2949af22-2432-469e-9f07-eee60be8acbd) + ) + (wire (pts (xy 414.655 235.077) (xy 420.116 235.077)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2952439a-4d93-45a3-a998-2b2fce2c5fe9) + ) + (wire (pts (xy -42.037 236.728) (xy -42.037 288.925)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 296b967f-b7a9-453f-856a-7b874fdca3db) + ) + (wire (pts (xy 17.018 118.237) (xy 17.018 127.254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 296ded40-ed53-4798-8db4-dad7b794226b) + ) + (wire (pts (xy 407.162 51.308) (xy 407.162 98.044)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29987966-1d19-4068-93f6-a61cdfb40ffa) + ) + (wire (pts (xy 488.95 204.724) (xy 437.642 204.724)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29cbb0bc-f66b-4d11-80e7-5bb270e42496) + ) + (wire (pts (xy 120.396 366.014) (xy 120.396 258.318)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29cd9e70-9b68-44f7-96b2-fe993c246832) + ) + (wire (pts (xy 121.666 200.787) (xy 121.666 217.678)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29ec1a54-dea0-4d1a-a3dc-a7441a09bb9e) + ) + (wire (pts (xy 154.559 -15.621) (xy 154.559 -46.863)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29f4961c-cbd7-42a0-91e7-8ae77405e061) + ) + (wire (pts (xy 214.122 118.11) (xy 214.122 165.354)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a1de22d-6451-488d-af77-0bf8841bd695) + ) + (wire (pts (xy 79.248 115.824) (xy 71.628 115.824)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a4111b7-8149-4814-9344-3b8119cd75e4) + ) + (wire (pts (xy 524.637 -127.127) (xy 524.637 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a507df7-40c5-4523-b0fd-269cea55efb9) + ) + (wire (pts (xy 491.617 -145.288) (xy 491.617 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a756062-4e0c-4114-bc6d-4d6635f2d703) + ) + (wire (pts (xy 210.82 94.488) (xy 202.946 94.488)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2af1d271-3c6a-476d-8eba-6b2aab466da3) + ) + (wire (pts (xy 286.893 -12.319) (xy 537.972 -12.319)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b1a1d99-4ea2-4cae-846a-5609aadc4265) + ) + (wire (pts (xy 138.43 180.594) (xy 124.46 180.594)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b25e886-ded1-450a-ada1-ece4208052e4) + ) + (wire (pts (xy 326.644 98.044) (xy 326.644 106.172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b5a9ad3-7ec4-447d-916c-47adf5f9674f) + ) + (wire (pts (xy 114.3 251.714) (xy 114.3 213.614)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f) + ) + (wire (pts (xy 104.013 -59.563) (xy 64.389 -59.563)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b878984-ad62-40d5-87be-d30f465ae2b3) + ) + (wire (pts (xy 412.75 -102.87) (xy 369.697 -102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b894b8a-c098-4d9d-be0f-2ef41dea274e) + ) + (wire (pts (xy 24.384 161.417) (xy 24.384 171.323)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ba21493-929b-4122-ac0f-7aeaf8602cef) + ) + (wire (pts (xy 126.492 15.748) (xy 128.27 15.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bbd6c26-4114-4518-8f4a-c6fdadc046b6) + ) + (wire (pts (xy 118.11 22.352) (xy 118.11 12.446)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c10387c-3cac-4a7c-bbfb-95d69f41a890) + ) + (wire (pts (xy 83.82 201.041) (xy 83.82 211.328)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c3d5c2f-c119-4276-9b7e-33808f1d9396) + ) + (wire (pts (xy 241.3 183.134) (xy 241.3 164.846)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c60448a-e30f-46b2-89e1-a44f51688efc) + ) + (wire (pts (xy 304.038 252.476) (xy 358.14 252.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19) + ) + (wire (pts (xy 268.986 321.437) (xy 268.986 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ca148b4-658e-4a63-ab5c-2e293c8a2284) + ) + (wire (pts (xy 398.272 245.618) (xy 398.272 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cd3975a-2259-4fa9-8133-e1586b9b9618) + ) + (wire (pts (xy 22.352 204.724) (xy 9.271 204.724)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d916084-6196-4479-adf2-d8e271fa0c32) + ) + (wire (pts (xy -118.2116 326.3392) (xy 60.7568 326.3392)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dae1840-d6e9-46fa-a7a2-185d0a48fbf8) + ) + (wire (pts (xy 362.458 357.378) (xy 362.458 353.568)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2db910a0-b943-40b4-b81f-068ba5265f56) + ) + (wire (pts (xy 251.46 -123.063) (xy 64.389 -123.063)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dba072b-3aba-4c6e-8dad-0c854cc5ab37) + ) + (wire (pts (xy 440.69 153.162) (xy 407.162 153.162)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dc66f7e-d85d-4081-ae71-fd8851d6aeda) + ) + (wire (pts (xy 228.346 239.014) (xy 228.346 226.314)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a) + ) + (wire (pts (xy 41.275 118.237) (xy 17.018 118.237)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e0f69a6-955c-44f2-af4d-b4ad566ef54b) + ) + (wire (pts (xy 129.032 251.714) (xy 129.032 258.318)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5) + ) + (wire (pts (xy 340.868 149.352) (xy 328.676 149.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6) + ) + (wire (pts (xy 498.348 91.694) (xy 498.348 89.916)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ec9be40-1d5a-4e2d-8a4d-4be2d3c079d5) + ) + (wire (pts (xy 336.55 64.516) (xy 336.55 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2edc487e-09a5-4e4e-9675-a7b323f56380) + ) + (wire (pts (xy 134.366 160.274) (xy 134.366 216.154)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2eea20e6-112c-411a-b615-885ae773135a) + ) + (wire (pts (xy 408.94 200.914) (xy 408.94 198.628)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f0570b6-86da-47a8-9e56-ce60c431c534) + ) + (wire (pts (xy 210.566 306.578) (xy 240.284 306.578)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4) + ) + (wire (pts (xy 379.73 -87.63) (xy 359.156 -87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f29ffe5-cbdc-4a3f-81e6-c7d9f4c5145a) + ) + (wire (pts (xy 290.068 150.368) (xy 301.244 150.368)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f58dd1b-258a-4fb6-a155-4e2931ab012c) + ) + (wire (pts (xy 359.156 -90.17) (xy 523.24 -90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f8ebbbf-0f11-4a15-9648-1d28e5593127) + ) + (wire (pts (xy -143.51 160.4264) (xy -143.51 163.0172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fa9c25d-df52-4ae1-a7c1-0d0cf259ad26) + ) + (wire (pts (xy 386.588 173.101) (xy 391.033 173.101)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fea3f9c-a97b-4a77-88f7-98b3d8a00622) + ) + (wire (pts (xy 388.366 235.458) (xy 397.764 235.458)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ff15691-c9f8-4e08-a694-3230522780fc) + ) + (wire (pts (xy 140.208 263.906) (xy 270.256 263.906)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 300aa512-2f66-4c26-a530-50c091b3a099) + ) + (wire (pts (xy 468.757 -135.763) (xy 617.728 -135.763)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3019c847-3ccf-490a-9dd6-694227c3fba5) + ) + (wire (pts (xy 194.437 -36.957) (xy 194.437 -34.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30b75c25-1d2c-45e7-83e2-bb3be98f8f83) + ) + (wire (pts (xy 363.22 377.698) (xy 366.776 377.698)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 311665d9-0fab-4325-8b46-f3638bf521df) + ) + (wire (pts (xy 214.757 45.847) (xy 214.757 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 312474c5-a081-4cd1-b2e6-730f0718514a) + ) + (wire (pts (xy 126.492 258.318) (xy 129.032 258.318)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 315d2b15-cfe6-4672-b3ad-24773f3df12c) + ) + (wire (pts (xy 556.006 -31.75) (xy 556.006 147.828)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31b8e579-7afa-4dee-9f20-b2fefaae3c16) + ) + (wire (pts (xy 496.697 -147.828) (xy 496.697 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31e2d26e-842a-4694-a3ae-7642d792727c) + ) + (wire (pts (xy 330.2 278.384) (xy 291.084 278.384)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31f91ec8-56e4-4e08-9ccd-012652772211) + ) + (wire (pts (xy 307.594 146.685) (xy 248.158 146.685)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 321eb03e-d5d7-4c98-9326-4c49d56670ae) + ) + (wire (pts (xy 190.246 -55.245) (xy 190.246 -54.737)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 325f33ca-3e2f-400b-a27c-dce9977a2780) + ) + (wire (pts (xy 126.492 10.414) (xy 126.492 15.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3273ec61-4a33-41c2-82bf-cde7c8587c1b) + ) + (wire (pts (xy 394.716 155.448) (xy 394.716 -95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33064f56-88c0-44a1-ac52-96957fe5ad49) + ) + (wire (pts (xy 315.722 92.71) (xy 315.722 92.964)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7) + ) + (wire (pts (xy 94.996 67.564) (xy 94.996 76.708)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3335d379-08d8-4469-9fa1-495ed5a43fba) + ) + (wire (pts (xy 98.552 -54.483) (xy 64.389 -54.483)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 335263d3-7e35-4a9c-83c2-cd71d45f0688) + ) + (wire (pts (xy 206.248 318.516) (xy 254.635 318.516)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33770b56-77ab-4a0c-a675-0ef4f02f8519) + ) + (wire (pts (xy 28.067 127.254) (xy 28.067 86.741)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 337d1242-91ab-4446-8b9e-7609c6a49e3c) + ) + (wire (pts (xy 252.73 213.614) (xy 204.47 213.614)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 337e8520-cbd2-42c0-8d17-743bab17cbbd) + ) + (wire (pts (xy 87.376 179.832) (xy 85.471 179.832)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3381b763-2886-4e76-a243-cbcc2ec8a032) + ) + (wire (pts (xy 45.974 177.673) (xy 45.974 167.132)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3388a811-b444-4ecc-a564-b22a1b731ab4) + ) + (wire (pts (xy 78.74 313.182) (xy 202.311 313.182)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33891c62-a79f-4243-b776-6be292690ac3) + ) + (wire (pts (xy 266.7 -64.897) (xy 190.246 -64.897)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 338b7824-6fa7-42ef-b79a-c6dc90689f4e) + ) + (wire (pts (xy 648.462 -120.523) (xy 648.462 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33b6dbe8-d555-4f35-a63c-27c75fa09ca7) + ) + (wire (pts (xy 376.047 -92.71) (xy 359.156 -92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33e40dd5-556d-4de0-ab08-235c61b7ba9f) + ) + (wire (pts (xy 227.076 -59.817) (xy 227.076 117.094)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33ef82c8-b659-42b6-9429-5436a00e7b54) + ) + (wire (pts (xy 504.698 103.632) (xy 509.016 103.632)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 341dde39-440e-4d05-8def-6a5cecefd88c) + ) + (wire (pts (xy 64.77 260.35) (xy 69.85 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3457afc5-3e4f-4220-81d1-b079f653a722) + ) + (wire (pts (xy 383.286 297.18) (xy 374.142 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 348dc703-3cab-4547-b664-e8b335a6083c) + ) + (wire (pts (xy 445.77 -6.985) (xy 445.77 102.997)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3497045f-d218-47c9-8fd1-2d0a39585aa6) + ) + (wire (pts (xy 365.252 327.66) (xy 365.252 327.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89) + ) + (wire (pts (xy 501.777 -149.225) (xy 501.777 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34d3baf1-c1a6-463d-a7da-03fde565ea93) + ) + (wire (pts (xy 270.256 255.27) (xy 452.628 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34ddb753-e57c-4ca8-a67b-d7cdf62cae93) + ) + (wire (pts (xy 356.616 254.0508) (xy 310.0832 254.0508)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34dffb44-1559-4592-966a-e28613dfb4c2) + ) + (wire (pts (xy -124.206 152.8572) (xy -129.54 152.8572)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34ed3cf4-9df9-4dc8-baf0-141714d86d86) + ) + (wire (pts (xy 301.625 147.32) (xy 224.282 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35506831-8c22-45ab-9b57-69eb0f9ef003) + ) + (wire (pts (xy 491.744 176.022) (xy 491.744 117.602)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 355ced6c-c08a-4586-9a09-7a9c624536f6) + ) + (wire (pts (xy 350.139 107.95) (xy 404.622 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 356199c8-c0f7-4995-bef0-53ad752a30c5) + ) + (wire (pts (xy 284.226 -69.977) (xy 240.1824 -69.977)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35e13391-5257-46f3-93a5-87ffd4e862a4) + ) + (wire (pts (xy 504.825 156.845) (xy 504.825 116.205)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35e60fa0-27cf-4d0e-8bab-b364400c08c0) + ) + (wire (pts (xy 64.77 57.912) (xy 69.342 57.912)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35fb7c56-dc85-43f7-b954-81b8040a8500) + ) + (wire (pts (xy 363.22 377.444) (xy 363.22 377.698)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3656bb3f-f8a4-4f3a-8e9a-ec6203c87a56) + ) + (wire (pts (xy 519.557 -158.623) (xy 519.557 -116.586)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3662e68b-207e-47a3-930c-038dfd8202b6) + ) + (wire (pts (xy 312.547 -142.748) (xy 312.547 62.484)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 373b5b59-9fbb-41a2-845d-56a1ed5a82dd) + ) + (wire (pts (xy 381.762 174.752) (xy 381.762 -131.318)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3742a313-c63e-4807-a7bf-be5a0ae2c781) + ) + (wire (pts (xy 129.794 105.791) (xy 144.907 105.791)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3768cce7-1e64-480e-bb38-0c6794a852ac) + ) + (wire (pts (xy 412.75 -102.87) (xy 412.75 98.044)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 376a6f44-cf22-4d88-ac13-30f83803795f) + ) + (wire (pts (xy 532.257 -154.813) (xy 532.257 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 376da264-b219-4ddc-be78-a640bbee3aef) + ) + (wire (pts (xy 522.986 210.82) (xy 522.986 248.666)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37728c8e-efcc-462c-a749-47b6bfcbaf37) + ) + (wire (pts (xy 64.389 -97.663) (xy 106.934 -97.663)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3785db90-bbe9-4018-bab6-3a4673f84f27) + ) + (wire (pts (xy 349.758 244.602) (xy 349.758 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37f31dec-63fc-4634-a141-5dc5d2b60fe4) + ) + (wire (pts (xy 266.954 299.466) (xy 277.622 299.466)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 386ad9e3-71fa-420f-8722-88548b024fc5) + ) + (wire (pts (xy 204.47 208.534) (xy 260.096 208.534)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38cfe839-c630-43d3-a9ec-6a89ba9e318a) + ) + (wire (pts (xy -158.6484 182.4736) (xy -154.2288 182.4736)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 391915af-0708-47e9-998b-80b571f5d1c7) + ) + (wire (pts (xy 239.3696 -116.4336) (xy 239.3696 -72.517)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 394b8d26-80d2-43a8-a5b2-eb5651602d67) + ) + (wire (pts (xy 282.448 98.806) (xy 282.448 114.046)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39614f9f-2df5-492b-a093-45b7a48e295d) + ) + (wire (pts (xy 350.139 115.57) (xy 350.139 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3997254a-8057-4464-ba07-e37f0720cbd8) + ) + (wire (pts (xy 71.374 300.736) (xy 71.374 310.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a1a39fc-8030-4c93-9d9c-d79ba6824099) + ) + (wire (pts (xy 376.047 -92.71) (xy 376.047 -64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a274653-eff3-4ffe-9be8-2bfd0950af0a) + ) + (wire (pts (xy -26.797 338.709) (xy -26.797 -33.401)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a362cc7-5245-4ed2-8f66-3a6d74eaba39) + ) + (wire (pts (xy 299.466 252.476) (xy 304.038 252.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a) + ) + (wire (pts (xy 468.122 244.856) (xy 468.122 246.634)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a45fb3b-7899-44f2-a78a-f676359df67b) + ) + (wire (pts (xy 97.79 231.14) (xy 97.79 241.554)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a4bfa46-6fb9-4141-b97f-f6552c20d905) + ) + (wire (pts (xy 621.284 265.684) (xy 621.284 -138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a4d7b94-8b26-4555-b396-f2e88aea5db3) + ) + (wire (pts (xy 359.156 -62.23) (xy 428.244 -62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a568413-17bd-4a87-b1ac-928e77fa1b6a) + ) + (wire (pts (xy 206.248 147.574) (xy 206.248 318.516)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a70978e-dcc2-4620-a99c-514362812927) + ) + (wire (pts (xy -47.244 286.385) (xy -57.404 286.385)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3afae848-3ba1-40f3-a73d-cfa98c2ff8b2) + ) + (wire (pts (xy -40.767 281.305) (xy -57.404 281.305)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b199d04-ad2b-4bc0-b66c-8629e7796fdd) + ) + (wire (pts (xy 143.891 100.584) (xy 144.78 100.584)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b19a97f-624a-48d9-8072-15bdeede0fff) + ) + (wire (pts (xy 190.246 -92.837) (xy 286.893 -92.837)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b5147db-69cc-4871-96a7-79c3437a6213) + ) + (wire (pts (xy 165.1 131.064) (xy 165.1 124.206)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b65c51e-c243-447e-bee9-832d94c1630e) + ) + (wire (pts (xy 298.45 176.022) (xy 313.182 176.022)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b686d17-1000-4762-ba31-589d599a3edf) + ) + (wire (pts (xy 401.828 176.403) (xy 371.094 176.403)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b909fd4-b382-4019-8708-80d1d9a9fe1c) + ) + (wire (pts (xy 244.348 151.638) (xy 244.348 164.846)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b9ce6b0-047c-4e71-81a7-b0a5c13aa4d2) + ) + (wire (pts (xy 394.97 356.87) (xy 394.97 370.967)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bdaeac5-b4b7-4a96-b0da-b5e1b46798c2) + ) + (wire (pts (xy 374.396 367.03) (xy 374.396 367.284)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c121a93-b189-409b-a104-2bdd37ff0b51) + ) + (wire (pts (xy 383.921 -82.55) (xy 359.156 -82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c19fda9-55de-469e-9693-2d8993bca106) + ) + (wire (pts (xy 458.216 192.278) (xy 339.09 192.278)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c22d605-7855-4cc6-8ad2-906cadbd02dc) + ) + (wire (pts (xy 363.22 367.284) (xy 374.396 367.284)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c3e06bd-c8bb-4ec8-84e0-f7f9437909b3) + ) + (wire (pts (xy 220.726 193.294) (xy 220.726 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6) + ) + (wire (pts (xy 354.076 353.568) (xy 362.458 353.568)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c9169cc-3a77-4ae0-8afc-cbfc472a28c5) + ) + (wire (pts (xy -179.0192 330.454) (xy 80.518 330.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ca6924a-57eb-45e3-b481-47440265277d) + ) + (wire (pts (xy 484.124 -46.99) (xy 484.124 76.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ce4c631-4e8b-4ee6-a520-34bf7b12880c) + ) + (wire (pts (xy 194.437 -49.657) (xy 190.246 -49.657)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cf0233f-86e3-4b85-ad75-fb8a46f37498) + ) + (wire (pts (xy 263.271 101.727) (xy 291.592 101.727)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cfddd47-0913-4692-89bb-8a69d22be5a7) + ) + (wire (pts (xy 266.7 176.149) (xy 266.7 -64.897)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d0a8609-a059-4734-b988-da00f509164d) + ) + (wire (pts (xy 158.496 111.125) (xy 158.496 105.791)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d213c37-de80-490e-9f45-2814d3fc958b) + ) + (wire (pts (xy 388.366 396.748) (xy 388.366 317.754)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d416885-b8b5-4f5c-bc29-39c6376095e8) + ) + (wire (pts (xy 422.402 169.672) (xy 422.402 166.878)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d552623-2969-4b15-8623-368144f225e9) + ) + (wire (pts (xy 204.47 246.634) (xy 213.614 246.634)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653) + ) + (wire (pts (xy 430.784 -67.31) (xy 430.784 134.747)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d8571f7-688f-49ac-8d91-22508c277f45) + ) + (wire (pts (xy 406.781 325.628) (xy 261.62 325.628)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d8ae180-8beb-4868-96bd-080dbdab2951) + ) + (wire (pts (xy 130.556 -53.594) (xy 147.701 -53.594)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3db00451-fbc3-4980-9f8f-a31cdc894554) + ) + (wire (pts (xy 162.179 103.251) (xy 162.179 98.552)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dfbccca-f469-4a6f-a8bd-5f55435b5cfa) + ) + (wire (pts (xy 70.358 336.296) (xy 96.52 336.296)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e011a46-81bd-4ecd-b93e-57dffb1143e5) + ) + (wire (pts (xy 392.684 150.114) (xy 392.684 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e0392c0-affc-4114-9de5-1f1cfe79418a) + ) + (wire (pts (xy 367.284 115.316) (xy 367.284 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e3d55c8-e0ea-48fb-8421-a84b7cb7055b) + ) + (wire (pts (xy 365.252 343.408) (xy 365.252 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e57b728-64e6-4470-8f27-a43c0dd85050) + ) + (wire (pts (xy 88.646 194.056) (xy 88.646 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3eee2221-7af9-4d6a-ba79-a48c3fd1ac35) + ) + (wire (pts (xy 420.116 235.077) (xy 420.116 414.528)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3eff8f32-349a-4846-b484-abdc036c7174) + ) + (wire (pts (xy 416.814 162.56) (xy 416.814 168.148)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f1ab70d-3263-42b5-9c61-0360188ff2b7) + ) + (wire (pts (xy 68.834 291.846) (xy 48.006 291.846)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f2a6679-91d7-4b6c-bf5c-c4d5abb2bc44) + ) + (wire (pts (xy 495.046 141.478) (xy 495.046 148.844)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f43c2dc-daa2-45ba-b8ca-7ae5aebed882) + ) + (wire (pts (xy 341.884 344.17) (xy 346.456 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f8a5430-68a9-4732-9b89-4e00dd8ae219) + ) + (wire (pts (xy 263.271 51.943) (xy 263.271 101.727)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f9f133b-59b8-4791-b0ab-6fa861da9e3f) + ) + (wire (pts (xy 512.826 183.388) (xy 512.826 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fa05934-8ad1-40a9-af5c-98ad298eb412) + ) + (wire (pts (xy 522.224 179.578) (xy 522.224 -82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 401b5a0c-f502-4551-9d61-fa50a303707e) + ) + (wire (pts (xy 170.18 123.444) (xy 170.18 131.064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7) + ) + (wire (pts (xy 90.17 188.214) (xy 102.87 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 406d491e-5b01-46dc-a768-fd0992cdb346) + ) + (wire (pts (xy 194.437 -31.877) (xy 194.437 -34.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 407d0cd8-54f8-47a8-90cb-42c8a441d04f) + ) + (wire (pts (xy 509.016 105.156) (xy 511.175 105.156)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40800b4d-424c-4738-8041-4662989d2010) + ) + (wire (pts (xy 476.504 117.602) (xy 476.504 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4086cbd7-6ba7-4e63-8da9-17e60627ee17) + ) + (wire (pts (xy 545.338 135.89) (xy 545.338 134.112)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40b38567-9d6a-4691-bccf-1b4dbe39957b) + ) + (wire (pts (xy 356.362 200.66) (xy 356.362 204.978)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4107d40a-e5df-4255-aacc-13f9928e090c) + ) + (wire (pts (xy 425.831 -72.39) (xy 425.831 104.394)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4116bfc2-eab3-4c29-a983-44eacd9f10f5) + ) + (wire (pts (xy 142.24 321.564) (xy 261.62 321.564)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 411f21c0-dcce-4bff-ac0e-7c5571730a65) + ) + (wire (pts (xy 194.437 -39.497) (xy 190.246 -39.497)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 414a1d4c-7afc-4ffa-8579-88675cedc4ce) + ) + (wire (pts (xy 471.424 138.938) (xy 471.424 105.918)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 414f80f7-b2d5-43c3-a018-819efe44fe30) + ) + (wire (pts (xy 326.898 72.644) (xy 326.898 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4185c36c-c66e-4dbd-be5d-841e551f4885) + ) + (wire (pts (xy 204.47 160.274) (xy 209.169 160.274)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4198eb99-d244-457e-8768-395280df1a66) + ) + (wire (pts (xy 129.032 212.344) (xy 129.032 157.734)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41c18011-40db-4384-9ba4-c0158d0d9d6a) + ) + (wire (pts (xy 66.548 169.926) (xy -66.929 169.926)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41e442c4-3daa-4776-bd79-7990c939b354) + ) + (wire (pts (xy 606.679 -144.272) (xy 606.679 391.795)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41ef6d8e-078c-46e5-a743-15f86f94b1c5) + ) + (wire (pts (xy 411.226 130.302) (xy 411.226 -97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4208e41d-1d0a-40b9-bf94-fcbeb6562f9d) + ) + (wire (pts (xy 28.067 86.741) (xy 103.378 86.741)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4221b138-87b6-4073-a6e3-acb41ba2e601) + ) + (wire (pts (xy 214.376 -44.577) (xy 194.437 -44.577)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4223805d-8db1-4df1-b73a-3d99f37f1701) + ) + (wire (pts (xy 214.376 -102.997) (xy 214.376 -44.577)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4263a0e8-33fc-439f-9b56-889a4f5d7b26) + ) + (wire (pts (xy 523.24 -90.17) (xy 523.24 141.478)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4266f6dc-b108-467a-bc4a-756158b1a271) + ) + (wire (pts (xy 65.024 -100.203) (xy 127 -100.203)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42688fc6-3e24-4a56-9963-828da46dcdfb) + ) + (wire (pts (xy 463.677 -137.16) (xy 463.677 -67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42795956-f125-4166-860d-4316fe3791b8) + ) + (wire (pts (xy 560.324 216.408) (xy 566.166 216.408)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42bd0f96-a831-406e-abb7-03ed1bbd785f) + ) + (wire (pts (xy 626.11 -108.204) (xy 467.741 -108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 430cb5a0-6865-46d0-be60-5d722d3e8d80) + ) + (wire (pts (xy 465.201 -105.029) (xy 465.201 -157.607)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43758126-6174-43ff-b8a7-6d55ec68152a) + ) + (wire (pts (xy 444.627 370.967) (xy 444.627 391.795)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4375ab9a-cebb-448a-bb75-1fa4fe977171) + ) + (wire (pts (xy 64.389 -41.783) (xy 71.755 -41.783)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43b7aab0-ec9b-4c58-bfa1-8dda8fccb53f) + ) + (wire (pts (xy 221.742 145.034) (xy 221.742 129.286)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4431c0f6-83ea-4eee-95a8-991da2f03ccd) + ) + (wire (pts (xy 273.05 268.224) (xy 273.304 268.224)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 443bc73a-8dc0-4e2f-a292-a5eff00efa5b) + ) + (wire (pts (xy 393.192 206.502) (xy 393.192 200.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 444b2eaf-241d-42e5-8717-27a83d099c5b) + ) + (wire (pts (xy 134.62 99.822) (xy 134.62 91.821)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44509293-79e2-4fab-8860-b0cecb591afa) + ) + (wire (pts (xy 320.548 229.616) (xy 314.706 229.616)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44646447-0a8e-4aec-a74e-22bf765d0f33) + ) + (wire (pts (xy 15.494 179.197) (xy 15.494 168.021)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44a8a96b-3053-4222-9241-aa484f5ebe13) + ) + (wire (pts (xy 400.304 236.728) (xy 397.764 236.728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44b926bf-8bdd-4191-846d-2dfabab2cecb) + ) + (wire (pts (xy 88.646 208.28) (xy 87.63 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44c331f8-33e4-4ba1-bb1e-3071cc175bfd) + ) + (wire (pts (xy 16.891 200.152) (xy 16.891 200.787)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44e993be-f2df-4e61-a598-dfd6e106a208) + ) + (wire (pts (xy 403.733 335.661) (xy 591.566 335.661)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45245258-c97a-4586-bc43-2154c85c0ef6) + ) + (wire (pts (xy 76.708 366.014) (xy 76.708 363.728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45484f82-420e-44d0-a58e-382bb939dac5) + ) + (wire (pts (xy 132.334 56.642) (xy 185.674 56.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45836d49-cd5f-417d-b0f6-c8b43d196a36) + ) + (wire (pts (xy 14.478 200.152) (xy 16.891 200.152)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45b7fe01-a2fa-40c2-a3a2-4a9ae7c34dba) + ) + (wire (pts (xy 473.456 74.676) (xy 479.806 74.676)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 460147d8-e4b6-4910-88e9-07d1ddd6c2df) + ) + (wire (pts (xy 60.7568 327.4568) (xy 70.358 327.4568)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46108814-ef5b-491a-86ea-0d361e098bbd) + ) + (wire (pts (xy 220.98 279.146) (xy -19.05 279.146)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4612f9f0-1343-4ba7-94dd-7d3e9fc08dad) + ) + (wire (pts (xy 66.548 160.274) (xy 66.548 169.926)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46255620-16a2-4e81-9e4a-58dddcf89388) + ) + (wire (pts (xy -44.069 272.796) (xy -45.339 272.796)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 462f8e7e-09c6-4676-ba4f-fd07b2868aa8) + ) + (wire (pts (xy 308.356 220.218) (xy 312.928 220.218)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4632212f-13ce-4392-bc68-ccb9ba333770) + ) + (wire (pts (xy 129.032 251.714) (xy 138.43 251.714)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 463a3e5d-c034-4ff5-bf42-5b6a854ac6cb) + ) + (wire (pts (xy 515.62 150.368) (xy 515.62 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5) + ) + (wire (pts (xy 491.744 117.602) (xy 476.504 117.602)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 465137b4-f6f7-4d51-9b40-b161947d5cc1) + ) + (wire (pts (xy 526.923 -57.15) (xy 526.923 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4687c479-536f-4d7c-9d3c-04c9b426c43c) + ) + (wire (pts (xy 57.785 -12.7) (xy 108.712 -12.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 469553b1-52fa-4564-9359-73b74ba8f58f) + ) + (wire (pts (xy 391.033 -118.364) (xy 527.177 -118.364)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46a20b99-b616-4fa4-af79-eecf92b5c191) + ) + (wire (pts (xy 661.035 -112.141) (xy 661.035 315.595)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46aac001-1e0b-4992-9b6b-7fbd6860af0e) + ) + (wire (pts (xy 230.124 143.51) (xy 230.124 152.654)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46cbe85d-ff47-428e-b187-4ebd50a66e0c) + ) + (wire (pts (xy 326.898 72.644) (xy -44.069 72.644)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 471f517c-6d52-459f-9d7a-aedf176fc9e0) + ) + (wire (pts (xy 94.488 358.902) (xy 94.488 393.954)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47484446-e64c-4a82-88af-15de92cf6ad4) + ) + (wire (pts (xy 266.954 290.576) (xy 109.474 290.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 475ed8b3-90bf-48cd-bce5-d8f48b689541) + ) + (wire (pts (xy 560.324 208.534) (xy 560.324 -26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47890384-6eaa-420c-b9ae-e68a6a7f17b5) + ) + (wire (pts (xy 19.558 161.417) (xy 19.558 161.544)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47957453-fce7-4d98-833c-e34bb8a852a5) + ) + (wire (pts (xy 305.562 -141.224) (xy 487.299 -141.224)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47a2dd37-ad02-4281-9a66-8ff7ab400570) + ) + (wire (pts (xy 41.275 155.956) (xy 41.275 118.237)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47be24ee-e15b-4cee-b84b-350111ac1499) + ) + (wire (pts (xy 412.75 98.044) (xy 407.162 98.044)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48034820-9d25-4020-8e74-d44c1441e803) + ) + (wire (pts (xy 92.202 -11.557) (xy 216.916 -11.557)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48a8c1f5-4bcb-4560-9762-44aaefee4419) + ) + (wire (pts (xy 461.264 131.064) (xy 465.582 131.064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 494d4ce3-60c4-4021-8bd1-ab41a12b14ed) + ) + (wire (pts (xy 227.076 195.834) (xy 227.076 193.294)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49575217-40b0-4890-8acf-12982cca52b5) + ) + (wire (pts (xy 295.656 70.358) (xy 295.656 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49a65079-57a9-46fc-8711-1d7f2cab8dbf) + ) + (wire (pts (xy 17.145 153.162) (xy 17.145 161.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49b38f13-9789-4c6d-bbd5-2c69a9e19e69) + ) + (wire (pts (xy 66.294 300.736) (xy 66.294 310.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49b5f540-e128-4e08-bb09-f321f8e64056) + ) + (wire (pts (xy -158.6484 328.1172) (xy 67.818 328.1172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49b6f3dc-3080-4014-b859-f074bb3709a5) + ) + (wire (pts (xy 224.282 147.32) (xy 224.282 175.514)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49c3a7d7-9453-4986-bcff-387f274073df) + ) + (wire (pts (xy 363.22 388.62) (xy 363.22 392.938)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49d97c73-e37a-4154-9d0a-88037e40cc11) + ) + (wire (pts (xy 134.366 216.154) (xy 105.41 216.154)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49fec31e-3712-4229-8142-b191d90a97d0) + ) + (wire (pts (xy 204.47 190.754) (xy 207.772 190.754)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a54c707-7b6f-4a3d-a74d-5e3526114aba) + ) + (wire (pts (xy -17.018 -27.813) (xy 104.013 -27.813)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a56ac62-5ec2-46fc-a86c-9adf2d8fead1) + ) + (wire (pts (xy 367.538 179.324) (xy 367.538 184.658)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a7e3849-3bc9-4bb3-b16a-fab2f5cee0e5) + ) + (wire (pts (xy 207.772 190.754) (xy 207.772 125.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4aa97874-2fd2-414c-b381-9420384c2fd8) + ) + (wire (pts (xy 190.627 381.254) (xy 190.627 367.792)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b042b6c-c042-4cf1-ba6e-bd77c51dbedb) + ) + (wire (pts (xy 248.158 165.608) (xy 242.57 165.608)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b1fce17-dec7-457e-ba3b-a77604e77dc9) + ) + (wire (pts (xy 58.42 273.431) (xy 223.012 273.431)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b3cefd2-e7d7-4d25-8bb9-37548c3e8b03) + ) + (wire (pts (xy 23.622 221.488) (xy 23.622 227.838)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c) + ) + (wire (pts (xy -158.6484 172.3136) (xy -163.322 172.3136)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b8848f8-3081-4b1b-aba5-5524e3341fb1) + ) + (wire (pts (xy 74.93 263.398) (xy 79.248 263.398)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b) + ) + (wire (pts (xy 83.566 192.024) (xy 83.566 199.898)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4be2b882-65e4-4552-9482-9d622928de2f) + ) + (wire (pts (xy 65.024 -107.823) (xy 64.389 -107.823)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4be2d863-39fc-49fd-99c7-77790b42f677) + ) + (wire (pts (xy 504.317 -85.09) (xy 359.156 -85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c069f0b-8c76-44a0-a999-7bd72a3e8dee) + ) + (wire (pts (xy 561.848 155.702) (xy 561.848 122.682)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c8704fa-310a-4c01-8dc1-2b7e2727fea0) + ) + (wire (pts (xy 204.47 200.914) (xy 230.886 200.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cafb73d-1ad8-4d24-acf7-63d78095ae46) + ) + (wire (pts (xy 73.914 303.784) (xy 68.834 303.784)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ce9470f-5633-41bf-89ac-74a810939893) + ) + (wire (pts (xy -144.0688 179.5272) (xy -144.0688 182.118)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d245710-376a-4401-93aa-e52189f87cb5) + ) + (wire (pts (xy 94.996 76.708) (xy 103.378 76.708)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d2fd49e-2cb2-44d4-8935-68488970d97b) + ) + (wire (pts (xy 77.978 384.302) (xy 84.328 384.302)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d51bc15-1f84-46be-8e16-e836b10f854e) + ) + (wire (pts (xy 374.396 382.778) (xy 374.396 396.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d967454-338c-4b89-8534-9457e15bf2f2) + ) + (wire (pts (xy 333.756 131.572) (xy 329.946 131.572)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4db55cb8-197b-4402-871f-ce582b65664b) + ) + (wire (pts (xy 312.547 62.484) (xy 301.625 62.484)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4de018aa-33f9-4679-9406-fafd70ff0142) + ) + (wire (pts (xy 315.722 108.204) (xy 317.5 108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e27930e-1827-4788-aa6b-487321d46602) + ) + (wire (pts (xy 74.93 61.214) (xy 74.93 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e677390-a246-4ca0-954c-746e0870f88f) + ) + (wire (pts (xy 324.104 112.014) (xy 324.104 108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ec618ae-096f-4256-9328-005ee04f13d6) + ) + (wire (pts (xy 69.342 55.88) (xy 69.342 57.912)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ef07d45-f940-4cb6-bb96-2ddec13fd099) + ) + (wire (pts (xy 300.99 168.402) (xy 300.99 165.862)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e) + ) + (wire (pts (xy 465.328 151.384) (xy 468.884 151.384)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd) + ) + (wire (pts (xy 85.471 179.832) (xy 85.471 181.229)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fe15866-5386-4410-a27b-4fc15182a4f3) + ) + (wire (pts (xy 405.384 240.538) (xy 416.052 240.538)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 501880c3-8633-456f-9add-0e8fa1932ba6) + ) + (wire (pts (xy -179.0192 330.454) (xy -179.0192 191.6684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5026b5d2-3a30-4e33-81d5-d3487189a184) + ) + (wire (pts (xy 313.944 93.345) (xy 309.499 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 504cb9e4-5572-4208-bc9d-30a7efff8b9a) + ) + (wire (pts (xy 385.445 174.752) (xy 381.762 174.752)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5080cf4c-abda-4232-b279-44d0e6b9bde3) + ) + (polyline (pts (xy 56.896 293.878) (xy 56.896 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50a799a7-f8f3-4f13-9288-b10696e9a7da) + ) + + (wire (pts (xy 286.131 139.954) (xy 286.131 160.147)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5125c4d9-cf5c-4fe5-9dc8-c939e40fcd6f) + ) + (wire (pts (xy 359.156 -106.553) (xy 398.018 -106.553)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51320c8c-9c4a-48b8-a7b8-e2c8d1f2e5ad) + ) + (wire (pts (xy 599.44 223.012) (xy 599.44 -149.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 513c5122-3fbb-44b6-aa2c-74224719f915) + ) + (wire (pts (xy 69.85 262.382) (xy 69.85 267.716)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51cc007a-3378-4ce3-909c-71e94822f8d1) + ) + (wire (pts (xy 128.27 15.748) (xy 128.27 22.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51f5536d-48d2-4807-be44-93f427952b0e) + ) + (wire (pts (xy 413.004 215.9) (xy 408.686 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 524d7aa8-362f-459a-b2ae-4ca2a0b1612b) + ) + (wire (pts (xy 438.785 383.921) (xy 438.785 373.507)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 524dc8d0-13b4-43fe-b274-8ac08bc4b894) + ) + (wire (pts (xy 397.002 155.448) (xy 394.716 155.448)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52d326d4-51c9-4c17-8412-9aaf3e6cdf4c) + ) + (wire (pts (xy 399.542 253.746) (xy 399.542 251.968)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0) + ) + (wire (pts (xy 215.773 381.254) (xy 286.766 381.254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53ae21b8-f187-4817-8c27-1f06278d249b) + ) + (wire (pts (xy 406.4 200.914) (xy 406.4 202.438)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53e34696-241f-47e5-a477-f469335c8a61) + ) + (wire (pts (xy 473.456 64.516) (xy 473.456 62.738)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53fda1fb-12bd-4536-80e1-aab5c0e3fc58) + ) + (wire (pts (xy 240.1824 -69.977) (xy 190.246 -69.977)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 549cf489-0547-45e6-9073-7d23b43b406e) + ) + (wire (pts (xy 74.93 66.04) (xy 74.93 67.818)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112) + ) + (wire (pts (xy -171.3992 191.6684) (xy -171.3992 195.3768)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55217444-e629-4b25-b9cf-f11a193bd04e) + ) + (wire (pts (xy 43.688 139.7) (xy 43.688 309.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5576cd03-3bad-40c5-9316-1d286895d52a) + ) + (wire (pts (xy 664.972 318.77) (xy 406.781 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55870dc1-a751-4fb1-a7eb-fe844b64659b) + ) + (wire (pts (xy 63.881 212.598) (xy 63.881 207.137)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55fa5fa0-9426-4801-b40c-682e71189d8a) + ) + (wire (pts (xy 81.788 236.22) (xy 81.788 265.684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 560d05a7-84e4-403a-80d1-f287a4032b8a) + ) + (wire (pts (xy 393.446 98.044) (xy 393.446 56.388)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5641be26-f5e9-482f-8616-297f17f4eae2) + ) + (wire (pts (xy 265.684 307.213) (xy 240.284 307.213)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56801e6d-c4ab-4f7b-8289-2119a52fa227) + ) + (wire (pts (xy 272.796 -82.677) (xy 190.246 -82.677)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5684e95c-6824-46cf-8e72-881178a51d31) + ) + (wire (pts (xy 468.503 138.938) (xy 471.424 138.938)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56b53988-7c92-40d8-a754-683f4429d93e) + ) + (wire (pts (xy 96.52 336.296) (xy 96.52 212.344)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa) + ) + (wire (pts (xy 311.277 -144.145) (xy 311.277 151.638)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56dc9d1a-d125-4218-be7e-afbadad9f13c) + ) + (wire (pts (xy 88.392 156.21) (xy 71.882 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f0a67a-a93a-477a-9778-70fe2cfeeb5a) + ) + (wire (pts (xy 350.266 204.978) (xy 350.266 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5701b80f-f006-4814-81c9-0c7f006088a9) + ) + (wire (pts (xy 434.467 383.921) (xy 438.785 383.921)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57121f1d-c971-4830-b974-00f7d706f0c9) + ) + (wire (pts (xy 566.166 216.408) (xy 566.166 183.388)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48) + ) + (wire (pts (xy 320.548 214.122) (xy 320.548 214.376)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 576c6616-e95d-4f1e-8ead-dea30fcdc8c2) + ) + (wire (pts (xy 204.47 172.974) (xy 220.472 172.974)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 576f00e6-a1be-45d3-9b93-e26d9e0fe306) + ) + (wire (pts (xy 121.666 217.678) (xy 23.622 217.678)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5778dc8c-60fe-435e-b75a-362eae1b81ab) + ) + (wire (pts (xy 609.473 246.634) (xy 609.473 -142.113)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57881c8f-ea31-4450-bce6-89885e0a9bfd) + ) + (wire (pts (xy 508.762 156.845) (xy 504.825 156.845)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 578f33ff-8d12-4136-bb61-e55b7655fa5b) + ) + (wire (pts (xy 492.506 77.597) (xy 492.506 -44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57e17378-f1f7-42d0-9ad3-fb44c2d5cdc3) + ) + (wire (pts (xy 406.146 219.71) (xy 408.686 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58126faf-01a4-4f91-8e8c-ca9e47b48048) + ) + (wire (pts (xy 228.346 226.314) (xy 284.226 226.314)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 582622a2-fad4-4737-9a80-be9fffbba8ab) + ) + (wire (pts (xy 62.23 258.826) (xy 67.31 258.826)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58390862-1833-41dd-9c4e-98073ea0da33) + ) + (wire (pts (xy 134.874 49.784) (xy 110.744 49.784)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 583b0bf3-0699-44db-b975-a241ad040fa4) + ) + (wire (pts (xy 209.169 160.274) (xy 209.169 161.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 586ec748-563a-478a-82db-706fb951336a) + ) + (wire (pts (xy 284.226 139.954) (xy 286.131 139.954)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58728297-c362-4c70-a751-4d60ffa81b1a) + ) + (wire (pts (xy 204.47 205.994) (xy 234.188 205.994)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5889287d-b845-4684-b23e-663811b25d27) + ) + (wire (pts (xy 401.828 211.328) (xy 401.828 176.403)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5891aa7f-2e48-4492-8db1-d54810991036) + ) + (wire (pts (xy 432.308 86.868) (xy 495.554 86.868)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58a87288-e2bf-4c88-9871-a753efc69e9d) + ) + (wire (pts (xy 652.145 -116.586) (xy 652.145 311.658)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58c4b7f1-3bfe-4269-af43-3ce726a108d9) + ) + (wire (pts (xy 72.898 327.914) (xy 78.74 327.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59058a09-f800-497d-b8e1-cdf9632c6766) + ) + (wire (pts (xy 138.43 238.506) (xy 138.43 239.014)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 593b8647-0095-46cc-ba23-3cf2a86edb5e) + ) + (wire (pts (xy 537.972 150.622) (xy 537.972 -12.319)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 594594ee-9de8-45bc-b621-a9251877b0c2) + ) + (wire (pts (xy 64.389 -44.323) (xy 74.168 -44.323)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5968c877-7376-4e25-b8db-5e755d570d06) + ) + (wire (pts (xy 68.834 291.846) (xy 68.834 290.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59ee13a4-660e-47e2-a73a-01cfe11439e9) + ) + (wire (pts (xy 76.962 56.642) (xy 94.996 56.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59f60168-cced-43c9-aaa5-41a1a8a2f631) + ) + (wire (pts (xy 267.716 252.476) (xy 277.368 252.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59fc765e-1357-4c94-9529-5635418c7d73) + ) + (wire (pts (xy 422.402 179.832) (xy 422.402 169.672)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a222fb6-5159-4931-9015-19df65643140) + ) + (wire (pts (xy 519.557 -116.586) (xy 652.145 -116.586)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a29cdb1-72f4-490b-b940-70ed3bd8dac4) + ) + (wire (pts (xy 134.62 236.474) (xy 134.62 355.219)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a5b7060-983c-4989-878e-3126720e998d) + ) + (wire (pts (xy 487.299 -141.224) (xy 487.299 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a67196f-9472-4a8d-961f-eac8ec999d85) + ) + (wire (pts (xy 13.843 -22.098) (xy 134.747 -22.098)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5aa0e472-160b-49ac-864f-0fa7cd9cf9b0) + ) + (wire (pts (xy 15.494 -1.778) (xy 69.977 -1.778)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b29962f-685a-409c-915c-9c4a92ed442a) + ) + (wire (pts (xy 385.445 217.932) (xy 385.445 174.752)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b867f3d-ce38-4d21-95dd-fe114f76e9dc) + ) + (wire (pts (xy -158.6484 200.2028) (xy -130.0988 200.2028)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b99d151-1daf-40c3-9719-85a52014fc24) + ) + (wire (pts (xy 167.64 121.666) (xy 167.64 131.064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9) + ) + (wire (pts (xy 140.208 240.03) (xy 140.208 263.906)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba) + ) + (wire (pts (xy 110.617 -72.263) (xy 110.617 -49.149)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bd90e77-727e-49e2-881e-09f4ce3768d4) + ) + (wire (pts (xy 407.162 161.036) (xy 404.622 161.036)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c32b099-dba7-4228-8a5e-c2156f635ce2) + ) + (wire (pts (xy 254.635 315.595) (xy 254.635 318.516)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c60e2fd-e25b-42a0-9a7e-d020a279558a) + ) + (wire (pts (xy -43.815 283.845) (xy -57.404 283.845)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c652bfd-7025-48e8-86f2-beee7cb38bd7) + ) + (wire (pts (xy 204.47 221.234) (xy 238.506 221.234)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c7d6eaf-f256-4349-8203-d2e836872231) + ) + (wire (pts (xy 227.076 193.294) (xy 228.981 193.294)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c986000-fc83-4495-a50f-9f4b94e485bc) + ) + (wire (pts (xy 349.758 248.92) (xy 358.14 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d3d7893-1d11-4f1d-9052-85cf0e07d281) + ) + (wire (pts (xy 100.33 -115.443) (xy 64.389 -115.443)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d7cb436-106e-4464-b448-3b8bd128554c) + ) + (wire (pts (xy 522.986 248.666) (xy 576.58 248.666)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5da06777-0696-4bb2-8c9a-78c96b4b3e90) + ) + (wire (pts (xy 216.916 -11.557) (xy 216.916 -85.217)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5da0928a-9939-439c-bcbe-74de097058a8) + ) + (wire (pts (xy -43.815 293.497) (xy -43.815 283.845)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5da519c8-016f-4f2c-843d-d8fc54aa43f1) + ) + (wire (pts (xy -149.1488 171.9072) (xy -158.6484 171.9072)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5db0c6ed-f6b1-42a0-81f8-7f2873ee2ec1) + ) + (wire (pts (xy 96.012 212.598) (xy 63.881 212.598)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dffd1d6-faf9-418e-b9a0-84fb6b6b4454) + ) + (wire (pts (xy 83.312 332.994) (xy 83.312 308.356)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861) + ) + (wire (pts (xy 64.77 260.35) (xy 64.77 269.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e755161-24a5-4650-a6e3-9836bf074412) + ) + (wire (pts (xy 352.552 259.842) (xy 352.552 266.446)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e7c3a32-8dda-4e6a-9838-c94d1f165575) + ) + (wire (pts (xy 517.906 185.42) (xy 517.906 183.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eb16f0d-ef1e-4549-97a1-19cd06ad7236) + ) + (wire (pts (xy 514.477 -112.141) (xy 661.035 -112.141)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ed637ac-40ac-434c-a406-609e25d3658d) + ) + (wire (pts (xy 363.22 392.938) (xy 371.602 392.938)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eedf685-0df3-4da8-aded-0e6ed1cb2507) + ) + (wire (pts (xy 101.981 243.586) (xy 109.728 243.586)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ef603f2-8407-4088-9f29-0b64dd4b046f) + ) + (wire (pts (xy 219.964 129.286) (xy 217.932 129.286)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f059fcf-8990-4db3-9058-7f232d9600e1) + ) + (wire (pts (xy 352.552 266.446) (xy 356.616 266.446)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f31b97b-d794-46d6-bbd9-7a5638bcf704) + ) + (wire (pts (xy 74.93 250.952) (xy 74.93 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f48b0f2-82cf-40ce-afac-440f97643c36) + ) + (wire (pts (xy 286.131 160.147) (xy 284.226 160.147)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f7505cc-53a6-463b-b397-33ff845b1ac0) + ) + (wire (pts (xy 532.257 -125.476) (xy 532.257 -154.813)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f8cf0a3-5039-4ac4-8310-e201f8c0505f) + ) + (wire (pts (xy 465.201 -157.607) (xy 463.677 -157.607)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5fe5bd8d-5a86-4565-bd10-e08c6de9aa03) + ) + (wire (pts (xy 291.084 263.144) (xy 309.118 263.144)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ff19d63-2cb4-438b-93c4-e66d37a05329) + ) + (wire (pts (xy 307.721 -146.558) (xy 307.721 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 604495b3-3885-49af-8442-bcf3d7361dc4) + ) + (wire (pts (xy 70.358 327.4568) (xy 70.358 336.296)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 604632a1-4878-447c-bd94-6a7840097b64) + ) + (wire (pts (xy 376.047 -64.77) (xy 359.156 -64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60628c1f-f7b2-4a4b-be6f-62bc1a819432) + ) + (wire (pts (xy 19.558 161.417) (xy 24.384 161.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60960af7-b938-44a8-82b5-e9c36f2e6817) + ) + (wire (pts (xy 473.837 -158.623) (xy 473.837 -140.462)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60a7dcc1-b459-4b69-be02-f48b66a815f0) + ) + (wire (pts (xy 315.722 108.204) (xy 313.182 108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60aa0ce8-9d0e-48ca-bbf9-866403979e9b) + ) + (wire (pts (xy 284.226 141.224) (xy 284.226 159.004)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60fc0348-15d2-462c-9b87-dbb507b8717b) + ) + (wire (pts (xy 231.775 -100.457) (xy 190.246 -100.457)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61415144-ce8f-483a-82b7-e2e320f7f0b4) + ) + (wire (pts (xy 138.43 150.114) (xy 130.556 150.114)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6150c02b-beb5-4af1-951e-3666a285a6ea) + ) + (wire (pts (xy -38.354 276.225) (xy -57.404 276.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6150d77e-0e79-4609-a9ad-f39ba34a63b4) + ) + (wire (pts (xy 223.52 142.113) (xy 223.52 150.114)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61a18b62-4111-4a9d-8fca-04c4c6f90cc3) + ) + (wire (pts (xy 221.742 277.495) (xy 107.061 277.495)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61eb7a4f-888e-4082-9c74-1d94f58e7c05) + ) + (wire (pts (xy 329.946 137.668) (xy 323.596 137.668)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61fe4c73-be59-4519-98f1-a634322a841d) + ) + (wire (pts (xy 28.067 127.254) (xy 28.067 134.493)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 624c6565-c4fd-4d29-87af-f77dd1ba0898) + ) + (wire (pts (xy 364.49 144.78) (xy 421.386 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b) + ) + (wire (pts (xy 114.9096 -79.883) (xy 114.9096 -5.334)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 628d3dce-55ef-4e16-8333-7d51b0d0fcba) + ) + (wire (pts (xy 458.597 -158.623) (xy 458.597 -146.558)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 628f0a9f-12ce-4a6a-8ea2-8c2cdfc4161e) + ) + (wire (pts (xy 204.47 147.574) (xy 206.248 147.574)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2) + ) + (wire (pts (xy 64.389 -112.903) (xy 78.359 -112.903)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62ab9051-fded-466c-9df1-9b40d76dc590) + ) + (wire (pts (xy 64.389 -102.743) (xy 65.024 -102.743)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62af6e3c-7d06-438a-b62f-014ae3262ea1) + ) + (wire (pts (xy 560.324 -26.67) (xy 359.156 -26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62c6f8ce-78e5-4ab3-bb01-2fcb0df87aa6) + ) + (wire (pts (xy 122.682 10.414) (xy 122.682 12.446)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62cbcc21-2cec-41ab-be06-499e1a78d7e7) + ) + (wire (pts (xy 204.47 231.394) (xy 224.028 231.394)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62e8c4d4-266c-4e53-8981-1028251d724c) + ) + (wire (pts (xy 53.848 164.084) (xy 53.848 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62f15a9a-9893-486e-9ad0-ea43f88fc9e7) + ) + (wire (pts (xy 512.826 239.014) (xy 512.826 240.792)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6316acb7-63a1-40e7-8695-2822d4a240b5) + ) + (wire (pts (xy 217.678 246.634) (xy 213.614 246.634)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 631c7be5-8dc2-4df4-ab73-737bb928e763) + ) + (wire (pts (xy 406.146 219.71) (xy 406.146 221.996)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6325c32f-c82a-4357-b022-f9c7e76f412e) + ) + (wire (pts (xy 138.43 185.674) (xy 87.376 185.674)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63489ebf-0f52-43a6-a0ab-158b1a7d4988) + ) + (wire (pts (xy 190.246 -97.917) (xy 234.188 -97.917)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 636332c5-387a-4243-bc33-7882b1adfdac) + ) + (wire (pts (xy 295.021 -5.334) (xy 353.568 -5.334)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 636d72f3-00ad-4d53-9fbb-a696b42228b9) + ) + (wire (pts (xy 499.237 -153.416) (xy 527.177 -153.416)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63892cea-0371-47b0-925d-c40106168946) + ) + (wire (pts (xy 305.562 149.098) (xy 305.562 -141.224)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63ace593-9960-4666-bb08-47e6f085cee8) + ) + (wire (pts (xy -33.9852 231.14) (xy 97.79 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63c32171-5cbd-4e66-839f-34ecbc08e8a8) + ) + (wire (pts (xy 526.161 149.86) (xy 520.446 166.624)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64269ac3-771b-4c0d-91e0-eafc3dc4a07f) + ) + (wire (pts (xy 508.762 141.224) (xy 518.287 141.224)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6428332e-b689-4aa8-86bb-3bee31b6f177) + ) + (wire (pts (xy 56.134 95.25) (xy 81.534 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 645bdbdc-8f65-42ef-a021-2d3e7d74a739) + ) + (wire (pts (xy 289.941 -95.377) (xy 289.941 -6.985)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 646182ef-83d3-48ef-8f13-39bd3cf49786) + ) + (wire (pts (xy 534.924 116.459) (xy 534.924 159.512)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6476e233-d260-45fe-84d2-9ade7d0003a0) + ) + (wire (pts (xy 488.95 204.724) (xy 488.95 201.676)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 653a86ba-a1ae-4175-9d4c-c788087956d0) + ) + (wire (pts (xy 359.156 -31.75) (xy 556.006 -31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6540157e-dd56-419f-8e12-b9f763e7e5a8) + ) + (wire (pts (xy 73.152 57.531) (xy 73.152 61.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6579642b-a152-47f7-af0e-0d8866bdfcb8) + ) + (wire (pts (xy 466.217 -134.747) (xy 466.217 -69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65908b01-f0a0-46e1-84f2-bf49d46af2a7) + ) + (wire (pts (xy 359.156 -80.01) (xy 385.572 -80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6597e724-ffad-43f1-9619-cca25cced87f) + ) + (wire (pts (xy 220.472 148.463) (xy 304.165 148.463)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65d0582b-c8a1-45a8-a0e9-e797f01caa63) + ) + (wire (pts (xy 235.077 158.75) (xy 235.077 144.907)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65e58d89-f213-4051-b36b-7b3454867ad5) + ) + (wire (pts (xy -57.404 301.625) (xy -52.832 301.625)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65f89bc6-cda1-4481-b360-d7547150b31e) + ) + (wire (pts (xy 46.101 -18.542) (xy 46.101 163.703)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 663e5097-d637-4088-8d27-2d72ff835abc) + ) + (wire (pts (xy 508.762 179.324) (xy 508.762 156.845)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 664ea685-f665-4315-aadf-581a656f41df) + ) + (wire (pts (xy 76.708 363.728) (xy 116.84 363.728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 665081dc-8354-4d41-8855-bde8901aee4c) + ) + (wire (pts (xy -55.372 299.085) (xy -55.372 296.545)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 666dc23c-d707-448f-841d-377a6e08a250) + ) + (wire (pts (xy 69.977 -1.778) (xy 69.977 -30.099)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 669e2f76-dce7-4b88-b383-d3587e6cc0cc) + ) + (wire (pts (xy 313.182 108.204) (xy 307.086 108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66bc2bca-dab7-4947-a0ff-403cdaf9fb89) + ) + (wire (pts (xy 82.423 65.151) (xy 82.423 76.708)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66cc4ddc-a52d-4ad7-986e-68f000539802) + ) + (wire (pts (xy 147.701 28.321) (xy 148.336 28.321)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66ee8aac-1ba7-441e-b772-397a32c7c475) + ) + (wire (pts (xy 127 -100.203) (xy 127 -69.723)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67320774-1745-4c89-bec7-2213f7bb7ecc) + ) + (wire (pts (xy 130.81 220.98) (xy 23.622 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6762c669-2824-49a2-8bd4-3f19091dd75a) + ) + (wire (pts (xy 514.858 111.506) (xy 514.858 78.486)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 680c3e83-f590-4924-85a1-36d51b076683) + ) + (wire (pts (xy 86.487 176.911) (xy 57.785 176.911)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 689e49bf-7f41-4390-9297-8151fb94eb64) + ) + (wire (pts (xy 399.288 127) (xy 399.288 -100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68f7174d-ce7a-41b4-89f8-dd7e3ded57a1) + ) + (wire (pts (xy 399.542 168.402) (xy 399.542 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 691af561-538d-4e8f-a916-26cad45eb7d6) + ) + (wire (pts (xy 422.402 166.878) (xy 428.244 160.909)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 692d87e9-6b70-46cc-9c78-b75193a484cc) + ) + (wire (pts (xy 277.368 252.476) (xy 277.368 -128.143)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69675058-6b96-42da-8df5-92aaf6930be8) + ) + (wire (pts (xy 323.596 137.668) (xy 323.596 141.224)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 699feae1-8cdd-4d2b-947f-f24849c73cdb) + ) + (wire (pts (xy 491.744 176.022) (xy 491.744 181.356)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a0919c2-460c-4229-b872-14e318e1ba8b) + ) + (wire (pts (xy 214.63 116.332) (xy 214.63 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a25c4e1-7129-430c-892b-6eecb6ffdb47) + ) + (wire (pts (xy 349.758 234.442) (xy 349.758 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a2b20ae-096c-4d9f-92f8-2087c865914f) + ) + (wire (pts (xy 301.244 150.368) (xy 301.244 155.702)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a3aff19-5e5c-466c-80b5-82ab994aaee1) + ) + (wire (pts (xy 295.021 -110.617) (xy 295.021 -5.334)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a5b3eea-de35-4a54-8316-e56ea2a634e4) + ) + (wire (pts (xy 551.688 146.05) (xy 551.688 147.828)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6aa022fb-09ce-49d9-86b1-c73b3ee817e2) + ) + (wire (pts (xy 210.82 106.172) (xy 214.63 106.172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ac3ab53-7523-4805-bfd2-5de19dff127e) + ) + (wire (pts (xy -158.6484 200.2028) (xy -158.6484 328.1172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ada323e-a101-4598-8470-a7aa1960c761) + ) + (wire (pts (xy 134.62 91.821) (xy 81.534 91.821)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ae901e7-3f37-4fdc-9fbb-f82666744826) + ) + (wire (pts (xy 423.672 225.298) (xy 423.672 223.012)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6afc19cf-38b4-47a3-bc2b-445b18724310) + ) + (wire (pts (xy 356.362 190.5) (xy 356.362 189.738)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd) + ) + (wire (pts (xy 192.278 91.059) (xy 165.735 91.059)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b847b8a-c935-4366-8f7b-7cdbe96384da) + ) + (wire (pts (xy 383.286 297.18) (xy 383.286 367.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b8ac91e-9d2b-49db-8a80-1da009ad1c5e) + ) + (wire (pts (xy 204.47 233.934) (xy 223.012 233.934)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8) + ) + (wire (pts (xy 286.766 344.17) (xy 286.766 381.254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ba19f6c-fa3a-4bf3-8c57-119de0f02b65) + ) + (wire (pts (xy 256.286 174.498) (xy 256.286 159.004)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bd115d6-07e0-45db-8f2e-3cbb0429104f) + ) + (wire (pts (xy 349.758 223.266) (xy 360.934 223.266)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2) + ) + (wire (pts (xy 509.016 111.506) (xy 509.016 105.156)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c715627-9fe9-4566-9325-aed34f2a0ebd) + ) + (wire (pts (xy 506.476 228.854) (xy 506.476 227.076)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ce41a48-c5e2-4d5f-8548-1c7b5c309a8a) + ) + (wire (pts (xy 240.792 239.014) (xy 241.808 239.014)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75) + ) + (wire (pts (xy 89.154 214.122) (xy 89.154 258.318)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d1e2df9-cc89-4e18-a541-699f0d20dd45) + ) + (wire (pts (xy 217.678 271.272) (xy 217.678 246.634)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32) + ) + (wire (pts (xy 58.42 270.383) (xy 58.42 273.431)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d401fdd-c1f6-4321-96c4-4843b6143be9) + ) + (wire (pts (xy 136.144 83.185) (xy 161.163 83.185)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dc32d24-5ef0-4c0e-ad26-4d147b147b28) + ) + (wire (pts (xy 391.033 173.101) (xy 391.033 -118.364)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dfa921c-8a4f-4fcf-a0e7-8718b6271ea9) + ) + (wire (pts (xy 304.165 148.463) (xy 304.165 -145.288)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e24aa9b-c7e6-40f2-905b-b9c541e0e2f6) + ) + (wire (pts (xy 19.177 186.309) (xy 18.542 186.309)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e416a78-df14-48ee-9842-e6e24081191e) + ) + (wire (pts (xy 45.974 163.703) (xy 46.101 163.703)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e508bf2-c65e-4107-867d-a3cf9a86c69e) + ) + (wire (pts (xy 57.785 176.911) (xy 57.785 -12.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e9aab82-e6c0-4960-99af-e7c5a83d520f) + ) + (wire (pts (xy 127.635 56.642) (xy 127.635 51.943)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ee71a3c-fedb-4cc6-a3c6-f3d6f3ac6767) + ) + (wire (pts (xy 307.721 101.6) (xy 307.594 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f13bfbf-7f19-4b33-9de2-b8c15c8c88ee) + ) + (wire (pts (xy 398.526 133.35) (xy 398.526 131.572)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0) + ) + (wire (pts (xy 391.287 359.918) (xy 426.847 359.918)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f3f676d-a47a-4e8c-8d6e-02275a3490d7) + ) + (wire (pts (xy 495.046 127.762) (xy 495.046 141.478)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f44a349-1ba9-4965-b217-aa1589a07228) + ) + (wire (pts (xy 152.4 -137.16) (xy 463.677 -137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f52f85c-aac3-4a99-8226-7744ad08fdc3) + ) + (wire (pts (xy 247.65 218.44) (xy 262.382 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f580eb1-88cc-489d-a7ca-9efa5e590715) + ) + (wire (pts (xy 374.142 297.18) (xy 374.142 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f5a9f10-1b2c-4916-b4e5-cb5bd0f851a0) + ) + (wire (pts (xy 449.58 110.998) (xy 453.644 110.998)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fd21292-6577-40e1-bbda-18906b5e9f6f) + ) + (wire (pts (xy 125.222 159.512) (xy 76.708 159.512)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ff9bb63-d6fd-4e32-bb60-7ac65509c2e9) + ) + (wire (pts (xy 194.437 -44.577) (xy 194.437 -42.037)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fff55eb-076f-4a2f-86d3-091fcb2366e9) + ) + (wire (pts (xy 309.118 263.144) (xy 309.118 275.082)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 701e1517-e8cf-46f4-b538-98e721c97380) + ) + (wire (pts (xy 360.934 241.3) (xy 398.272 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70abf340-8b3e-403e-a5e2-d8f35caa2f87) + ) + (wire (pts (xy 9.271 204.724) (xy 9.271 -20.955)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70cf3e26-e279-4e61-a2f5-466ff5585d49) + ) + (wire (pts (xy 359.156 -44.45) (xy 492.506 -44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 710852c3-85af-44f2-af12-adc5798f2795) + ) + (wire (pts (xy 77.978 374.142) (xy 77.978 372.364)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7114de55-86d9-46c1-a412-07f5eb895435) + ) + (wire (pts (xy 215.265 119.888) (xy 239.268 119.888)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 713e0777-58b2-4487-baca-60d0ebed27c3) + ) + (wire (pts (xy 484.124 84.328) (xy 484.124 77.597)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7147b342-4ca8-4694-a1ec-b615c151a5d0) + ) + (wire (pts (xy 323.596 195.199) (xy 323.596 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7167e0fb-15b0-446d-969c-ecf63e50097d) + ) + (wire (pts (xy 103.378 86.741) (xy 103.378 76.708)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 717b25a7-c9c2-4f6f-b744-a96113325c99) + ) + (wire (pts (xy 228.981 -55.245) (xy 190.246 -55.245)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7184670c-7656-49ee-9a6f-5771dc120d69) + ) + (wire (pts (xy 281.178 252.476) (xy 281.178 -125.603)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7195a7f5-2a0f-4cae-8649-2cc5cbdffe2b) + ) + (polyline (pts (xy 81.788 293.878) (xy 56.896 293.878)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71a9f036-1f13-462e-ac9e-81caaaa7f807) + ) + + (wire (pts (xy 138.43 228.854) (xy 102.87 228.854)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48) + ) + (wire (pts (xy 66.294 188.214) (xy 80.01 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 722636b6-8ff0-452f-9357-23deb317d921) + ) + (wire (pts (xy 480.568 201.676) (xy 488.95 201.676)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7233cb6b-d8fd-4fcd-9b4f-8b0ed19b1b12) + ) + (wire (pts (xy 399.542 103.632) (xy 397.002 103.632)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72366acb-6c86-4134-89df-01ed6e4dc8e0) + ) + (wire (pts (xy 212.09 78.74) (xy 212.09 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7247fe96-7885-4063-8282-ea2fd2b28b0d) + ) + (wire (pts (xy 24.638 252.73) (xy 74.93 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 725579dd-9ec6-473d-8843-6a11e99f108c) + ) + (wire (pts (xy 505.206 220.726) (xy 505.206 206.502)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7255cbd1-8d38-4545-be9a-7fc5488ef942) + ) + (wire (pts (xy 320.548 203.962) (xy 331.724 203.962)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 725cdf26-4b92-46db-bca9-10d930002dda) + ) + (wire (pts (xy 588.518 -158.623) (xy 539.877 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72733f59-fc61-4ff2-8fe5-0440be71758a) + ) + (wire (pts (xy 48.006 162.814) (xy 48.006 291.846)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7273dd21-e834-41d3-b279-d7de727709ca) + ) + (wire (pts (xy 397.002 103.632) (xy 397.002 101.092)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7274c82d-0cb9-47de-b093-7d848f491410) + ) + (wire (pts (xy 347.853 386.08) (xy 347.853 404.241)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 728dda43-38f9-4d13-b2a9-59e599c86d99) + ) + (wire (pts (xy 508.762 150.368) (xy 515.62 150.368)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72cc7949-68f8-4ef8-adcb-a65c1d042672) + ) + (wire (pts (xy 244.348 151.638) (xy 311.277 151.638)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72e9c34a-4fbc-4581-8ad2-e93bc3c3ccb0) + ) + (wire (pts (xy 271.399 142.113) (xy 271.399 45.847)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72f9157b-77da-4a6d-9880-0711b21f6e23) + ) + (wire (pts (xy -35.179 273.685) (xy -57.404 273.685)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73486422-c87a-4ad4-8fe5-a3ffc70cb20a) + ) + (wire (pts (xy 25.654 177.673) (xy 45.974 177.673)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73a6ec8e-8641-4014-be28-4611d398be32) + ) + (wire (pts (xy 105.918 76.708) (xy 105.918 70.358)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73ee7e03-97a8-4121-b568-c25f3934a935) + ) + (wire (pts (xy 87.63 210.058) (xy 87.63 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73fbe87f-3928-49c2-bf87-839d907c6aef) + ) + (wire (pts (xy 217.932 108.966) (xy 234.188 108.966)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73fd78b9-9aa5-40d0-adab-1e5886c90dd7) + ) + (wire (pts (xy 95.25 171.196) (xy 95.25 172.466)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74012f9c-57f0-452a-9ea1-1e3437e264b8) + ) + (wire (pts (xy 613.791 -140.462) (xy 613.791 254.508)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7401f61b-dc36-4f5a-ba3e-b101a22bf1fc) + ) + (wire (pts (xy 442.595 -8.89) (xy 300.228 -8.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 740c9c9e-c377-4082-a7c2-2dfeb8296429) + ) + (wire (pts (xy 274.32 -80.137) (xy 274.32 144.907)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7410568a-af90-4a4e-a67d-5fd1863e0d95) + ) + (wire (pts (xy 468.757 -158.623) (xy 468.757 -135.763)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 741561bb-6157-4c58-bb00-0f2a32b21238) + ) + (wire (pts (xy 94.996 56.642) (xy 127.635 56.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 741879e3-3045-40c7-849d-7f437c35ee91) + ) + (wire (pts (xy 64.389 -84.963) (xy 152.4 -84.963)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 745a27e0-733b-4d2b-b0f0-d4c1457e893e) + ) + (wire (pts (xy 219.456 249.174) (xy 212.344 249.174)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28) + ) + (wire (pts (xy 648.462 308.61) (xy 325.12 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74d2d2c1-d0d5-412f-ab06-bb67df0a3900) + ) + (wire (pts (xy 220.98 236.474) (xy 220.98 279.146)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a) + ) + (wire (pts (xy 162.179 91.821) (xy 134.62 91.821)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 751752b1-1f0f-490c-ba43-2d34c357b41e) + ) + (wire (pts (xy 204.47 203.454) (xy 244.602 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 752417ee-7d0b-4ac8-a22c-26669881a2ab) + ) + (wire (pts (xy 138.43 142.494) (xy 138.43 111.125)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 755d3d18-6013-47c4-9133-c783ae2db259) + ) + (wire (pts (xy 130.556 139.7) (xy 43.688 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 755f94aa-38f0-4a64-a7c7-6c71cb18cddf) + ) + (wire (pts (xy 87.376 182.372) (xy 87.376 179.832)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7582a530-a952-46c1-b7eb-75006524ba29) + ) + (wire (pts (xy 489.077 -158.623) (xy 489.077 -142.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 758f4e53-9507-488a-960b-2e8e487b7ac8) + ) + (wire (pts (xy 204.47 251.714) (xy 210.566 251.714)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b) + ) + (wire (pts (xy 399.796 357.378) (xy 402.844 350.774)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75b944f9-bf25-4dc7-8104-e9f80b4f359b) + ) + (wire (pts (xy 79.375 -51.943) (xy 64.389 -51.943)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75d5a810-84fd-42c4-a0b7-6b82d09662a2) + ) + (wire (pts (xy 480.568 186.436) (xy 484.124 186.436)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 761c8e29-382a-475c-a37a-7201cc9cd0f5) + ) + (wire (pts (xy 81.28 172.974) (xy 102.87 172.974)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 765684c2-53b3-4ef7-bd1b-7a4a73d87b76) + ) + (wire (pts (xy 220.98 -77.597) (xy 220.98 -76.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 767e3782-90bf-4d7f-b1ef-719aa7013187) + ) + (wire (pts (xy 434.467 382.143) (xy 434.467 383.921)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76862e4a-1816-475c-9943-666036c637f7) + ) + (wire (pts (xy 471.297 -138.43) (xy 471.297 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76a87642-211c-44f2-a488-190d6dc3728e) + ) + (wire (pts (xy 346.964 314.452) (xy 346.964 321.056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354) + ) + (wire (pts (xy 79.756 265.684) (xy 81.788 265.684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76ee303c-1cfc-45a8-ae72-af3efaba6c47) + ) + (wire (pts (xy 194.437 -44.577) (xy 194.437 -49.657)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77121855-7958-40c5-81ca-b386a811e84c) + ) + (wire (pts (xy 219.71 38.1) (xy 219.71 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 771cb5c1-62ba-4cca-999e-cdcbe417213c) + ) + (wire (pts (xy 105.41 -62.103) (xy 105.41 -23.368)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 773bdc81-beec-4a4b-9485-1c1dd15c6e5a) + ) + (wire (pts (xy 96.774 125.476) (xy 96.774 156.464)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7760a75a-d74b-4185-b34e-cbc7b2c339b6) + ) + (wire (pts (xy 202.946 -26.797) (xy 194.437 -26.797)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77cfe682-cc36-4979-823b-05ea5f187ba7) + ) + (wire (pts (xy 198.12 -18.796) (xy 198.12 96.012)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77f65cef-2bce-414e-8b99-31f9cd0b59b0) + ) + (wire (pts (xy 130.302 11.176) (xy 148.336 11.176)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 784e3230-2053-4bc9-a786-5ac2bd0df0f5) + ) + (polyline (pts (xy 56.896 279.4) (xy 81.788 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78a228c9-bbf0-49cf-b917-2dec23b390df) + ) + + (wire (pts (xy -17.018 278.13) (xy -17.018 -27.813)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78d3a4a0-e724-44e1-963f-de88a39d4158) + ) + (wire (pts (xy 149.352 -18.796) (xy 149.352 -67.183)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78de0256-23a6-42c0-8b5a-1425aa40457a) + ) + (wire (pts (xy 291.084 278.384) (xy 291.084 273.304)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0) + ) + (wire (pts (xy 138.43 198.374) (xy 126.365 198.374)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 792ace59-9f73-49b7-92df-01568ab2b00b) + ) + (wire (pts (xy 349.758 248.92) (xy 342.646 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79476267-290e-445f-995b-0afd0e11a4b5) + ) + (wire (pts (xy 291.592 101.727) (xy 291.592 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7983b95c-14e4-4dec-ab4e-09c81071d9de) + ) + (wire (pts (xy 263.906 176.149) (xy 266.7 176.149)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7984c59d-64f6-424c-8273-5bab21ab292d) + ) + (wire (pts (xy 456.311 5.461) (xy 456.311 -149.606)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79e1811e-908a-4ac6-a9ea-8cf4bbc9a51d) + ) + (wire (pts (xy -42.037 288.925) (xy -57.404 288.925)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a25e2e8-d883-44ae-8207-1f946e50b1fa) + ) + (wire (pts (xy 463.55 138.811) (xy 455.168 138.811)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a332b0c-4cba-438b-85c1-9efe2690fb62) + ) + (wire (pts (xy 261.62 325.628) (xy 261.62 321.564)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a4a5c0e-c639-4f33-aa7f-cf5502abd572) + ) + (wire (pts (xy 354.076 327.914) (xy 365.252 327.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a74c4b1-6243-4a12-85a2-bc41d346e7aa) + ) + (wire (pts (xy 424.18 252.73) (xy 429.514 235.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a879184-fad8-4feb-afb5-86fe8d34f1f7) + ) + (wire (pts (xy 438.785 373.507) (xy 605.155 373.507)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7aad0cca-fb50-4041-9a10-5380cb0860ac) + ) + (wire (pts (xy 87.376 198.882) (xy 87.376 197.866)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ac1ccc5-26c5-4b73-8425-7bbec927bf24) + ) + (wire (pts (xy 331.724 203.962) (xy 331.724 209.296)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7acd513a-187b-4936-9f93-2e521ce33ad5) + ) + (wire (pts (xy 241.554 219.964) (xy 248.158 219.964)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b044939-8c4d-444f-b9e0-a15fcdeb5a86) + ) + (wire (pts (xy 313.69 314.452) (xy 346.964 314.452)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b766787-7689-40b8-9ef5-c0b1af45a9ae) + ) + (wire (pts (xy 499.237 -158.623) (xy 499.237 -153.416)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b8f4734-c91c-4c35-bc25-8ba9e0a60f64) + ) + (wire (pts (xy 15.24 189.992) (xy 15.24 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7be13a36-eb8e-440f-aaac-2fd6665d9f61) + ) + (wire (pts (xy 315.722 93.726) (xy 315.722 92.964)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bfba61b-6752-4a45-9ee6-5984dcb15041) + ) + (wire (pts (xy 102.87 228.854) (xy 102.87 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e) + ) + (wire (pts (xy 78.74 327.914) (xy 78.74 313.182)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c11b885-29b4-4eb2-b782-dde8e3724f0c) + ) + (wire (pts (xy 359.156 -59.69) (xy 379.73 -59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c1dbd41-291a-4aad-bf3b-16497f84df7b) + ) + (wire (pts (xy 287.274 97.663) (xy 287.274 98.806)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ca09fd4-d48a-436a-8dbe-2bf5119efecb) + ) + (wire (pts (xy 404.622 161.036) (xy 404.622 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ca71fec-e7f1-454f-9196-b80d15925fff) + ) + (wire (pts (xy 304.546 313.563) (xy 304.546 316.484)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7caf98e4-1466-4c74-8252-9e06859f5812) + ) + (wire (pts (xy 468.122 246.634) (xy 609.473 246.634)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7cbc8c8d-fbc1-4902-ac93-6c241131aada) + ) + (wire (pts (xy -161.6456 163.3728) (xy -158.0896 163.3728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7cddc8be-8c37-426f-8b07-eb0a2fea0c16) + ) + (wire (pts (xy 43.688 309.88) (xy 63.754 309.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ce4aab5-8271-4432-a4b1-bff168293b45) + ) + (wire (pts (xy 404.622 162.56) (xy 416.814 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6) + ) + (wire (pts (xy 390.398 223.012) (xy 390.398 150.114)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d0dab95-9e7a-486e-a1d7-fc48860fd57d) + ) + (wire (pts (xy 395.986 172.085) (xy 385.572 172.085)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d3a9372-4f99-452e-9767-51a31df66106) + ) + (wire (pts (xy 351.028 321.056) (xy 351.028 333.121)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d86ba37-b98f-40a5-b35f-96db8417b185) + ) + (wire (pts (xy 359.156 -52.07) (xy 529.971 -52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7da6dd22-6820-4812-8b65-ceb1440c016d) + ) + (wire (pts (xy 430.784 -67.31) (xy 463.677 -67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7da78911-dd6f-4bbd-9a74-8a3476ec1fb5) + ) + (wire (pts (xy 395.986 127) (xy 395.986 131.572)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7df9ce6f-7f38-4582-a049-7f92faf1abc9) + ) + (wire (pts (xy 340.868 140.97) (xy 340.868 149.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53) + ) + (wire (pts (xy 545.338 146.05) (xy 551.688 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e498af5-a41b-4f8f-8a13-10c00a9160aa) + ) + (wire (pts (xy 383.921 -82.55) (xy 383.921 -54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e509ce7-bdc7-45fb-b2d0-c14a958a5480) + ) + (wire (pts (xy 42.545 167.132) (xy 45.974 167.132)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e90deb5-aef9-4d2b-a440-4cb0dbfaaa93) + ) + (wire (pts (xy 371.602 396.748) (xy 388.366 396.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7eb32ed1-4320-49ba-8487-1c88e4824fe3) + ) + (wire (pts (xy 299.466 252.476) (xy 299.466 273.304)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f29ecb0-6265-4d60-8278-7704387a2057) + ) + (wire (pts (xy 374.142 327.66) (xy 365.252 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f2b3ce3-2f20-426d-b769-e0329b6a8111) + ) + (wire (pts (xy 413.004 211.328) (xy 401.828 211.328)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f4b7c2c-9af8-4317-9338-c2a6d8990ded) + ) + (wire (pts (xy 594.106 -151.003) (xy 506.857 -151.003)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f7833f4-976f-4a80-99c4-69f2976ed565) + ) + (wire (pts (xy 231.902 140.462) (xy 231.902 130.937)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f9c0307-e84d-4f8a-93be-34fc4b3feb89) + ) + (wire (pts (xy 228.092 122.936) (xy 251.46 122.936)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fc6eda3-a41a-4ab9-935d-37e18cb30594) + ) + (wire (pts (xy 605.155 -146.431) (xy 481.457 -146.431)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fd11519-eb9e-4413-8ca2-e43e38c699f6) + ) + (wire (pts (xy 65.278 329.438) (xy -175.768 329.438)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fec40b1-6586-412e-a9b5-1933d1e099f3) + ) + (wire (pts (xy 142.24 357.124) (xy 142.24 321.564)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80095e91-6317-4cfb-9aea-884c9a1accc5) + ) + (wire (pts (xy 248.158 223.139) (xy 246.253 223.139)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 802bd717-75a4-4efc-bdc3-ab512c6bce65) + ) + (wire (pts (xy 149.352 -67.183) (xy 64.389 -67.183)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 807db03e-eb6e-4455-9049-0461408189fa) + ) + (wire (pts (xy 129.032 258.318) (xy 129.032 358.902)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80ace02d-cb21-4f08-bc25-572a9e56ff99) + ) + (wire (pts (xy 232.156 149.098) (xy 305.562 149.098)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8162f841-188b-4932-8603-536d516e6ca1) + ) + (wire (pts (xy 461.772 234.696) (xy 461.772 232.918)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81b95d0d-8967-4ed1-8d40-39925d015ae8) + ) + (wire (pts (xy 51.435 163.576) (xy 51.435 179.197)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8202d57b-d5d2-4a80-8c03-3c6bdbbd1ddf) + ) + (wire (pts (xy -144.0688 182.118) (xy -130.0988 182.118)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82055ffe-6819-4f61-ba03-653f59992fcd) + ) + (wire (pts (xy 560.324 214.884) (xy 564.896 214.884)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 825ca21e-b6a1-4e84-a612-f8e2fae8ac04) + ) + (wire (pts (xy 559.943 -29.21) (xy 359.156 -29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82782dc2-cb84-4d0c-b85e-b3903aca1e13) + ) + (wire (pts (xy 411.226 130.302) (xy 406.146 130.302)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82907d2e-4560-49c2-9cfc-01b127317195) + ) + (wire (pts (xy 465.582 131.064) (xy 465.582 -36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82941cb3-7e8d-4836-8b43-647cd4390ab6) + ) + (wire (pts (xy 78.359 -125.603) (xy 64.389 -125.603)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82bf2831-f69a-4cf1-ad28-e7c6c4e8c86f) + ) + (wire (pts (xy 217.17 35.56) (xy 217.17 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 830aee7f-dfce-42cd-85ef-6370f6dc02f5) + ) + (wire (pts (xy 407.924 231.648) (xy 410.972 231.648)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8313e187-c805-4927-8002-313a51839243) + ) + (wire (pts (xy 62.23 255.524) (xy 71.12 255.524)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83184391-76ed-44f0-8cd0-01f89f157bdb) + ) + (wire (pts (xy -66.929 236.728) (xy -42.037 236.728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83250ce3-cee5-48b2-8a3e-b1e7887d6a15) + ) + (wire (pts (xy 81.534 81.788) (xy -52.197 81.788)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 833beff7-0439-4b25-8f23-ed949f699ed1) + ) + (wire (pts (xy 202.311 258.191) (xy 244.475 258.191)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 835d4ac3-3fb1-48d9-8c28-6093fe917376) + ) + (wire (pts (xy 215.773 161.417) (xy 215.773 381.254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83d85a81-e014-4ee9-9433-a9a045c80893) + ) + (wire (pts (xy 246.38 -123.825) (xy 246.38 -108.077)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84315919-677c-4909-a747-2c92c96d5870) + ) + (wire (pts (xy 109.728 244.094) (xy 138.43 244.094)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5) + ) + (wire (pts (xy 79.756 265.684) (xy 79.756 310.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 844f01a0-ac23-4a99-910e-4e91c579bb2b) + ) + (wire (pts (xy 641.477 -127.127) (xy 524.637 -127.127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 845f389f-ac5c-4af4-aa4f-3b1355707a5f) + ) + (wire (pts (xy 20.828 192.024) (xy 20.828 180.213)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 846ce0b5-f99e-4df4-8803-62f82ae6f3e3) + ) + (wire (pts (xy 416.56 202.438) (xy 416.56 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 848c6095-3966-404d-9f2a-51150fd8dc54) + ) + (wire (pts (xy 338.836 225.298) (xy 423.672 225.298)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84d296ba-3d39-4264-ad19-947f90c54396) + ) + (wire (pts (xy 12.954 189.992) (xy 15.24 189.992)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84d5cf13-52aa-4648-82e7-8be6e886a6b2) + ) + (wire (pts (xy 124.206 42.037) (xy 124.206 155.194)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84daabe5-262d-44f3-8073-3a5eff98700f) + ) + (wire (pts (xy 374.015 -97.79) (xy 374.015 -69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84e154cc-34e9-48ac-ab7e-fc52b3bc90d0) + ) + (wire (pts (xy 414.655 202.438) (xy 416.56 202.438)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84e64de5-2809-4251-a45b-2b46d2cc79df) + ) + (wire (pts (xy 461.264 129.286) (xy 461.264 131.064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84febc35-87fd-4cad-8e04-2b66390cfc12) + ) + (wire (pts (xy 509.016 -41.91) (xy 509.016 103.632)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8527ef2e-5212-4629-b6f5-b0130ab61dab) + ) + (wire (pts (xy 526.923 149.86) (xy 526.161 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 858b182d-fdce-45a6-8c3a-626e9f7a9971) + ) + (wire (pts (xy -38.354 346.456) (xy -38.354 276.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85a22866-16c5-4384-bc0b-22ed5b68a467) + ) + (wire (pts (xy 547.116 150.622) (xy 547.116 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85e898d6-983f-4977-9dfa-e5b961e989c1) + ) + (wire (pts (xy 82.423 76.708) (xy 94.996 76.708)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85ec87eb-bb51-43f3-adf5-d04ca264762d) + ) + (wire (pts (xy 412.75 159.766) (xy 407.162 159.766)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86143bb0-7899-4df8-b1df-baa3c0ac7889) + ) + (wire (pts (xy 320.2432 119.5832) (xy 353.568 119.5832)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8627f593-e149-436d-9a08-c5ae5b7b17e3) + ) + (wire (pts (xy 79.375 -20.955) (xy 79.375 -51.943)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8634edb8-50db-43d2-95bb-5918d2cd24cc) + ) + (wire (pts (xy 108.712 -12.7) (xy 108.712 -90.043)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8672a05d-b750-4ddd-a92d-4c58fddcdd4e) + ) + (wire (pts (xy 242.57 165.608) (xy 242.57 185.674)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 869d6302-ae22-478f-9723-3feacbb12eef) + ) + (wire (pts (xy 112.776 210.058) (xy 87.63 210.058)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86ad0555-08b3-4dde-9a3e-c1e5e29b6615) + ) + (wire (pts (xy 129.794 152.4) (xy 128.397 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86c73e16-9c05-4385-b59b-206056f7ac90) + ) + (wire (pts (xy 476.25 156.464) (xy 476.504 156.464)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6) + ) + (wire (pts (xy 139.7 31.242) (xy 148.336 31.242)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86f6faec-7eee-404c-a73a-2ae625f33d8c) + ) + (wire (pts (xy -153.67 160.3756) (xy -153.67 160.4264)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86ff8ee8-5b2e-4802-93c8-9b7077df97c9) + ) + (wire (pts (xy 80.518 291.592) (xy 101.981 291.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 872313a4-03e6-4e4a-b850-f54dcb50f9fc) + ) + (wire (pts (xy 239.268 -62.357) (xy 190.246 -62.357)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 874dbaf8-adf6-4f01-81a0-e037bac53346) + ) + (wire (pts (xy 489.966 84.328) (xy 489.966 51.308)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87a0ffb1-5477-4b20-a3ac-fef5af129a33) + ) + (wire (pts (xy 107.696 -64.643) (xy 64.389 -64.643)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87bdd00e-f10c-4d37-9a6b-480b5e87ca33) + ) + (wire (pts (xy 144.78 100.584) (xy 144.78 99.822)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87f44303-a6e8-48e5-bb6d-f89abb09a999) + ) + (wire (pts (xy 367.284 200.914) (xy 393.192 200.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c) + ) + (wire (pts (xy 23.622 227.838) (xy 14.478 227.838)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b) + ) + (wire (pts (xy 463.677 -157.607) (xy 463.677 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 885a1129-9446-432d-8d93-f91d54873594) + ) + (wire (pts (xy 326.898 82.55) (xy 336.55 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88606262-3ac5-44a1-aacc-18b26cf4d396) + ) + (wire (pts (xy 337.566 239.522) (xy 342.138 239.522)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88668202-3f0b-4d07-84d4-dcd790f57272) + ) + (wire (pts (xy 104.013 -27.813) (xy 104.013 -59.563)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88a7e34c-57e7-48ce-a358-6866b2c01d90) + ) + (wire (pts (xy 39.624 124.206) (xy 39.624 343.662)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88deea08-baa5-4041-beb7-01c299cf00e6) + ) + (wire (pts (xy 260.096 -90.297) (xy 190.246 -90.297)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88e4f832-79d6-4c54-9ce3-4328dcb9d5b5) + ) + (wire (pts (xy 246.253 223.139) (xy 246.253 -67.437)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88ea0fe3-17bb-45bf-bf71-4da88c965186) + ) + (wire (pts (xy 304.165 -145.288) (xy 491.617 -145.288)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88f2670e-1113-4ed9-b644-cfdac6e8b249) + ) + (wire (pts (xy 564.896 -24.13) (xy 359.156 -24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 895d5ca3-0e9a-421e-88ea-3017edd2db62) + ) + (wire (pts (xy -154.2288 179.5272) (xy -154.2288 182.4736)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 897d7146-21e8-4d28-b511-04c27a119547) + ) + (wire (pts (xy 136.144 142.494) (xy 136.144 83.185)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 899a4caf-0563-4c2a-9bca-5aa28747ef75) + ) + (wire (pts (xy 463.677 -157.226) (xy 463.677 -137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 899d6960-0494-4e8f-9091-802503c02d1b) + ) + (wire (pts (xy 281.178 252.476) (xy 299.466 252.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89a8e170-a222-41c0-b545-c9f4c5604011) + ) + (wire (pts (xy 377.698 164.465) (xy 377.698 -15.621)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89be6ff8-dff7-4df0-876d-d5989d658e36) + ) + (wire (pts (xy 13.462 225.298) (xy 132.334 225.298)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0) + ) + (wire (pts (xy -52.832 301.625) (xy -52.832 293.497)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a1a639a-559c-483d-9c99-1b2fafbdacf1) + ) + (wire (pts (xy 221.742 129.286) (xy 228.092 129.286)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a3381a5-19d1-47f5-85b0-cf20b0f3bb61) + ) + (wire (pts (xy 69.088 110.998) (xy 69.088 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a427111-6480-4b0c-b097-d8b6a0ee1819) + ) + (wire (pts (xy 219.456 268.732) (xy 219.456 249.174)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698) + ) + (wire (pts (xy 87.376 182.372) (xy 56.134 182.372)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ae05d37-86b4-45ea-800f-f1f9fb167857) + ) + (wire (pts (xy 476.504 82.55) (xy 392.684 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8aeae536-fd36-430e-be47-1a856eced2fc) + ) + (wire (pts (xy 365.252 356.87) (xy 391.287 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8afe1dbf-1187-4362-8af8-a90ca839a6b3) + ) + (wire (pts (xy 12.7 198.882) (xy 12.7 -13.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8afefa03-006b-4e40-b19e-6596c7cc472e) + ) + (wire (pts (xy 342.646 248.92) (xy 342.646 149.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b290a17-6328-4178-9131-29524d345539) + ) + (wire (pts (xy 64.77 67.818) (xy 64.77 76.708)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b963561-586b-4575-b721-87e7914602c6) + ) + (wire (pts (xy 138.43 246.634) (xy 84.0232 246.634)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bc618cb-77ee-4cd4-90ac-a1df069d989b) + ) + (wire (pts (xy 473.71 169.672) (xy 473.71 166.624)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bd46048-cab7-4adf-af9a-bc2710c1894c) + ) + (wire (pts (xy 320.04 257.81) (xy 374.142 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bdea5f6-7a53-427a-92b8-fd15994c2e8c) + ) + (wire (pts (xy 621.284 -138.43) (xy 471.297 -138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c4cd1a2-9a92-4fba-aa2e-8b86c17dce10) + ) + (wire (pts (xy 556.006 206.756) (xy 556.006 208.534)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cb5a828-8cef-4784-b78d-175b49646952) + ) + (wire (pts (xy 307.086 76.454) (xy 295.656 76.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cd050d6-228c-4da0-9533-b4f8d14cfb34) + ) + (wire (pts (xy 367.284 194.818) (xy 367.284 200.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2) + ) + (wire (pts (xy 547.116 150.622) (xy 537.972 150.622)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cf4e6c7-f213-4dc6-a215-9a85d8791784) + ) + (wire (pts (xy 467.741 -108.204) (xy 467.741 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d9ea4cf-1047-42af-bf72-13258f22d6ad) + ) + (wire (pts (xy 539.496 159.512) (xy 539.496 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dcf40e6-09a5-42e4-8b46-f4738540468d) + ) + (wire (pts (xy 517.017 -158.623) (xy 517.017 -114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dcf91a3-1716-406f-975d-a5e4d347a64c) + ) + (wire (pts (xy 534.797 -131.318) (xy 534.797 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ddee80f-a354-4a11-ae03-acb37cf50626) + ) + (wire (pts (xy 356.362 179.324) (xy 367.538 179.324)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129) + ) + (wire (pts (xy 64.389 -56.896) (xy 102.362 -56.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e5a3783-142f-42f6-a215-d0f81a05c5c0) + ) + (wire (pts (xy 219.71 38.1) (xy 219.71 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e75264b-b45e-45ec-b230-7e1dce7d68b3) + ) + (wire (pts (xy 236.474 193.294) (xy 236.474 -52.197)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e981540-9cda-414d-abbb-d34e005f000e) + ) + (wire (pts (xy 233.934 146.05) (xy 233.934 157.734)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8eb98c56-17e4-4de6-a3e3-06dcfa392040) + ) + (wire (pts (xy 559.943 149.352) (xy 559.943 -29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ecc0874-e7f5-4102-a6b7-0222cf1fccc2) + ) + (wire (pts (xy 398.78 226.568) (xy 398.78 221.996)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ef1307e-4e79-474d-a93c-be38f714571c) + ) + (wire (pts (xy 60.325 171.831) (xy 67.564 171.831)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f29ec2b-5253-4ae2-bf8f-40e83998f739) + ) + (wire (pts (xy 309.372 325.374) (xy 265.684 325.374)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f2a6709-854c-4caf-959b-d289d2962128) + ) + (wire (pts (xy -51.054 271.145) (xy -57.404 271.145)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fa4f87a-9012-4f6f-a6c0-ec1c5f716184) + ) + (wire (pts (xy 20.828 168.021) (xy 20.828 167.894)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fbab3d0-cb5e-47c7-8764-6fa3c0e4e5f7) + ) + (wire (pts (xy 290.068 171.704) (xy 290.068 176.022)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fc062a7-114d-48eb-a8f8-71128838f380) + ) + (wire (pts (xy 408.686 215.9) (xy 408.686 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fd0b33a-45bf-4216-9d7e-a62e1c071730) + ) + (wire (pts (xy 126.365 198.374) (xy 126.365 198.501)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 900cb6c8-1d05-4537-a4f0-9a7cc1a2ea1c) + ) + (wire (pts (xy 204.47 183.134) (xy 241.3 183.134)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 901440f4-e2a6-4447-83cc-f58a2b26f5c4) + ) + (wire (pts (xy 396.621 282.194) (xy 631.571 282.194)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90207e9d-650a-4c45-b7d5-e506cc85537d) + ) + (wire (pts (xy 148.336 14.478) (xy 148.336 11.176)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 905b154b-e92b-469d-b2e2-340d67daddb7) + ) + (wire (pts (xy -9.017 -23.368) (xy -9.017 270.383)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90671817-460f-456a-a6e3-6cfa468bea55) + ) + (wire (pts (xy 300.228 -8.89) (xy 300.228 -113.157)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90b3e3a5-04e0-491b-97bf-2e8a21e1833b) + ) + (wire (pts (xy 407.162 98.044) (xy 407.162 106.172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90d503cf-92b2-4120-a4b0-03a2eddde893) + ) + (wire (pts (xy 204.47 145.034) (xy 221.742 145.034)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90e761f6-1432-4f73-ad28-fa8869b7ec31) + ) + (wire (pts (xy 64.389 -92.583) (xy 109.347 -92.583)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90f1070b-d0d3-4d94-9527-f4c1c7006642) + ) + (wire (pts (xy 190.627 367.792) (xy 216.789 367.792)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90f2ca05-313f-4af8-87b1-a8109224a221) + ) + (wire (pts (xy 295.656 312.674) (xy 304.038 312.674)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c) + ) + (wire (pts (xy 405.13 396.24) (xy 396.621 394.081)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90fd611c-300b-48cf-a7c4-0d604953cd00) + ) + (wire (pts (xy 48.006 162.814) (xy 138.43 162.814)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9112ddd5-10d5-48b8-954f-f1d5adcacbd9) + ) + (wire (pts (xy 428.244 -62.23) (xy 428.244 160.909)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 914a2046-646f-4d53-b355-ce2139e25907) + ) + (wire (pts (xy 556.006 149.352) (xy 559.943 149.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 914ccec4-572a-4ec0-b281-596368eea274) + ) + (wire (pts (xy 277.876 166.624) (xy 282.448 166.624)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 917920ab-0c6e-4927-974d-ef342cdd4f63) + ) + (wire (pts (xy 360.934 241.3) (xy 360.934 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313) + ) + (wire (pts (xy 400.304 241.3) (xy 400.304 236.728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91fe070a-a49b-4bc5-805a-42f23e10d114) + ) + (wire (pts (xy 281.178 -125.603) (xy 78.359 -125.603)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 920101e0-4dde-4453-ba02-4211cb357ea2) + ) + (wire (pts (xy 315.722 103.886) (xy 315.722 108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a) + ) + (wire (pts (xy 67.31 258.826) (xy 67.31 250.952)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9208ea78-8dde-4b3d-91e9-5755ab5efd9a) + ) + (wire (pts (xy 298.45 179.832) (xy 422.402 179.832)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 922b14e9-e5b4-4506-8c7b-f653748d7f34) + ) + (wire (pts (xy 495.046 141.478) (xy 523.24 141.478)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92419cc9-1070-47aa-876c-2cf8f5a03a47) + ) + (wire (pts (xy 67.31 268.732) (xy 219.456 268.732)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d) + ) + (wire (pts (xy 453.517 -149.606) (xy 453.517 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92786ddd-53cc-4458-af25-eb5a2b46154e) + ) + (wire (pts (xy 473.71 169.672) (xy 437.642 169.672)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92848721-49b5-4e4c-b042-6fd51e1d562f) + ) + (wire (pts (xy -175.768 191.6684) (xy -176.4792 191.6684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 928bdd63-3f2e-481c-99ff-ed0d8247ae50) + ) + (wire (pts (xy 185.674 56.642) (xy 316.738 56.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92d17eb0-c75d-48d9-ae9e-ea0c7f723be4) + ) + (wire (pts (xy 33.782 121.666) (xy 167.64 121.666)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92f063a3-7cce-4a96-8a3a-cf5767f700c6) + ) + (wire (pts (xy 428.117 371.983) (xy 428.117 370.205)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 934c5f28-c928-4621-8122-b999b3ed10dd) + ) + (wire (pts (xy 328.93 233.426) (xy 328.93 229.616)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 935f462d-8b1e-4005-9f1e-17f537ab1756) + ) + (wire (pts (xy 331.47 221.996) (xy 398.78 221.996)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9390234f-bf3f-46cd-b6a0-8a438ec76e9f) + ) + (wire (pts (xy 395.986 127) (xy 395.986 120.142)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93afd2e8-e16c-4e06-b872-cf0e624aee35) + ) + (wire (pts (xy 313.69 302.514) (xy 313.69 314.452)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 946404ba-9297-43ec-9d67-30184041145f) + ) + (wire (pts (xy 46.101 -18.542) (xy 74.168 -18.542)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 946a171e-cd55-473d-bab9-8d2c7c34161c) + ) + (wire (pts (xy 394.97 370.967) (xy 444.627 370.967)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9475edbb-286b-4bed-b5f0-0b68a18bdc52) + ) + (wire (pts (xy 657.352 313.563) (xy 304.546 313.563)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94b9946a-78fd-4f36-83ff-62bd392ae616) + ) + (wire (pts (xy 379.222 278.384) (xy 379.222 317.754)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94c3d0e3-d7fb-421d-bbb4-5c800d76c809) + ) + (wire (pts (xy 64.77 259.334) (xy 64.77 250.952)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94d24676-7ae3-483c-8bd6-88d31adf00b4) + ) + (wire (pts (xy 351.028 383.54) (xy 355.6 383.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9505be36-b21c-4db8-9484-dd0861395d26) + ) + (wire (pts (xy 314.706 187.452) (xy 328.676 187.452)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 955cc99e-a129-42cf-abc7-aa99813fdb5f) + ) + (wire (pts (xy 317.5 108.204) (xy 324.104 108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9565d2ee-a4f1-4d08-b2c9-0264233a0d2b) + ) + (wire (pts (xy 66.04 290.576) (xy 66.294 290.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9600911d-0df3-419b-8d4a-8d1432a7daf2) + ) + (wire (pts (xy 371.602 396.748) (xy 371.602 392.938)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 961b4579-9ee8-407a-89a7-81f36f1ad865) + ) + (wire (pts (xy 436.88 143.51) (xy 436.88 157.226)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96315415-cfed-47d2-b3dd-d782358bd0df) + ) + (wire (pts (xy 94.996 59.944) (xy 94.996 56.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9640e044-e4b2-4c33-9e1c-1d9894a69337) + ) + (wire (pts (xy 81.534 67.818) (xy 81.534 81.788)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 965bc598-5f52-4615-847f-179635cd5cde) + ) + (wire (pts (xy 62.23 250.952) (xy 62.23 255.524)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 966ee9ec-860e-45bb-af89-30bda72b2032) + ) + (wire (pts (xy 512.826 240.792) (xy 572.643 240.792)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96815f61-f3f5-43c2-b68f-856577233f16) + ) + (wire (pts (xy 204.47 244.094) (xy 218.694 244.094)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136) + ) + (wire (pts (xy 37.338 344.932) (xy -35.179 344.932)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96cc7009-e5c2-4181-9848-d145b9196cc4) + ) + (wire (pts (xy 260.096 -90.297) (xy 260.096 208.534)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96d488aa-4d20-4ba2-8d75-10df5865e575) + ) + (wire (pts (xy 267.716 216.154) (xy 267.716 252.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96db52e2-6336-4f5e-846e-528c594d0509) + ) + (wire (pts (xy 354.076 349.25) (xy 354.076 353.568)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96de0051-7945-413a-9219-1ab367546962) + ) + (wire (pts (xy 217.678 147.574) (xy 219.964 147.574)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96ee9b8e-4543-4639-b9ea-44b8baaaf94e) + ) + (wire (pts (xy 71.12 262.382) (xy 69.85 262.382)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96ef76a5-90c3-4767-98ba-2b61887e28d3) + ) + (wire (pts (xy 318.008 238.506) (xy 318.008 238.252)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 970e0f64-111f-41e3-9f5a-fb0d0f6fa101) + ) + (wire (pts (xy 505.206 206.502) (xy 393.192 206.502)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 971d1932-4a99-4265-9c76-26e554bde4fe) + ) + (wire (pts (xy 138.43 175.514) (xy 99.06 175.514)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6) + ) + (wire (pts (xy 214.757 35.56) (xy 214.63 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97693043-81ba-44a2-b87b-aca6193e0970) + ) + (wire (pts (xy 282.448 98.806) (xy 287.274 98.806)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 977371ef-232c-40b3-8805-7fed7909b206) + ) + (wire (pts (xy 556.006 155.702) (xy 556.006 149.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 978f967d-6cc0-4f07-b852-e2800feefa07) + ) + (wire (pts (xy 116.84 366.014) (xy 120.396 366.014)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97cc05bf-4ed5-449c-b0c8-131e5126a7ac) + ) + (wire (pts (xy 256.286 159.004) (xy 284.226 159.004)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97fe2a5c-4eee-4c7a-9c43-47749b396494) + ) + (wire (pts (xy 227.076 -59.817) (xy 190.246 -59.817)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9812a82a-67c8-4c7e-8eb9-2d5188d40486) + ) + (wire (pts (xy 330.2 259.842) (xy 352.552 259.842)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98861672-254d-432b-8e5a-10d885a5ffdc) + ) + (wire (pts (xy 320.2432 184.3024) (xy 320.2432 119.5832)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98aafdb4-bc79-4d17-9252-9c5af80122e6) + ) + (wire (pts (xy 356.108 125.476) (xy 356.108 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98b00c9d-9188-4bce-aa70-92d12dd9cf82) + ) + (wire (pts (xy 204.47 228.854) (xy 225.298 228.854)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec) + ) + (wire (pts (xy -173.9392 197.2056) (xy -158.6484 197.2056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 990374cf-c978-4c11-a54a-e2934abf110c) + ) + (wire (pts (xy 602.996 -147.828) (xy 496.697 -147.828)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99162744-5eac-427e-9957-877587056aee) + ) + (wire (pts (xy 114.3 213.614) (xy 138.43 213.614)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99186658-0361-40ba-ae93-62f23c5622e6) + ) + (wire (pts (xy 165.735 70.358) (xy 170.815 70.358)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9924c304-97d1-4655-9ab8-854a335a84c2) + ) + (wire (pts (xy 307.594 101.6) (xy 307.594 146.685)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9959c68a-7d2a-4f14-b245-3548992673f3) + ) + (wire (pts (xy 356.108 136.652) (xy 356.108 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 997c2f12-73ba-4c01-9ee0-42e37cbab790) + ) + (wire (pts (xy 220.472 148.463) (xy 220.472 172.974)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a334c2d-ea1e-4f9b-9563-937977728978) + ) + (wire (pts (xy 12.954 189.992) (xy 12.954 207.264)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a458d6a-a84c-4faf-913e-90bab231d3f8) + ) + (wire (pts (xy 388.366 317.754) (xy 379.222 317.754)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a595c4c-9ac1-4ae3-8ff3-1b7f2281a894) + ) + (wire (pts (xy 98.552 -26.543) (xy 98.552 -54.483)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a88d63d-f7e5-416d-9807-a8e942aef287) + ) + (wire (pts (xy 204.47 239.014) (xy 228.346 239.014)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aaeec6e-84fe-4644-b0bc-5de24626ff48) + ) + (wire (pts (xy 468.503 -34.29) (xy 468.503 138.938)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ad8e352-005c-4299-8beb-56f3b58c96b7) + ) + (wire (pts (xy 356.108 115.316) (xy 367.284 115.316)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aedbb9e-8340-4899-b813-05b23382a36b) + ) + (wire (pts (xy 142.24 357.124) (xy -40.767 357.124)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b26d003-7efb-405a-8332-1a189f9d4920) + ) + (wire (pts (xy 162.179 98.552) (xy 162.179 91.821)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b315454-a4a0-4952-bdbe-d4a8e96c16f9) + ) + (wire (pts (xy 64.389 -79.883) (xy 114.9096 -79.883)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b6b3617-ceeb-4a36-ada7-056794cdbac4) + ) + (wire (pts (xy 356.362 204.978) (xy 350.266 204.978)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b6bb172-1ac4-440a-ac75-c1917d9d59c7) + ) + (wire (pts (xy 22.352 204.724) (xy 22.352 208.153)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bac5a37-2a55-41dd-96ea-ec02b69e3ef4) + ) + (wire (pts (xy 556.006 208.534) (xy 560.324 208.534)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bb406d9-c650-4e67-9a26-3195d4de542e) + ) + (wire (pts (xy 353.568 119.5832) (xy 353.568 -5.334)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c1c5d14-b2d6-454c-9fea-acf53b153486) + ) + (wire (pts (xy 130.556 150.114) (xy 130.556 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c2999b2-1cf1-4204-9d23-243401b77aa3) + ) + (wire (pts (xy 228.981 -55.245) (xy 228.981 193.294)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c5b8388-0c5b-43a4-a3f4-d7cd72b89084) + ) + (wire (pts (xy 517.906 183.642) (xy 520.446 183.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cacb6ad-6bbf-4ffe-b0a4-2df24045e046) + ) + (wire (pts (xy 220.726 196.85) (xy 323.596 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9caefee8-6dcd-4815-b6e5-c75999fb9c90) + ) + (wire (pts (xy -66.929 169.926) (xy -66.929 236.728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cd1ba63-2087-4000-a5a9-797dad78d993) + ) + (wire (pts (xy 406.4 202.438) (xy 414.655 202.438)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ceeff0a-ae63-43da-8fd2-e3d57063537d) + ) + (wire (pts (xy 504.825 116.205) (xy 504.317 116.205)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d2af601-5327-4706-9acb-978b65e95af5) + ) + (wire (pts (xy 190.246 -29.337) (xy 194.437 -29.337)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d4bb085-5413-4cad-9765-4f916ffbe612) + ) + (wire (pts (xy 235.077 144.907) (xy 274.32 144.907)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d541d6f-313d-4469-a000-68242c1dd6d6) + ) + (wire (pts (xy 295.656 317.754) (xy 295.656 312.674)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11) + ) + (wire (pts (xy 398.526 219.71) (xy 398.526 217.932)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e136ac4-5d28-4814-9ebf-c30c372bc2ec) + ) + (wire (pts (xy 83.82 201.041) (xy 86.487 201.041)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e39ed40-271f-40f8-b1c9-20b888c10512) + ) + (wire (pts (xy 397.002 101.092) (xy 393.446 101.092)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e427954-2486-4c91-89b5-6af73a073442) + ) + (wire (pts (xy 216.789 160.274) (xy 210.82 160.274)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e5fe65d-f158-4eb5-af93-2b5d0b9a0d55) + ) + (wire (pts (xy 401.066 221.996) (xy 401.066 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db) + ) + (wire (pts (xy 80.518 291.592) (xy 80.518 330.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ed54841-4bec-491f-817d-b7e8b25ca06c) + ) + (wire (pts (xy 124.206 42.037) (xy 210.185 42.037)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9efb25aa-d11e-4d2f-96a9-326a2f75dcc1) + ) + (wire (pts (xy 560.324 216.408) (xy 560.324 214.884)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f5c7a80-7220-432e-865b-d1468e8a8d4c) + ) + (wire (pts (xy 422.91 112.014) (xy 425.831 104.394)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f782c92-a5e8-49db-bfda-752b35522ce4) + ) + (wire (pts (xy 244.602 203.2) (xy 244.602 176.276)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f80220c-1612-4589-b9ca-a5579617bdb8) + ) + (wire (pts (xy 122.682 381.254) (xy 122.682 208.534)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f95f1fc-aa31-4ce6-996a-4b385731d8eb) + ) + (wire (pts (xy 67.818 331.724) (xy 67.818 328.1172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f969b13-1795-4747-8326-93bdc304ed56) + ) + (wire (pts (xy 529.717 -122.555) (xy 529.717 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fa51663-d9ff-42d5-ab2b-c96b6768fc7a) + ) + (wire (pts (xy 113.665 153.543) (xy 128.397 153.543)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fa58e42-4d1f-4e7f-a5a2-6fc9857446e3) + ) + (wire (pts (xy 228.092 131.191) (xy 231.775 131.191)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fb9a654-045f-4c58-ba9d-e6e9d641e3ae) + ) + (wire (pts (xy 194.437 -31.877) (xy 194.437 -29.337)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fbabfd5-5316-4dcb-8d99-3c53b9c69880) + ) + (wire (pts (xy 74.168 161.544) (xy 126.238 161.544)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fdca5c2-1fbd-4774-a9c3-8795a40c206d) + ) + (wire (pts (xy 128.27 31.242) (xy 139.7 31.242)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a04f8542-6c38-4d5c-bdbb-c8e0311a0936) + ) + (wire (pts (xy 657.352 -114.3) (xy 657.352 313.563)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a067890f-6be8-49e9-b75d-ff2c32452685) + ) + (wire (pts (xy 228.092 129.286) (xy 228.092 122.936)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a06bd114-6488-4d22-b31a-c3a8f70a2574) + ) + (wire (pts (xy 13.843 182.88) (xy 13.843 -22.098)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a072347a-1cac-4ead-8c61-cfe38fd40342) + ) + (wire (pts (xy 210.82 94.488) (xy 210.82 103.124)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a07b6b2b-7179-4297-b163-5e47ffbe76d3) + ) + (wire (pts (xy 129.794 142.494) (xy 136.144 142.494)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0affae9-b1e8-4941-9e7e-2ad29ff3f86b) + ) + (wire (pts (xy 126.238 161.544) (xy 126.238 170.434)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0d52767-051a-423c-a600-928281f27952) + ) + (wire (pts (xy 204.47 178.054) (xy 228.092 178.054)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc) + ) + (wire (pts (xy 626.11 404.241) (xy 626.11 -108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1441258-3477-4706-8540-9e88ae0dac49) + ) + (wire (pts (xy 136.398 211.074) (xy 136.398 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a150f0c9-1a23-4200-b489-18791f6d5ce5) + ) + (wire (pts (xy 82.423 57.531) (xy 73.152 57.531)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a16dbf15-8f5b-4766-b048-90ba89efcc02) + ) + (wire (pts (xy -14.351 275.336) (xy 226.314 275.336)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a17368fb-646b-4ffd-9057-0994609f8a46) + ) + (wire (pts (xy 165.1 124.206) (xy 39.624 124.206)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a177c3b4-b04c-490e-b3fe-d3d4d7aa24a7) + ) + (wire (pts (xy 487.299 -158.623) (xy 486.537 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1b97586-5ccb-4d4b-808f-ce5452376c86) + ) + (wire (pts (xy 310.0832 184.3024) (xy 320.2432 184.3024)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1cd5c95-87ee-4715-bed7-9d0590e8c33e) + ) + (wire (pts (xy -130.0988 171.958) (xy -124.206 171.958)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1f9026d-f95e-46c8-9e7b-0d8e6cece777) + ) + (wire (pts (xy 91.44 170.942) (xy 93.345 170.942)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a22bec73-a69c-4ab7-8d8d-f6a6b09f925f) + ) + (wire (pts (xy 277.368 -128.143) (xy 64.389 -128.143)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2306fdc-d8f4-42ce-83f7-03c3d3fe62be) + ) + (wire (pts (xy 241.808 239.014) (xy 241.808 238.252)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a24ddb4f-c217-42ca-b6cb-d12da84fb2b9) + ) + (wire (pts (xy 116.078 184.023) (xy 52.578 184.023)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a25ec672-f935-4d0c-ae67-7c3ebe078d85) + ) + (wire (pts (xy 64.389 -74.803) (xy 66.04 -74.803)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a26bc030-7d8a-4b19-aa84-9206cc0de2b0) + ) + (wire (pts (xy 374.396 367.284) (xy 374.396 372.618)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a26bdee6-0e16-4ea6-87f7-fb32c714896e) + ) + (wire (pts (xy 534.924 159.512) (xy 539.496 159.512)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a29e1299-22c5-4fd2-9a37-e405785962a9) + ) + (wire (pts (xy 23.622 217.678) (xy 23.622 214.503)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2a4b1ad-c51a-492d-9e99-410eec4f55a3) + ) + (wire (pts (xy 445.77 102.997) (xy 495.808 102.997)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2d090b5-bdc2-4863-87f2-2ea46a246d3d) + ) + (wire (pts (xy 412.75 115.824) (xy 420.116 115.824)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2ead14b-89a8-4438-a7df-7876de28e69a) + ) + (wire (pts (xy 64.389 -120.523) (xy 78.359 -120.523)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2f96f4e-d95d-4c20-90ff-804397e6e6ba) + ) + (wire (pts (xy 155.067 103.251) (xy 162.179 103.251)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a353a360-a1da-42d3-a5f2-38aafc184a50) + ) + (wire (pts (xy 609.473 -142.113) (xy 476.377 -142.113)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3722fe0-facc-42fa-a01b-a26433c9d7fe) + ) + (wire (pts (xy 395.986 198.882) (xy 395.986 172.085)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3a9b316-86eb-411d-82d0-37407c2e4142) + ) + (wire (pts (xy 298.45 176.022) (xy 298.45 179.832)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3eaa329-1c23-49fc-9fb5-976de81b788e) + ) + (wire (pts (xy 336.55 82.55) (xy 367.284 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a43f2e19-4e11-4e86-a12a-58a691d6df28) + ) + (wire (pts (xy 479.806 76.454) (xy 484.124 76.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4541b62-7a39-4707-9c6f-80dce1be9cee) + ) + (wire (pts (xy 576.58 -19.05) (xy 359.156 -19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4971cc2-2bc0-4979-86df-10f6aaaa3b65) + ) + (wire (pts (xy 248.158 219.964) (xy 248.158 219.202)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4f86a46-3bc8-4daa-9125-a63f297eb114) + ) + (wire (pts (xy -171.8056 201.7776) (xy -168.8592 201.7776)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5048521-3d40-43f1-9327-382a9ad768b3) + ) + (wire (pts (xy 529.971 164.592) (xy 535.686 164.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a543a4a0-b8e2-45a4-be48-7207020a5b1f) + ) + (wire (pts (xy 33.782 346.456) (xy -38.354 346.456)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a559f63f-b3a0-4b81-aa6a-605d4da47af6) + ) + (wire (pts (xy 374.015 -69.85) (xy 359.156 -69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a57e46ab-4127-4b88-afea-d94b5d7bc928) + ) + (wire (pts (xy 320.04 257.81) (xy 320.04 259.842)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a599509f-fbb9-4db4-9adf-9e96bab1138d) + ) + (wire (pts (xy 356.108 140.97) (xy 364.49 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5be2cb8-c68d-4180-8412-69a6b4c5b1d4) + ) + (wire (pts (xy 64.389 -72.263) (xy 66.04 -72.263)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5c35670-98af-44c6-a3f4-bbad7ffecfd3) + ) + (wire (pts (xy 117.094 238.506) (xy 117.094 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5c8e189-1ddc-4a66-984b-e0fd1529d346) + ) + (wire (pts (xy 214.63 48.387) (xy 207.645 48.387)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5dfaf18-d33f-45c4-b76f-2a5051ec9118) + ) + (wire (pts (xy 549.656 206.756) (xy 556.006 206.756)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e6f7cb-0a81-4357-a11f-231d23300342) + ) + (wire (pts (xy 313.944 -139.573) (xy 313.944 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6187c22-3622-4a1a-a49a-b21e96986f96) + ) + (wire (pts (xy 109.728 96.012) (xy 109.728 243.586)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a62609cd-29b7-4918-b97d-7b2404ba61cf) + ) + (wire (pts (xy 78.359 -120.523) (xy 78.359 -125.603)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6347fea-87e1-4897-bfe2-729d24d2f085) + ) + (wire (pts (xy 12.7 -13.97) (xy 78.867 -13.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6386af6-d744-458e-b19d-8fd97b5ad9f9) + ) + (wire (pts (xy 65.024 -105.283) (xy 65.024 -102.743)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6460cc6-b11c-4dff-a0ea-9de680e68ca8) + ) + (wire (pts (xy 295.656 302.514) (xy 313.69 302.514)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a64aeb89-c24a-493b-9aab-87a6be930bde) + ) + (wire (pts (xy 64.389 -95.123) (xy 118.999 -95.123)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a65cad0c-0ef1-4ea5-a965-4eae7ac1f6af) + ) + (wire (pts (xy 204.47 152.654) (xy 230.124 152.654)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6738794-75ae-48a6-8949-ed8717400d71) + ) + (wire (pts (xy 511.175 105.156) (xy 511.175 -39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a67b97a6-51fd-4a32-8231-3fd10436b6ab) + ) + (wire (pts (xy 71.628 115.824) (xy 71.628 110.998)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a686ed7c-c2d1-4d29-9d54-727faf9fd6bf) + ) + (wire (pts (xy 563.372 185.42) (xy 547.116 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6c7f556-10bb-4a6d-b61b-a732ec6fa5cc) + ) + (wire (pts (xy 204.47 223.774) (xy 241.554 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6ccc556-da88-4006-ae1a-cc35733efef3) + ) + (wire (pts (xy -52.197 268.605) (xy -57.404 268.605)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6d1221a-1077-412d-8a73-7025f9b4ca20) + ) + (wire (pts (xy 105.41 -23.368) (xy -9.017 -23.368)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6d88d7d-92d8-4fc8-b103-7599e55f18c0) + ) + (wire (pts (xy 556.006 155.702) (xy 561.848 155.702)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6dc1180-19c4-432b-af49-fc9179bb4519) + ) + (wire (pts (xy 204.47 150.114) (xy 223.52 150.114)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05) + ) + (wire (pts (xy 346.964 321.056) (xy 351.028 321.056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a76a574b-1cac-43eb-81e6-0e2e278cea39) + ) + (wire (pts (xy 331.724 150.114) (xy 331.724 203.962)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7f25f41-0b4c-4430-b6cd-b2160b2db099) + ) + (wire (pts (xy 374.142 257.81) (xy 374.142 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7f2e97b-29f3-44fd-bf8a-97a3c1528b61) + ) + (wire (pts (xy 71.882 156.21) (xy 71.882 198.882)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a819bf9a-0c8b-443a-b488-e5f1395d77ad) + ) + (wire (pts (xy 227.076 118.11) (xy 214.63 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50) + ) + (wire (pts (xy 64.389 -69.723) (xy 127 -69.723)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8333ca2-6919-4fe3-9f28-bacc852923df) + ) + (wire (pts (xy 423.672 223.012) (xy 599.44 223.012)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8470270-920a-4fed-9691-22526135f92c) + ) + (wire (pts (xy 87.376 197.866) (xy 105.918 197.866)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a86cc026-cc17-4a81-85bf-4c26f61b9f32) + ) + (wire (pts (xy 45.974 167.132) (xy 45.974 163.703)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8a389df-8d18-4e17-a74f-f60d5d77371e) + ) + (wire (pts (xy 127.4572 -116.4336) (xy 239.3696 -116.4336)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8a85636-d7e6-4bd1-86f5-92815112d6ea) + ) + (wire (pts (xy 326.898 82.55) (xy 326.898 87.884)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f) + ) + (wire (pts (xy 652.145 311.658) (xy 309.372 311.658)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8b5a69a-24fc-4f3a-af15-1ced0fb0d73b) + ) + (wire (pts (xy 240.284 307.213) (xy 240.284 306.578)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8ed9f4d-0385-4ec2-831d-b6c7165c148a) + ) + (wire (pts (xy 215.265 167.894) (xy 215.265 119.888)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8fb8ee0-623f-4870-a716-ecc88f37ef9a) + ) + (wire (pts (xy 338.836 233.426) (xy 338.836 225.298)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a90361cd-254c-4d27-ae1f-9a6c85bafe28) + ) + (wire (pts (xy 231.648 142.875) (xy 231.648 184.404)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9240eb1-cd96-4728-9dbf-17ea5e90b45d) + ) + (wire (pts (xy 234.188 108.966) (xy 234.188 -97.917)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a95b6208-cd25-486f-8a35-f7d7b1426174) + ) + (wire (pts (xy 67.564 171.831) (xy 67.564 194.056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a97391c0-c438-44dc-aec7-4249e6f62568) + ) + (wire (pts (xy 212.344 304.8) (xy 268.986 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a97d9593-88f3-490c-93d3-a1f528046ef8) + ) + (wire (pts (xy 369.697 -74.93) (xy 359.156 -74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9ad6ea5-8293-424c-89d4-c01baf033429) + ) + (wire (pts (xy 130.81 178.054) (xy 130.81 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9d76dfc-52ba-46de-beb4-dab7b94ee663) + ) + (wire (pts (xy 416.814 168.148) (xy 441.706 168.148)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa0466c6-766f-4bb4-abf1-502a6a06f91d) + ) + (wire (pts (xy 52.578 155.956) (xy 52.578 184.023)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa0e7fe7-e9c2-477f-bcb2-53a1ebd9e3a6) + ) + (wire (pts (xy 68.834 303.784) (xy 68.834 300.736)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e) + ) + (wire (pts (xy 495.554 83.566) (xy 497.078 83.566)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa288a22-ea1d-474d-8dae-efe971580843) + ) + (wire (pts (xy 413.766 198.628) (xy 413.766 164.465)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa52a4ee-249d-4f84-a65a-9c1702b5bb75) + ) + (wire (pts (xy 290.068 161.544) (xy 290.068 160.782)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa79024d-ca7e-4c24-b127-7df08bbd0c75) + ) + (wire (pts (xy 138.43 167.894) (xy 125.222 167.894)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa8663be-9516-4b07-84d2-4c4d668b8596) + ) + (wire (pts (xy -32.893 343.662) (xy -32.893 278.765)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aaa13f87-8acd-40d7-bdde-65d39b0b7892) + ) + (wire (pts (xy 202.311 313.182) (xy 202.311 258.191)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aae29862-3850-48eb-b7a8-38a62a8029dd) + ) + (wire (pts (xy 143.891 104.521) (xy 143.891 100.584)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aaf0fd50-bb22-4408-be5a-88f5ba4193be) + ) + (wire (pts (xy 194.31 87.63) (xy 192.278 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aafd680e-f3de-44c3-b8d2-897188909f89) + ) + (wire (pts (xy 122.682 208.534) (xy 138.43 208.534)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab0ea55a-63b3-4ece-836d-2844713a821f) + ) + (wire (pts (xy 386.588 227.457) (xy 386.588 173.101)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab26a42e-b7f6-4a80-b26c-c01085e448c7) + ) + (wire (pts (xy 399.288 127) (xy 395.986 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab34b936-8ca5-4be1-8599-504cb86609fc) + ) + (wire (pts (xy 504.317 116.205) (xy 504.317 -85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac0e5582-f44c-4bc2-8ae7-2c3f1115fb00) + ) + (wire (pts (xy 101.981 243.586) (xy 101.981 291.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac81fb15-6f1a-451b-a962-fb87ffd26f6b) + ) + (wire (pts (xy 66.04 293.37) (xy 66.04 290.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac8576da-4e00-41a0-9609-eb655e96e10b) + ) + (wire (pts (xy 383.921 -54.61) (xy 359.156 -54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac99d2b9-3592-44c3-94eb-e556103750a4) + ) + (wire (pts (xy 74.93 252.73) (xy 74.93 263.398)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acb0068c-c0e7-44cf-a209-296716acb6a2) + ) + (wire (pts (xy 514.477 -158.623) (xy 514.477 -112.141)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acb025c1-3784-47d1-b5e9-772bcda8c549) + ) + (wire (pts (xy 144.907 104.521) (xy 143.891 104.521)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acd72527-a657-482d-a530-89a1347375fc) + ) + (wire (pts (xy 428.117 382.143) (xy 434.467 382.143)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad09de7f-a090-4e65-951a-7cf11f73b06d) + ) + (wire (pts (xy -14.351 -26.543) (xy 98.552 -26.543)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad2d033c-4040-4813-b5da-82cf827f9d86) + ) + (wire (pts (xy 33.782 346.456) (xy 33.782 121.666)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad4d05f5-6957-42f8-b65c-c657b9a26485) + ) + (wire (pts (xy 535.686 164.592) (xy 535.686 201.676)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad4fcc27-bf1e-4e2e-ab26-9b8032da7693) + ) + (wire (pts (xy 420.116 414.528) (xy -49.784 414.528)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad8c2a20-27d0-4e2a-aabf-44a509bf342a) + ) + (wire (pts (xy 221.742 249.174) (xy 221.742 277.495)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aeaaa120-9cc5-4520-9a70-067fbc8f5b7b) + ) + (wire (pts (xy 214.63 48.387) (xy 214.63 106.172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aee35d5f-0638-4cb1-b58c-265232f425a0) + ) + (wire (pts (xy 277.622 317.754) (xy 295.656 317.754)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aee7520e-3bfc-435f-a66b-1dd1f5aa6a87) + ) + (wire (pts (xy 117.094 74.93) (xy 219.71 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af186015-d283-4209-aade-a247e5de01df) + ) + (wire (pts (xy 636.27 -105.029) (xy 465.201 -105.029)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af5a6355-b37d-4130-98e5-c563dae6ea34) + ) + (wire (pts (xy 462.153 -158.623) (xy 461.137 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af66589f-0dae-4737-851f-f8cddd35005b) + ) + (wire (pts (xy 69.85 267.716) (xy 118.872 267.716)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af76ce95-feca-41fb-bf31-edaa26d6766a) + ) + (wire (pts (xy 110.617 -49.149) (xy 119.38 -49.149)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af7ccd5a-4c05-4a49-a412-ca568e4c81d2) + ) + (wire (pts (xy 65.024 -102.743) (xy 65.024 -100.203)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afc1392c-4488-4251-8167-de520abba754) + ) + (wire (pts (xy 442.595 162.687) (xy 442.595 -8.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afc58bc7-e8b3-4ec7-b7ec-e155055196a5) + ) + (wire (pts (xy 367.03 133.35) (xy 367.03 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afd38b10-2eca-4abe-aed1-a96fb07ffdbe) + ) + (wire (pts (xy -161.6456 195.3768) (xy -161.6456 163.3728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b00730f2-dd94-43d5-8b8d-893fdfcedab1) + ) + (wire (pts (xy -118.2116 163.0172) (xy -118.2116 326.3392)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0228f15-c910-4348-bda2-e02912163fd6) + ) + (wire (pts (xy 111.633 333.121) (xy 111.633 338.709)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b03cb553-3709-44f5-9a1e-0bd7ca2daf93) + ) + (wire (pts (xy -45.339 296.545) (xy -55.372 296.545)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b09870ad-8985-4a1c-a7b1-3acb9a1b9282) + ) + (wire (pts (xy 465.328 162.306) (xy 465.328 166.624)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0b4c3cb-e7ea-49c0-8162-be3bbab3e4ec) + ) + (wire (pts (xy 393.446 56.388) (xy 472.186 56.388)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b121f1ff-8472-460b-ab2d-5110ddd1ca28) + ) + (wire (pts (xy 108.204 199.898) (xy 108.204 190.754)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b12e5309-5d01-40ef-a9c3-8453e00a555e) + ) + (wire (pts (xy 262.382 218.44) (xy 262.382 260.096)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b13e8448-bf35-4ec0-9c70-3f2250718cc2) + ) + (wire (pts (xy 134.874 22.352) (xy 128.27 22.352)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1731e91-7698-42fa-ad60-5c60fdd0e1fc) + ) + (wire (pts (xy 398.018 98.044) (xy 398.018 -106.553)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b20fb198-6b0b-4cab-9ba8-ea9b46e8088f) + ) + (wire (pts (xy 64.77 269.748) (xy 218.694 269.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b21299b9-3c4d-43df-b399-7f9b08eb5470) + ) + (wire (pts (xy 460.502 226.568) (xy 398.78 226.568)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b24c67bf-acb7-486e-9d7b-fb513b8c7fc6) + ) + (wire (pts (xy 517.017 -114.3) (xy 657.352 -114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2543723-4d00-4120-adfe-906c6c0f4cae) + ) + (wire (pts (xy 202.946 94.488) (xy 202.946 -26.797)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2691466-e53b-4f43-806f-abeb762713f6) + ) + (wire (pts (xy 161.163 -21.844) (xy 225.044 -21.844)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b285d77c-3eef-4763-b6e4-d7759b529dfd) + ) + (wire (pts (xy 313.182 176.022) (xy 313.182 108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b287f145-851e-45cc-b200-e62677b551d5) + ) + (wire (pts (xy 83.312 263.398) (xy 83.312 290.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2b363dd-8e47-4a76-a142-e00e28334875) + ) + (wire (pts (xy 134.2644 -119.7102) (xy 134.2644 -110.5662)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2b570b6-5180-4632-9225-7c51c16901a7) + ) + (wire (pts (xy 94.488 393.954) (xy 342.9 393.954)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2de1057-44b4-4b1a-b3d7-c19d3cd25553) + ) + (wire (pts (xy 19.177 186.309) (xy 19.177 214.503)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2f7301d-582c-4990-a060-4a71ef08c6eb) + ) + (wire (pts (xy 351.028 333.121) (xy 111.633 333.121)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2fcabdc-443d-41f9-9892-34509b22b3c4) + ) + (wire (pts (xy -55.372 296.545) (xy -57.404 296.545)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b37c8835-0989-48c9-97ba-c045f0d7107f) + ) + (wire (pts (xy 194.437 -26.797) (xy 190.246 -26.797)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b400c80e-5312-495d-b0d5-8365ed4de032) + ) + (wire (pts (xy 462.153 -144.145) (xy 462.153 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b42a4498-7f71-4787-a0f1-b44423616ac9) + ) + (wire (pts (xy 98.298 171.958) (xy 99.06 171.958)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b44c0167-50fe-4c67-94fb-5ce2e6f52544) + ) + (wire (pts (xy 495.046 127.762) (xy 544.068 127.762)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b45059f3-613f-4b7a-a70a-ed75a9e941e6) + ) + (wire (pts (xy 232.664 320.548) (xy 232.664 316.484)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b45301a2-b6d7-44bd-8834-616acde30aef) + ) + (wire (pts (xy 73.152 61.214) (xy 74.93 61.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b456cffc-d9d7-4c91-91f2-36ec9a65dd1b) + ) + (wire (pts (xy 402.844 350.774) (xy 594.106 350.774)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b45faf1e-b7a2-4d73-9833-db84a2fde78b) + ) + (wire (pts (xy 548.386 188.214) (xy 548.386 188.468)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4675fcd-90dd-499b-8feb-46b51a88378c) + ) + (wire (pts (xy 315.722 92.964) (xy 319.278 92.964)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4833916-7a3e-4498-86fb-ec6d13262ffe) + ) + (wire (pts (xy 92.202 171.196) (xy 92.202 -11.557)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4856fa9-d711-4b3f-8ccf-343375c62dce) + ) + (wire (pts (xy 139.7 15.494) (xy 128.27 15.494)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4afdd30-7a78-4cd8-8670-bb6dd787dcdc) + ) + (wire (pts (xy 257.302 -72.517) (xy 239.3696 -72.517)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4eddc61-2cab-493a-b874-62b106cef9f4) + ) + (wire (pts (xy 231.775 131.191) (xy 231.775 -100.457)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4efa293-75b5-42d5-996c-b449774d5ba5) + ) + (wire (pts (xy 121.666 200.787) (xy 138.43 200.787)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b500fd76-a613-4f44-aac4-99213e86ff44) + ) + (wire (pts (xy 263.906 172.72) (xy 257.556 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5071759-a4d7-4769-be02-251f23cd4454) + ) + (wire (pts (xy 300.99 168.402) (xy 399.542 168.402)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179) + ) + (wire (pts (xy 273.05 278.384) (xy 291.084 278.384)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5b863ac-a506-4b3e-baa9-6daff41ac83f) + ) + (wire (pts (xy 410.972 231.648) (xy 410.972 233.934)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5cea0b5-192f-476b-a3c8-0c26e2231699) + ) + (wire (pts (xy 65.278 332.994) (xy 83.312 332.994)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5d84bc0-4d9a-4d1d-a476-5c6b51309fca) + ) + (wire (pts (xy 371.094 176.403) (xy 371.094 -125.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5de2bf0-583c-45d9-bc5e-15007fe3ede8) + ) + (wire (pts (xy 87.63 78.74) (xy 212.09 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5ffe018-0d06-4a1b-95ee-b5763a35798d) + ) + (wire (pts (xy 395.986 120.142) (xy 432.308 120.142)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b606e532-e4c7-444d-b9ff-879f52cfde92) + ) + (wire (pts (xy 240.792 241.3) (xy 240.792 239.014)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6135480-ace6-42b2-9c47-856ef57cded1) + ) + (wire (pts (xy 64.389 -90.043) (xy 108.712 -90.043)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b64fe3cc-3a1f-41b6-9ac9-fa971c4a06a6) + ) + (wire (pts (xy 407.162 106.172) (xy 404.622 106.172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b66b83a0-313f-4b03-b851-c6e9577a6eb7) + ) + (wire (pts (xy 113.411 -82.423) (xy 64.389 -82.423)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6a3e709-356a-4a55-ac00-07ba73afac37) + ) + (wire (pts (xy 102.362 -24.257) (xy -10.668 -24.257)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7013b78-ce5a-47df-9e6f-e993b6073985) + ) + (wire (pts (xy 161.163 83.185) (xy 161.163 -21.844)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b70f4be0-be81-40f1-b237-a16be3740211) + ) + (wire (pts (xy 511.937 -158.623) (xy 511.937 -109.601)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b71ea2fc-03b3-4a1a-950e-5a040f1be797) + ) + (wire (pts (xy 190.246 -42.037) (xy 194.437 -42.037)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7496a40-6116-4192-b413-2a22be4b5f9f) + ) + (wire (pts (xy 349.758 233.68) (xy 353.314 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7867831-ef82-4f33-a926-59e5c1c09b91) + ) + (wire (pts (xy 287.274 98.806) (xy 293.37 98.806)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b78bfc8f-0469-4499-ad41-c131461c3c5d) + ) + (wire (pts (xy 217.932 142.494) (xy 217.932 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2) + ) + (wire (pts (xy 476.25 159.004) (xy 476.25 156.464)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b794d099-f823-4d35-9755-ca1c45247ee9) + ) + (wire (pts (xy 512.826 183.388) (xy 510.286 183.388)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7b00984-6ab1-482e-b4b4-67cac44d44da) + ) + (wire (pts (xy 421.386 144.78) (xy 430.784 134.747)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7bf6e08-7978-4190-aff5-c90d967f0f9c) + ) + (wire (pts (xy 223.52 142.113) (xy 271.399 142.113)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7dfd91c-6180-48d0-832a-f6a5a032a686) + ) + (wire (pts (xy 129.794 152.654) (xy 129.794 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7ed4c31-5417-4fb5-9261-7dca42c1c776) + ) + (wire (pts (xy 309.372 311.658) (xy 309.372 325.374)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b830f01d-0d9c-451a-9ac4-3e5744deb516) + ) + (wire (pts (xy 95.25 171.196) (xy 92.202 171.196)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8381d48-3c5b-401b-ac19-279d8173864c) + ) + (wire (pts (xy 214.63 116.332) (xy 212.09 116.332)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b83b087e-7ec9-44e7-a1c9-81d5d26bbf79) + ) + (wire (pts (xy -124.206 242.7732) (xy -124.206 171.958)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8b804c9-c4c1-407f-8921-786e7b10f0cf) + ) + (wire (pts (xy 367.538 150.114) (xy 390.398 150.114)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8b961e9-8a60-45fc-999a-a7a3baff4e0d) + ) + (wire (pts (xy 230.886 193.294) (xy 236.474 193.294)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8eb5c02-d344-4431-a592-0e7ad9f9a78f) + ) + (wire (pts (xy -51.054 181.229) (xy -51.054 271.145)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b90997e2-4c7f-4479-862f-ab35dfea4f77) + ) + (wire (pts (xy -57.404 293.497) (xy -57.404 294.005)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9272e8b-2d00-4d6b-ae8c-fd62ef331586) + ) + (wire (pts (xy 344.17 195.58) (xy 348.742 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5) + ) + (wire (pts (xy 484.124 84.328) (xy 489.966 84.328)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9c0c276-e6f1-47dd-b072-0f92904248ca) + ) + (wire (pts (xy 15.748 207.264) (xy 12.954 207.264)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9f8b708-1745-43ec-9646-59495cbc6e07) + ) + (wire (pts (xy -124.206 171.958) (xy -124.206 152.8572)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba619218-c3b4-47f7-a886-bb5752bd7681) + ) + (wire (pts (xy 317.5 149.352) (xy 317.5 108.204)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155) + ) + (wire (pts (xy 274.32 -80.137) (xy 190.246 -80.137)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid baaf14d0-0c5c-4bf0-82d7-5ee71082500d) + ) + (wire (pts (xy 219.964 147.574) (xy 219.964 129.286)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bab3431c-ede6-417b-8033-763748a11a9f) + ) + (wire (pts (xy 362.458 357.378) (xy 379.222 357.378)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bac7c5b3-99df-445a-ade9-1e608bbbe27e) + ) + (wire (pts (xy 213.614 246.634) (xy 213.614 303.784)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8) + ) + (wire (pts (xy 129.794 152.654) (xy 138.43 152.654)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb5e8a0f-2ed5-4c2a-91b7-cb63c4c66e15) + ) + (wire (pts (xy 246.253 -67.437) (xy 190.246 -67.437)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb7f3caf-4343-4dcb-b7b2-5479c850c4a2) + ) + (wire (pts (xy 437.642 204.724) (xy 437.642 169.672)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb8162f0-99c8-4884-be5b-c0d0c7e81ff6) + ) + (wire (pts (xy -175.768 329.438) (xy -175.768 191.6684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbc3f8cf-e574-4f84-8aef-4c00b35c0531) + ) + (wire (pts (xy -45.339 272.796) (xy -45.339 296.545)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbeadbd3-dc9d-4bb3-9f60-a643fa1fa7e6) + ) + (wire (pts (xy -44.069 72.644) (xy -44.069 272.796)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc007755-47dc-4b01-a9a3-8f34e8741895) + ) + (wire (pts (xy 397.002 155.448) (xy 397.002 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc01f3e7-a131-4f66-8abc-cc13e855d5e5) + ) + (wire (pts (xy 138.43 205.994) (xy 116.078 205.994)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc05cdd5-f72f-4c21-b397-0fa889871114) + ) + (wire (pts (xy 481.457 -146.431) (xy 481.457 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc29a09d-ebbe-4bab-9edb-114e75ee17a4) + ) + (wire (pts (xy 476.504 140.97) (xy 476.504 117.602)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc3b3f93-69e0-44a5-b919-319b81d13095) + ) + (wire (pts (xy 495.808 102.997) (xy 495.808 116.459)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc408f2c-2338-4a2e-9d30-e90fd4d4f487) + ) + (wire (pts (xy 119.8372 -117.983) (xy 119.8372 -116.4336)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc63061b-6916-4085-912c-a5a18b7451a8) + ) + (wire (pts (xy 216.916 -85.217) (xy 190.246 -85.217)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bca99a8e-598f-436a-9158-7a050d1f7ca4) + ) + (wire (pts (xy 148.336 28.321) (xy 148.336 31.242)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcd0d850-a20d-42e1-b97f-b14f9222717c) + ) + (wire (pts (xy 339.09 192.278) (xy 339.09 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd085057-7c0e-463a-982b-968a2dc1f0f8) + ) + (wire (pts (xy 98.298 170.942) (xy 98.298 171.958)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd29b6d3-a58c-4b1f-9c20-de4efb708ab2) + ) + (wire (pts (xy 223.012 233.934) (xy 223.012 273.431)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd793ae5-cde5-43f6-8def-1f95f35b1be6) + ) + (wire (pts (xy 340.868 383.54) (xy 340.868 249.174)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bde3f73b-f869-498d-a8d7-18346cb7179e) + ) + (wire (pts (xy 307.086 108.204) (xy 307.086 76.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054) + ) + (wire (pts (xy -153.67 160.4264) (xy -153.67 163.3728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be120be5-ee0d-4370-959d-58bb8ff05448) + ) + (wire (pts (xy 230.886 200.914) (xy 230.886 193.294)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be4b72db-0e02-4d9b-844a-aff689b4e648) + ) + (wire (pts (xy 24.638 237.49) (xy 24.638 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be5bbcc0-5b09-43de-a42f-297f80f602a5) + ) + (wire (pts (xy 108.204 190.754) (xy 138.43 190.754)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be6b17f9-34f5-44e9-a4c7-725d2e274a9d) + ) + (wire (pts (xy 212.09 35.56) (xy 208.915 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bead2789-cf29-4cdd-ad3a-a7fd6922e223) + ) + (wire (pts (xy 18.542 186.309) (xy 18.542 -15.875)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf67f245-1714-4d39-b76d-53f1523ab5f8) + ) + (wire (pts (xy 509.397 -158.623) (xy 509.397 -155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf958b11-f26e-429d-9cb0-d1379a98f463) + ) + (wire (pts (xy 239.268 -62.357) (xy 239.268 119.888)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfff8af5-be9c-44df-80bd-23ee2cf9c437) + ) + (wire (pts (xy 326.644 98.044) (xy 326.898 98.044)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c088f712-1abe-4cac-9a8b-d564931395aa) + ) + (wire (pts (xy 290.068 160.782) (xy 293.624 160.782)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f) + ) + (wire (pts (xy 122.682 381.254) (xy 190.627 381.254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0c62e93-8e84-4f2b-96ae-e90b55e0550a) + ) + (wire (pts (xy 93.345 170.942) (xy 98.298 170.942)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0e13d91-53b7-4de6-8d61-7c13732113b8) + ) + (wire (pts (xy 16.891 198.882) (xy 12.7 198.882)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c14f4f41-991c-47f8-ba74-4a4e89170acf) + ) + (wire (pts (xy -57.404 299.085) (xy -55.372 299.085)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1518dae-2aaf-4360-9028-98a626546353) + ) + (wire (pts (xy 133.096 160.274) (xy 133.096 183.134)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c15b2f75-2e10-4b71-bebb-e2b872171b92) + ) + (wire (pts (xy 37.338 123.444) (xy 170.18 123.444)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8) + ) + (wire (pts (xy 210.185 -75.057) (xy 190.246 -75.057)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1b603f4-7037-47e9-a9dc-a0bb6f7e58b1) + ) + (wire (pts (xy 374.015 -97.79) (xy 359.156 -97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1b73b2b-a0dd-4b0e-8d3d-c3beea420b93) + ) + (wire (pts (xy 96.774 156.464) (xy 100.33 156.464)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09) + ) + (wire (pts (xy 209.169 161.417) (xy 215.773 161.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1c05ce7-1c25-4382-b3b9-d3ec327783d4) + ) + (wire (pts (xy 445.008 162.687) (xy 445.008 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1fbee58-f474-4414-9110-64abd03ed7c9) + ) + (wire (pts (xy 158.496 105.791) (xy 155.067 105.791)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c202ddee-78ab-4ebb-beca-559aaf118430) + ) + (wire (pts (xy 359.156 -34.29) (xy 468.503 -34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2079b33-906e-4c67-b0b6-7e228acc166b) + ) + (wire (pts (xy 130.302 11.176) (xy 130.302 10.414)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2211bf7-6ed0-4800-9f21-d6a078bedba2) + ) + (wire (pts (xy 350.266 140.97) (xy 356.108 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c25449d6-d734-4953-b762-98f82a830248) + ) + (wire (pts (xy 411.226 -97.79) (xy 374.015 -97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2564ecf-bd43-431d-b9a2-c7be54487485) + ) + (wire (pts (xy -49.784 291.465) (xy -57.404 291.465)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2a5cbbc-a316-4826-81b8-a34d52b5eb58) + ) + (wire (pts (xy -10.668 -24.257) (xy -10.668 272.415)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2d24be9-0a91-4ad8-a6f8-4f606bd871ac) + ) + (wire (pts (xy -52.832 293.497) (xy -57.404 293.497)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2d81a3b-9b02-4ddc-9c7b-c0e881678970) + ) + (wire (pts (xy 77.47 265.684) (xy 79.756 265.684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2e901e5-a4cd-4374-af38-0566255ecbea) + ) + (wire (pts (xy 220.98 -76.454) (xy 221.869 -76.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c34f5129-9516-486b-b322-ada2d7baa6ba) + ) + (wire (pts (xy 497.586 148.844) (xy 497.586 159.004)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3a69550-c4fa-45d1-9aba-0bba47699cca) + ) + (wire (pts (xy 133.096 233.934) (xy 138.43 233.934)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212) + ) + (wire (pts (xy 240.1824 -69.977) (xy 240.1824 -119.7102)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3d9c1ab-3b38-4dce-a7f1-9aa3d28255be) + ) + (wire (pts (xy 342.9 393.954) (xy 342.9 410.591)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3f6c24d-368b-47d2-9a0a-d716bb140344) + ) + (wire (pts (xy 480.568 176.022) (xy 491.744 176.022)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c401e9c6-1deb-4979-99be-7c801c952098) + ) + (wire (pts (xy 358.14 252.73) (xy 424.18 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c454102f-dc92-4550-9492-797fc8e6b49c) + ) + (wire (pts (xy 510.286 179.324) (xy 510.286 183.388)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c482f4f0-b441-4301-a9f1-c7f9e511d699) + ) + (wire (pts (xy 64.389 -105.283) (xy 65.024 -105.283)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c546008e-7661-419e-94b3-0bbb9fd14ec8) + ) + (wire (pts (xy 399.542 263.906) (xy 405.892 263.906)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5565d96-c729-4597-a74f-7f75befcc39d) + ) + (wire (pts (xy 506.476 239.014) (xy 512.826 239.014)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c56bbebe-0c9a-418d-911e-b8ba7c53125d) + ) + (wire (pts (xy -154.2288 179.4764) (xy -154.2288 179.5272)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5e75eaa-952d-4330-bf86-8b780c910afa) + ) + (wire (pts (xy -163.322 152.8064) (xy -158.0896 152.8064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5f6eafe-dd67-455e-92d9-18f1ee628063) + ) + (wire (pts (xy 16.383 -4.064) (xy 71.755 -4.064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c66790a8-2c84-47da-b059-a728d9f51463) + ) + (wire (pts (xy 339.09 146.05) (xy 233.934 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c66a19ed-90c0-4502-ae75-6a4c4ab9f297) + ) + (wire (pts (xy 127 -69.723) (xy 127 -53.594)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6d0e6be-376d-4beb-9794-508920a2265a) + ) + (wire (pts (xy 85.471 181.229) (xy -51.054 181.229)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6e8924b-3698-49bc-af6d-d7a327eada39) + ) + (wire (pts (xy -158.0896 152.8064) (xy -158.0896 153.2128)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c70cc019-1fc0-4d2d-9cb1-9a57426c63c5) + ) + (wire (pts (xy 204.47 162.814) (xy 209.55 162.814)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c71f56c1-5b7c-4373-9716-fffac482104c) + ) + (wire (pts (xy 406.146 221.996) (xy 478.282 221.996)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7524402-4dbd-4d05-888d-edab7e79a150) + ) + (wire (pts (xy 64.389 -57.023) (xy 64.389 -56.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c78d97f4-1d1b-46c3-bcbb-8424944a8978) + ) + (wire (pts (xy 71.374 291.592) (xy 80.518 291.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7cd39db-931a-4d86-96b8-57e6b39f58f9) + ) + (wire (pts (xy 118.11 22.352) (xy 118.11 31.242)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7db4903-f95a-49f5-bcce-c52f0ca8defc) + ) + (wire (pts (xy 238.506 254.254) (xy 248.158 254.254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7df8431-dcf5-4ab4-b8f8-21c1cafc5246) + ) + (wire (pts (xy 383.286 367.03) (xy 374.396 367.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7f7bd58-1ebd-40fd-a39d-a95530a751b6) + ) + (wire (pts (xy 512.826 188.214) (xy 512.826 194.056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8072c34-0f81-4552-9fbe-4bfe60c53e21) + ) + (wire (pts (xy 461.772 244.856) (xy 468.122 244.856)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c81031ca-cd56-4ea3-b0db-833cbbdd7b2e) + ) + (wire (pts (xy 277.622 307.594) (xy 277.876 307.594)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c873689a-d206-42f5-aead-9199b4d63f51) + ) + (wire (pts (xy 508.762 179.324) (xy 510.286 179.324)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c88340d4-f51e-4560-b5d7-7144fb4e8a04) + ) + (wire (pts (xy 390.398 150.114) (xy 392.684 150.114)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8a44971-63c1-4a19-879d-b6647b2dc08d) + ) + (wire (pts (xy 360.934 223.266) (xy 360.934 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8a7af6e-c432-4fa3-91ee-c8bf0c5a9ebe) + ) + (wire (pts (xy 303.53 98.806) (xy 308.102 98.806)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8b6b273-3d20-4a46-8069-f6d608563604) + ) + (wire (pts (xy 403.733 335.661) (xy 393.7 339.598)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8b93f12-bc5c-4ce5-b954-377d903895f1) + ) + (wire (pts (xy 364.49 144.78) (xy 364.49 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8fd9dd3-06ad-4146-9239-0065013959ef) + ) + (wire (pts (xy 248.158 254.254) (xy 248.158 223.139)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9863f4f-bdf5-49f4-b18e-dce622ff9931) + ) + (wire (pts (xy 445.008 162.687) (xy 442.595 162.687)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9ab240f-b898-4113-9b58-995237cd751a) + ) + (wire (pts (xy 72.898 327.914) (xy 72.898 334.772)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9be0f6a-b9b8-468a-82f0-1c3992d319aa) + ) + (wire (pts (xy -158.0896 163.3728) (xy -153.67 163.3728)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9c9839e-d43e-401e-b0e9-81c64e18cd8f) + ) + (wire (pts (xy 209.55 360.934) (xy -47.244 360.934)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca7eee62-ed2f-41f0-ba4a-5f9abd56ee97) + ) + (wire (pts (xy 127.762 164.084) (xy 53.848 164.084)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca9b74ce-0dee-401c-9544-f599f4cf538d) + ) + (wire (pts (xy 127 -53.594) (xy 130.556 -53.594)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cab0d0a9-e089-4f0b-8483-22b4e0addcae) + ) + (wire (pts (xy 113.411 -33.401) (xy 113.411 -82.423)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cac6ef5d-79dc-46ad-ba83-77cb1377c287) + ) + (wire (pts (xy 217.805 -87.757) (xy 217.805 -10.287)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cad44c02-7fd2-4e9a-b93a-e1b73d6a3ee6) + ) + (wire (pts (xy 263.906 166.624) (xy 263.906 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cada57e2-1fa7-4b9d-a2a0-2218773d5c50) + ) + (wire (pts (xy 291.592 115.57) (xy 350.139 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb0f5a26-0827-4807-aea7-55b25947b9d5) + ) + (wire (pts (xy 320.548 225.298) (xy 320.548 229.616)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb16d05e-318b-4e51-867b-70d791d75bea) + ) + (wire (pts (xy 254.635 315.595) (xy 661.035 315.595)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb264f5c-8c6d-42d7-b52d-ea304b08528f) + ) + (wire (pts (xy 71.755 -4.064) (xy 71.755 -41.783)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb4b7bcd-f8cd-4398-9baf-986854c6b2ae) + ) + (wire (pts (xy 208.915 5.461) (xy 456.311 5.461)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb5eb8e7-f7ba-4f62-8bfe-a6dd2b84605e) + ) + (wire (pts (xy 354.076 339.09) (xy 354.076 338.328)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb6062da-8dcd-4826-92fd-4071e9e97213) + ) + (wire (pts (xy 284.226 160.147) (xy 284.226 226.314)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb9ac0e7-73b9-4ed2-8689-9778cfd89978) + ) + (wire (pts (xy 331.724 150.114) (xy 301.244 150.114)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbdd084c-3cde-4340-9de6-6f6ca3f79e91) + ) + (wire (pts (xy 315.722 82.55) (xy 321.056 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc48dd41-7768-48d3-b096-2c4cc2126c9d) + ) + (wire (pts (xy 60.7568 326.3392) (xy 60.7568 327.4568)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc716bd0-4abf-43b4-b162-4586fc1a08aa) + ) + (wire (pts (xy 257.302 130.937) (xy 257.302 -72.517)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc93ecb4-fd7b-48b7-868d-89f294f07c27) + ) + (wire (pts (xy 367.03 133.35) (xy 398.526 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ccc4cc25-ac17-45ef-825c-e079951ffb21) + ) + (wire (pts (xy 18.542 -15.875) (xy 134.747 -15.875)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ccd45da3-3d73-496d-8f2e-5edf69377f63) + ) + (wire (pts (xy 288.798 74.93) (xy 295.656 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd1cff81-9d8a-4511-96d6-4ddb79484001) + ) + (wire (pts (xy 407.162 159.766) (xy 407.162 161.036)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd2580a0-9e4c-4895-a13c-3b2ee33bafc4) + ) + (wire (pts (xy 84.328 384.302) (xy 84.328 386.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd48b13f-c989-4ac1-a7f0-053afcd77527) + ) + (wire (pts (xy 97.79 172.466) (xy 97.79 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd50b8dc-829d-4a1d-8f2a-6471f378ba87) + ) + (wire (pts (xy 246.38 -108.077) (xy 190.246 -108.077)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd8c6c53-febf-40c1-af77-5373add0fde7) + ) + (wire (pts (xy 377.698 -15.621) (xy 377.698 -49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdea6ba1-cc65-46ec-9776-a403fa76c4fe) + ) + (wire (pts (xy 67.564 194.056) (xy 88.646 194.056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdf69da0-bf1d-48b6-92e4-7b762bd4454d) + ) + (wire (pts (xy 515.62 171.45) (xy 539.496 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdfb661b-489b-4b76-99f4-62b92bb1ab18) + ) + (wire (pts (xy 20.828 168.021) (xy 15.494 168.021)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce3f834f-337d-4957-8d02-e900d7024614) + ) + (wire (pts (xy 271.399 45.847) (xy 214.757 45.847)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce55d4e5-cb2b-4927-9979-4a7fc840f632) + ) + (wire (pts (xy 284.226 141.224) (xy 323.596 141.224)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce72ea62-9343-4a4f-81bf-8ac601f5d005) + ) + (wire (pts (xy 83.312 290.576) (xy 83.312 308.356)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ceb12634-32ca-4cbf-9ff5-5e8b53ab18ad) + ) + (wire (pts (xy 73.152 55.88) (xy 73.152 57.531)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cebfc912-6282-4a1e-923e-74c4961c2aad) + ) + (wire (pts (xy 114.9096 -5.334) (xy 295.021 -5.334)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cec22d4a-eda3-4d50-8609-c3a123c120be) + ) + (wire (pts (xy 265.684 325.374) (xy 265.684 307.213)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf06bbbc-3fa0-42b7-9a99-642ec3689891) + ) + (wire (pts (xy 105.918 188.214) (xy 105.918 197.866)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13) + ) + (wire (pts (xy 349.758 233.426) (xy 349.758 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce) + ) + (wire (pts (xy 248.158 219.202) (xy 298.196 219.202)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf815d51-c956-4c5a-adde-c373cb025b07) + ) + (wire (pts (xy 76.962 56.642) (xy 76.962 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfdef906-c924-4492-999d-4de066c0bce1) + ) + (wire (pts (xy -148.59 152.8064) (xy -158.0896 152.8064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0000aba-b168-4038-8ec0-a427cd4f1503) + ) + (wire (pts (xy 304.546 316.484) (xy 232.664 316.484)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0292983-0ab9-4b24-b3bd-f154f790c7ec) + ) + (wire (pts (xy 210.185 42.037) (xy 210.185 -75.057)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d09d8e7f-f203-4b36-92ba-f9f29b6e7d13) + ) + (wire (pts (xy 243.84 174.498) (xy 256.286 174.498)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0a0deb1-4f0f-4ede-b730-2c6d67cb9618) + ) + (wire (pts (xy 228.092 155.829) (xy 228.092 178.054)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0f42cc3-e2d7-4f51-9d6f-0c2eaccb6ae7) + ) + (wire (pts (xy 262.382 260.096) (xy 273.05 260.096)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d102186a-5b58-41d0-9985-3dbb3593f397) + ) + (wire (pts (xy 95.25 172.466) (xy 97.79 172.466)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1441985-7b63-4bf8-a06d-c70da2e3b78b) + ) + (wire (pts (xy 210.82 160.274) (xy 210.82 106.172)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1a9be32-38ba-44e6-bc35-f031541ab1fe) + ) + (wire (pts (xy 491.49 194.056) (xy 512.826 194.056)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d) + ) + (wire (pts (xy 456.311 -149.606) (xy 453.517 -149.606)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1dfde70-d9fc-446f-93d2-31e0ac9baaa9) + ) + (wire (pts (xy 290.068 176.022) (xy 298.45 176.022)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1eca865-05c5-48a4-96cf-ed5f8a640e25) + ) + (wire (pts (xy 399.288 -100.33) (xy 359.156 -100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1f81642-eb3a-4277-b357-9cbb5a3aa5ac) + ) + (wire (pts (xy -163.322 172.3136) (xy -163.322 152.8064)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2096106-88f7-4b0d-ba40-1ec5c9d6c7f0) + ) + (wire (pts (xy 64.389 -62.103) (xy 105.41 -62.103)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d22f8c08-7c7a-481b-96ff-cad6b4c95453) + ) + (wire (pts (xy 323.215 56.896) (xy 336.55 56.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d23840a6-3c61-45ca-968a-bc57332fd7a4) + ) + (wire (pts (xy 213.614 303.784) (xy 641.477 303.784)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d23aa89d-c621-4b1b-a845-8c26429d6622) + ) + (wire (pts (xy 406.273 233.934) (xy 406.273 227.457)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d25a1e45-06d1-4c1c-9b3a-0fd8abd0bfed) + ) + (wire (pts (xy 66.04 -74.803) (xy 66.04 -77.343)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2683b99-bb18-4d41-a0c5-df26e16e4210) + ) + (wire (pts (xy 340.868 249.174) (xy 221.742 249.174)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2db53d0-2821-4ebe-bf21-b864eac8ca44) + ) + (wire (pts (xy 79.248 263.398) (xy 83.312 263.398)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d32956af-146b-4a09-a053-d9d64b8dd86d) + ) + (wire (pts (xy 9.271 -20.955) (xy 79.375 -20.955)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d32a1d0f-6a8f-45b4-822f-8b613131fd8a) + ) + (wire (pts (xy 301.244 150.114) (xy 301.244 150.368)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d32a4687-3a9c-4aaa-9fc8-6c464698f554) + ) + (wire (pts (xy 359.156 -72.39) (xy 425.831 -72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d36e7ed4-f2bc-4d88-86ae-317d3c24af1a) + ) + (wire (pts (xy 492.252 78.486) (xy 492.252 93.726)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d372e2ac-d81e-48b7-8c55-9bbe58eeffc3) + ) + (wire (pts (xy 498.348 101.854) (xy 504.698 101.854)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d396ce56-1974-47b7-a41b-ae2b20ef835c) + ) + (wire (pts (xy 331.47 219.456) (xy 331.724 219.456)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3d57924-54a6-421d-a3a0-a044fc909e88) + ) + (wire (pts (xy 170.815 107.061) (xy 170.815 70.358)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3dd0ba2-2496-4e95-8d54-12ee57bcbce2) + ) + (wire (pts (xy 133.096 263.398) (xy 133.096 233.934)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3dd7cdb-b730-487d-804d-99150ba318ef) + ) + (wire (pts (xy 218.948 184.404) (xy 231.648 184.404)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3e133b7-2c84-4206-a2b1-e693cb57fe56) + ) + (wire (pts (xy 64.389 -100.203) (xy 65.024 -100.203)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d40ed1bf-6a69-492a-acf3-f71f1c7a81f2) + ) + (wire (pts (xy 518.287 141.224) (xy 518.287 -87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d433e10e-a10c-42c7-9409-f756ab1084a2) + ) + (wire (pts (xy 416.56 210.82) (xy 522.986 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4e4ffa8-e3e2-4590-b9df-630d1880f3e4) + ) + (wire (pts (xy 190.246 -110.617) (xy 295.021 -110.617)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4f9d898-7a83-4186-a9d6-9da79adbdd19) + ) + (wire (pts (xy 385.445 217.932) (xy 398.526 217.932)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5128f0b-0a4f-4337-a7f7-9a3dfe4ad4f9) + ) + (wire (pts (xy 549.656 196.596) (xy 549.656 194.818)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d53baa32-ba88-4646-9db3-0e9b0f0da4f0) + ) + (wire (pts (xy 295.656 70.358) (xy 295.656 69.342)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d54fce64-01e8-4f5c-8f34-4e64d47e3402) + ) + (wire (pts (xy 132.334 225.298) (xy 132.334 56.642)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d554632b-6dd0-47f8-b59b-3ce25177ca3e) + ) + (wire (pts (xy 440.69 105.918) (xy 440.69 153.162)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5a7688c-7438-4b6d-999f-4f2a3cb18fd6) + ) + (wire (pts (xy 208.915 35.56) (xy 208.915 5.461)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5ad3607-7629-4f44-bfe3-a3b510cd5b14) + ) + (wire (pts (xy 483.997 -158.623) (xy 483.997 -139.573)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5eb7c6e-b098-49b0-b366-c8b7c67afed0) + ) + (wire (pts (xy 379.222 317.754) (xy 379.222 357.378)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6040293-95f0-436a-938c-ad69875a4be8) + ) + (wire (pts (xy 105.41 331.724) (xy 67.818 331.724)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd) + ) + (wire (pts (xy 66.04 -74.803) (xy 66.04 -72.263)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d66c8b0e-b6b3-43ea-8c6d-9724edcc57d6) + ) + (wire (pts (xy 241.3 164.846) (xy 244.348 164.846)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d66d3c12-11ce-4566-9a45-962e329503d8) + ) + (wire (pts (xy 28.067 127.254) (xy 27.178 127.254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d68589fa-205b-4356-a20d-821c85f5f45e) + ) + (wire (pts (xy 358.14 252.476) (xy 358.14 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d68e5ddb-039c-483f-88a3-1b0b7964b482) + ) + (wire (pts (xy 204.47 157.734) (xy 233.934 157.734)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d692b5e6-71b2-4fa6-bc83-618add8d8fef) + ) + (wire (pts (xy 396.621 394.081) (xy 396.621 282.194)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6cc98ff-7d68-4734-afa1-c7dd225e08d3) + ) + (wire (pts (xy 212.09 134.62) (xy 217.932 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d70bfdec-de0f-45e5-9452-2cd5d12b83b9) + ) + (wire (pts (xy 359.156 -57.15) (xy 526.923 -57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d799aac7-79c2-4447-bfa3-8eb302b60af7) + ) + (wire (pts (xy 128.397 60.325) (xy 310.769 60.325)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7de2887-c7b2-4bb7-a339-632f4f906224) + ) + (wire (pts (xy 393.7 356.87) (xy 394.97 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7df1f01-3f56-437b-a452-e88ad90a9805) + ) + (wire (pts (xy 320.548 229.616) (xy 328.93 229.616)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7e4abd8-69f5-4706-b12e-898194e5bf56) + ) + (wire (pts (xy 204.47 180.594) (xy 240.538 180.594)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7e5a060-eb57-4238-9312-26bc885fc97d) + ) + (wire (pts (xy 504.317 -154.813) (xy 532.257 -154.813)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d81bc63a-94f2-481d-a808-c50170eb6b79) + ) + (wire (pts (xy 488.95 201.676) (xy 535.686 201.676)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8200a86-aa75-47a3-ad2a-7f4c9c999a6f) + ) + (wire (pts (xy 454.914 119.126) (xy 454.914 117.348)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8370835-89ad-4b62-9f40-d0c10470788a) + ) + (wire (pts (xy 393.192 200.914) (xy 401.32 200.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652) + ) + (wire (pts (xy 234.188 158.75) (xy 234.188 205.994)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9cdb60a-ecfa-4866-ad81-ca393f637bae) + ) + (wire (pts (xy 478.917 -144.272) (xy 606.679 -144.272)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da151d0a-a1fa-4865-aa78-eb4b6082fbfd) + ) + (wire (pts (xy 190.246 -44.577) (xy 194.437 -44.577)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da37a168-b259-4f98-9030-90f2f5ac962a) + ) + (wire (pts (xy 204.47 188.214) (xy 218.948 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da481376-0e49-44d3-91b8-aaa39b869dd1) + ) + (wire (pts (xy 324.104 112.014) (xy 422.91 112.014)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da6f4122-0ecc-496f-b0fd-e4abef534976) + ) + (wire (pts (xy 522.097 -158.623) (xy 523.367 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da710602-5c6f-4ba5-b461-48eb0116bbbe) + ) + (wire (pts (xy 391.287 356.87) (xy 391.414 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da7e6488-201f-4286-b86a-ca5aced3697a) + ) + (wire (pts (xy 455.168 138.811) (xy 455.168 180.086)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da7eee34-4516-4154-9034-7c9b8e2afe41) + ) + (wire (pts (xy 64.77 67.818) (xy 64.77 57.912)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da862bae-4511-4bb9-b18d-fa60a2737feb) + ) + (wire (pts (xy 398.526 131.572) (xy 395.986 131.572)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dad2f9a9-292b-4f7e-9524-a263f3c1ba74) + ) + (wire (pts (xy 60.325 -9.017) (xy 60.325 171.831)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db09a492-3111-4077-8b89-2ff4c8eebad3) + ) + (wire (pts (xy 476.25 159.004) (xy 497.586 159.004)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db1ed10a-ef86-43bf-93dc-9be76327f6d2) + ) + (wire (pts (xy 436.372 123.444) (xy 406.146 123.444)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db532ed2-914c-41b4-b389-de2bf235d0a7) + ) + (wire (pts (xy 71.12 255.524) (xy 71.12 262.382)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db6412d3-e6c3-4bdd-abf4-a8f55d56df31) + ) + (wire (pts (xy 239.3696 -72.517) (xy 190.246 -72.517)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db91052c-1d76-4c6c-bdc6-1565cd60a03d) + ) + (wire (pts (xy 231.902 130.937) (xy 257.302 130.937)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db97118a-0872-4a5d-aaa5-b35f9498f22a) + ) + (wire (pts (xy 219.71 74.93) (xy 288.798 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbbbcbf5-ed09-4c20-902c-70f108158aba) + ) + (wire (pts (xy 369.697 -102.87) (xy 369.697 -74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbd87a35-3166-440e-a8f0-c71d214a12a6) + ) + (wire (pts (xy 130.81 178.054) (xy 138.43 178.054)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018) + ) + (wire (pts (xy 327.406 238.506) (xy 318.008 238.506)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc2801a1-d539-4721-b31f-fe196b9f13df) + ) + (wire (pts (xy 102.87 172.974) (xy 102.87 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc2e4d69-ab4d-4864-999d-7aa340dd63c7) + ) + (wire (pts (xy 194.437 -34.417) (xy 190.246 -34.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc9eba43-a0ae-45fc-b91c-9050201557b9) + ) + (wire (pts (xy 241.808 238.252) (xy 318.008 238.252)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dca1d7db-c913-4d73-a2cc-fdc9651eda69) + ) + (wire (pts (xy 591.566 -155.956) (xy 537.337 -155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd01ca49-c8a2-4580-af9a-2e9bce9769bc) + ) + (wire (pts (xy 81.28 170.942) (xy 81.28 172.974)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd2d59b3-ddef-491f-bb57-eb3d3820bdeb) + ) + (wire (pts (xy 83.82 211.328) (xy 115.316 211.328)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd334895-c8ff-4719-bac4-c0b289bb5899) + ) + (wire (pts (xy 406.146 123.444) (xy 406.146 130.302)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd3da890-32ef-4a5a-aea4-e5d2141f1ff1) + ) + (wire (pts (xy 289.941 -6.985) (xy 445.77 -6.985)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd552f19-e379-4dd5-a10b-882b6c8e7a65) + ) + (wire (pts (xy 129.032 358.902) (xy 94.488 358.902)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd5f7736-b8aa-44f2-a044-e514d63d48f3) + ) + (wire (pts (xy 73.914 290.576) (xy 83.312 290.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd70858b-2f9a-4b3f-9af5-ead3a9ba57e9) + ) + (wire (pts (xy 248.158 146.685) (xy 248.158 165.608)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddc0999f-48c1-4a48-960f-30f430270283) + ) + (wire (pts (xy 238.506 221.234) (xy 238.506 254.254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dde8619c-5a8c-40eb-9845-65e6a654222d) + ) + (wire (pts (xy 21.463 214.503) (xy 19.177 214.503)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de2abbd8-9b48-47ba-b77e-4c65ca048af6) + ) + (wire (pts (xy 465.328 151.13) (xy 465.328 151.384)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de370984-7922-4327-a0ba-7cd613995df4) + ) + (wire (pts (xy 399.542 106.172) (xy 399.542 103.632)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de552ae9-cde6-4643-8cc7-9de2579dadae) + ) + (wire (pts (xy 190.246 -77.597) (xy 220.98 -77.597)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dea30d29-44e9-47fc-bccc-6928d5c29cea) + ) + (wire (pts (xy 406.273 233.934) (xy 410.972 233.934)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df1435bb-8018-455d-9925-63e774164119) + ) + (wire (pts (xy 266.954 299.466) (xy 266.954 290.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df2a6036-7274-4398-9365-148b6ddab90d) + ) + (wire (pts (xy 394.716 -95.25) (xy 359.156 -95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df3e0d78-29b1-4811-9600-571610f4b8a8) + ) + (wire (pts (xy 148.336 11.176) (xy 185.674 11.176)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfba7148-cad3-4f40-9835-b1394bd30a2c) + ) + (wire (pts (xy 125.222 167.894) (xy 125.222 159.512)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfcef016-1bf5-4158-8a79-72d38a522877) + ) + (wire (pts (xy 398.272 241.3) (xy 400.304 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dff67d5c-d976-4516-ae67-dbbdb70f8ddd) + ) + (wire (pts (xy 407.162 153.162) (xy 407.162 159.766)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e002a979-85bc-451a-a77b-29ce2a8f19f9) + ) + (wire (pts (xy 148.717 -134.747) (xy 466.217 -134.747)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e02b47af-92a8-4b6e-841f-f88d0fa73eb7) + ) + (wire (pts (xy 224.028 278.13) (xy -17.018 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0660a46-ff2a-4b28-b311-cf71bc999b82) + ) + (wire (pts (xy 227.076 117.094) (xy 227.076 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0692317-3143-4681-97c6-8fbe46592f31) + ) + (wire (pts (xy 168.656 105.791) (xy 168.656 98.552)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0781b80-6f1b-4d08-b53f-b7d3f582e2ea) + ) + (wire (pts (xy 509.016 111.506) (xy 514.858 111.506)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e07e1653-d05d-4bf2-bea3-6515a06de065) + ) + (wire (pts (xy 374.142 257.81) (xy 390.398 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7) + ) + (wire (pts (xy 252.73 140.462) (xy 252.73 213.614)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0c7ddff-8c90-465f-be62-21fb49b059fa) + ) + (wire (pts (xy 118.872 203.454) (xy 118.872 267.716)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e11ae5a5-aa10-4f10-b346-f16e33c7899a) + ) + (wire (pts (xy 467.741 -158.623) (xy 466.217 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e16a8ef9-72be-44ea-a34c-71d53d6ff2bf) + ) + (wire (pts (xy 148.717 -87.503) (xy 148.717 -134.747)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1b0380f-01af-4f4c-986f-502b633a3c03) + ) + (wire (pts (xy 242.57 185.674) (xy 204.47 185.674)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1b88aa4-d887-4eea-83ff-5c009f4390c4) + ) + (wire (pts (xy 50.165 157.226) (xy 50.165 155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1c71a89-4e45-4a56-a6ef-342af5f92d5c) + ) + (wire (pts (xy 483.997 -139.573) (xy 313.944 -139.573)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1df8cea-32a4-457d-86df-d8e326022a52) + ) + (wire (pts (xy 522.224 179.578) (xy 520.446 179.578)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1fe6230-75c5-4750-aaea-24a9b80589d8) + ) + (wire (pts (xy -35.179 344.932) (xy -35.179 273.685)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e208ea3a-d990-4992-b395-c95b18b77f83) + ) + (wire (pts (xy 41.275 160.782) (xy 41.275 155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e20929e2-2c15-4a75-b1ed-9caa9bd27df7) + ) + (wire (pts (xy 385.572 172.085) (xy 385.572 -80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2349eb5-0f2d-4c2a-b154-1cfe1ab9cd91) + ) + (wire (pts (xy 414.655 202.438) (xy 414.655 235.077)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2743b78-cc59-458c-8fb0-4238f348a49f) + ) + (wire (pts (xy 71.882 198.882) (xy 87.376 198.882)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e29e8d7d-cee8-47d4-8444-1d7032daf03c) + ) + (wire (pts (xy 269.748 117.094) (xy 227.076 117.094)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2df2a45-3811-4210-89e0-9a66f3cb9430) + ) + (wire (pts (xy 119.8372 -116.4336) (xy 119.8372 -110.5662)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2e2ec34-7075-4967-931c-7cbeba0783ac) + ) + (wire (pts (xy 240.538 151.003) (xy 240.538 180.594)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e342f8d7-ca8a-47a5-a679-3c984454e9a5) + ) + (wire (pts (xy 273.05 260.096) (xy 273.05 268.224)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e36988d2-ecb2-461b-a443-7006f447e828) + ) + (wire (pts (xy 286.766 344.17) (xy 325.882 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3877396-3ff6-4b1d-9715-0d1a70961579) + ) + (wire (pts (xy 359.156 -106.553) (xy 359.156 -105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3903eeb-8b72-4b40-a088-cbbba270c01b) + ) + (wire (pts (xy 321.056 82.55) (xy 326.898 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e413cfad-d7bd-41ab-b8dd-4b67484671a6) + ) + (wire (pts (xy 511.937 -109.601) (xy 664.972 -109.601)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e419300a-5404-42ba-8c9b-e8cd5066ac8e) + ) + (wire (pts (xy 67.31 259.334) (xy 64.77 259.334)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e45aa7d8-0254-4176-afd9-766820762e19) + ) + (wire (pts (xy 155.067 107.061) (xy 170.815 107.061)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e463ba2a-1cbc-4995-82d8-59710b3fcd2f) + ) + (wire (pts (xy 194.437 -36.957) (xy 194.437 -39.497)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e47d9cf3-579e-4750-bc6d-bf58b55862bb) + ) + (wire (pts (xy 204.47 218.694) (xy 247.65 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4aa537c-eb9d-4dbb-ac87-fae46af42391) + ) + (wire (pts (xy 190.246 -102.997) (xy 214.376 -102.997)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4d0483b-1c21-4fb6-87dd-47e636746c0e) + ) + (wire (pts (xy 109.728 243.586) (xy 109.728 244.094)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4d60aa0-829b-452e-a0b4-f0b282cbe2f3) + ) + (wire (pts (xy 491.49 191.516) (xy 491.744 191.516)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e50c80c5-80c4-46a3-8c1e-c9c3a71a0934) + ) + (wire (pts (xy 119.8372 -110.5662) (xy 126.6444 -110.5662)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e51433a6-3516-4c58-bff0-eec36e3fed37) + ) + (wire (pts (xy 329.946 131.572) (xy 329.946 137.668)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5864fe6-2a71-47f0-90ce-38c3f8901580) + ) + (wire (pts (xy 594.106 350.774) (xy 594.106 -151.003)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5f06cd2-492e-41b2-8ded-13a3fa1042bb) + ) + (wire (pts (xy 359.156 -21.463) (xy 572.643 -21.463)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6235600-87cc-4c82-b15f-34fb66b9bf0e) + ) + (wire (pts (xy 391.287 356.87) (xy 391.287 359.918)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e62e65e6-b466-4769-8746-eb8cd9450c76) + ) + (wire (pts (xy 465.328 140.97) (xy 476.504 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e65bab67-68b7-4b22-a939-6f2c05164d2a) + ) + (wire (pts (xy 228.092 155.829) (xy 232.156 155.829)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6b8e749-dce0-4716-821f-058d77eed5ce) + ) + (wire (pts (xy 87.376 185.674) (xy 87.376 182.372)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6d68f56-4a40-4849-b8d1-13d5ca292900) + ) + (wire (pts (xy 116.84 363.728) (xy 116.84 366.014)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6) + ) + (wire (pts (xy 204.47 193.294) (xy 220.726 193.294)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e70b6168-f98e-4322-bc55-500948ef7b77) + ) + (wire (pts (xy 572.643 -21.463) (xy 572.643 240.792)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e73ef891-c9f9-42ab-894b-b2580ee0b0a1) + ) + (wire (pts (xy 356.616 266.446) (xy 356.616 254.0508)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7451bf1-ebb3-4603-ab8f-fce122a587bc) + ) + (wire (pts (xy 107.061 277.495) (xy 107.061 215.011)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e75a90f1-d275-4ca6-86ea-4b6dddffab59) + ) + (wire (pts (xy 138.43 211.074) (xy 136.398 211.074)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e77c17df-b20e-4e7d-b937-f281c75a0014) + ) + (wire (pts (xy 504.698 101.854) (xy 504.698 103.632)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7893166-2c2c-41b4-bd84-76ebc2e06551) + ) + (wire (pts (xy 226.314 226.314) (xy 226.314 275.336)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7d81bce-286e-41e4-9181-3511e9c0455e) + ) + (wire (pts (xy 236.474 -52.197) (xy 190.246 -52.197)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7f989f7-95da-4be3-9e33-743523ae1ee0) + ) + (wire (pts (xy 441.706 168.148) (xy 441.706 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a) + ) + (wire (pts (xy 397.764 236.728) (xy 397.764 235.458)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8274862-c966-456a-98d5-9c42f72963c1) + ) + (wire (pts (xy 398.018 98.044) (xy 393.446 98.044)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8312cc4-6502-4783-b578-55c01e0393af) + ) + (wire (pts (xy 217.932 129.286) (xy 217.932 108.966)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8531c3a-ab79-4096-b3fb-b5b6ae94c3f7) + ) + (wire (pts (xy 406.273 227.457) (xy 386.588 227.457)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8558fbd-ea42-43a6-966a-7bd304bdfaad) + ) + (wire (pts (xy 69.85 260.35) (xy 69.85 250.952)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e86e4fae-9ca7-4857-a93c-bc6a3048f887) + ) + (wire (pts (xy 379.222 357.378) (xy 399.796 357.378)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e87738fc-e372-4c48-9de9-398fd8b4874c) + ) + (wire (pts (xy 453.136 157.226) (xy 457.708 157.226)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e87a6f80-914f-4f62-9c9f-9ba62a88ee3d) + ) + (wire (pts (xy 190.246 -105.537) (xy 225.044 -105.537)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e89e5b16-554a-4d97-8f95-fc89c9b40d74) + ) + (wire (pts (xy 388.366 -122.555) (xy 529.717 -122.555)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8a49c58-e69f-4870-ab15-e73f66a8d02b) + ) + (wire (pts (xy 106.934 -97.663) (xy 106.934 -103.251)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8e23712-f080-4685-ae22-9028780f7b13) + ) + (wire (pts (xy 20.828 180.213) (xy 17.145 180.213)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8e598ff-c991-433d-8dd6-c9fce2fe1eaa) + ) + (wire (pts (xy 664.972 -109.601) (xy 664.972 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9581bdc-0c32-481f-b3ec-f590264a37c8) + ) + (wire (pts (xy 311.277 -144.145) (xy 462.153 -144.145)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9597133-3d67-41f8-aabc-5b61d8d3c3c1) + ) + (wire (pts (xy 204.47 198.374) (xy 243.84 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2) + ) + (wire (pts (xy 514.858 78.486) (xy 492.252 78.486)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9a9fba3-7cfa-45ca-926c-a5a8ecd7e3a4) + ) + (wire (pts (xy 114.9096 -79.9084) (xy 114.9096 -79.883)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9af11a9-b26a-410d-af4e-213443033b09) + ) + (wire (pts (xy 465.328 152.146) (xy 465.328 151.384)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d) + ) + (wire (pts (xy 494.157 -147.701) (xy 494.157 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea3cd08e-2d6a-4ba3-9c39-87a3d44d2015) + ) + (wire (pts (xy 367.03 130.81) (xy 367.284 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea6fde00-59dc-4a79-a647-7e38199fae0e) + ) + (wire (pts (xy -43.815 293.497) (xy -52.832 293.497)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea7f95ca-1368-4ccc-b3c5-17a85c05a2dd) + ) + (wire (pts (xy 300.99 165.862) (xy 301.244 165.862)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4) + ) + (wire (pts (xy 192.278 87.63) (xy 192.278 91.059)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb14ae89-b776-4a7c-b1cb-51227ede5631) + ) + (wire (pts (xy 194.31 103.124) (xy 210.82 103.124)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24) + ) + (wire (pts (xy 50.165 -20.066) (xy 50.165 155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec0137ed-9765-4dfb-9cee-4a1826ddb19d) + ) + (wire (pts (xy 398.78 221.996) (xy 401.066 221.996)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec2e3d8a-128c-4be8-b432-9738bca934ae) + ) + (wire (pts (xy 320.548 214.376) (xy 324.104 214.376)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec5c2062-3a41-4636-8803-069e60a1641a) + ) + (wire (pts (xy 506.857 -151.003) (xy 506.857 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec7073f7-f754-4ee6-a977-3d11d16480f8) + ) + (wire (pts (xy 301.625 62.484) (xy 301.625 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eca8c1f1-6751-4304-8a65-b05952048507) + ) + (wire (pts (xy 636.27 410.591) (xy 636.27 -105.029)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecb190c3-7d33-4f9e-917d-98f2e006b7de) + ) + (wire (pts (xy 64.389 -77.343) (xy 66.04 -77.343)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed6caead-58a0-4a37-97cf-621d3ffb0ca4) + ) + (wire (pts (xy 381.762 -131.318) (xy 534.797 -131.318)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed76cb21-0b5e-4ca2-8075-7e28e38e7199) + ) + (wire (pts (xy 117.094 238.506) (xy 138.43 238.506)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed8a7f02-cf05-41d0-97b4-4388ef205e73) + ) + (wire (pts (xy 367.284 82.55) (xy 367.284 115.316)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee29d712-3378-4507-a00b-003526b29bb1) + ) + (wire (pts (xy 527.177 -118.364) (xy 527.177 -153.416)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee3188d0-94cf-4bcc-9f57-e516684fc142) + ) + (wire (pts (xy 641.477 303.784) (xy 641.477 -127.127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee4527a8-96f7-423b-b0eb-5c3b1bed75f9) + ) + (wire (pts (xy -168.8592 201.7776) (xy -168.8592 191.6684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee46eccc-6ecb-4fb4-8a7d-0b4cdbc11c9a) + ) + (wire (pts (xy -26.797 -33.401) (xy 113.411 -33.401)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee94ab47-8315-46a5-bfc7-60550df5879d) + ) + (wire (pts (xy 217.17 38.1) (xy 219.71 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee9a2826-2513-480e-a552-3d07af5bf8a5) + ) + (wire (pts (xy 39.624 343.662) (xy -32.893 343.662)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eec607c7-6f4a-49f4-b728-3da8374be4ce) + ) + (wire (pts (xy 509.016 -41.91) (xy 359.156 -41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eecd895d-4aa1-458c-8512-c9957fd00fad) + ) + (wire (pts (xy 406.781 318.77) (xy 406.781 325.628)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eed5fd95-a7ce-441e-bbe1-d330431c5e6d) + ) + (wire (pts (xy 347.853 404.241) (xy 626.11 404.241)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eef9a49b-90d1-4463-b2c5-af035d3ae9d7) + ) + (wire (pts (xy 508.762 141.224) (xy 508.762 150.368)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef3a2f4c-5879-4e98-ad30-6b8614410fba) + ) + (wire (pts (xy -9.017 270.383) (xy 58.42 270.383)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef3c2ca7-fcc8-4cff-8fc1-0c762aa25455) + ) + (wire (pts (xy 512.826 188.214) (xy 548.386 188.214)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef3dded2-639c-45d4-8076-84cfb5189592) + ) + (wire (pts (xy 491.49 194.056) (xy 491.49 191.516)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef4533db-6ea4-4b68-b436-8e9575be570d) + ) + (wire (pts (xy -130.0988 200.2028) (xy -130.0988 182.118)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef52ca7a-4303-408d-93fd-3792ef7c639b) + ) + (wire (pts (xy 56.134 95.25) (xy 56.134 150.368)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef94502b-f22d-4da7-a17f-4100090b03a1) + ) + (wire (pts (xy 631.571 282.194) (xy 631.571 -123.825)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid efd79052-e146-4d61-9e0a-ba764a5a966b) + ) + (wire (pts (xy 405.384 234.95) (xy 407.924 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid efd7a1e0-5bed-4583-a94e-5ccec9e4eb74) + ) + (wire (pts (xy 449.58 148.59) (xy 449.58 110.998)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f030cfe8-f922-4a12-a58d-2ff6e60a9bb9) + ) + (wire (pts (xy 523.367 -120.523) (xy 648.462 -120.523)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0d5ae26-c535-4a37-9220-b3d08bfeda2f) + ) + (wire (pts (xy 309.499 151.003) (xy 240.538 151.003)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0e6fae4-0008-43ed-8719-bf62839f601f) + ) + (wire (pts (xy 204.47 216.154) (xy 267.716 216.154)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0ff5d1c-5481-4958-b844-4f68a17d4166) + ) + (wire (pts (xy 404.622 106.172) (xy 404.622 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1782535-55f4-4299-bd4f-6f51b0b7259c) + ) + (wire (pts (xy 204.47 175.514) (xy 224.282 175.514)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f19c9655-8ddb-411a-96dd-bd986870c3c6) + ) + (wire (pts (xy 354.076 338.328) (xy 357.632 338.328)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1e619ac-5067-41df-8384-776ec70a6093) + ) + (wire (pts (xy 89.154 258.318) (xy 114.808 258.318)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2044410-03ac-4994-9652-9e5f480320f0) + ) + (wire (pts (xy 17.907 134.493) (xy 17.907 153.162)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f205e125-3760-485b-b76a-dc2502dc5679) + ) + (wire (pts (xy 263.906 176.149) (xy 263.906 211.074)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f21d4058-0da2-4512-b5f5-f906032f560a) + ) + (wire (pts (xy 72.39 265.684) (xy 77.47 265.684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f23ac723-a36d-491d-9473-7ec0ffed332d) + ) + (wire (pts (xy 395.986 198.882) (xy 401.32 198.882)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f240e733-157e-4a15-812f-78f42d8a8322) + ) + (wire (pts (xy 103.378 76.708) (xy 105.918 76.708)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2c43eeb-76da-49f4-b8e6-cd74ebb3190b) + ) + (wire (pts (xy 214.122 165.354) (xy 204.47 165.354)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3044f68-903d-4063-b253-30d8e3a83eae) + ) + (wire (pts (xy 367.538 150.114) (xy 367.538 179.324)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f357ddb5-3f44-43b0-b00d-d64f5c62ba4a) + ) + (wire (pts (xy 406.4 200.914) (xy 408.94 200.914)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4117d3e-819d-4d33-bf85-69e28ba32fe5) + ) + (wire (pts (xy 124.46 320.548) (xy 232.664 320.548)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f447e585-df78-4239-b8cb-4653b3837bb1) + ) + (wire (pts (xy 212.344 249.174) (xy 212.344 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f) + ) + (wire (pts (xy 194.437 -42.037) (xy 194.437 -39.497)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f45c8190-2f27-434c-8fbf-7d8a911faaab) + ) + (wire (pts (xy 128.27 15.494) (xy 128.27 15.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f46fb303-7470-41c0-b6e8-4553c1d6503f) + ) + (wire (pts (xy -171.3992 195.3768) (xy -161.6456 195.3768)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f48d4639-918b-484c-91d9-9c4b846cc01a) + ) + (wire (pts (xy 66.548 160.274) (xy 133.096 160.274)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4cf6dc4-65fc-4b8e-a0d8-0a9074993d40) + ) + (wire (pts (xy 65.024 -105.283) (xy 65.024 -107.823)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4f6e269-d484-4c43-84cc-450e042e2e24) + ) + (wire (pts (xy 81.534 67.818) (xy 74.93 67.818)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f503ea07-bcf1-4924-930a-6f7e9cd312f8) + ) + (wire (pts (xy 148.336 22.098) (xy 148.336 28.321)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f565cf54-67ba-4424-8d47-087433645499) + ) + (wire (pts (xy 138.43 193.294) (xy 112.776 193.294)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f56d244f-1fa4-4475-ac1d-f41eed31a48b) + ) + (wire (pts (xy 16.891 198.882) (xy 16.891 200.152)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f56e10b5-909a-4bf7-b9bb-b5663dc8fff0) + ) + (wire (pts (xy 129.794 142.494) (xy 129.794 105.791)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f58fca4c-73af-416f-b236-f3bb62b8fd00) + ) + (wire (pts (xy 365.252 327.914) (xy 365.252 333.248)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd) + ) + (wire (pts (xy 480.568 186.182) (xy 480.568 186.436)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5dba25f-5f9b-4770-84f9-c038fb119360) + ) + (wire (pts (xy 405.384 234.95) (xy 405.384 240.538)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5eb7390-4215-4bb5-bc53-f82f663cc9a5) + ) + (wire (pts (xy 388.366 -122.555) (xy 388.366 235.458)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f61adca3-c1e4-457e-8212-9dc978cabab5) + ) + (wire (pts (xy 88.392 114.046) (xy 88.392 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f66bb685-9833-454c-bf31-b96598f50347) + ) + (wire (pts (xy 81.534 95.25) (xy 81.534 91.821)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f67bbef3-6f59-49ba-8890-d1f9dc9f9ad6) + ) + (wire (pts (xy 204.47 249.174) (xy 212.344 249.174)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6983918-fe05-46ea-b355-bc522ec53440) + ) + (wire (pts (xy 310.769 60.325) (xy 310.769 -147.701)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f69de914-d2d4-4fcf-a7d6-ce76fea2e1a7) + ) + (wire (pts (xy 316.738 77.978) (xy 321.056 77.978)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6a3288e-9575-42bb-af05-a920d59aded8) + ) + (wire (pts (xy 133.096 183.134) (xy 138.43 183.134)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6a5c856-f2b5-40eb-a958-b666a0d408a0) + ) + (wire (pts (xy 416.052 273.558) (xy 416.052 240.538)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6dcb5b4-0971-448a-b9ab-6db37a750704) + ) + (wire (pts (xy 407.924 234.95) (xy 407.924 231.648)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7070c76-b83b-43a9-a243-491723819616) + ) + (wire (pts (xy 367.284 194.818) (xy 367.538 194.818)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f73b5500-6337-4860-a114-6e307f65ec9f) + ) + (wire (pts (xy 508.762 122.682) (xy 508.762 141.224)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f74eb612-4697-4cb4-afe4-9f94828b954d) + ) + (wire (pts (xy 466.217 -69.85) (xy 374.015 -69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f76f4233-905d-4cb5-a153-eed7fe8e458e) + ) + (wire (pts (xy 426.847 363.855) (xy 426.847 359.918)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7c5fcef-379b-481f-a910-961b8aba9e9d) + ) + (wire (pts (xy 14.478 227.838) (xy 14.478 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8621ac5-1e7e-4e87-8c69-5fd403df9470) + ) + (wire (pts (xy 527.177 -153.416) (xy 527.177 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f88265e8-a27a-4259-b3ad-7df91a571c60) + ) + (wire (pts (xy 30.48 142.748) (xy 132.842 142.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8b47531-6c06-4e54-9fc9-cd9d0f3dd69f) + ) + (wire (pts (xy 354.076 338.074) (xy 354.076 338.328)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8bd6470-fafd-47f2-8ed5-9449988187ce) + ) + (wire (pts (xy 564.896 214.884) (xy 564.896 -24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8db64f8-1695-46e3-9667-49f16b5c734b) + ) + (wire (pts (xy 476.377 -142.113) (xy 476.377 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8df4375-570f-4eb0-868e-4f350bd24547) + ) + (wire (pts (xy 83.566 192.024) (xy 20.828 192.024)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8e92727-5789-4ef6-9dc3-be888ad72e45) + ) + (wire (pts (xy 588.518 278.003) (xy 588.518 -158.623)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8e927af-4836-4b0f-8a57-dbca5a18a442) + ) + (wire (pts (xy 295.656 69.342) (xy 323.215 69.342)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f931f973-5615-451c-bb04-9a02aede6e6f) + ) + (wire (pts (xy 207.645 48.387) (xy 207.645 -57.277)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9570ec9-4338-4208-aee7-369a45a284f8) + ) + (wire (pts (xy 218.948 188.214) (xy 218.948 184.404)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f988d6ea-11c5-4837-b1d1-5c292ded50c6) + ) + (wire (pts (xy 599.44 -149.225) (xy 501.777 -149.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f99552ce-0729-4ada-aef3-5686270d7c4d) + ) + (wire (pts (xy 138.43 155.194) (xy 124.206 155.194)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9b1563b-384a-447c-9f47-736504e995c8) + ) + (wire (pts (xy 267.716 166.624) (xy 263.906 166.624)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9c81c26-f253-4227-a69f-53e64841cfbe) + ) + (wire (pts (xy 134.62 355.219) (xy -43.815 355.219)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9c966ae-23e4-43cd-95e1-ebb675260935) + ) + (wire (pts (xy 390.398 257.81) (xy 390.398 223.012)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f) + ) + (wire (pts (xy 77.343 -20.066) (xy 77.343 -46.863)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa16f237-4e21-4b18-8c54-f7de4e62bbb6) + ) + (wire (pts (xy 473.71 166.624) (xy 520.446 166.624)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa20e708-ec85-4e0b-8402-f74a2724f920) + ) + (wire (pts (xy 147.701 -53.594) (xy 147.701 28.321)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa7e24a1-3452-454e-88a7-8a0ff878392a) + ) + (wire (pts (xy 356.108 125.73) (xy 359.664 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e) + ) + (wire (pts (xy 41.275 155.956) (xy 50.165 155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid faa605d9-8c1c-4d31-b7c1-3dc31a22eb34) + ) + (wire (pts (xy 136.398 241.554) (xy 138.43 241.554)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid facb0614-068b-4c9c-a466-d374df96a94c) + ) + (wire (pts (xy 232.156 155.829) (xy 232.156 149.098)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fad358eb-4b7a-4138-896b-0d1749221b0d) + ) + (wire (pts (xy 17.145 180.213) (xy 17.145 161.417)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb126c26-740a-4781-a5dd-5ef5455e4878) + ) + (wire (pts (xy 17.907 134.493) (xy 16.383 134.493)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb4e7351-d265-4999-adf6-bc7596c21cf3) + ) + (wire (pts (xy 363.22 378.46) (xy 363.22 377.698)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb9a832c-737d-49fb-bbb4-29a0ba3e8178) + ) + (wire (pts (xy 473.837 -140.462) (xy 613.791 -140.462)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbca7d5b-4a19-4f46-9697-74b3068179aa) + ) + (wire (pts (xy 511.175 -39.37) (xy 359.156 -39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc052ac4-77ec-4901-baf8-c95f94903836) + ) + (wire (pts (xy 148.336 31.242) (xy 148.336 70.358)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc12372f-6e31-40f9-8043-b00b861f0171) + ) + (wire (pts (xy 413.766 198.628) (xy 408.94 198.628)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc13962a-a464-4fa2-b9a6-4c26667104ee) + ) + (wire (pts (xy 218.694 269.748) (xy 218.694 244.094)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc2e9f96-3bed-4896-b995-f56e799f1c77) + ) + (wire (pts (xy 359.156 -49.53) (xy 377.698 -49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc329e60-968a-4f61-ba77-53d29ff8c1c7) + ) + (wire (pts (xy 225.298 228.854) (xy 225.298 272.415)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc3d51c1-8b35-4da3-a742-0ebe104989d7) + ) + (wire (pts (xy 138.43 236.474) (xy 134.62 236.474)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc4ad874-c922-4070-89f9-7262080469d8) + ) + (wire (pts (xy 374.396 396.24) (xy 405.13 396.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc4f0835-889b-4d2e-876e-ca524c79ae62) + ) + (wire (pts (xy 64.389 -49.403) (xy 78.867 -49.403)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc80fa5b-8c07-4dda-8002-331dcafd556b) + ) + (wire (pts (xy 109.474 290.576) (xy 109.474 251.714)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc83cd71-1198-4019-87a1-dc154bceead3) + ) + (wire (pts (xy 214.63 118.11) (xy 214.122 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942) + ) + (wire (pts (xy 251.46 122.936) (xy 251.46 -123.063)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcb7a65f-f4cd-47e7-94e9-48c450d0d7f3) + ) + (wire (pts (xy 397.002 155.448) (xy 397.002 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd34aa56-ded2-4e97-965a-a39457716f0c) + ) + (wire (pts (xy 118.872 203.454) (xy 138.43 203.454)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd60415a-f01a-46c5-9369-ea970e435e5b) + ) + (wire (pts (xy 371.094 -125.476) (xy 532.257 -125.476)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd693e1b-ee8d-4a26-aae0-561ba4b09a82) + ) + (wire (pts (xy 111.633 338.709) (xy -26.797 338.709)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fda0167e-248a-4b89-bf7b-490df46aeb7d) + ) + (wire (pts (xy -171.8056 334.772) (xy -171.8056 201.7776)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fda834a6-6b0e-4252-a25a-69a548ed90c8) + ) + (wire (pts (xy 309.499 93.345) (xy 309.499 151.003)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fda94f0a-876e-4bf0-ad10-35819851e3e9) + ) + (wire (pts (xy 495.808 116.459) (xy 534.924 116.459)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdd41a68-206a-4076-b64a-8b7633d428d6) + ) + (wire (pts (xy 86.487 201.041) (xy 86.487 176.911)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe0a8ab1-7b25-4d9a-9a3b-f8c5e10b289a) + ) + (wire (pts (xy 360.934 223.012) (xy 360.934 223.266)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764) + ) + (wire (pts (xy 30.48 310.896) (xy 66.294 310.896)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe1ad3bd-92cc-4e1c-8cc9-a77278095945) + ) + (wire (pts (xy 74.93 66.04) (xy 87.63 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe1c93f4-4468-424b-a088-27aef08b62b4) + ) + (wire (pts (xy -19.05 279.146) (xy -19.05 -28.829)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe2b05f5-675b-44d0-956c-c5829b7c692a) + ) + (wire (pts (xy 118.11 12.446) (xy 122.682 12.446)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe4068b9-89da-4c59-ba51-b5949772f5d8) + ) + (wire (pts (xy 50.165 155.956) (xy 52.578 155.956)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe431a80-868e-482d-aa91-c96eb8387d6a) + ) + (wire (pts (xy 405.892 263.906) (xy 405.892 265.684)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe4869dc-e96e-4bb4-a38d-2ca990635f2d) + ) + (wire (pts (xy 100.33 156.464) (xy 100.33 -115.443)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe578162-0e40-4028-9277-b80f8071e7b8) + ) + (wire (pts (xy 489.077 -142.748) (xy 312.547 -142.748)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fea6a04b-4bfd-450f-890a-ba5d162e31d9) + ) + (wire (pts (xy 15.494 -1.778) (xy 15.494 168.021)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fec2ae03-3539-4fc7-9da2-1b1336bf787c) + ) + (wire (pts (xy 566.166 183.388) (xy 563.372 183.388)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fec6f717-d723-4676-89ef-8ea691e209c2) + ) + (wire (pts (xy 517.906 185.42) (xy 547.116 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fed6a1e7-e233-4dff-87e0-8992a65c8dd0) + ) + (wire (pts (xy 257.556 172.72) (xy 257.556 176.276)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fef37e8b-0ff0-4da2-8a57-acaf19551d1a) + ) + (wire (pts (xy 78.359 -112.903) (xy 78.359 -120.523)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff163833-80b9-4bc7-baa1-aa11870ad397) + ) + (wire (pts (xy 369.697 -102.87) (xy 359.156 -102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff203a9b-3d2e-4e1d-a6f0-12d16e5120fb) + ) + (wire (pts (xy 65.278 329.438) (xy 65.278 332.994)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff4a8e6d-526c-4ad7-8dbf-a5b0018d4d85) + ) + (wire (pts (xy 124.46 180.594) (xy 124.46 320.548)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffa442c7-cbef-461f-8613-c211201cec06) + ) + (wire (pts (xy 110.744 214.122) (xy 89.154 214.122)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffb86135-b43f-4a42-9aa6-73aa7ba972a9) + ) + (wire (pts (xy 134.747 -22.098) (xy 134.747 -30.734)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffde4898-4c0e-4c24-bd8c-aadcd7279172) + ) + (wire (pts (xy 138.43 111.125) (xy 158.496 111.125)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffe6d5f3-f9a5-48a9-88db-d2d7822b944f) + ) + + (text "TPS2 0v" (at 66.04 -101.981 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 01657d30-6f8e-4bbd-a3dd-6a0742c69aca) + ) + (text "Displ" (at 364.3884 -72.8726 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 06f0d5fc-e726-41e1-b66a-93c242a82a66) + ) + (text "0v" (at -176.8348 194.5132 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 072e3038-5d8e-4aef-8bbd-5508f8d72fb6) + ) + (text "Temp sndr 5v" (at -59.182 268.097 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 08fae221-7b6f-4c57-be73-6210c6206091) + ) + (text "8v rail" (at 127.254 38.862 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 094dc71e-7ea9-4e30-8ba7-749216ec2a8b) + ) + (text "Reset SW" (at 192.913 -60.198 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 09741e1c-c412-4f50-b5b7-03d5820a1bad) + ) + (text "Tx" (at -172.3644 193.6496 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 09807d40-a101-4afe-be10-cac31947d48b) + ) + (text "R brake in" (at 193.294 -83.185 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0a52fedd-967a-423d-aaaf-3875f20f935b) + ) + (text "0v" (at 64.4144 332.6892 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0ae97563-162e-4576-ae85-0b54922f496c) + ) + (text "PIR - echo" (at 67.945 -90.424 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0e852933-f119-4b7f-a503-b829e02656a9) + ) + (text "Grip 1 and Grp 2 5v" (at 67.437 -76.327 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0ea0e524-3bbd-4f05-896d-54b702c204b2) + ) + (text "+v" (at 498.094 -152.654 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0f6b89db-12ed-4dac-b3ce-819a49798117) + ) + (text "Batt in+" (at -60.452 298.323 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 10a7d7ef-d6be-484c-be36-2908e6c77393) + ) + (text "Dip" (at 364.5154 -98.4504 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 156fc291-192d-4e8b-b1ed-bfd7dcb5783f) + ) + (text "5v" (at 72.136 265.938 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid 199124ca-dd64-45cf-a063-97cc545cbea7) + ) + (text "R brake 0v" (at 191.516 -40.259 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 199ade13-7442-4da9-8eea-a8e7681e2aee) + ) + (text "Displ" (at 363.728 -104.4702 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1c817372-b978-4de6-a2ce-7e6b27b73fe5) + ) + (text "Oled RST" (at 515.62 -148.844 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1d3ba3f1-b9ae-4424-bae2-a14d82883305) + ) + (text "Lind" (at 365.887 -57.7088 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1ef54f96-88c7-4413-91e0-a0067a22b4b8) + ) + (text "From grip1 sig" (at 78.486 -47.498 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 200b738a-50e9-4f57-b197-9a6a0ae11af3) + ) + (text "Gear2\n" (at 489.966 -148.59 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2092199d-a4f3-4bc8-9e2c-943a7d08fe5f) + ) + (text "LH Switch gear" (at 158.75 -110.617 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 218a2487-4406-4830-b6ad-8a4182eda4f4) + ) + (text "Main" (at 364.744 -93.3704 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 231d3e75-361d-4e39-bfa6-a63535d289c8) + ) + (text "To Speeduino TPS i/p" (at 74.168 -41.529 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 25ca9482-069d-43de-b77e-6f2ad77fa017) + ) + (text "SLC" (at 56.896 290.068 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729) + ) + (text "Rx" (at -174.9552 196.342 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 27bec5ca-6dea-4712-b89b-8d77eecd0698) + ) + (text "RFID 3.3v" (at -56.896 280.797 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2d4ba971-ddd9-4f08-ae0a-4bc49faa5143) + ) + (text "Start button in" (at 64.77 -128.524 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2fe436e0-75bf-42a2-b14a-09df5c2be702) + ) + (text "ECU-coils" (at 359.5116 -19.2786 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 31765e4a-ee7c-4fb5-b787-dcb046b3624a) + ) + (text "Horn" (at 315.3664 213.4362 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 31d68ce8-4626-4da0-8271-768795d03335) + ) + (text "ECU" (at 362.1278 184.4802 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 329f5ebd-2a2e-4c7d-bcbf-5d83528ed124) + ) + (text "Gear display - A" (at 65.024 -54.991 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 33b48673-c959-4510-b6fa-fd3f7bdb00fd) + ) + (text "from top\nGDS" (at 290.576 261.874 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 363189af-2faa-46a4-b025-5a779d801f2e) + ) + (text "Devices" (at 335.2292 -60.5028 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 372a7f86-128e-4650-ad4a-18efc45571c5) + ) + (text "looking at flat\nEBC\n123" (at 297.18 104.394 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 37657eee-b379-4145-b65d-79c82b53e49e) + ) + (text "S" (at 292.608 272.542 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 386faf3f-2adf-472a-84bf-bd511edf2429) + ) + (text "RFID miso" (at -57.15 278.384 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 38c40dcc-c1da-4f6f-a147-01497313c7b0) + ) + (text "Console light - L ind" (at 191.389 -95.885 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3bc24d10-b3eb-4abe-836d-a8521ccc4341) + ) + (text "TPS1 0v" (at 75.184 -100.584 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3c5840eb-164e-426c-ab78-faa89624b9dc) + ) + (text "5v" (at 71.12 297.18 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3d2a15cb-c492-4d9a-b1dd-7d5f099d2d31) + ) + (text "Fbrake sw" (at 475.488 211.074 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333) + ) + (text "Gear5" (at 462.788 -151.384 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3f057bd5-83bf-4a8d-bcea-99af471b3c81) + ) + (text "Console light - Neutral" (at 191.008 -108.458 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4102ae0e-3d75-40cd-957b-0b4db5d3f5ee) + ) + (text "Brake" (at 529.336 -151.638 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 413cf064-ee9f-4ec8-96f3-62a814b5342c) + ) + (text "KIll sw in" (at 64.008 -115.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 42012069-f136-4cdf-8386-a5e648d61587) + ) + (text "F brake in" (at 64.516 -123.444 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 42eea0a0-d889-4e4e-980c-c3b6b62767e5) + ) + (text "Rind" (at 364.8202 -24.511 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 43dc8878-bf42-418e-b108-dc498f326546) + ) + (text "Stand 0v" (at 191.262 -37.338 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 44cd273f-f3a1-4b9a-83a6-972b276409e1) + ) + (text "Clutch 0v" (at 191.262 -29.845 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 45fc93ca-f8ba-48a8-9189-1c9886475cd3) + ) + (text "Console lights - 0v" (at 190.881 -50.165 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 481354ed-51b9-4db2-9835-781681979b4b) + ) + (text "Dip" (at 365.4552 -67.7926 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 491c9126-8629-477c-a947-9ceea1eb0f69) + ) + (text "Rx" (at 61.976 307.848 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid 4970ec6e-3725-4619-b57d-dc2c2cb86ed0) + ) + (text "CLK" (at 67.056 267.97 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5) + ) + (text "RFID sck" (at -57.531 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4e1a7683-466d-4d67-bce5-496395f4b0d5) + ) + (text "Tx" (at 87.63 335.407 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4e66ba18-389e-4ff9-97c1-8bd8fb047a01) + ) + (text "LED's" (at 338.1248 -32.3342 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4e71dde3-a8c9-4515-a8e0-3c5348d24b2b) + ) + (text "Dip in" (at 193.294 -55.372 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 52820a90-7869-43b3-b870-39c015371964) + ) + (text "oil sens sig" (at -57.277 288.544 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 52da99c6-c348-4007-8828-51a963a2879f) + ) + (text "From TPS2 sig" (at 77.47 -44.577 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 539dec9e-2c45-4201-ab13-cbbbab8fc31b) + ) + (text "To LHD Tx - Scr" (at 193.167 -103.378 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 557d128f-cf69-4c70-9959-d139ac95c63c) + ) + (text "+v" (at 365.76 -74.295 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 581488ee-fe1f-43d1-a23d-526666571191) + ) + (text "0v" (at 366.268 -71.628 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 58e02161-61cc-4d0f-bdc8-c497a25ae380) + ) + (text "Clutch in" (at 192.786 -65.405 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5a63aa46-8c18-43d5-8def-1c886562be17) + ) + (text "Wire link to make Reset pin also interrupt" (at 168.91 110.998 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5c1d6842-15a5-4f73-b198-8836681840a1) + ) + (text "Oil sens 0v" (at -57.15 293.497 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5d00cbc9-46cb-472e-b705-59da8e971192) + ) + (text "Stand in" (at 192.913 -80.645 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5daf2c3c-7702-4a59-b99d-84464c054bc4) + ) + (text "check may need diodes on relay mosfets (start/kill)" + (at 323.342 303.022 0) + (effects (font (size 5.0038 5.0038)) (justify left bottom)) + (uuid 5f312b85-6822-40a3-b417-2df49696ca2d) + ) + (text "Oil sens 12v" (at -58.039 291.084 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5f4676ff-2597-415d-a32e-98d53038f432) + ) + (text "Fuel sender 0v" (at 191.135 -42.799 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 60ca4740-3009-4486-93d6-c2502818122b) + ) + (text "Fuses\n" (at 336.7786 -94.742 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 62c2cd69-31ff-434a-bef7-7668361c9517) + ) + (text "Wpump" (at 508.762 -152.654 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 66365ee6-faf3-4e92-91f6-86be1c1508ca) + ) + (text "ECU-coils" (at 360.7308 -48.8696 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6705b4db-b455-4ed2-8fe0-59941d32d735) + ) + (text "Rind" (at 366.0902 -52.7558 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6a411bae-940f-4838-b289-3141dcb2dd71) + ) + (text "From grip2 sig" (at 80.01 -50.927 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6afdccaa-d9c7-4949-88e8-e04bfdac5efc) + ) + (text "Wpump" (at 539.75 -154.94 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6bc6de7a-63b5-4f33-96a3-9677ac1386f0) + ) + (text "From TPS1 sig" (at 71.755 -37.211 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6ceb10bf-4340-4309-8250-882c2b60a70e) + ) + (text "To start solenoid" (at 306.324 302.006 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6d5a94fe-308f-4b1a-8627-c40ed7678035) + ) + (text "Oled SCK" (at 524.51 -135.382 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6f6fd58b-d377-4778-aa9f-615314ed3931) + ) + (text "Gear3" (at 488.188 -151.892 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 71efbb4e-c900-4411-b984-d03cf20bb68e) + ) + (text "TPS speeduino 0v" (at 65.532 -104.267 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 72729c20-0465-4f8c-be80-3c22bb337ef7) + ) + (text "Dip" (at 365.0234 -39.751 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 74d043b9-ea88-4f9d-9c23-dc58375f1690) + ) + (text "MISO" (at 64.516 268.478 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid 751d823e-1d7b-4501-9658-d06d459b0e16) + ) + (text "from top\nGDS" (at 342.392 92.456 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7668b629-abd6-4e14-be84-df90ae487fc6) + ) + (text "Lind" (at 364.6678 -88.1126 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 797c3100-6c25-4b9b-9cce-3c4494bdfd77) + ) + (text "R ind in" (at 192.913 -72.771 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7b58219a-a31d-4ba4-804a-77c6d706d8bc) + ) + (text "PIR - trig" (at 68.072 -92.964 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7b694997-43fc-41fd-818b-681c539b1571) + ) + (text "Gear display - LSB" (at 64.643 -65.024 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7b845862-cbd0-4fb3-909e-eb8579f14aa2) + ) + (text "Horn\n" (at 503.682 -153.67 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7c26005b-c33f-4608-8446-7530e0ac78b2) + ) + (text "Gear display - D" (at 65.024 -62.357 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 83181dd0-bbcd-4a99-a5a2-7d6961abb51a) + ) + (text "Must use high resistance. Vmonitor. must be 5v max." + (at -42.672 232.918 0) + (effects (font (size 5.0038 5.0038)) (justify left bottom)) + (uuid 83e349fb-6338-43f9-ad3f-2e7f4b8bb4a9) + ) + (text "GearN" (at 494.792 -151.638 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 84f6ce68-e69b-4375-9076-4cdb939953b4) + ) + (text "To LHD Tx" (at 193.167 -105.918 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 856c0384-2dfc-47d2-a66c-a145c3149f14) + ) + (text "0v" (at 67.31 297.18 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 868b5d0d-f911-4724-9580-d9e69eb9f709) + ) + (text "Gear display - 0v" (at 67.183 -70.231 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 86a34ff8-9697-4394-b32e-9c903027c8af) + ) + (text "0v" (at 498.094 -147.193 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 87110cd9-2ac8-40e0-9e87-2e8196cde92a) + ) + (text "Sw 0v (C/N/R)" (at 191.262 -27.051 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 88fb8817-4ee2-4465-a9af-37fedc8b835b) + ) + (text "Oled DC" (at 517.906 -147.32 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 89cc33e6-944e-4d45-b923-4374a492c610) + ) + (text "Console light - main" (at 191.135 -113.792 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8a0095e3-f64e-4bc6-8d5a-1cdcee192b11) + ) + (text "Gear display - 5v" (at 65.278 -67.564 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8aaa3345-c586-4729-9584-3137be876023) + ) + (text "Drain" (at 330.327 97.2566 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8abcfaa7-a940-470d-a17c-3e32df2b8163) + ) + (text "Change SW" (at 192.786 -57.531 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8b9c1722-a1fd-4391-b4b4-854b2cc1549f) + ) + (text "Oled 3.3v" (at 512.826 -145.796 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8c8475a4-14d8-4757-96b4-1eb895927df4) + ) + (text "LED's" (at 472.186 -178.562 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8daa5f71-74c3-4029-b706-260d2d507723) + ) + (text "Brake\n" (at 343.4842 233.3244 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 908a48ca-dbcf-4fb1-81a5-5017019c92c6) + ) + (text "Console light - Ign" (at 191.008 -110.998 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 90912a07-8f0d-457a-b78a-1c112c8f2052) + ) + (text "TPS1 5v" (at 76.581 -73.152 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 911557e5-adec-4d13-9794-a18b325eb4ea) + ) + (text "Ind cncl" (at 192.913 -75.692 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 91637a62-ec43-463a-9edc-420af478d9cb) + ) + (text "Lind" (at 459.0034 149.733 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 91d51064-a1e9-46d5-90e1-d70943cc61cc) + ) + (text "Main in" (at 192.786 -52.832 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 92ee3d85-c13e-4120-ad64-bd390adf040c) + ) + (text "RFID CS/SS" (at -57.404 285.877 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 97972d9a-c8ac-431f-b1f4-0da8477b5639) + ) + (text "\n" (at 460.248 176.022 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 992a2b00-5e28-4edd-88b5-994891512d8d) + ) + (text "Temp sendr sig" (at -58.928 270.891 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9ad54c14-6dd1-4741-ab11-80a0275cae72) + ) + (text "RH sw SET" (at 66.802 -97.155 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9b84db75-decc-418f-80b8-9703cc547aae) + ) + (text "Lind" (at 364.6678 -29.7942 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9c8b3af4-efb5-4e3c-98fd-555d6b5ccadf) + ) + (text "Fuel sender signal" (at 193.294 -88.392 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9cdaf74c-bd9d-4293-9612-c30a4bca9a30) + ) + (text "Tail +v" (at 67.437 -87.757 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9e2ad25e-29e1-4c10-8e33-16d30c4ff9b9) + ) + (text "F Brake 0v" (at 65.278 -120.904 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a0e74fdd-2272-42b1-9d9a-65553efcd00a) + ) + (text "LH sw spare" (at 192.913 -78.105 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a1223b95-aa11-427a-b201-9190a86a68be) + ) + (text "Start 0v" (at 65.024 -125.984 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a12c94a5-1fd0-4cb6-9bfe-f7529f451405) + ) + (text "SDA" (at 50.292 288.036 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid a3fab380-991d-404b-95d5-1c209b047b6e) + ) + (text "Rind" (at 474.2434 183.3626 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a512fce2-d1d5-4331-aeba-a5c7c92da996) + ) + (text "Horn\n" (at 475.742 -150.114 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a5c9e587-5793-4a20-945f-642bd28cbb28) + ) + (text "TPS2 5v" (at 67.564 -73.914 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a5fcd820-f4f0-487d-8e2f-6defe7618982) + ) + (text "Wpump" (at 480.822 -149.098 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a6668d4e-ff99-4d7c-889d-37bc5ce27f23) + ) + (text "+12v" (at 329.2602 81.2546 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a8a7cc0c-1fdf-41e9-8e6c-b781270d27ec) + ) + (text "Console light - R ind" (at 191.897 -93.345 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a8cdda0e-7b06-4b92-8078-341b4e32614a) + ) + (text "CS" (at 69.85 267.208 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89) + ) + (text "Spare 0v" (at 191.135 -35.052 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid af35a153-e4cc-4cb5-9b0a-a247aa9a27b2) + ) + (text "Split 12v/0v to RHD and LHD here" (at 317.119 -72.898 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b2cac11a-5f3b-43d7-88e5-8d0241ac6453) + ) + (text "Main" (at 282.3718 164.1094 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b30184e0-528d-4de5-a820-ca55190c36c2) + ) + (text "RFID mosi" (at -57.277 275.844 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b4203b01-a27f-440d-ad64-759637213d6e) + ) + (text "Batt in 0v" (at -59.944 301.244 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b540f997-cabb-4061-85a0-370b4e9dd03a) + ) + (text "Fuel to displ" (at 193.167 -100.965 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b6ceb85d-46f8-42e1-9c68-672660fbaf7c) + ) + (text "Brake" (at 499.11 -152.146 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b76e3a7b-9e9f-4c68-a248-c6583c040cb0) + ) + (text "Arduino fuse LED" (at 467.614 -141.478 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b7bd5368-e105-4e87-b2a7-7270ccf1f76a) + ) + (text "To start solenoid (sw 0v)" (at 65.151 -82.804 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ba3f68df-a80d-4363-9b28-2b49507e87bd) + ) + (text "Display" (at 328.676 86.995 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid be5b3713-905e-46f8-b5ec-b7f16f99aedf) + ) + (text "Anode" (at 399.542 245.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bf4036b4-c410-489a-b46c-abee2c31db09) + ) + (text "Temp to nano" (at 193.167 -98.298 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bf8bfbb4-4b7a-430e-865f-8acab9f8c04d) + ) + (text "MOSI" (at 61.468 268.732 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid c210293b-1d7a-4e96-92e9-058784106727) + ) + (text "0v" (at 74.676 264.922 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid c346b00c-b5e0-4939-beb4-7f48172ef334) + ) + (text "RH sw RESET" (at 66.167 -94.615 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c5ef9b89-6cfe-4b79-a0bb-48d12c79b541) + ) + (text "Brake" (at 471.17 -149.86 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c6412302-306c-4465-a7da-b06ba17f1b92) + ) + (text "Tail 0v" (at 66.929 -85.471 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c7699973-e377-4c8c-8edc-6474ca187ece) + ) + (text "Gear 6" (at 459.232 -152.146 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c7ca42ec-80d5-4ad3-a4d3-5bea23875dd4) + ) + (text "Lind in" (at 192.913 -70.612 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c96fb61f-984b-4e24-874e-ad2f1e86f9d7) + ) + (text "Tx" (at 65.786 308.356 90) + (effects (font (size 1.4986 1.4986)) (justify left bottom)) + (uuid ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9) + ) + (text "KIll/cruise common" (at 79.883 -112.268 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ca9607c0-16b8-4085-880e-b87c3f210fd1) + ) + (text "RX" (at 86.868 330.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cc5561df-9d20-4574-af60-64f10025a0ed) + ) + (text "Gear display - C" (at 64.897 -60.198 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cce13a3b-854c-49ae-8b19-551eed5c4f96) + ) + (text "Horn 0v" (at 191.262 -32.258 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ce4b6c19-1441-4e43-8af4-a7f34dfbb538) + ) + (text "Oled MOSI" (at 525.78 -145.542 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ce6444f4-2a0d-4e1e-8ea8-f098979f3e2b) + ) + (text "Oil light -LHD" (at 193.04 -90.678 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d27bd75e-eeb9-4d8b-bfdb-bddce4b94b6c) + ) + (text "Link to LH dspl\n stand light in cable end" (at 155.829 -79.248 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d40f18db-c543-4c22-a8b0-72b9c9e5ae8b) + ) + (text "Main" (at 365.5314 -34.9504 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d4cac58a-3b1c-4ed7-a2bd-a4119cea1450) + ) + (text "Link ECO0v to \npin 22 (Rind 0v)" (at 326.6948 -47.3964 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d50030af-1a83-4715-81fc-0e554fedd887) + ) + (text "Use Batt cable to take all arduino power (lighst etc.)\n" + (at -126.238 298.323 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d76ec66c-d0c1-4040-8259-8685c076073a) + ) + (text "Horn in" (at 193.04 -68.072 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d8932824-bdfc-4009-a7d0-6ff32efa7e1a) + ) + (text "Gear1" (at 492.506 -152.146 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid da2540a6-0957-4a66-91a6-26b84b9abbec) + ) + (text "ECU-coils" (at 360.8832 -78.0288 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid db937d6f-2add-4940-b0fa-73e50ec91fae) + ) + (text "HIGH = OP LOW" (at 344.043 376.936 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dc0df782-a446-4364-8dc7-0190637b5f77) + ) + (text "Int\n" (at -170.0276 194.6656 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e175af87-286d-4453-8c85-041e25f0646f) + ) + (text "Main" (at 365.5314 -62.6364 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e2262d09-4eaa-4944-9bb7-af0164bc0fac) + ) + (text "5v" (at -180.0352 195.7324 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e2e744ad-516c-41c2-803c-7e211fa7f7be) + ) + (text "Add gear screen 0v" (at 28.956 -59.182 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e4df63e4-2a5a-405f-916a-ea67ff3a2b21) + ) + (text "Wpump" (at 343.6874 341.4522 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e561cc83-2425-4c15-b8e9-7f6fbfffd0e1) + ) + (text "Kill out to trigger" (at 68.1228 -80.3148 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e61e8b4e-b3bc-4d32-b933-d5eb8eadc262) + ) + (text "Source" (at 328.3204 89.8398 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e6b71227-4ed3-4e88-aade-f74d64a7a7ab) + ) + (text "Horn\n" (at 534.416 -154.432 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e6d47c66-f6f9-4ce4-b0fa-9f46b5d62569) + ) + (text "Pin 2 is heatsink tab" (at 366.141 138.684 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e9febdd1-669e-46f3-983e-2ded7b5fa339) + ) + (text "missing pad on grips? H? need to hardwire now\njoint to H69" + (at -30.988 183.007 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid eac540a2-0555-4530-b9cb-9b037a65c0a7) + ) + (text "Devices" (at 498.602 -177.292 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ebea4a2a-9cb1-4ab8-b4f1-908645acbee7) + ) + (text "Oled CS-SS" (at 520.7 -141.224 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ed824aac-489b-43a2-aee4-c538e962fee2) + ) + (text "Next SW" (at 193.04 -62.611 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ee80c1b4-78a3-4713-a7cd-fc09dd9d2b28) + ) + (text "Gear4" (at 484.886 -146.304 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ee83484e-559c-49f4-b860-51607c32af3d) + ) + (text "Fuel sender 3.3v" (at 193.294 -85.725 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f0f3907b-44e3-4106-9f24-d8ce836b6bb0) + ) + (text "Hazards - joins lind and r Ind somehow? diodes? " (at 65.532 -117.348 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f17daa22-500e-4b54-81a7-f5c3878a87d9) + ) + (text "Displ" (at 365.6076 -44.704 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f1d76c20-7ba3-46bc-997a-f4920fde26d8) + ) + (text "Console neutral light needs to be switch earth (conatant +v)\n" + (at 370.967 400.939 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f2a44eaf-666f-422c-bb4d-a717499c3d1a) + ) + (text "RFID 0v" (at -57.15 283.337 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f3642676-ce32-431a-adfa-a8e750bc449d) + ) + (text "Oled 0v" (at 457.2 -151.638 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f5404ae7-0caf-4b99-b9be-bd86fc9ab304) + ) + (text "Gear display - B" (at 64.897 -57.531 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f5a54919-b960-48fc-8517-e9e32dce0bf0) + ) + (text "Oled 5v" (at 454.406 -152.146 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f5ba7351-57ea-4026-9941-ceda5e2ef4f9) + ) + (text "RH switch gear" (at 28.448 -118.999 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f8fd3b2c-9550-4b51-be47-a8d9567c972f) + ) + (text "D" (at 292.354 265.176 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f934a442-23d6-4e5b-908f-bb9199ad6f8b) + ) + (text "2 for + and 2 for 0v. Double 0v with sens 0v on pin 11" + (at -129.413 302.006 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fb7b20d7-70ea-48e6-baf1-01a0d3c92377) + ) + (text "Rind" (at 365.3028 -82.8294 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fc7787d9-c1fa-4bac-8b87-2bcc65bcb6b5) + ) + (text "\n" (at 213.36 213.106 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid fdc60c06-30fa-4dfb-96b4-809b755999e1) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 329.184 214.376 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e27dab2) + (property "Reference" "Q2" (id 0) (at 334.3656 213.2076 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 334.3656 215.519 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 334.264 212.471 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 329.184 214.376 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 16a09e3b-7be1-436a-a6f1-fa8942150ea5)) + (pin "2" (uuid fe6e7bf3-5b31-4093-9ebc-47cfdbc95be4)) + (pin "3" (uuid 0b254cfc-0d9f-4c97-8d09-c0cfe1ce801c)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 318.008 220.218 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e27f376) + (property "Reference" "Q1" (id 0) (at 322.834 219.0496 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 322.834 221.361 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 323.088 222.123 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 318.008 220.218 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 9916f88f-86b3-463d-9689-6baf68b6ae7a)) + (pin "2" (uuid 9893ff6b-1d69-45a9-9a4e-9432ebcf9d56)) + (pin "3" (uuid 57d2cec7-d544-43db-b3aa-27a090a2ffd1)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 320.548 209.042 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2818e1) + (property "Reference" "R2" (id 0) (at 322.3006 207.8736 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 322.3006 210.185 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 320.548 209.042 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 320.548 209.042 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 320.548 209.042 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 320.548 209.042 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 320.548 209.042 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 320.548 209.042 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 320.548 209.042 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 320.548 209.042 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid a04d49d2-07a6-45c0-b682-9328e6046e78)) + (pin "2" (uuid 8bfdfbc6-d968-4133-b3ab-7a5cc25ba14a)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 303.276 220.218 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2868dd) + (property "Reference" "R1" (id 0) (at 302.1076 218.4654 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 304.419 218.4654 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 303.276 220.218 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 303.276 220.218 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 303.276 220.218 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 303.276 220.218 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 303.276 220.218 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 303.276 220.218 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 303.276 220.218 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 303.276 220.218 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 97d5ac73-2575-4b70-9c0f-bec49c72fefd)) + (pin "2" (uuid 601346dd-773e-4783-b4fa-51ba92db080f)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Arduino_Mega2560_Shield-arduino") (at 171.45 197.104 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e28df00) + (property "Reference" "XA1" (id 0) (at 171.45 257.5814 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "Arduino_Mega2560_Shield" (id 1) (at 171.45 260.2738 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "Arduino mega:Arduino_Mega2560_Shield" (id 2) (at 189.23 127.254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "https://store.arduino.cc/arduino-mega-2560-rev3" (id 3) (at 189.23 127.254 0) + (effects (font (size 1.524 1.524)) hide) + ) + (pin "3V3" (uuid 27c48e15-40e8-4ff3-b22a-67ededa7574c)) + (pin "5V1" (uuid 13cc885a-b3eb-4151-b7de-4e76b1845ab9)) + (pin "5V2" (uuid 31776fac-ddd1-4f7f-99a2-a1d80744f444)) + (pin "5V3" (uuid cff0e65d-e3fa-4a63-89b2-ee95d2eadf50)) + (pin "5V4" (uuid 126bb32d-88df-4efe-a752-e5e2f11f288b)) + (pin "A0" (uuid f8c88117-930f-4fb6-80c5-667e779502ed)) + (pin "A1" (uuid 65ab014e-a547-434d-9a5d-f81cb1c67711)) + (pin "A10" (uuid bca3f06c-4493-484f-b5c2-48437b3371ee)) + (pin "A11" (uuid 11ccb6a0-7d5d-44ea-928a-86d4c739d859)) + (pin "A12" (uuid 1afb8e33-44a8-4ac2-862a-d69ff53eff76)) + (pin "A13" (uuid 6ae57909-d745-4ea5-b7ff-18fddd43e0ba)) + (pin "A14" (uuid 3d9cfcdb-ccfa-44ba-bd1b-f316c3905870)) + (pin "A15" (uuid f4c6ef0b-530c-4fb7-b0b1-5220f7e6fb11)) + (pin "A2" (uuid 592c91f6-c172-4a32-884a-061752c1bff9)) + (pin "A3" (uuid b5061e19-dfbf-41b3-ae98-60ee1a4b7f97)) + (pin "A4" (uuid 885b7918-6fc0-4356-a9c4-4493dc8395b7)) + (pin "A5" (uuid 54994a58-1603-48d7-b511-7b9b7204faaa)) + (pin "A6" (uuid d9ae942c-27ef-4882-ba43-4e2805608508)) + (pin "A7" (uuid 43c972d7-0f56-487f-9665-23fd378f5fb7)) + (pin "A8" (uuid 5e4b4715-7925-424b-9a75-d781e747ea29)) + (pin "A9" (uuid b5fdd136-395e-4f41-ac20-26e2628d6d97)) + (pin "AREF" (uuid d5141b2d-71c8-40a8-9603-c4616cd66d9e)) + (pin "D0" (uuid 2148f2b6-facf-4495-acb4-dd632124e0f9)) + (pin "D1" (uuid 38b45e65-d21a-4780-949c-b4df73ce9bcf)) + (pin "D10" (uuid f1cb0908-4800-4ae6-b01b-11760c4bae97)) + (pin "D11" (uuid 2c5003cc-4441-4aa9-9cb7-c958d77366d0)) + (pin "D12" (uuid 26d7ef4d-55f6-4c25-b836-f3312479386a)) + (pin "D13" (uuid 102ee0d3-0d1c-48f8-9bae-0c5b4130d75e)) + (pin "D14" (uuid 5f66b556-f077-4fe3-87d6-73ab0d571254)) + (pin "D15" (uuid 0f7a0070-646d-4ce6-88e4-00e1d476e141)) + (pin "D16" (uuid 3dd58fe4-e298-4581-8c79-9dbd55f3ca5e)) + (pin "D17" (uuid fb98e058-6eff-4d22-b03c-2bfdd5213164)) + (pin "D18" (uuid b185de03-ff2b-46ed-a95b-f2431f119d54)) + (pin "D19" (uuid a548cdaf-2e20-448f-ac62-9bd51c1fb9da)) + (pin "D2" (uuid 62c0c665-5b7f-43a1-a1c4-97b75423c6b2)) + (pin "D20" (uuid 6ec995b3-ae6b-45db-81f9-fd35972e4de9)) + (pin "D21" (uuid 35dd081b-9c90-4f35-84d1-6d53ae6bd97a)) + (pin "D22" (uuid 86cbe837-42ed-4077-a19f-72dd31ba4407)) + (pin "D23" (uuid 8b85b95e-35ea-4365-9fe3-93ce7e96032f)) + (pin "D24" (uuid bcc02520-ed33-4fd6-b1f6-4d4e6eb2f198)) + (pin "D25" (uuid bc55d8bd-a971-4d00-8c2c-cd2b47701f2a)) + (pin "D26" (uuid c8fc26d9-00fd-4dde-8bd3-e731987d4250)) + (pin "D27" (uuid 41d1f9b8-f916-47f8-9297-6f3b7c56503e)) + (pin "D28" (uuid deebf056-fba9-4e97-83a2-b62a24668984)) + (pin "D29" (uuid 1b8f65d4-c9eb-4356-a7f5-ac59037affa7)) + (pin "D3" (uuid eda9daf8-4a7f-4ce2-b674-13d1c7c860fd)) + (pin "D30" (uuid acd23b79-317c-4d2e-90fe-1c7f88c75ef5)) + (pin "D31" (uuid 0ca7582a-2cf2-4166-a70e-351e9f98bc70)) + (pin "D32" (uuid e2bb0953-02c3-4b33-b1e3-3d35bc85d7f2)) + (pin "D33" (uuid cc9c3383-c2c7-4fb3-a64a-dab85c8d1537)) + (pin "D34" (uuid 75a7be90-106e-482c-a464-110e4aa676c5)) + (pin "D35" (uuid 2ff3ab08-bb18-487c-826d-64131b0657b4)) + (pin "D36" (uuid e12e14e9-c34b-4980-8e30-5ecd3e0e14aa)) + (pin "D37" (uuid 99b16b3e-c969-4c22-b214-8be0cfcc1731)) + (pin "D38" (uuid ba089bdb-62a5-49bd-9552-c310da9952f3)) + (pin "D39" (uuid 3d441e70-a2bc-4b91-b5fb-ae9fda0d80af)) + (pin "D4" (uuid c31beb0c-30c9-4805-a878-7d2c3a680ad0)) + (pin "D40" (uuid 253a68c6-a73a-46e9-96d6-f280b2e51625)) + (pin "D41" (uuid a6251d75-ead4-4ada-b9be-db6bf2c7fe29)) + (pin "D42" (uuid cd8f2652-d31b-4711-9f58-b4a9b482d902)) + (pin "D43" (uuid 8e931fb7-6053-4877-a0f9-8d35aef78e84)) + (pin "D44" (uuid 2e933e55-bc28-4018-8964-d8b356b2a429)) + (pin "D45" (uuid eb9837cb-bf6f-43da-bde8-757d59e9f57f)) + (pin "D46" (uuid 7d9221cc-bef3-465f-b042-5fec8f114db9)) + (pin "D47" (uuid 37151358-5d26-4223-aab7-bbe564f73269)) + (pin "D48" (uuid b558f8c4-f5fe-4299-83c3-ba7b6d493a68)) + (pin "D49" (uuid 3e9ae718-ffbc-42ad-9aff-5ed763f59baf)) + (pin "D5" (uuid 9b4c0579-2427-4119-8337-b87d8411872a)) + (pin "D50" (uuid 4778a21b-73f2-45a4-8ef5-3955c034308f)) + (pin "D51" (uuid 3e894d00-4425-498d-9ead-f450982a9204)) + (pin "D52" (uuid 86eb168b-7396-4f91-9918-7be98c740008)) + (pin "D53" (uuid bafb2ec6-570d-4e56-83f2-127612477cbe)) + (pin "D6" (uuid 36f0ad0b-dbc6-4483-84c6-3c68e97daaac)) + (pin "D7" (uuid 5de43ee8-4291-46d8-94c3-0241cf33eb76)) + (pin "D8" (uuid ca9b3d53-878c-4843-8a1d-7ecf495a9c91)) + (pin "D9" (uuid 248bf9d8-744b-4117-bbeb-af67ed594739)) + (pin "GND1" (uuid 87eb4bc4-bb26-40d5-b6fa-c3bb347dbe29)) + (pin "GND2" (uuid bb5151bc-5d6f-4aea-9a7d-332d6283f434)) + (pin "GND3" (uuid 4d5da3ef-47ce-4f45-a247-040df1410311)) + (pin "GND4" (uuid 2f187dd3-7987-4410-ad58-03b57edb9932)) + (pin "GND5" (uuid df13a53f-e1ad-4218-84d0-8cc2cb5c3ed5)) + (pin "GND6" (uuid 643d80ef-8daf-4495-97c7-1b6d29d8dfef)) + (pin "IORF" (uuid 84f63bb6-4eb9-4689-a4f3-3048ae3cbd72)) + (pin "MISO" (uuid ab16641d-b852-4f13-b79d-d22411190cab)) + (pin "MOSI" (uuid 0595a04f-7477-4b42-9542-5d6e7a468e5a)) + (pin "RST1" (uuid aefc7a08-8cec-449e-858c-c9cd83cd8be6)) + (pin "RST2" (uuid 456a0f4d-8f08-4af5-9ebc-bd56ca7b864e)) + (pin "SCK" (uuid a46bc207-7a2b-4c2c-8664-12f06b8e7eb1)) + (pin "SCL" (uuid 2a765a46-48b1-4bb6-b6ce-2f340037e5cf)) + (pin "SDA" (uuid 06ac3bb5-5357-4aa0-9b0b-4f43394f12a7)) + (pin "VIN" (uuid b86b2bdf-9993-44ff-91e3-13270234b4d0)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 347.218 239.522 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2aca7a) + (property "Reference" "Q7" (id 0) (at 352.044 238.3536 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 352.044 240.665 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 352.298 241.427 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 347.218 239.522 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 8d6a49cd-4fbf-4de8-9aa7-639df2885868)) + (pin "2" (uuid c629b3b1-86ea-432e-a463-02fc1cc29c4c)) + (pin "3" (uuid aca347b8-4846-4ef3-a3ac-4214b95eb178)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 349.758 228.346 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2aca8a) + (property "Reference" "R12" (id 0) (at 351.5106 227.1776 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 351.5106 229.489 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 349.758 228.346 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 349.758 228.346 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 349.758 228.346 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 349.758 228.346 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 349.758 228.346 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 349.758 228.346 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 349.758 228.346 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 349.758 228.346 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 94bad641-dafb-4737-835c-61dceeda5b51)) + (pin "2" (uuid 94ee5b09-e11e-41ef-960b-b3649a1898d3)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 332.486 239.522 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2aca9b) + (property "Reference" "R7" (id 0) (at 331.3176 237.7694 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 333.629 237.7694 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 332.486 239.522 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 332.486 239.522 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 332.486 239.522 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 332.486 239.522 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 332.486 239.522 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 332.486 239.522 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 332.486 239.522 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 332.486 239.522 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 23e40eaa-bc37-4542-ad59-33ac912b7b4b)) + (pin "2" (uuid 956a6afa-2c72-4dc8-b2e3-100f89b7e23f)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 358.394 233.68 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2acae1) + (property "Reference" "Q12" (id 0) (at 363.5756 232.5116 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 363.5756 234.823 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 363.474 231.775 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 358.394 233.68 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid ca43fb8d-7115-422d-b6e2-f4d8a7ae9a35)) + (pin "2" (uuid e177f58d-f90d-46a2-8fe6-edc99f7c70d3)) + (pin "3" (uuid f63b9842-8ea3-4324-8fa9-05b811cf01a9)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 353.822 195.58 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2dede2) + (property "Reference" "Q11" (id 0) (at 358.648 194.4116 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 358.648 196.723 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 358.902 197.485 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 353.822 195.58 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 7b274795-7d31-4363-8ce2-700587546274)) + (pin "2" (uuid d9e89562-bbeb-4a8f-b5c2-ed97ed9e6ced)) + (pin "3" (uuid de582a17-53ba-4e15-9d6b-8ab5221fa113)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 356.362 184.404 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2dedf2) + (property "Reference" "R16" (id 0) (at 358.1146 183.2356 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 358.1146 185.547 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 356.362 184.404 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 356.362 184.404 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 356.362 184.404 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 356.362 184.404 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 356.362 184.404 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 356.362 184.404 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 356.362 184.404 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 356.362 184.404 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 1855d31c-efd5-4b54-ad76-2f1890852585)) + (pin "2" (uuid 5f30ab7f-c873-421e-a146-de4ae12eaab6)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 339.09 195.58 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2dee03) + (property "Reference" "R11" (id 0) (at 337.9216 193.8274 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 340.233 193.8274 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 339.09 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 339.09 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 339.09 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 339.09 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 339.09 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 339.09 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 339.09 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 339.09 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 951cadca-27e0-4191-ac6f-4225287f0a4a)) + (pin "2" (uuid cfa9ab3b-6a47-49fd-8f1c-11b4bc533cd6)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 364.998 189.738 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2dee2a) + (property "Reference" "Q16" (id 0) (at 370.1796 188.5696 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 370.1796 190.881 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 370.078 187.833 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 364.998 189.738 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 6afdeeb4-fba4-4158-b54f-e6b7e1bb9552)) + (pin "2" (uuid 5e0b71fc-17cc-4cc6-ad38-4bfa57ad96c3)) + (pin "3" (uuid 78deade2-a3c3-4519-8f15-365aba905db7)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 287.528 166.624 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2f6f34) + (property "Reference" "Q3" (id 0) (at 292.354 165.4556 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 292.354 167.767 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 292.608 168.529 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 287.528 166.624 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 27bb3a7d-9398-429c-92f3-69cff6bc448a)) + (pin "2" (uuid 11f86f23-0cf2-40dc-bd92-b2328765eea8)) + (pin "3" (uuid bf881de4-67b5-4d25-98c6-86426e220cd4)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 290.068 155.448 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2f6f44) + (property "Reference" "R4" (id 0) (at 291.8206 154.2796 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 291.8206 156.591 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 290.068 155.448 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 290.068 155.448 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 290.068 155.448 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 290.068 155.448 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 290.068 155.448 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 290.068 155.448 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 290.068 155.448 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 290.068 155.448 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid f2d06fe3-e17a-439f-987f-233cdbb94a17)) + (pin "2" (uuid 7e869e0e-d3ca-45e6-ba3e-1f3796698036)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 272.796 166.624 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2f6f55) + (property "Reference" "R3" (id 0) (at 271.6276 164.8714 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 273.939 164.8714 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 272.796 166.624 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 272.796 166.624 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 272.796 166.624 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 272.796 166.624 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 272.796 166.624 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 272.796 166.624 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 272.796 166.624 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 272.796 166.624 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid dbb58e03-980f-4d53-b780-c96c25cf8b1f)) + (pin "2" (uuid d8b07142-02ba-4a6f-80ef-1d7de515de50)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 298.704 160.782 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e2f6f7c) + (property "Reference" "Q4" (id 0) (at 303.8856 159.6136 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 303.8856 161.925 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 303.784 158.877 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 298.704 160.782 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid ff206ac6-2a32-4ca3-9a3d-c27826adfcdf)) + (pin "2" (uuid 4101580d-bbc5-4a74-85eb-cbbcd3a8ddf9)) + (pin "3" (uuid 5b211c98-8931-43dd-a0e4-a0bbdee678a8)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 353.568 131.572 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e307bc6) + (property "Reference" "Q10" (id 0) (at 358.394 130.4036 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 358.394 132.715 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 358.648 133.477 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 353.568 131.572 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid b0cf8bed-c947-4ec3-9562-7284b9c7a59f)) + (pin "2" (uuid 1b85565e-9575-420f-855b-b9518f44d4b4)) + (pin "3" (uuid 4fbf3c8f-3d16-4a58-aea2-39ac14bcb4c7)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 356.108 120.396 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e307bd6) + (property "Reference" "R15" (id 0) (at 357.8606 119.2276 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 357.8606 121.539 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 356.108 120.396 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 356.108 120.396 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 356.108 120.396 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 356.108 120.396 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 356.108 120.396 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 356.108 120.396 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 356.108 120.396 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 356.108 120.396 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 1f2b07df-d04b-4b7e-8736-ac790ba386e1)) + (pin "2" (uuid 96a7c476-dd03-479a-b184-b1eb7ace286a)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 338.836 131.572 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e307be7) + (property "Reference" "R10" (id 0) (at 337.6676 129.8194 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 339.979 129.8194 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 338.836 131.572 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 338.836 131.572 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 338.836 131.572 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 338.836 131.572 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 338.836 131.572 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 338.836 131.572 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 338.836 131.572 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 338.836 131.572 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 4769d5fe-3c28-4e3e-90de-86298e98223a)) + (pin "2" (uuid 73a1814b-b2d6-41cf-b56d-08290f440396)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 364.744 125.73 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e307c0e) + (property "Reference" "Q15" (id 0) (at 369.9256 124.5616 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 369.9256 126.873 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 369.824 123.825 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 364.744 125.73 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 5fed8039-85aa-4449-8ffd-52887a6661ee)) + (pin "2" (uuid d3acf262-f3a4-4e8d-9571-f436d3062c80)) + (pin "3" (uuid b9ad51c5-87a2-458e-85be-d7fffc81f34d)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 313.182 98.806 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e33266b) + (property "Reference" "Q5" (id 0) (at 318.008 97.6376 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 318.008 99.949 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 318.262 100.711 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 313.182 98.806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 113928b6-2267-429d-9b8c-78ba61386a32)) + (pin "2" (uuid e30122e4-ea88-4b02-a384-8ad6e83b047b)) + (pin "3" (uuid 82287f6b-0ca6-4089-b453-d8160d1dcf88)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 315.722 87.63 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e33267b) + (property "Reference" "R6" (id 0) (at 317.4746 86.4616 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 317.4746 88.773 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 315.722 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 315.722 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 315.722 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 315.722 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 315.722 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 315.722 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 315.722 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 315.722 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid e8a12379-eb40-4a7e-ad7f-021b6557117f)) + (pin "2" (uuid 59676195-4c92-42e3-8537-b68aeeb41be3)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 298.45 98.806 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e33268c) + (property "Reference" "R5" (id 0) (at 297.2816 97.0534 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 299.593 97.0534 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 298.45 98.806 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 298.45 98.806 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 298.45 98.806 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 298.45 98.806 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 298.45 98.806 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 298.45 98.806 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 298.45 98.806 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 298.45 98.806 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 1f4859e7-62ee-4a55-ae4e-b2ae901a2ff2)) + (pin "2" (uuid 01d1770a-6716-45d6-9e79-6041893dcee2)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 324.358 92.964 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e3326b3) + (property "Reference" "Q6" (id 0) (at 329.5396 91.7956 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "P channel NDP6030" (id 1) (at 329.5396 94.107 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 329.438 91.059 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 324.358 92.964 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 78f8810e-b1a2-4f9b-909d-d39ef1ae881e)) + (pin "2" (uuid edeeeee9-df4b-4976-9e57-04138e1a1d31)) + (pin "3" (uuid eba8b478-c6f7-4e03-a0bd-4c5c3ff9a985)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 351.536 344.17 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e3784b6) + (property "Reference" "Q9" (id 0) (at 356.362 343.0016 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 356.362 345.313 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 356.616 346.075 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 351.536 344.17 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid d69647b8-2455-4ded-bd0a-08f38a66b8df)) + (pin "2" (uuid 8c8097b4-344b-46e3-a4ad-dcd06b91cbe2)) + (pin "3" (uuid f9211667-7b12-4b75-9ad5-a05daed4fec9)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 354.076 332.994 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e3784c6) + (property "Reference" "R14" (id 0) (at 355.8286 331.8256 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 355.8286 334.137 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 354.076 332.994 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 354.076 332.994 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 354.076 332.994 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 354.076 332.994 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 354.076 332.994 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 354.076 332.994 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 354.076 332.994 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 354.076 332.994 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid b270af75-a05e-439d-960f-d9a0aaa8697b)) + (pin "2" (uuid 4ca30ab7-5a9a-4d17-89a8-b33fb8c034c1)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 336.804 344.17 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e3784d7) + (property "Reference" "R9" (id 0) (at 335.6356 342.4174 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 337.947 342.4174 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 336.804 344.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 336.804 344.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 336.804 344.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 336.804 344.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 336.804 344.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 336.804 344.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 336.804 344.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 336.804 344.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid fd346e33-b457-40e8-a571-7e0ba9d594b6)) + (pin "2" (uuid df47d47c-c336-4b5c-8258-3c57ecedf099)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 362.712 338.328 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e3784fe) + (property "Reference" "Q14" (id 0) (at 367.8936 337.1596 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 367.8936 339.471 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 367.792 336.423 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 362.712 338.328 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid ba4e6bf4-bfbb-4545-b2a2-eb153c8aeeee)) + (pin "2" (uuid d7b30a93-8595-4375-b7cd-6d9f921ea89a)) + (pin "3" (uuid f525da21-1385-4ff3-a214-599922e911b7)) + ) + + (symbol (lib_id "mega+mosfet-rescue:6pin-Modules") (at 64.77 247.142 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e630ad7) + (property "Reference" "M3" (id 0) (at 76.9112 246.8118 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SD card" (id 1) (at 76.9112 249.1232 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "5 way module header:6 way module header" (id 2) (at 64.77 247.142 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 64.77 247.142 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d047af9b-deb3-49be-adaa-c997bc195e1e)) + (pin "2" (uuid 0ea6a458-8256-4299-8a1a-a257f2a3f1cd)) + (pin "3" (uuid 2e7434db-033f-4c26-a1fb-e4e8abe3e886)) + (pin "4" (uuid 6077f250-dc85-4329-9102-7002c92bc107)) + (pin "5" (uuid cd322d5f-5b39-4eca-b4ec-6107c1095050)) + (pin "6" (uuid fe91f693-955f-4165-8f25-37f9503d93f0)) + ) + + (symbol (lib_id "mega+mosfet-rescue:6pin-Modules") (at 63.754 286.766 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e631119) + (property "Reference" "M1" (id 0) (at 75.8952 286.4358 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "RTC" (id 1) (at 75.8952 288.7472 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "5 way module header:6 way module header" (id 2) (at 63.754 286.766 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 63.754 286.766 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1fc9a580-7b3d-457d-a67d-36877ba0bf9d)) + (pin "2" (uuid cbe068f8-08a0-4d82-977d-d526d61a0c44)) + (pin "3" (uuid 2f12efeb-c08b-488a-a03e-9adb711e14cb)) + (pin "4" (uuid 55845ba9-f472-4172-9f6e-1097b2932991)) + (pin "5" (uuid 7eaebf4f-75c6-430b-a5eb-94f17a452ddd)) + (pin "6" (uuid ffa42339-f113-49db-878f-7a0a8f4a424a)) + ) + + (symbol (lib_id "Transistor_FET:IRLB8721PBF") (at 293.116 307.594 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e65f5a9) + (property "Reference" "Q13" (id 0) (at 298.2976 306.4256 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRLB8721PBF" (id 1) (at 298.2976 308.737 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 299.466 309.499 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591" (id 3) (at 293.116 307.594 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 77078127-f3af-48aa-a772-70de91303971)) + (pin "2" (uuid f5300988-ed64-415e-be65-4b1227a1de96)) + (pin "3" (uuid dbadf01b-c575-429d-a316-57833ae53883)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 282.956 307.594 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e65f5bb) + (property "Reference" "R18" (id 0) (at 282.956 302.3616 0)) + (property "Value" "150ohm" (id 1) (at 282.956 304.673 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 282.956 307.594 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 282.956 307.594 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 282.956 307.594 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 282.956 307.594 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 282.956 307.594 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 282.956 307.594 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 282.956 307.594 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 282.956 307.594 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 0a9de774-7f72-4e87-b4f6-6157388e155a)) + (pin "2" (uuid 0ea3612e-c354-4f23-af70-69689ee5b35e)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 277.622 312.674 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e65f5cc) + (property "Reference" "R13" (id 0) (at 279.3746 311.5056 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10k" (id 1) (at 279.3746 313.817 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 277.622 312.674 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 277.622 312.674 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 277.622 312.674 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 277.622 312.674 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 277.622 312.674 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 277.622 312.674 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 277.622 312.674 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 277.622 312.674 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid ab6f6ce4-a42c-4b4d-9d0a-ec9a9fcfbd16)) + (pin "2" (uuid 4a967606-b6e0-47c5-9823-c07c1f08b559)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 462.788 157.226 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e738745) + (property "Reference" "Q17" (id 0) (at 467.614 156.0576 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 467.614 158.369 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 467.868 159.131 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 462.788 157.226 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid d3b8381f-f592-44b7-b7c1-de2013b94274)) + (pin "2" (uuid 649cc06d-ffb1-4508-84d7-7f60c144ea62)) + (pin "3" (uuid 5523f710-c4b7-45eb-aa8d-6d2e7a2e75d5)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 465.328 146.05 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e738755) + (property "Reference" "R21" (id 0) (at 467.0806 144.8816 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 467.0806 147.193 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 465.328 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 465.328 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 465.328 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 465.328 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 465.328 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 465.328 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 465.328 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 465.328 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid e1be5a5e-3e87-4753-83a3-dfe1460fb1e8)) + (pin "2" (uuid 8c02dd98-c4a8-4c31-a32d-87ec05cdcb8e)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 448.056 157.226 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e738766) + (property "Reference" "R19" (id 0) (at 446.8876 155.4734 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 449.199 155.4734 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 448.056 157.226 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 448.056 157.226 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 448.056 157.226 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 448.056 157.226 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 448.056 157.226 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 448.056 157.226 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 448.056 157.226 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 448.056 157.226 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 729d35a7-b8c9-4ac3-9685-e353e3a4140d)) + (pin "2" (uuid dc3adc53-2420-4b5f-83b9-c834f2773f42)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 473.964 151.384 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e738775) + (property "Reference" "Q18" (id 0) (at 479.1456 150.2156 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 479.1456 152.527 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 479.044 149.479 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 473.964 151.384 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 59e6aacd-c3c2-4d99-a279-614218780504)) + (pin "2" (uuid a5b79059-a3d7-40ac-82c7-4d474c52216c)) + (pin "3" (uuid 5cfa5cbb-18e0-4ea4-a763-849ed41634d8)) + ) + + (symbol (lib_id "power:GND") (at 288.798 74.93 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e77ba3d) + (property "Reference" "#PWR0102" (id 0) (at 288.798 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 288.925 79.3242 0)) + (property "Footprint" "" (id 2) (at 288.798 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 288.798 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b468d018-b0b9-48ff-ada9-ae565b8ae0c8)) + ) + + (symbol (lib_id "mega+mosfet-rescue:TO-3-5-amp-reg-TO3-5amp") (at 73.152 43.18 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e7d67ae) + (property "Reference" "RG1" (id 0) (at 84.0232 47.9298 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TO-3-5-amp-5v reg" (id 1) (at 84.0232 50.2412 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-3" (id 2) (at 73.152 43.18 0)) + (property "Datasheet" "" (id 3) (at 73.152 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 56b68d44-616f-4017-be4e-b158bddce143)) + (pin "2" (uuid c17c9aea-bfc6-434a-a11f-397ae1b0c5d4)) + (pin "3" (uuid c86dcb16-8607-4be4-b822-2099316b7e47)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 69.85 67.818 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e7d753e) + (property "Reference" "R23" (id 0) (at 69.85 62.5856 0)) + (property "Value" "750ohm" (id 1) (at 69.85 64.897 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal" (id 2) (at 69.85 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 69.85 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 69.85 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 69.85 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 69.85 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 69.85 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 69.85 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 69.85 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 585cc372-ca56-43bf-8790-b49ee6f01e0e)) + (pin "2" (uuid 1ae73ada-1e72-4cee-9a3d-a155873facb9)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:CP-Device") (at 94.996 63.754 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e8b3fda) + (property "Reference" "C41" (id 0) (at 97.9932 61.4426 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "0.1uf" (id 1) (at 97.9932 63.754 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (id 2) (at 97.9932 66.0654 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Datasheet" "~" (id 3) (at 94.996 63.754 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3461a584-a20c-4c8d-a180-a46c122446e0)) + (pin "2" (uuid 471dd7da-b3c4-491d-8ec0-8510d4bb6056)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 18.542 221.488 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005e906bcf) + (property "Reference" "R25" (id 0) (at 18.542 216.2556 0)) + (property "Value" "10k" (id 1) (at 18.542 218.567 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 18.542 221.488 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Datasheet" ".25 W" (id 3) (at 18.542 221.488 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 18.542 221.488 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 18.542 221.488 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 18.542 221.488 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 18.542 221.488 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 18.542 221.488 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 18.542 221.488 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 57ed731a-c03e-487d-ad37-a91240b448a4)) + (pin "2" (uuid 27ec46a4-f8fa-4139-8cb0-d536fb31eaa5)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 69.85 76.708 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ea54379) + (property "Reference" "R24" (id 0) (at 69.85 71.4756 0)) + (property "Value" "5.1k(8v) 2,2k (5v)" (id 1) (at 69.85 73.787 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal" (id 2) (at 69.85 76.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 69.85 76.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 69.85 76.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 69.85 76.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 69.85 76.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 69.85 76.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 69.85 76.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 69.85 76.708 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 4f3efa2c-d101-4ebc-af4d-e433c34676cb)) + (pin "2" (uuid 75ac6246-6181-43e6-a7dd-6374ece7ec46)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 114.808 255.778 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005eb34e1b) + (property "Reference" "H21" (id 0) (at 117.348 254.5334 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Vin F1" (id 1) (at 117.348 256.8448 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad" (id 2) (at 114.808 255.778 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 114.808 255.778 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6f9dba1a-ad4b-4b83-afc4-6828bbbd836b)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 126.492 255.778 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005eb366fe) + (property "Reference" "H22" (id 0) (at 129.032 254.5334 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Vin F1" (id 1) (at 129.032 256.8448 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad" (id 2) (at 126.492 255.778 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 126.492 255.778 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1d70f394-b2a7-47ea-9c80-cc301d38760c)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 478.028 192.278 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005eb37d4a) + (property "Reference" "Q19" (id 0) (at 482.854 191.1096 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 482.854 193.421 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 483.108 194.183 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 478.028 192.278 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 0482e22d-6842-4b20-a178-768c65edbd09)) + (pin "2" (uuid 8d41e27f-5db3-48e1-b404-972dcdbd8bb5)) + (pin "3" (uuid 0e4339b0-216e-4eb6-9a25-fc99c1ccb240)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 480.568 181.102 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005eb37d5a) + (property "Reference" "R22" (id 0) (at 482.3206 179.9336 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 482.3206 182.245 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 480.568 181.102 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 480.568 181.102 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 480.568 181.102 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 480.568 181.102 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 480.568 181.102 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 480.568 181.102 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 480.568 181.102 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 480.568 181.102 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 6a0303b7-f0b9-4054-8a8f-02aff8978a21)) + (pin "2" (uuid da0e7586-6ded-47b3-9bc7-109d2a5d3e03)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 463.296 192.278 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005eb37d6b) + (property "Reference" "R20" (id 0) (at 462.1276 190.5254 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 464.439 190.5254 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 463.296 192.278 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 463.296 192.278 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 463.296 192.278 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 463.296 192.278 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 463.296 192.278 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 463.296 192.278 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 463.296 192.278 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 463.296 192.278 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid d5e404ba-09f5-49e8-9714-90fdab4faf82)) + (pin "2" (uuid 58cae41f-e62f-4fbd-9d16-60599eef9b19)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 489.204 186.436 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005eb37d7a) + (property "Reference" "Q20" (id 0) (at 494.3856 185.2676 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 494.3856 187.579 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 494.284 184.531 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 489.204 186.436 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid adaf72b0-a5eb-44ed-a2b5-3b03545f5e72)) + (pin "2" (uuid d66809a2-537f-4850-851e-5a57dcab1334)) + (pin "3" (uuid 58c0945f-31b0-4f25-b315-dccac0ec690d)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 86.36 170.942 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ec02d6b) + (property "Reference" "R29" (id 0) (at 85.1916 169.1894 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "47R" (id 1) (at 87.503 169.1894 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 86.36 170.942 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 86.36 170.942 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 86.36 170.942 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 86.36 170.942 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 86.36 170.942 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 86.36 170.942 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 86.36 170.942 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 86.36 170.942 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 34b67c2d-87df-4390-a75f-724514f89e6a)) + (pin "2" (uuid c0517df9-bd6e-45e0-8d66-74f89e5e70cf)) + ) + + (symbol (lib_id "Transistor_FET:IRLB8721PBF") (at 288.544 268.224 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ed2726b) + (property "Reference" "Q8" (id 0) (at 293.7256 267.0556 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRLB8721PBF" (id 1) (at 293.7256 269.367 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 294.894 270.129 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.infineon.com/dgdl/irlb8721pbf.pdf?fileId=5546d462533600a40153566056732591" (id 3) (at 288.544 268.224 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid ae77648d-a138-48ed-a3a0-a001c2afbf5d)) + (pin "2" (uuid e69b8ba6-86a0-4822-821e-77439d1069ca)) + (pin "3" (uuid 27eee78b-6e03-4866-b136-0231906a47c1)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 85.09 188.214 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ed330e9) + (property "Reference" "R28" (id 0) (at 83.9216 186.4614 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 86.233 186.4614 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 85.09 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 85.09 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 85.09 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 85.09 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 85.09 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 85.09 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 85.09 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 85.09 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 417e7390-43a1-4f1c-8492-361c7fce8a61)) + (pin "2" (uuid fa4dc55f-5458-461d-aed1-eb9f55f2fad5)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 61.214 188.214 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ed34750) + (property "Reference" "R27" (id 0) (at 60.0456 186.4614 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 62.357 186.4614 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 61.214 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 61.214 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 61.214 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 61.214 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 61.214 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 61.214 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 61.214 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 61.214 188.214 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 665c4a85-e2bf-40f0-98fd-7ec4069c44d6)) + (pin "2" (uuid c4390a62-a6e5-4c03-87f8-9d8cc2748e1e)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 278.384 268.224 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005edcf666) + (property "Reference" "R17" (id 0) (at 278.384 262.9916 0)) + (property "Value" "150ohm" (id 1) (at 278.384 265.303 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 278.384 268.224 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 278.384 268.224 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 278.384 268.224 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 278.384 268.224 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 278.384 268.224 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 278.384 268.224 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 278.384 268.224 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 278.384 268.224 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid ab3d0a67-8d7b-49f3-a412-afc9f242a034)) + (pin "2" (uuid a4aa2fbd-3cb2-4179-80b8-75d7a8b8dd7f)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 273.05 273.304 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ee42d8c) + (property "Reference" "R8" (id 0) (at 274.8026 272.1356 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10k" (id 1) (at 274.8026 274.447 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 273.05 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 273.05 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 273.05 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 273.05 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 273.05 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 273.05 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 273.05 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 273.05 273.304 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 6bc13000-e3bd-45b8-bd9d-a7a7ca4bfb75)) + (pin "2" (uuid 9275dc46-4b85-4fb6-9d33-70b81c641a80)) + ) + + (symbol (lib_id "mega+mosfet-rescue:6pin-Modules") (at 63.754 296.926 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005eea1dea) + (property "Reference" "M2" (id 0) (at 75.8952 296.5958 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "BT" (id 1) (at 75.8952 298.9072 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "5 way module header:6 way module header" (id 2) (at 63.754 296.926 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 63.754 296.926 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3f308a3a-4bef-496b-bdbc-dec4d241715b)) + (pin "2" (uuid f0e124ba-ae08-4f0d-b514-cf8aea6be769)) + (pin "3" (uuid bf139484-5784-4b1b-ae6d-0f6de54007ac)) + (pin "4" (uuid ea29c43b-00ef-43ef-aa5d-0a19343a15c1)) + (pin "5" (uuid 5ac32af2-8d39-4b7f-a9ae-ef3f08bea103)) + (pin "6" (uuid 72a4f31e-b743-464b-ac8a-fbabbd639189)) + ) + + (symbol (lib_id "Relay:DIPxx-1Axx-11x") (at 325.12 267.462 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005eeed40e) + (property "Reference" "K1" (id 0) (at 333.502 266.2936 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "DIPxx-1Axx-11x. 1B version is NC" (id 1) (at 333.502 268.605 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Relay_THT:Relay_StandexMeder_DIP_LowProfile" (id 2) (at 334.01 268.732 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf" (id 3) (at 325.12 267.462 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e72e8268-04dd-42a0-abca-41e4e8afe870)) + (pin "14" (uuid f4d142c6-cc91-4ecd-b2ca-a75a4b9f99df)) + (pin "2" (uuid 9124c6fe-fc0f-48f3-a419-815d24b3b368)) + (pin "6" (uuid edc57d92-034b-4b49-ac31-a5fb0d2af53b)) + (pin "7" (uuid 9e5c210f-f791-465a-b44a-cd3b3ff71ff7)) + (pin "8" (uuid 12f5ec82-4dbe-408e-aaae-0e3618d856e5)) + ) + + (symbol (lib_id "Transistor_BJT:2N3904") (at 360.68 383.54 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ef06b2f) + (property "Reference" "Q21" (id 0) (at 365.506 382.3716 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N3904" (id 1) (at 365.506 384.683 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 365.76 385.445 0) + (effects (font (size 1.27 1.27) italic) (justify left)) + ) + (property "Datasheet" "https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf" (id 3) (at 360.68 383.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 96a0c460-9cd5-4905-95e9-7f2e2e6186f6)) + (pin "2" (uuid 0078f0b8-c595-449c-85b0-839b6e665b5f)) + (pin "3" (uuid d7ef1cff-134c-43d1-8739-e48965b761e1)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 363.22 372.364 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ef06b3f) + (property "Reference" "R31" (id 0) (at 364.9726 371.1956 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 364.9726 373.507 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 363.22 372.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 363.22 372.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 363.22 372.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 363.22 372.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 363.22 372.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 363.22 372.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 363.22 372.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 363.22 372.364 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 8c20ca9d-49c6-4f3d-a6c4-3ba6b3d0904e)) + (pin "2" (uuid 71528d28-d743-4a89-a181-9f3525698a76)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 345.948 383.54 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ef06b50) + (property "Reference" "R30" (id 0) (at 344.7796 381.7874 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 347.091 381.7874 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 345.948 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 345.948 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 345.948 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 345.948 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 345.948 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 345.948 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 345.948 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 345.948 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 1ef18535-fc99-4579-8385-662f2e8f36e3)) + (pin "2" (uuid ef922355-f90b-4a62-b235-1584c5675a27)) + ) + + (symbol (lib_id "Transistor_FET:IRF9540N") (at 371.856 377.698 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ef06b5f) + (property "Reference" "Q22" (id 0) (at 377.0376 376.5296 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "IRF9540N" (id 1) (at 377.0376 378.841 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 376.936 375.793 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.irf.com/product-info/datasheets/data/irf9540n.pdf" (id 3) (at 371.856 377.698 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid e25b132d-2212-4148-bbfa-a0de26aae84f)) + (pin "2" (uuid 32ea25b8-6388-4bcf-b2cb-89a7e83a6711)) + (pin "3" (uuid 2ad7a9f3-c1ea-4b34-8fe5-4040ea240e1e)) + ) + + (symbol (lib_id "mega+mosfet-rescue:TO-3-5-amp-reg-TO3-5amp") (at 126.492 -2.286 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005f043d0c) + (property "Reference" "RG2" (id 0) (at 137.3632 2.4638 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TO-3-5-amp-8v reg. " (id 1) (at 137.3632 4.7752 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-3" (id 2) (at 126.492 -2.286 0)) + (property "Datasheet" "" (id 3) (at 126.492 -2.286 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 01ac9b4d-f91a-4df0-a3d2-d17461e07f90)) + (pin "2" (uuid 1f79763d-f209-44ca-af1d-788097df1d36)) + (pin "3" (uuid 6b592609-1985-41ec-bc7a-eeeaf6379559)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 123.19 31.242 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005f043d1d) + (property "Reference" "R42" (id 0) (at 123.19 26.0096 0)) + (property "Value" "2.2k (5v) (5.1k)8v" (id 1) (at 123.19 28.321 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal" (id 2) (at 123.19 31.242 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 123.19 31.242 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 123.19 31.242 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 123.19 31.242 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 123.19 31.242 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 123.19 31.242 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 123.19 31.242 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 123.19 31.242 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid e949ea0a-a75f-4bb3-a73a-9cdda26225d3)) + (pin "2" (uuid 7b2509a5-9849-48ef-a7cc-d730e9a0d969)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 123.19 22.352 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005f043d31) + (property "Reference" "R41" (id 0) (at 123.19 17.1196 0)) + (property "Value" "720ohm" (id 1) (at 123.19 19.431 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal" (id 2) (at 123.19 22.352 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 123.19 22.352 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 123.19 22.352 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 123.19 22.352 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 123.19 22.352 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 123.19 22.352 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 123.19 22.352 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 123.19 22.352 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid f8f1334d-2a4c-403b-a6e5-85680942ac0e)) + (pin "2" (uuid afa9c4f7-7931-4a96-ba75-c135fe46f01d)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:CP-Device") (at 148.336 18.288 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005f043d37) + (property "Reference" "C5" (id 0) (at 151.3332 15.9766 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "0.1uf" (id 1) (at 151.3332 18.288 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (id 2) (at 151.3332 20.5994 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Datasheet" "~" (id 3) (at 148.336 18.288 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f79a368f-d620-4e05-bed8-ae19cb25722c)) + (pin "2" (uuid 338f364d-5a55-4824-bb89-ff4127ce60cd)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 19.558 237.49 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005f62dcda) + (property "Reference" "R26" (id 0) (at 19.558 232.2576 0)) + (property "Value" "5k" (id 1) (at 19.558 234.569 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 19.558 237.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Datasheet" ".25 W" (id 3) (at 19.558 237.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 19.558 237.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 19.558 237.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 19.558 237.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 19.558 237.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 19.558 237.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 19.558 237.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 48561b8f-af53-4010-812e-90651d9f570c)) + (pin "2" (uuid f2069e2a-3b9f-4916-aef7-53131f67dabe)) + ) + + (symbol (lib_id "mega+mosfet-rescue:6pin-Modules") (at 71.628 107.188 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005f9d5f37) + (property "Reference" "M5" (id 0) (at 83.7692 106.8578 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Accel" (id 1) (at 83.7692 109.1692 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "5 way module header:6 way module header" (id 2) (at 71.628 107.188 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.628 107.188 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 329c229c-d0f9-459a-b9fd-550097885dde)) + (pin "2" (uuid 2892e503-6fff-4fb1-9d1d-046e154c1407)) + (pin "3" (uuid 8ec93f95-b65c-4f0d-a4f4-32395a9e162a)) + (pin "4" (uuid 81155a4b-bf50-4f87-8a35-300f50e49582)) + (pin "5" (uuid 3ec76862-ce87-4cf0-95d5-a7104cce6cea)) + (pin "6" (uuid 7f1d9cbd-47d5-44d3-80ec-c700c249f989)) + ) + + (symbol (lib_id "mega+mosfet-rescue:6pin-Modules") (at 214.63 31.75 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005fe4f664) + (property "Reference" "M6" (id 0) (at 226.7712 31.4198 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Audio" (id 1) (at 226.7712 33.7312 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "5 way module header:6 way module header" (id 2) (at 214.63 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 214.63 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ae0b78a1-9b2b-43ff-a2fc-458fb6f0d27d)) + (pin "2" (uuid 2b6dac72-989d-4bfa-b1d0-d068731563b6)) + (pin "3" (uuid f74cf720-a367-432a-956c-998e2f22d811)) + (pin "4" (uuid bdc1b457-4c8b-4b48-b877-1e8d2c3010c5)) + (pin "5" (uuid a7535304-8c4c-4c4e-a91e-37c9d5ef09d8)) + (pin "6" (uuid 997d43ac-1b3c-440e-9afe-6de45f2a7078)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 22.098 165.354 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ff335eb) + (property "Reference" "DI12" (id 0) (at 23.0632 163.5506 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 23.0632 165.862 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 22.098 165.354 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 22.098 165.354 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 26c102a2-099b-461f-b2e9-557069d75d96)) + (pin "C" (uuid d154a7ab-87f9-4cdc-861c-9c41ab400ca7)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 400.812 249.428 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00005ffc0f32) + (property "Reference" "DI1" (id 0) (at 401.7772 247.6246 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 401.7772 249.936 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 400.812 249.428 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 400.812 249.428 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 07d5eedf-8b85-456b-8b63-4167d6ae66ab)) + (pin "C" (uuid 4b89c1e1-ef04-4c59-a470-0244c44c4d20)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 399.542 258.826 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006007303f) + (property "Reference" "R32" (id 0) (at 401.2946 257.6576 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 401.2946 259.969 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 399.542 258.826 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 399.542 258.826 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 399.542 258.826 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 399.542 258.826 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 399.542 258.826 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 399.542 258.826 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 399.542 258.826 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 399.542 258.826 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 95c6cb60-8450-42e8-8cd4-e874f3a1d721)) + (pin "2" (uuid e1ef8bdd-0588-4ddc-96cf-b8b3d064c2c4)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 428.117 377.063 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060093148) + (property "Reference" "R47" (id 0) (at 429.8696 375.8946 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 429.8696 378.206 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 428.117 377.063 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 428.117 377.063 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 428.117 377.063 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 428.117 377.063 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 428.117 377.063 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 428.117 377.063 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 428.117 377.063 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 428.117 377.063 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 2fc6fbea-a5ac-44e1-ae14-5f7455ad4ad6)) + (pin "2" (uuid b2f822ef-3019-47b8-8488-d79a56575703)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 429.387 367.665 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006009315e) + (property "Reference" "DI18" (id 0) (at 430.3522 365.8616 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 430.3522 368.173 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 429.387 367.665 0)) + (property "Datasheet" "" (id 3) (at 429.387 367.665 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid ac81da83-cee3-4868-8997-b2c411cc5153)) + (pin "C" (uuid c9614d4a-cf35-4d15-9668-bef8f4c09477)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:CP-Device") (at 336.55 60.706 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060126655) + (property "Reference" "C45" (id 0) (at 333.5528 63.0174 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uf" (id 1) (at 333.5528 60.706 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (id 2) (at 333.5528 58.3946 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Datasheet" "~" (id 3) (at 336.55 60.706 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e5e189fa-21bf-4fc8-bd32-8c080d01735e)) + (pin "2" (uuid 46bdc1be-4b9f-4356-857b-7827550efc4e)) + ) + + (symbol (lib_id "TLP2962:Opto") (at 148.717 99.441 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006033486b) + (property "Reference" "U1" (id 0) (at 149.987 97.536 0)) + (property "Value" "Opto" (id 1) (at 149.987 99.8474 0)) + (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 148.717 99.441 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.717 99.441 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0bdd26a7-da3d-45c6-8fa6-75fe44c07fd6)) + (pin "2" (uuid 6fb2ffd2-1e8d-4427-b3b2-39626f8ad83e)) + (pin "3" (uuid 27166f4f-ab72-42bd-8b7f-79a0a3a46db0)) + (pin "4" (uuid 71e059aa-09b1-4dcd-a622-47afdb4ee0a2)) + (pin "5" (uuid 39e8cb8b-7f4b-4864-aac9-5e105373aa80)) + (pin "6" (uuid 99b4c7e0-55fa-4e62-ab27-9050e377bac3)) + (pin "7" (uuid b9e00d28-a899-441e-9ead-09a91cf973c1)) + (pin "8" (uuid 0e65853c-de16-43ea-9021-836464702a0a)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:CP-Device") (at 139.7 19.304 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060475e81) + (property "Reference" "C2" (id 0) (at 142.6972 16.9926 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uf" (id 1) (at 142.6972 19.304 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (id 2) (at 142.6972 21.6154 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Datasheet" "~" (id 3) (at 139.7 19.304 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 96b8d4ff-dc32-4a12-8174-47194b7ce226)) + (pin "2" (uuid e182f9d1-2a8f-4b91-a06f-be8a63e79366)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 506.476 233.934 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000604ad7e8) + (property "Reference" "R34" (id 0) (at 508.2286 232.7656 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 508.2286 235.077 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 506.476 233.934 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 506.476 233.934 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 506.476 233.934 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 506.476 233.934 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 506.476 233.934 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 506.476 233.934 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 506.476 233.934 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 506.476 233.934 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid b65fce8a-6b62-4516-9edf-d57972cb15a0)) + (pin "2" (uuid 6b9cdc51-fb41-43d3-89ed-207c225d9a4d)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 507.746 224.536 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060565890) + (property "Reference" "DI3" (id 0) (at 508.7112 222.7326 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 508.7112 225.044 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 507.746 224.536 0)) + (property "Datasheet" "" (id 3) (at 507.746 224.536 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 09dcb90e-f8f2-46b8-b938-0209edc49118)) + (pin "C" (uuid 917b8178-6283-4db7-b351-71a23096b451)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 461.772 239.776 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000606d457b) + (property "Reference" "R33" (id 0) (at 463.5246 238.6076 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 463.5246 240.919 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 461.772 239.776 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 461.772 239.776 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 461.772 239.776 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 461.772 239.776 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 461.772 239.776 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 461.772 239.776 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 461.772 239.776 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 461.772 239.776 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid c151d613-7888-4346-b973-1bc3055854ee)) + (pin "2" (uuid b340ca73-4640-4a9a-888d-7ec05329bf3e)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 463.042 230.378 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000606d459e) + (property "Reference" "DI2" (id 0) (at 464.0072 228.5746 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 464.0072 230.886 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 463.042 230.378 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 463.042 230.378 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid bf26ffbf-06ba-40f3-8b99-8d5e22aec3c3)) + (pin "C" (uuid fe4c26e5-3aa9-44d2-9175-ef8823150d1b)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 26.924 175.133 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000606fadd3) + (property "Reference" "DI15" (id 0) (at 27.8892 173.3296 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 27.8892 175.641 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 26.924 175.133 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.924 175.133 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 659cbf17-6fe0-4203-b909-a9c36c1573ab)) + (pin "C" (uuid ddc6cba1-168a-4485-aea2-4e55652896de)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:CP-Device") (at 82.423 61.341 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607498ad) + (property "Reference" "C1" (id 0) (at 85.4202 59.0296 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uf" (id 1) (at 85.4202 61.341 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (id 2) (at 85.4202 63.6524 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Datasheet" "~" (id 3) (at 82.423 61.341 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7b81f1b4-9604-4448-8670-a8756a16a82b)) + (pin "2" (uuid 8c3bcfba-5c0a-499e-963e-2fcc09cd7b32)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 549.656 201.676 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a90a5b) + (property "Reference" "R40" (id 0) (at 551.4086 200.5076 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 551.4086 202.819 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 549.656 201.676 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 549.656 201.676 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 549.656 201.676 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 549.656 201.676 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 549.656 201.676 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 549.656 201.676 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 549.656 201.676 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 549.656 201.676 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 3c26667b-46b9-46ca-88bf-9af6492a3d08)) + (pin "2" (uuid 8530b65f-5eec-45de-ad71-db6f2d6e532c)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 550.926 192.278 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a90a7e) + (property "Reference" "DI9" (id 0) (at 551.8912 190.4746 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 551.8912 192.786 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 550.926 192.278 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 550.926 192.278 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 4db6f07d-bfcd-4571-b965-00033fa96ceb)) + (pin "C" (uuid 639f0dba-6f1f-4250-a292-2bc84fdc0bd9)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 163.576 105.791 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060ac537b) + (property "Reference" "R44" (id 0) (at 163.576 100.5586 0)) + (property "Value" "10k" (id 1) (at 163.576 102.87 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 163.576 105.791 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Datasheet" ".25 W" (id 3) (at 163.576 105.791 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 163.576 105.791 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 163.576 105.791 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 163.576 105.791 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 163.576 105.791 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 163.576 105.791 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 163.576 105.791 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 407e6866-ce57-4a0b-a169-7eac092652fe)) + (pin "2" (uuid ba637796-cd5e-4391-97dd-a6f6598af957)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 139.7 99.822 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060c0d616) + (property "Reference" "R43" (id 0) (at 139.7 94.5896 0)) + (property "Value" "330R" (id 1) (at 139.7 96.901 0)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 139.7 99.822 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Datasheet" ".25 W" (id 3) (at 139.7 99.822 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 139.7 99.822 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 139.7 99.822 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 139.7 99.822 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 139.7 99.822 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 139.7 99.822 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 139.7 99.822 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid e7cf6a7c-3966-4986-8240-044dbb2659c3)) + (pin "2" (uuid 61905c00-f230-448f-8a42-c2bb2b239b35)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 545.338 140.97 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060cd3750) + (property "Reference" "R39" (id 0) (at 547.0906 139.8016 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 547.0906 142.113 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 545.338 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 545.338 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 545.338 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 545.338 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 545.338 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 545.338 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 545.338 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 545.338 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid aea0bd11-4609-4d17-a47b-ed5da6546768)) + (pin "2" (uuid dd49bf56-fe6f-44dc-ad18-164a18b532c4)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 546.608 131.572 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060cd3773) + (property "Reference" "DI8" (id 0) (at 547.5732 129.7686 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 547.5732 132.08 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 546.608 131.572 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 546.608 131.572 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 533b578e-65a7-4820-90a0-53999d2bfa42)) + (pin "C" (uuid c7ae34c6-7521-4570-8123-805a4a68c710)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 52.705 161.036 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060dc27a8) + (property "Reference" "DI17" (id 0) (at 53.6702 159.2326 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 53.6702 161.544 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 52.705 161.036 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.705 161.036 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 61804232-6b6b-403c-8090-6b7d234e42cb)) + (pin "C" (uuid ff538bec-6218-4c88-a7f3-1b81bdf95136)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 454.914 124.206 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060f21005) + (property "Reference" "R36" (id 0) (at 456.6666 123.0376 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 456.6666 125.349 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 454.914 124.206 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 454.914 124.206 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 454.914 124.206 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 454.914 124.206 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 454.914 124.206 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 454.914 124.206 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 454.914 124.206 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 454.914 124.206 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid e9d90377-0ed3-4d66-9ae8-56c4c3fe1382)) + (pin "2" (uuid 5a885382-537a-4961-bcae-a6468967c995)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 456.184 114.808 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060f21028) + (property "Reference" "DI5" (id 0) (at 457.1492 113.0046 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 457.1492 115.316 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 456.184 114.808 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 456.184 114.808 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid f6675b33-0745-4571-90d6-9d4c1eb77622)) + (pin "C" (uuid 273de30c-f912-42b9-8cd7-ce6edfd15436)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 498.348 96.774 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060febf37) + (property "Reference" "R38" (id 0) (at 500.1006 95.6056 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 500.1006 97.917 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 498.348 96.774 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 498.348 96.774 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 498.348 96.774 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 498.348 96.774 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 498.348 96.774 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 498.348 96.774 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 498.348 96.774 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 498.348 96.774 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 2784607a-1e4f-42e4-a23f-38795f8d0995)) + (pin "2" (uuid 209147cd-5107-4e05-a842-782aab18be28)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 499.618 87.376 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060febf5a) + (property "Reference" "DI7" (id 0) (at 500.5832 85.5726 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 500.5832 87.884 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 499.618 87.376 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 499.618 87.376 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 54a81c75-45cb-4e12-a568-deaf215ec73f)) + (pin "C" (uuid 9a2d9a04-d357-474c-818d-3362ba1f0fb3)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 43.815 164.592 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006100ba2a) + (property "Reference" "DI16" (id 0) (at 44.7802 162.7886 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 44.7802 165.1 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 43.815 164.592 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.815 164.592 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 57100485-fe42-4932-af31-d919eb493a40)) + (pin "C" (uuid 1535e204-df5b-4796-9441-852e0712b2e3)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 473.456 69.596 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000610b5efe) + (property "Reference" "R37" (id 0) (at 475.2086 68.4276 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 475.2086 70.739 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 473.456 69.596 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 473.456 69.596 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 473.456 69.596 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 473.456 69.596 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 473.456 69.596 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 473.456 69.596 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 473.456 69.596 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 473.456 69.596 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 7dbe58a3-cbbc-4229-8367-bf78e2a0ac12)) + (pin "2" (uuid 5b2815b2-0747-4b84-b345-2ae71417a219)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 474.726 60.198 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000610b5f21) + (property "Reference" "DI6" (id 0) (at 475.6912 58.3946 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 475.6912 60.706 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 474.726 60.198 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 474.726 60.198 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 74dda292-1a6a-412c-b97a-464d8ab818cf)) + (pin "C" (uuid 0577c14e-2a48-4266-b611-ad9a9e537b1a)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 19.431 204.597 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000615dcbc4) + (property "Reference" "DI11" (id 0) (at 20.3962 202.7936 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 20.3962 205.105 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 19.431 204.597 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 19.431 204.597 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 8665e83c-139b-4020-9428-7f20b0409e30)) + (pin "C" (uuid 246f4692-5c87-442e-8358-c92e10d68bd6)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 24.892 211.963 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000615de9ca) + (property "Reference" "DI14" (id 0) (at 25.8572 210.1596 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 25.8572 212.471 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 24.892 211.963 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 24.892 211.963 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid a598a41f-79a6-4289-b2b1-2c321f71da01)) + (pin "C" (uuid 5d4d97ad-69a5-4000-87f4-65133aed022c)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 17.018 204.724 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000615e1516) + (property "Reference" "DI10" (id 0) (at 17.9832 202.9206 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 17.9832 205.232 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 17.018 204.724 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 17.018 204.724 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid f109f760-6acf-4735-b2b5-ff7eaaa8d257)) + (pin "C" (uuid 617f7097-394b-488d-afb7-3cbd901625cd)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 22.733 211.963 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000615e2c19) + (property "Reference" "DI13" (id 0) (at 23.6982 210.1596 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 23.6982 212.471 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 22.733 211.963 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 22.733 211.963 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid 5f3b68d0-dd95-42e6-b777-9efff1453aba)) + (pin "C" (uuid f4b11835-6252-4da6-a600-3e1cc18ae014)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 22.987 134.493 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000061837103) + (property "Reference" "R46" (id 0) (at 21.8186 132.7404 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100k" (id 1) (at 24.13 132.7404 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 22.987 134.493 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 22.987 134.493 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 22.987 134.493 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 22.987 134.493 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 22.987 134.493 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 22.987 134.493 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 22.987 134.493 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 22.987 134.493 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid da86bb28-f4c1-4b3e-9d38-f223f8e70076)) + (pin "2" (uuid 95c0a31b-7f46-4519-9cf2-f2fd73a4d0c0)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 22.098 127.254 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006183902e) + (property "Reference" "R45" (id 0) (at 20.9296 125.5014 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100k" (id 1) (at 23.241 125.5014 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 22.098 127.254 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 22.098 127.254 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 22.098 127.254 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 22.098 127.254 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 22.098 127.254 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 22.098 127.254 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 22.098 127.254 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 22.098 127.254 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid a8235301-1032-4d29-b4f9-d2a37436df0f)) + (pin "2" (uuid 3f56a0eb-c219-4c1d-a17b-7410e1eff383)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at 77.978 379.222 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000618ddc95) + (property "Reference" "R35" (id 0) (at 79.7306 378.0536 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 79.7306 380.365 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 77.978 379.222 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at 77.978 379.222 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at 77.978 379.222 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at 77.978 379.222 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at 77.978 379.222 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at 77.978 379.222 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at 77.978 379.222 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at 77.978 379.222 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 553a11cf-7f67-4d5b-811a-0c7ca2b2b64f)) + (pin "2" (uuid 9be57e41-f0ec-415d-abff-9367fc739b63)) + ) + + (symbol (lib_id "mega+mosfet-rescue:Idealdiode-New_Library") (at 79.248 369.824 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000618ddcb8) + (property "Reference" "DI4" (id 0) (at 80.2132 368.0206 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Idealdiode" (id 1) (at 80.2132 370.332 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ideal diode:SOD3715X135N" (id 2) (at 79.248 369.824 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 79.248 369.824 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A" (uuid b9be8b78-2ac5-4dd5-abc0-89a2c2dea7e6)) + (pin "C" (uuid e20d04df-1be6-4dd8-8cd7-c1fd66b522d4)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:776163-1-35waypcb") (at 348.996 -62.23 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006271f7d4) + (property "Reference" "J4" (id 0) (at 351.7138 -112.1918 0)) + (property "Value" "776163-1" (id 1) (at 351.7138 -109.8804 0)) + (property "Footprint" "35 way ecu:TE_776163-1" (id 2) (at 348.996 -62.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" "" (id 3) (at 348.996 -62.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "MANUFACTURER" "TE Connectivity" (id 4) (at 348.996 -62.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "PARTREV" "J8" (id 5) (at 348.996 -62.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "STANDARD" "Manufacturers recommendation" (id 6) (at 348.996 -62.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid fef18650-dd11-4c05-9f58-3ffa4be45c86)) + (pin "10" (uuid 8a70f7a2-410c-49ef-b503-8b1e1540fd24)) + (pin "11" (uuid 6b38a2cb-3ee6-43f1-b68d-89417f55e93d)) + (pin "12" (uuid 179297eb-b0e7-45fd-a287-ed66c1d54369)) + (pin "13" (uuid 86d2ee54-3450-4762-9b5e-6f00874208ab)) + (pin "14" (uuid 3ee40b9e-0c79-4da3-aac2-6772b878c7a1)) + (pin "15" (uuid b17b9371-c308-4294-bc83-2336571086d8)) + (pin "16" (uuid 05dfa5dc-1e0b-48cf-837a-6693f652862f)) + (pin "17" (uuid 8ab80e85-892c-44f2-9372-db31da5605c7)) + (pin "18" (uuid 4212f135-7601-4f04-8373-864367f18283)) + (pin "19" (uuid 719eeed5-1e5a-4fe3-9e3b-cc0ac3ff134d)) + (pin "2" (uuid e412952a-b3b1-4627-a2a7-eda652f1cf2f)) + (pin "20" (uuid 101f6627-744c-4d06-a231-befd35fdcec4)) + (pin "21" (uuid eb352eb8-26ef-4370-9852-1313b28e524f)) + (pin "22" (uuid 7b836b8f-e2f7-4a02-aaea-5f5f23bb6c5e)) + (pin "23" (uuid bbb4b0cf-6f0b-4d71-919e-224e6c3e93f4)) + (pin "24" (uuid bc0fb9fa-4c86-4174-a902-f6ab6e59df43)) + (pin "25" (uuid 792c1ce6-e6c6-4fa9-b5df-e45dfc760d45)) + (pin "26" (uuid e3dc9d14-361d-4a34-a8ba-05b3ffddf542)) + (pin "27" (uuid 76d1cd41-84ed-4b08-ad9b-c2c32e6ff90f)) + (pin "28" (uuid 6d32c7c4-b9e1-4b18-b26c-1f165d5ad9ef)) + (pin "29" (uuid a151a7e9-3daa-41e5-bcfb-1516700dbccb)) + (pin "3" (uuid ed4a0e40-df3e-4acf-8b38-4e3a46734ecd)) + (pin "30" (uuid 20ca0658-c4e7-42ce-914a-2110088b99b1)) + (pin "31" (uuid cfddbd95-bad4-4676-b489-0166e48bd76e)) + (pin "32" (uuid 7af5bc1e-2a99-4ed9-9c70-eba85b605b7b)) + (pin "33" (uuid f265c7ab-bfe9-4a36-8091-3e6d3ce4f3aa)) + (pin "34" (uuid bb3bf146-7bfa-489c-9476-c6ae6e7ae2e9)) + (pin "35" (uuid 88d1500e-4ebc-4ae6-b268-d749fd6f4017)) + (pin "4" (uuid 9b55f3d8-aa83-4128-a820-71871c794c2d)) + (pin "5" (uuid 236ed0e2-ff56-42e3-aeeb-91a99fca6264)) + (pin "6" (uuid 5d02d65a-ec0c-4faa-9fb8-50ea28a93595)) + (pin "7" (uuid 250dc1a6-364c-43f2-aa95-90d20389c1bd)) + (pin "8" (uuid 169e505d-4353-45cb-ac09-71767071f6da)) + (pin "9" (uuid 658fe9ab-a4e5-4dbe-b15c-2b71b08637ef)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 323.596 192.659 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000628bda6f) + (property "Reference" "H10" (id 0) (at 326.136 191.4144 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Emerg ECU" (id 1) (at 326.136 193.7258 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad" (id 2) (at 323.596 192.659 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 323.596 192.659 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3530d218-2b63-4a40-8a86-283a7fd72d67)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 325.882 338.074 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000063985679) + (property "Reference" "H11" (id 0) (at 328.422 336.8294 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Emerg Wpump" (id 1) (at 328.422 339.1408 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad" (id 2) (at 325.882 338.074 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 325.882 338.074 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid cf9ea7be-1f91-4751-a550-249822e06dc1)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 287.274 95.123 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000063f21361) + (property "Reference" "H9" (id 0) (at 289.814 93.8784 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Emer Displ" (id 1) (at 289.814 96.1898 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad" (id 2) (at 287.274 95.123 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 287.274 95.123 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 55ff6aa9-c0b2-47d3-ae13-044b00c6ba95)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:776163-1-35waypcb") (at 496.697 -168.783 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000064467df1) + (property "Reference" "J5" (id 0) (at 546.6588 -166.0652 0)) + (property "Value" "776163-1" (id 1) (at 544.3474 -166.0652 0)) + (property "Footprint" "35 way ecu:TE_776163-1" (id 2) (at 496.697 -168.783 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" "" (id 3) (at 496.697 -168.783 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "MANUFACTURER" "TE Connectivity" (id 4) (at 496.697 -168.783 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "PARTREV" "J8" (id 5) (at 496.697 -168.783 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "STANDARD" "Manufacturers recommendation" (id 6) (at 496.697 -168.783 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid a6a39e60-aaf5-4e03-8c4b-e8647b7da318)) + (pin "10" (uuid 294ca420-94c2-4c8a-96be-f353c56cf30f)) + (pin "11" (uuid 86ac00ca-5901-4be2-bb99-e0c7bc00a89e)) + (pin "12" (uuid eabf26cb-e3ea-4f34-b84a-b2b25e8b001a)) + (pin "13" (uuid 2b5dfba2-f617-4eda-a7d4-3f1383101b08)) + (pin "14" (uuid ca6e5a3d-844a-4f16-b7f9-a368dad32d36)) + (pin "15" (uuid eb4a628b-77e1-4579-8062-74b656ac2806)) + (pin "16" (uuid 8fbf199b-4bae-4530-81cf-896547a47397)) + (pin "17" (uuid 5e7ec1fd-b48c-4eed-a3f1-84f8ee40e2dc)) + (pin "18" (uuid 5f21fc78-ad68-4ef9-a873-535414eb2a02)) + (pin "19" (uuid 0d9a823b-beda-48c1-ba5b-355d78477f73)) + (pin "2" (uuid b5b05746-26ad-4dc4-b183-73aa5bdbd63d)) + (pin "20" (uuid 22cb4fa7-4138-4ab3-b7f8-2d25746dd0b8)) + (pin "21" (uuid 7046e25f-98e9-4287-9abc-499cc9051860)) + (pin "22" (uuid f6e4e2ae-07f3-455f-b6fc-3773751223c6)) + (pin "23" (uuid f658a410-38ec-46ee-9795-8cfd8058da47)) + (pin "24" (uuid e072d567-1107-4ad2-b089-193196131ec4)) + (pin "25" (uuid ebc6fafa-5b44-4698-8b90-2cfa109a2dea)) + (pin "26" (uuid b2d38510-9f4f-4190-be35-5f7865492c7d)) + (pin "27" (uuid 5adfa564-011e-4a12-8859-deffc2a0e089)) + (pin "28" (uuid d2a63e12-12b5-48f5-b593-54d82c51e1b2)) + (pin "29" (uuid a604ae35-b06b-4368-b391-8e7748239875)) + (pin "3" (uuid 7911575e-2cde-416f-a890-f3ae8a5f6dce)) + (pin "30" (uuid 9bcdf208-1564-4af5-8793-0e35a4535094)) + (pin "31" (uuid 61544d2e-a54a-4451-b298-75be36ba6d7e)) + (pin "32" (uuid 513b2db0-9710-4097-a0f2-0f7bcbd744da)) + (pin "33" (uuid a59a34dc-6758-4661-8329-9013faef446b)) + (pin "34" (uuid 57a7ec81-1d30-46e2-bdf8-8320b9665495)) + (pin "35" (uuid b16ad922-69c7-4388-ba9b-9ae496370662)) + (pin "4" (uuid ea715aef-f1f5-4c34-b781-7c4bc7bf5f7a)) + (pin "5" (uuid 7af148fc-3a03-4951-af30-8468348243a1)) + (pin "6" (uuid e99c92ed-a3d1-4b5e-9be9-ad8c1c3e2068)) + (pin "7" (uuid 969d9083-89c0-430e-b7fc-365b974e2650)) + (pin "8" (uuid bb35b6f4-f889-4c91-9643-dbc5a3a7ee65)) + (pin "9" (uuid 109a1cc3-2724-4e09-bfdd-2cd7cc22195e)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 106.934 -105.791 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006efd8278) + (property "Reference" "H1" (id 0) (at 109.474 -107.0356 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "RH set" (id 1) (at 109.474 -104.7242 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 106.934 -105.791 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 106.934 -105.791 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid efc531b6-9e3c-46d2-a03c-acf3a17dc1eb)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 118.999 -105.664 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006efd827e) + (property "Reference" "H2" (id 0) (at 121.539 -106.9086 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "RH reset" (id 1) (at 121.539 -104.5972 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 118.999 -105.664 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 118.999 -105.664 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 26d47ddb-ec40-4e94-829c-56f80a947f8d)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:776163-1-35waypcb") (at 54.229 -84.963 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00007372d1a7) + (property "Reference" "J2" (id 0) (at 56.9468 -134.9248 0)) + (property "Value" "776163-1" (id 1) (at 56.9468 -132.6134 0)) + (property "Footprint" "35 way ecu:TE_776163-1" (id 2) (at 54.229 -84.963 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" "" (id 3) (at 54.229 -84.963 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "MANUFACTURER" "TE Connectivity" (id 4) (at 54.229 -84.963 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "PARTREV" "J8" (id 5) (at 54.229 -84.963 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "STANDARD" "Manufacturers recommendation" (id 6) (at 54.229 -84.963 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 7451be5f-5865-4ff1-b033-83d972272ff8)) + (pin "10" (uuid 2076d63d-8db9-4b9e-b43d-372d4f090aa5)) + (pin "11" (uuid 7e9f53f8-3dbf-4e80-85da-ee483bc7e2c3)) + (pin "12" (uuid 041a57b0-86d2-4e82-8738-af612ea5cbc2)) + (pin "13" (uuid 1782fd35-c62d-4b16-b7bc-84921423a402)) + (pin "14" (uuid 46d42ec2-41a1-4900-9741-6b632d1e4aaf)) + (pin "15" (uuid 2110128e-3730-4d9b-bdec-9baff14cdd5d)) + (pin "16" (uuid 8b1394b5-f47a-4612-993d-7b5141103931)) + (pin "17" (uuid 0ab3a378-5532-41a9-b557-68fbd8a784a8)) + (pin "18" (uuid 07cb4e35-6f37-4f3c-824a-175543a768cf)) + (pin "19" (uuid 4e3ef05f-491a-48f2-950c-3037c5a45193)) + (pin "2" (uuid 16f4a979-d275-4042-8ca5-b9933914cbd0)) + (pin "20" (uuid ff735842-38d4-42f3-ae1b-416a4c03fe9a)) + (pin "21" (uuid 06497a87-8bdc-4966-bdcb-387f1b9302b4)) + (pin "22" (uuid 0c92e689-9627-4711-887e-c54b53a9819f)) + (pin "23" (uuid 524629f0-d6fb-4144-b2bf-0b58f917e029)) + (pin "24" (uuid 344ddddb-b159-4bb5-ad37-11d329c46ffc)) + (pin "25" (uuid 77f3ca90-47d0-43bf-8c04-f3eaa11154fd)) + (pin "26" (uuid c8f70bd2-0946-4360-8eaf-d24fd5081473)) + (pin "27" (uuid 53755ac8-39c8-4dd2-bc6e-fb2479515c86)) + (pin "28" (uuid 156623db-dd56-4f0f-a968-097f63249348)) + (pin "29" (uuid 619516ef-7f45-481b-a3f7-50d030e72908)) + (pin "3" (uuid cee0fd89-6599-4852-8393-67e2ec21622d)) + (pin "30" (uuid 641bb17f-1e76-422b-b03b-d09078c07c01)) + (pin "31" (uuid a5c6b898-c730-4538-99da-e95288f516fd)) + (pin "32" (uuid 130a6a9c-cf48-4b18-b838-f6f170ff8df6)) + (pin "33" (uuid 0f0a0e63-7610-4ec0-9a93-ce6a0a6d1a36)) + (pin "34" (uuid d90c3c0d-e7fd-4183-b61a-08ca7a91673a)) + (pin "35" (uuid 5f40806e-35a7-476d-8307-bcb00fd02b1e)) + (pin "4" (uuid 1b48baa6-a755-4a5f-a37f-11b8b941da2d)) + (pin "5" (uuid a53a2161-b6ce-43d6-a885-629b2ca5c269)) + (pin "6" (uuid 255d34a5-5a47-4498-9a55-da51a8a931dd)) + (pin "7" (uuid 6590e1ff-e3bc-47da-b1d4-cc9385c6f637)) + (pin "8" (uuid 871633bd-552f-4baa-b3f0-4509d65c60bd)) + (pin "9" (uuid c5abdd34-9f64-4555-b5af-f6d1087a8cf8)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 119.38 -51.689 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000074a6d801) + (property "Reference" "H3" (id 0) (at 121.92 -52.9336 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "+5 throttle TPS and Grip" (id 1) (at 121.92 -50.6222 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 119.38 -51.689 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 119.38 -51.689 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c5b80fb8-fc43-4349-a43a-1b76ad6d1037)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 134.747 -33.274 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000074c370d7) + (property "Reference" "H6" (id 0) (at 137.287 -34.5186 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Pol SDA" (id 1) (at 137.287 -32.2072 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 134.747 -33.274 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 134.747 -33.274 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8c668f54-25c9-46cd-85e7-98b37f5e2a01)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 119.761 -32.639 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000074e00af2) + (property "Reference" "H4" (id 0) (at 122.301 -33.8836 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Pol FBA" (id 1) (at 122.301 -31.5722 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 119.761 -32.639 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 119.761 -32.639 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ce1f38d2-481e-45ee-9f63-9bad5232d00b)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 130.556 -56.134 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000075fe2602) + (property "Reference" "H5" (id 0) (at 133.096 -57.3786 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "0V Pol" (id 1) (at 133.096 -55.0672 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 130.556 -56.134 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 130.556 -56.134 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9ada0bca-9ebe-4bc4-87fa-0e080722896f)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 154.559 -49.403 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000761af378) + (property "Reference" "H7" (id 0) (at 157.099 -50.6476 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "12v Pol" (id 1) (at 157.099 -48.3362 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 154.559 -49.403 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 154.559 -49.403 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dc22a628-fcaf-4b1c-b118-6c4bc5284e93)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:776163-1-35waypcb") (at 180.086 -69.977 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00007df9f070) + (property "Reference" "J3" (id 0) (at 182.8038 -119.9388 0)) + (property "Value" "776163-1" (id 1) (at 182.8038 -117.6274 0)) + (property "Footprint" "35 way ecu:TE_776163-1" (id 2) (at 180.086 -69.977 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" "" (id 3) (at 180.086 -69.977 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "MANUFACTURER" "TE Connectivity" (id 4) (at 180.086 -69.977 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "PARTREV" "J8" (id 5) (at 180.086 -69.977 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "STANDARD" "Manufacturers recommendation" (id 6) (at 180.086 -69.977 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 874544c5-f21b-49eb-a67b-c0e80f5253f1)) + (pin "10" (uuid 971c0335-c37f-4b11-8944-3c6bcd551cc7)) + (pin "11" (uuid 51f2f019-0400-459d-ba65-9b144ff75eda)) + (pin "12" (uuid 96edc933-1b50-4eef-a2de-b2f1cc02a7e7)) + (pin "13" (uuid ad26ba90-b38d-485b-8f93-ba702ebb695a)) + (pin "14" (uuid ef580b72-4fff-4db9-b8c7-073293d6aac5)) + (pin "15" (uuid 2bdda21f-13ee-449a-b227-9a54419c8b42)) + (pin "16" (uuid 1da254ed-29b1-422b-95d9-60841f7f8478)) + (pin "17" (uuid a2164008-657b-47d6-89c6-d33a0f994fb2)) + (pin "18" (uuid bb5b8563-8aeb-4b58-8ad3-b9c00376a282)) + (pin "19" (uuid c26b5e1b-cc90-4133-9352-3657147f8158)) + (pin "2" (uuid 0e1ea3f9-0ea3-4f98-af6d-5c06b522a7cb)) + (pin "20" (uuid ac331fa9-bac5-4a09-a298-289f5568592f)) + (pin "21" (uuid a33ae006-8c92-4c8a-8134-42b6731b6c81)) + (pin "22" (uuid 195e4170-a623-4614-a488-a41ba6c02605)) + (pin "23" (uuid 8b2459a9-2975-46a9-a197-f8eb58345ff8)) + (pin "24" (uuid 2f36c327-e818-451f-9f32-d096ccbff234)) + (pin "25" (uuid e1515b2a-5f9b-45c4-b663-445ec4103d55)) + (pin "26" (uuid 5d14f45c-0b29-4f3e-a7c1-0a7fe54b1646)) + (pin "27" (uuid d9a0c187-3bfb-40a4-a7be-69e695db4255)) + (pin "28" (uuid 6ff267cc-770f-43ec-bed3-3f0634e9b698)) + (pin "29" (uuid b2523947-4d9e-4ad2-a217-e727cce8e302)) + (pin "3" (uuid a011e62b-d507-48aa-a69c-9f5de42e2a9a)) + (pin "30" (uuid 05acc812-ebc1-42c8-b8ec-3980581b2781)) + (pin "31" (uuid 75cc9cb5-bd03-4ad9-bb99-9b71e3501a51)) + (pin "32" (uuid e891e0d4-531b-4840-a04b-a6b5866426dd)) + (pin "33" (uuid 1ce7a637-9db2-4b51-b162-f8f2d3954710)) + (pin "34" (uuid 9a90fc02-907a-476d-990d-6094621d594e)) + (pin "35" (uuid d4cf1b4c-5261-4047-9246-accd9accf266)) + (pin "4" (uuid 8b2186f3-3f57-4130-95c5-776060a854fd)) + (pin "5" (uuid 5d75d02b-7da4-452d-84ed-263f2ca10f1c)) + (pin "6" (uuid 380a9cf5-5386-4050-8ca0-7102c612bd31)) + (pin "7" (uuid 1e13d6b0-17d8-4f6b-92bc-eb021880cd51)) + (pin "8" (uuid 215dd3b1-c297-4f9b-ab39-41c91ed3cc47)) + (pin "9" (uuid 9f448f8f-d6b3-4566-ba2a-f3473c09a657)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 221.869 -78.994 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00008138878b) + (property "Reference" "H8" (id 0) (at 224.409 -80.2386 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "LH sw spare" (id 1) (at 224.409 -77.9272 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (id 2) (at 221.869 -78.994 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 221.869 -78.994 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dbf2f322-fde2-4da3-b2ce-f14564b17d40)) + ) + + (symbol (lib_id "mega+mosfet3-rescue:1-776267-1-14waypcb") (at -67.564 283.845 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00008fc70f90) + (property "Reference" "J1" (id 0) (at -64.8462 261.8232 0)) + (property "Value" "1-776267-1" (id 1) (at -64.8462 264.1346 0)) + (property "Footprint" "14 way ecu:TE_1-776267-1" (id 2) (at -67.564 283.845 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" "" (id 3) (at -67.564 283.845 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Comment" "1-776267-1" (id 4) (at -67.564 283.845 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 485d0a93-f689-47cb-90e4-8cc3e37f89ae)) + (pin "10" (uuid bf198999-7d88-469a-9d27-711747ee5919)) + (pin "11" (uuid 7b4fa4f4-81aa-4ff5-a857-6ff202e23379)) + (pin "12" (uuid cabb16bb-e45b-4cac-87f4-be75d86cec7e)) + (pin "13" (uuid 0ab0f0b5-75b1-41d1-8cee-dbc34dc31408)) + (pin "14" (uuid f6f7b512-eaf3-4cb1-ad89-41f116d3bb0a)) + (pin "2" (uuid 6f61c126-e697-4428-8d7f-ebc57302ce36)) + (pin "3" (uuid c06ced5a-90e7-4017-9c46-39d80fe31d94)) + (pin "4" (uuid be739179-dcee-4606-85e5-6609c7e42bb0)) + (pin "5" (uuid 387eaa2e-45d4-4531-a242-016a344aa6c0)) + (pin "6" (uuid 120de6b3-27d9-4070-8bbf-0273c903ffdf)) + (pin "7" (uuid 8f340a6a-c6d4-444e-9c8f-3f3f7835ed8a)) + (pin "8" (uuid 2224b191-1c9b-4fe3-b372-93b904191ff0)) + (pin "9" (uuid ba674a73-338f-45b1-b9e4-8a56b0d4f68f)) + ) + + (symbol (lib_id "Diode:1N4001") (at 130.4544 -110.5662 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 02166835-bd71-4ba8-a806-d0ab90263d4d) + (property "Reference" "D2" (id 0) (at 130.4544 -115.536 0)) + (property "Value" "1N4001" (id 1) (at 130.4544 -112.9991 0)) + (property "Footprint" "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (id 2) (at 130.4544 -115.0112 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.vishay.com/docs/88503/1n4001.pdf" (id 3) (at 130.4544 -110.5662 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 465896ee-e1d0-442e-8bde-8fac50910dfd)) + (pin "2" (uuid b43a2eef-870f-4b75-bc81-485a4ddaf239)) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at -136.6774 118.5926 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 054bdd61-075c-4d74-ab78-918085654073) + (property "Reference" "H18" (id 0) (at -134.1374 117.7579 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (id 1) (at -134.1374 120.2948 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965" (id 2) (at -136.6774 118.5926 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at -136.6774 118.5926 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at -182.88 111.8108 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3212c425-c411-4011-a581-8baffa4d28e1) + (property "Reference" "H13" (id 0) (at -180.34 110.9761 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (id 1) (at -180.34 113.513 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965" (id 2) (at -182.88 111.8108 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at -182.88 111.8108 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at -158.6484 177.3936 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 39add566-ae28-4dff-b889-22c259d1e026) + (property "Reference" "R48" (id 0) (at -160.401 178.562 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at -160.401 176.2506 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at -158.6484 177.3936 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at -158.6484 177.3936 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at -158.6484 177.3936 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at -158.6484 177.3936 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at -158.6484 177.3936 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at -158.6484 177.3936 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at -158.6484 177.3936 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at -158.6484 177.3936 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid b9f5568f-6fcb-42a7-8ab4-20c5d84fdf9e)) + (pin "2" (uuid 24abe29c-3a99-4d5f-a3d2-8cd3a6dbb1f9)) + ) + + (symbol (lib_id "mega+mosfet-rescue:6pin-Modules") (at -176.4792 187.8584 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 48a522fd-6e52-4004-94d2-1023715688ea) + (property "Reference" "M7" (id 0) (at -164.338 187.5282 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "GPS" (id 1) (at -164.338 189.8396 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "5 way module header:6 way module header" (id 2) (at -176.4792 187.8584 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at -176.4792 187.8584 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5a5a6942-3c3e-45bc-9a03-98660bda02c4)) + (pin "2" (uuid 311bc3f4-5015-4d42-a0c3-3418e9cf7319)) + (pin "3" (uuid efd22284-a648-4762-9055-7d5ae4c931f4)) + (pin "4" (uuid 186185ef-37af-4929-8f16-95b948ff6b42)) + (pin "5" (uuid c555912a-5a1e-4052-b2f8-57abe8b610d8)) + (pin "6" (uuid 9ea60ed7-979a-4e8a-becc-ff88d5c9a9de)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at -158.0896 158.2928 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4e51dc68-ee17-48dc-a5b5-c78d1ddc74b5) + (property "Reference" "R49" (id 0) (at -159.8422 159.4612 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at -159.8422 157.1498 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at -158.0896 158.2928 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at -158.0896 158.2928 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at -158.0896 158.2928 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at -158.0896 158.2928 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at -158.0896 158.2928 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at -158.0896 158.2928 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at -158.0896 158.2928 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at -158.0896 158.2928 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 457d739c-70e9-44a5-a3fe-6f8eb63f20d5)) + (pin "2" (uuid 835e4e36-d9ad-4b0f-98a1-300f444fba03)) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at -180.2384 121.5136 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4ee2ca19-1027-415c-ba6e-e0ff6bfc4272) + (property "Reference" "H14" (id 0) (at -177.6984 120.6789 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (id 1) (at -177.6984 123.2158 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965" (id 2) (at -180.2384 121.5136 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at -180.2384 121.5136 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at -135.4074 130.7338 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68308f8a-c91e-400a-b39a-80df065d6e44) + (property "Reference" "H19" (id 0) (at -132.8674 129.8991 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (id 1) (at -132.8674 132.436 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965" (id 2) (at -135.4074 130.7338 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at -135.4074 130.7338 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Transistor_FET:2N7000") (at -148.59 157.8864 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6db095b0-9def-425e-a740-e28d55766421) + (property "Reference" "Q24" (id 0) (at -148.59 164.3618 90)) + (property "Value" "2N7000" (id 1) (at -148.59 166.8987 90)) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at -150.495 162.9664 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" (id 3) (at -148.59 157.8864 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 91d85df1-d9d5-4c72-8e8f-855352cf7e6b)) + (pin "2" (uuid 517eaa13-dd6c-42b2-9447-41d966b98e63)) + (pin "3" (uuid 1f04c47d-deb6-471e-bb95-d6031bb6204c)) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at -183.5658 102.6668 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 70342e17-78d6-4b1b-8da7-5a3126f5fd76) + (property "Reference" "H12" (id 0) (at -181.0258 101.8321 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (id 1) (at -181.0258 104.369 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965" (id 2) (at -183.5658 102.6668 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at -183.5658 102.6668 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Transistor_FET:2N7000") (at -149.1488 176.9872 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b6efb954-d7ea-4db4-8640-99a872beb328) + (property "Reference" "Q23" (id 0) (at -149.1488 183.4626 90)) + (property "Value" "2N7000" (id 1) (at -149.1488 185.9995 90)) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at -151.0538 182.0672 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" (id 3) (at -149.1488 176.9872 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 9b9cbfec-6a23-4245-ad1f-ad1264cd2079)) + (pin "2" (uuid f130dddf-9e89-40d6-b388-edc92a65df62)) + (pin "3" (uuid b11ecaaf-4df7-4120-bdcf-1f175010a9ef)) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at -129.54 157.9372 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid cc652730-9853-4ee7-8c35-db2a9ac8284c) + (property "Reference" "R51" (id 0) (at -131.2926 159.1056 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at -131.2926 156.7942 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at -129.54 157.9372 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at -129.54 157.9372 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at -129.54 157.9372 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at -129.54 157.9372 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at -129.54 157.9372 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at -129.54 157.9372 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at -129.54 157.9372 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at -129.54 157.9372 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 369886b0-94fa-4cfd-a8ac-16b6889c0129)) + (pin "2" (uuid e69d6a7b-28d6-4bf1-8457-8b099733324d)) + ) + + (symbol (lib_id "Diode:1N4001") (at 123.6472 -116.4336 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d552ad53-6d49-4ecd-914c-cc5b42b54bde) + (property "Reference" "D1" (id 0) (at 123.6472 -121.4034 0)) + (property "Value" "1N4001" (id 1) (at 123.6472 -118.8665 0)) + (property "Footprint" "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (id 2) (at 123.6472 -120.8786 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.vishay.com/docs/88503/1n4001.pdf" (id 3) (at 123.6472 -116.4336 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 68934d1f-a5ec-4124-b4fe-d5954879ba51)) + (pin "2" (uuid 35588a7b-ad28-4b2f-adec-d37907cb7181)) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at -180.2384 129.0574 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da18a4c3-928e-4d25-b57e-eed65944c7a0) + (property "Reference" "H15" (id 0) (at -177.6984 128.2227 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (id 1) (at -177.6984 130.7596 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965" (id 2) (at -180.2384 129.0574 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at -180.2384 129.0574 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "mega+mosfet-rescue:1622172-1-1622172-1") (at -130.0988 177.038 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid e7abde3d-6220-41d5-9644-246078bc1b18) + (property "Reference" "R50" (id 0) (at -131.8514 178.2064 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at -131.8514 175.895 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at -130.0988 177.038 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Datasheet" ".25 W" (id 3) (at -130.0988 177.038 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field4" "https://www.te.com/usa-en/product-1622172-1.html?te_bu=Cor&te_type=disp&te_campaign=seda_glo_cor-seda-global-disp-prtnr-fy19-seda-model-bom-cta_sma-317_1&elqCampaignId=32493" (id 4) (at -130.0988 177.038 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field5" "1622172-1" (id 5) (at -130.0988 177.038 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field6" "180K" (id 6) (at -130.0988 177.038 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field7" "0204" (id 7) (at -130.0988 177.038 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field8" "1%" (id 8) (at -130.0988 177.038 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (property "Field9" "Compliant" (id 9) (at -130.0988 177.038 0) + (effects (font (size 1.27 1.27)) (justify left bottom) hide) + ) + (pin "1" (uuid 3c0d6f5b-d266-4d5d-9420-85e1ab8766be)) + (pin "2" (uuid 60d70fa9-3d1b-45a9-9c52-21967b1f8523)) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at -150.0632 128.2192 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec4a3771-3c78-49fc-9992-bff50242d255) + (property "Reference" "H17" (id 0) (at -147.5232 127.3845 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (id 1) (at -147.5232 129.9214 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965" (id 2) (at -150.0632 128.2192 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at -150.0632 128.2192 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at -150.9014 118.5926 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4e5b34c-3c9a-4e13-b25b-052019468ab7) + (property "Reference" "H16" (id 0) (at -148.3614 117.7579 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (id 1) (at -148.3614 120.2948 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965" (id 2) (at -150.9014 118.5926 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at -150.9014 118.5926 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/00000000-0000-0000-0000-00005e77ba3d" + (reference "#PWR0102") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000607498ad" + (reference "C1") (unit 1) (value "1uf") (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm") + ) + (path "/00000000-0000-0000-0000-000060475e81" + (reference "C2") (unit 1) (value "1uf") (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm") + ) + (path "/00000000-0000-0000-0000-00005f043d37" + (reference "C5") (unit 1) (value "0.1uf") (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm") + ) + (path "/00000000-0000-0000-0000-00005e8b3fda" + (reference "C41") (unit 1) (value "0.1uf") (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm") + ) + (path "/00000000-0000-0000-0000-000060126655" + (reference "C45") (unit 1) (value "1uf") (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm") + ) + (path "/d552ad53-6d49-4ecd-914c-cc5b42b54bde" + (reference "D1") (unit 1) (value "1N4001") (footprint "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal") + ) + (path "/02166835-bd71-4ba8-a806-d0ab90263d4d" + (reference "D2") (unit 1) (value "1N4001") (footprint "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005ffc0f32" + (reference "DI1") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-0000606d459e" + (reference "DI2") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-000060565890" + (reference "DI3") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-0000618ddcb8" + (reference "DI4") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-000060f21028" + (reference "DI5") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-0000610b5f21" + (reference "DI6") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-000060febf5a" + (reference "DI7") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-000060cd3773" + (reference "DI8") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-000060a90a7e" + (reference "DI9") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-0000615e1516" + (reference "DI10") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-0000615dcbc4" + (reference "DI11") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-00005ff335eb" + (reference "DI12") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-0000615e2c19" + (reference "DI13") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-0000615de9ca" + (reference "DI14") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-0000606fadd3" + (reference "DI15") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-00006100ba2a" + (reference "DI16") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-000060dc27a8" + (reference "DI17") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-00006009315e" + (reference "DI18") (unit 1) (value "Idealdiode") (footprint "ideal diode:SOD3715X135N") + ) + (path "/00000000-0000-0000-0000-00006efd8278" + (reference "H1") (unit 1) (value "RH set") (footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad") + ) + (path "/00000000-0000-0000-0000-00006efd827e" + (reference "H2") (unit 1) (value "RH reset") (footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad") + ) + (path "/00000000-0000-0000-0000-000074a6d801" + (reference "H3") (unit 1) (value "+5 throttle TPS and Grip") (footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad") + ) + (path "/00000000-0000-0000-0000-000074e00af2" + (reference "H4") (unit 1) (value "Pol FBA") (footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad") + ) + (path "/00000000-0000-0000-0000-000075fe2602" + (reference "H5") (unit 1) (value "0V Pol") (footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad") + ) + (path "/00000000-0000-0000-0000-000074c370d7" + (reference "H6") (unit 1) (value "Pol SDA") (footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad") + ) + (path "/00000000-0000-0000-0000-0000761af378" + (reference "H7") (unit 1) (value "12v Pol") (footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad") + ) + (path "/00000000-0000-0000-0000-00008138878b" + (reference "H8") (unit 1) (value "LH sw spare") (footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad") + ) + (path "/00000000-0000-0000-0000-000063f21361" + (reference "H9") (unit 1) (value "Emer Displ") (footprint "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad") + ) + (path "/00000000-0000-0000-0000-0000628bda6f" + (reference "H10") (unit 1) (value "Emerg ECU") (footprint "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad") + ) + (path "/00000000-0000-0000-0000-000063985679" + (reference "H11") (unit 1) (value "Emerg Wpump") (footprint "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad") + ) + (path "/70342e17-78d6-4b1b-8da7-5a3126f5fd76" + (reference "H12") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965") + ) + (path "/3212c425-c411-4011-a581-8baffa4d28e1" + (reference "H13") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965") + ) + (path "/4ee2ca19-1027-415c-ba6e-e0ff6bfc4272" + (reference "H14") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965") + ) + (path "/da18a4c3-928e-4d25-b57e-eed65944c7a0" + (reference "H15") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965") + ) + (path "/f4e5b34c-3c9a-4e13-b25b-052019468ab7" + (reference "H16") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965") + ) + (path "/ec4a3771-3c78-49fc-9992-bff50242d255" + (reference "H17") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965") + ) + (path "/054bdd61-075c-4d74-ab78-918085654073" + (reference "H18") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965") + ) + (path "/68308f8a-c91e-400a-b39a-80df065d6e44" + (reference "H19") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965") + ) + (path "/00000000-0000-0000-0000-00005eb34e1b" + (reference "H21") (unit 1) (value "Vin F1") (footprint "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad") + ) + (path "/00000000-0000-0000-0000-00005eb366fe" + (reference "H22") (unit 1) (value "Vin F1") (footprint "MountingHole:MountingHole_2.2mm_M2_ISO7380_Pad") + ) + (path "/00000000-0000-0000-0000-00008fc70f90" + (reference "J1") (unit 1) (value "1-776267-1") (footprint "14 way ecu:TE_1-776267-1") + ) + (path "/00000000-0000-0000-0000-00007372d1a7" + (reference "J2") (unit 1) (value "776163-1") (footprint "35 way ecu:TE_776163-1") + ) + (path "/00000000-0000-0000-0000-00007df9f070" + (reference "J3") (unit 1) (value "776163-1") (footprint "35 way ecu:TE_776163-1") + ) + (path "/00000000-0000-0000-0000-00006271f7d4" + (reference "J4") (unit 1) (value "776163-1") (footprint "35 way ecu:TE_776163-1") + ) + (path "/00000000-0000-0000-0000-000064467df1" + (reference "J5") (unit 1) (value "776163-1") (footprint "35 way ecu:TE_776163-1") + ) + (path "/00000000-0000-0000-0000-00005eeed40e" + (reference "K1") (unit 1) (value "DIPxx-1Axx-11x. 1B version is NC") (footprint "Relay_THT:Relay_StandexMeder_DIP_LowProfile") + ) + (path "/00000000-0000-0000-0000-00005e631119" + (reference "M1") (unit 1) (value "RTC") (footprint "5 way module header:6 way module header") + ) + (path "/00000000-0000-0000-0000-00005eea1dea" + (reference "M2") (unit 1) (value "BT") (footprint "5 way module header:6 way module header") + ) + (path "/00000000-0000-0000-0000-00005e630ad7" + (reference "M3") (unit 1) (value "SD card") (footprint "5 way module header:6 way module header") + ) + (path "/00000000-0000-0000-0000-00005f9d5f37" + (reference "M5") (unit 1) (value "Accel") (footprint "5 way module header:6 way module header") + ) + (path "/00000000-0000-0000-0000-00005fe4f664" + (reference "M6") (unit 1) (value "Audio") (footprint "5 way module header:6 way module header") + ) + (path "/48a522fd-6e52-4004-94d2-1023715688ea" + (reference "M7") (unit 1) (value "GPS") (footprint "5 way module header:6 way module header") + ) + (path "/00000000-0000-0000-0000-00005e27f376" + (reference "Q1") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005e27dab2" + (reference "Q2") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e2f6f34" + (reference "Q3") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005e2f6f7c" + (reference "Q4") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e33266b" + (reference "Q5") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005e3326b3" + (reference "Q6") (unit 1) (value "P channel NDP6030") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e2aca7a" + (reference "Q7") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005ed2726b" + (reference "Q8") (unit 1) (value "IRLB8721PBF") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e3784b6" + (reference "Q9") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005e307bc6" + (reference "Q10") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005e2dede2" + (reference "Q11") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005e2acae1" + (reference "Q12") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e65f5a9" + (reference "Q13") (unit 1) (value "IRLB8721PBF") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e3784fe" + (reference "Q14") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e307c0e" + (reference "Q15") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e2dee2a" + (reference "Q16") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005e738745" + (reference "Q17") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005e738775" + (reference "Q18") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005eb37d4a" + (reference "Q19") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005eb37d7a" + (reference "Q20") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/00000000-0000-0000-0000-00005ef06b2f" + (reference "Q21") (unit 1) (value "2N3904") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005ef06b5f" + (reference "Q22") (unit 1) (value "IRF9540N") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/b6efb954-d7ea-4db4-8640-99a872beb328" + (reference "Q23") (unit 1) (value "2N7000") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/6db095b0-9def-425e-a740-e28d55766421" + (reference "Q24") (unit 1) (value "2N7000") (footprint "Package_TO_SOT_THT:TO-92_Inline") + ) + (path "/00000000-0000-0000-0000-00005e2868dd" + (reference "R1") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e2818e1" + (reference "R2") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e2f6f55" + (reference "R3") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e2f6f44" + (reference "R4") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e33268c" + (reference "R5") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e33267b" + (reference "R6") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e2aca9b" + (reference "R7") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005ee42d8c" + (reference "R8") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e3784d7" + (reference "R9") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e307be7" + (reference "R10") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e2dee03" + (reference "R11") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e2aca8a" + (reference "R12") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e65f5cc" + (reference "R13") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e3784c6" + (reference "R14") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e307bd6" + (reference "R15") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e2dedf2" + (reference "R16") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005edcf666" + (reference "R17") (unit 1) (value "150ohm") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e65f5bb" + (reference "R18") (unit 1) (value "150ohm") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e738766" + (reference "R19") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005eb37d6b" + (reference "R20") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e738755" + (reference "R21") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005eb37d5a" + (reference "R22") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e7d753e" + (reference "R23") (unit 1) (value "750ohm") (footprint "Resistor_THT:R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005ea54379" + (reference "R24") (unit 1) (value "5.1k(8v) 2,2k (5v)") (footprint "Resistor_THT:R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e906bcf" + (reference "R25") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005f62dcda" + (reference "R26") (unit 1) (value "5k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005ed34750" + (reference "R27") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005ed330e9" + (reference "R28") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005ec02d6b" + (reference "R29") (unit 1) (value "47R") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005ef06b50" + (reference "R30") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005ef06b3f" + (reference "R31") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00006007303f" + (reference "R32") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-0000606d457b" + (reference "R33") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-0000604ad7e8" + (reference "R34") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-0000618ddc95" + (reference "R35") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000060f21005" + (reference "R36") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-0000610b5efe" + (reference "R37") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000060febf37" + (reference "R38") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000060cd3750" + (reference "R39") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000060a90a5b" + (reference "R40") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005f043d31" + (reference "R41") (unit 1) (value "720ohm") (footprint "Resistor_THT:R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005f043d1d" + (reference "R42") (unit 1) (value "2.2k (5v) (5.1k)8v") (footprint "Resistor_THT:R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000060c0d616" + (reference "R43") (unit 1) (value "330R") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000060ac537b" + (reference "R44") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00006183902e" + (reference "R45") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000061837103" + (reference "R46") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-000060093148" + (reference "R47") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/39add566-ae28-4dff-b889-22c259d1e026" + (reference "R48") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/4e51dc68-ee17-48dc-a5b5-c78d1ddc74b5" + (reference "R49") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/e7abde3d-6220-41d5-9644-246078bc1b18" + (reference "R50") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/cc652730-9853-4ee7-8c35-db2a9ac8284c" + (reference "R51") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-00005e7d67ae" + (reference "RG1") (unit 1) (value "TO-3-5-amp-5v reg") (footprint "Package_TO_SOT_THT:TO-3") + ) + (path "/00000000-0000-0000-0000-00005f043d0c" + (reference "RG2") (unit 1) (value "TO-3-5-amp-8v reg. ") (footprint "Package_TO_SOT_THT:TO-3") + ) + (path "/00000000-0000-0000-0000-00006033486b" + (reference "U1") (unit 1) (value "Opto") (footprint "Package_DIP:DIP-8_W7.62mm") + ) + (path "/00000000-0000-0000-0000-00005e28df00" + (reference "XA1") (unit 1) (value "Arduino_Mega2560_Shield") (footprint "Arduino mega:Arduino_Mega2560_Shield") + ) + ) +) diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..f172ead --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2416 @@ +{ + "name": "freerouting", + "version": "0.0.15", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "freerouting", + "version": "0.0.15", + "dependencies": { + "commander": "^12.1.0", + "conf": "^13.0.1", + "debug": "^4.3.7", + "dsn-converter": "^0.0.50", + "redaxios": "^0.5.1", + "zod": "^3.23.8" + }, + "bin": { + "freerouting": "dist/cli.js" + }, + "devDependencies": { + "@biomejs/biome": "^1.9.4", + "@types/bun": "latest", + "@types/debug": "^4.1.12", + "tsup": "^8.3.5" + }, + "peerDependencies": { + "typescript": "^5.0.0" + } + }, + "node_modules/@biomejs/biome": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/biome/-/biome-1.9.4.tgz", + "integrity": "sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==", + "dev": true, + "hasInstallScript": true, + "license": "MIT OR Apache-2.0", + "bin": { + "biome": "bin/biome" + }, + "engines": { + "node": ">=14.21.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/biome" + }, + "optionalDependencies": { + "@biomejs/cli-darwin-arm64": "1.9.4", + "@biomejs/cli-darwin-x64": "1.9.4", + "@biomejs/cli-linux-arm64": "1.9.4", + "@biomejs/cli-linux-arm64-musl": "1.9.4", + "@biomejs/cli-linux-x64": "1.9.4", + "@biomejs/cli-linux-x64-musl": "1.9.4", + "@biomejs/cli-win32-arm64": "1.9.4", + "@biomejs/cli-win32-x64": "1.9.4" + } + }, + "node_modules/@biomejs/cli-darwin-arm64": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-1.9.4.tgz", + "integrity": "sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=14.21.3" + } + }, + "node_modules/@biomejs/cli-darwin-x64": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-1.9.4.tgz", + "integrity": "sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=14.21.3" + } + }, + "node_modules/@biomejs/cli-linux-arm64": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-1.9.4.tgz", + "integrity": "sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.21.3" + } + }, + "node_modules/@biomejs/cli-linux-arm64-musl": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.9.4.tgz", + "integrity": "sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.21.3" + } + }, + "node_modules/@biomejs/cli-linux-x64": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-1.9.4.tgz", + "integrity": "sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.21.3" + } + }, + "node_modules/@biomejs/cli-linux-x64-musl": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-1.9.4.tgz", + "integrity": "sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.21.3" + } + }, + "node_modules/@biomejs/cli-win32-arm64": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-1.9.4.tgz", + "integrity": "sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=14.21.3" + } + }, + "node_modules/@biomejs/cli-win32-x64": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-1.9.4.tgz", + "integrity": "sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT OR Apache-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=14.21.3" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", + "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", + "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", + "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", + "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", + "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", + "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", + "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", + "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", + "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", + "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", + "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", + "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", + "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", + "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", + "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", + "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", + "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", + "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", + "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", + "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", + "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", + "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", + "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", + "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", + "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.31.0.tgz", + "integrity": "sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.31.0.tgz", + "integrity": "sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.31.0.tgz", + "integrity": "sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.31.0.tgz", + "integrity": "sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.31.0.tgz", + "integrity": "sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.31.0.tgz", + "integrity": "sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.31.0.tgz", + "integrity": "sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.31.0.tgz", + "integrity": "sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.31.0.tgz", + "integrity": "sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.31.0.tgz", + "integrity": "sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.31.0.tgz", + "integrity": "sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.31.0.tgz", + "integrity": "sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.31.0.tgz", + "integrity": "sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.31.0.tgz", + "integrity": "sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.31.0.tgz", + "integrity": "sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.31.0.tgz", + "integrity": "sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.31.0.tgz", + "integrity": "sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.31.0.tgz", + "integrity": "sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.31.0.tgz", + "integrity": "sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tscircuit/soup-util": { + "version": "0.0.41", + "resolved": "https://registry.npmjs.org/@tscircuit/soup-util/-/soup-util-0.0.41.tgz", + "integrity": "sha512-47JKWBUKkRVHhad0HhBbdOJxB6v/eiac46beiKRBMlJqiZ1gPGI276v9iZfpF7c4hXR69cURcgiwuA5vowrFEg==", + "license": "ISC", + "dependencies": { + "parsel-js": "^1.1.2" + }, + "peerDependencies": { + "circuit-json": "*", + "transformation-matrix": "*", + "zod": "*" + } + }, + "node_modules/@types/bun": { + "version": "1.1.17", + "resolved": "https://registry.npmjs.org/@types/bun/-/bun-1.1.17.tgz", + "integrity": "sha512-zZt0Kao/8hAwNOXh4bmt8nKbMEd4QD8n7PeTGF+NZTVY5ouXhU/TX7jUj4He1p7mgY+WdplnU1B6MB1j17vdzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "bun-types": "1.1.44" + } + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.12.14", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.14.tgz", + "integrity": "sha512-scnD59RpYD91xngrQQLGkE+6UrHUPzeKZWhhjBSa3HSkwjbQc38+q3RoIVEwxQGRw3M+j5hpNAM+lgV3cVormg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/ws": { + "version": "8.5.13", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz", + "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", + "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, + "node_modules/atomically": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/atomically/-/atomically-2.0.3.tgz", + "integrity": "sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==", + "dependencies": { + "stubborn-fs": "^1.2.5", + "when-exit": "^2.1.1" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/bun-types": { + "version": "1.1.44", + "resolved": "https://registry.npmjs.org/bun-types/-/bun-types-1.1.44.tgz", + "integrity": "sha512-jtcekoZeSINgEcHSISzhR13w/cyE+Fankw2Cpl4c0fN3lRmKVAX0i9ay4FyK4lOxUK1HG4HkuIlrPvXKz4Y7sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "~20.12.8", + "@types/ws": "~8.5.10" + } + }, + "node_modules/bundle-require": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bundle-require/-/bundle-require-5.1.0.tgz", + "integrity": "sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "load-tsconfig": "^0.2.3" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "peerDependencies": { + "esbuild": ">=0.18" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/circuit-json": { + "version": "0.0.130", + "resolved": "https://registry.npmjs.org/circuit-json/-/circuit-json-0.0.130.tgz", + "integrity": "sha512-GYjGf6ZIh9XGeu/5C60W0gPK726o1fPcislAyUaaLJp2QCLJ6yDMYv+wUI+AYD73jUMdiOZIkMRlMFJpOqxx3Q==", + "license": "ISC", + "peer": true, + "dependencies": { + "nanoid": "^5.0.7", + "zod": "^3.23.6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/conf": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/conf/-/conf-13.1.0.tgz", + "integrity": "sha512-Bi6v586cy1CoTFViVO4lGTtx780lfF96fUmS1lSX6wpZf6330NvHUu6fReVuDP1de8Mg0nkZb01c8tAQdz1o3w==", + "license": "MIT", + "dependencies": { + "ajv": "^8.17.1", + "ajv-formats": "^3.0.1", + "atomically": "^2.0.3", + "debounce-fn": "^6.0.0", + "dot-prop": "^9.0.0", + "env-paths": "^3.0.0", + "json-schema-typed": "^8.0.1", + "semver": "^7.6.3", + "uint8array-extras": "^1.4.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/consola": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz", + "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debounce-fn": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/debounce-fn/-/debounce-fn-6.0.0.tgz", + "integrity": "sha512-rBMW+F2TXryBwB54Q0d8drNEI+TfoS9JpNTAoVpukbWEhjXQq4rySFYLaqXMFXwdv61Zb2OHtj5bviSoimqxRQ==", + "license": "MIT", + "dependencies": { + "mimic-function": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dot-prop": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-9.0.0.tgz", + "integrity": "sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^4.18.2" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dsn-converter": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/dsn-converter/-/dsn-converter-0.0.50.tgz", + "integrity": "sha512-Mi592RWoWtdPr2jC20rjoKJyBdF3j5Tr5xder13U/LWYFp6zlrIz82ZGgQIasjmAmPbHu8SPHEoaspJtoDmARA==", + "dependencies": { + "@tscircuit/soup-util": "^0.0.41", + "debug": "^4.3.7", + "uuid": "^10.0.0", + "zod": "^3.23.8" + }, + "peerDependencies": { + "circuit-json": "*", + "typescript": "^5.0.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/env-paths": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-3.0.0.tgz", + "integrity": "sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esbuild": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", + "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.24.2", + "@esbuild/android-arm": "0.24.2", + "@esbuild/android-arm64": "0.24.2", + "@esbuild/android-x64": "0.24.2", + "@esbuild/darwin-arm64": "0.24.2", + "@esbuild/darwin-x64": "0.24.2", + "@esbuild/freebsd-arm64": "0.24.2", + "@esbuild/freebsd-x64": "0.24.2", + "@esbuild/linux-arm": "0.24.2", + "@esbuild/linux-arm64": "0.24.2", + "@esbuild/linux-ia32": "0.24.2", + "@esbuild/linux-loong64": "0.24.2", + "@esbuild/linux-mips64el": "0.24.2", + "@esbuild/linux-ppc64": "0.24.2", + "@esbuild/linux-riscv64": "0.24.2", + "@esbuild/linux-s390x": "0.24.2", + "@esbuild/linux-x64": "0.24.2", + "@esbuild/netbsd-arm64": "0.24.2", + "@esbuild/netbsd-x64": "0.24.2", + "@esbuild/openbsd-arm64": "0.24.2", + "@esbuild/openbsd-x64": "0.24.2", + "@esbuild/sunos-x64": "0.24.2", + "@esbuild/win32-arm64": "0.24.2", + "@esbuild/win32-ia32": "0.24.2", + "@esbuild/win32-x64": "0.24.2" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.5.tgz", + "integrity": "sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/fdir": { + "version": "6.4.3", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz", + "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/joycon": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/json-schema-typed": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.1.tgz", + "integrity": "sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg==", + "license": "BSD-2-Clause" + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/load-tsconfig": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/load-tsconfig/-/load-tsconfig-0.2.5.tgz", + "integrity": "sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "dev": true, + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.9.tgz", + "integrity": "sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "peer": true, + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/parsel-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/parsel-js/-/parsel-js-1.2.1.tgz", + "integrity": "sha512-omFBig09mUh/NjBGba4DxVFAsqCY4C/6UYIaJuDOxJw2GlpgUJdPlNF301971gCP3Gt727+F+NZIXN483VAKIg==", + "license": "MIT" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/readdirp": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.1.tgz", + "integrity": "sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/redaxios": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/redaxios/-/redaxios-0.5.1.tgz", + "integrity": "sha512-FSD2AmfdbkYwl7KDExYQlVvIrFz6Yd83pGfaGjBzM9F6rpq8g652Q4Yq5QD4c+nf4g2AgeElv1y+8ajUPiOYMg==", + "license": "Apache-2.0" + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/rollup": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.31.0.tgz", + "integrity": "sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.31.0", + "@rollup/rollup-android-arm64": "4.31.0", + "@rollup/rollup-darwin-arm64": "4.31.0", + "@rollup/rollup-darwin-x64": "4.31.0", + "@rollup/rollup-freebsd-arm64": "4.31.0", + "@rollup/rollup-freebsd-x64": "4.31.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.31.0", + "@rollup/rollup-linux-arm-musleabihf": "4.31.0", + "@rollup/rollup-linux-arm64-gnu": "4.31.0", + "@rollup/rollup-linux-arm64-musl": "4.31.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.31.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.31.0", + "@rollup/rollup-linux-riscv64-gnu": "4.31.0", + "@rollup/rollup-linux-s390x-gnu": "4.31.0", + "@rollup/rollup-linux-x64-gnu": "4.31.0", + "@rollup/rollup-linux-x64-musl": "4.31.0", + "@rollup/rollup-win32-arm64-msvc": "4.31.0", + "@rollup/rollup-win32-ia32-msvc": "4.31.0", + "@rollup/rollup-win32-x64-msvc": "4.31.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stubborn-fs": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/stubborn-fs/-/stubborn-fs-1.2.5.tgz", + "integrity": "sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==" + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz", + "integrity": "sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.4.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/transformation-matrix": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/transformation-matrix/-/transformation-matrix-2.16.1.tgz", + "integrity": "sha512-tdtC3wxVEuzU7X/ydL131Q3JU5cPMEn37oqVLITjRDSDsnSHVFzW2JiCLfZLIQEgWzZHdSy3J6bZzvKEN24jGA==", + "license": "MIT", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/chrvadala" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/tsup": { + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/tsup/-/tsup-8.3.5.tgz", + "integrity": "sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==", + "dev": true, + "license": "MIT", + "dependencies": { + "bundle-require": "^5.0.0", + "cac": "^6.7.14", + "chokidar": "^4.0.1", + "consola": "^3.2.3", + "debug": "^4.3.7", + "esbuild": "^0.24.0", + "joycon": "^3.1.1", + "picocolors": "^1.1.1", + "postcss-load-config": "^6.0.1", + "resolve-from": "^5.0.0", + "rollup": "^4.24.0", + "source-map": "0.8.0-beta.0", + "sucrase": "^3.35.0", + "tinyexec": "^0.3.1", + "tinyglobby": "^0.2.9", + "tree-kill": "^1.2.2" + }, + "bin": { + "tsup": "dist/cli-default.js", + "tsup-node": "dist/cli-node.js" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@microsoft/api-extractor": "^7.36.0", + "@swc/core": "^1", + "postcss": "^8.4.12", + "typescript": ">=4.5.0" + }, + "peerDependenciesMeta": { + "@microsoft/api-extractor": { + "optional": true + }, + "@swc/core": { + "optional": true + }, + "postcss": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/type-fest": { + "version": "4.32.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.32.0.tgz", + "integrity": "sha512-rfgpoi08xagF3JSdtJlCwMq9DGNDE0IMh3Mkpc1wUypg9vPi786AiqeBBKcqvIkq42azsBM85N490fyZjeUftw==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uint8array-extras": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/uint8array-extras/-/uint8array-extras-1.4.0.tgz", + "integrity": "sha512-ZPtzy0hu4cZjv3z5NW9gfKnNLjoz4y6uv4HlelAjDK7sY/xOkKZv9xK/WQpcsBB3jEybChz9DPC2U/+cusjJVQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true, + "license": "MIT" + }, + "node_modules/uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/when-exit": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/when-exit/-/when-exit-2.1.4.tgz", + "integrity": "sha512-4rnvd3A1t16PWzrBUcSDZqcAmsUIy4minDXT/CZ8F2mVDgd65i4Aalimgz1aQkRGU0iH5eT5+6Rx2TK8o443Pg==", + "license": "MIT" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/zod": { + "version": "3.24.1", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz", + "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..b980d40 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,8 @@ +/* + * This file was generated by the Gradle 'init' task. + * + * The settings file is used to specify which projects to include in your build. + * For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.12/userguide/multi_project_builds.html in the Gradle documentation. + */ + +rootProject.name = 'freerouting-cli'