pax_global_header00006660000000000000000000000064150665376650014535gustar00rootroot0000000000000052 comment=5d8337ab0aed9b309a6df4fd33fbe76f6b8dbcb2 sd-mux-ctrl-0.0.4/000077500000000000000000000000001506653766500137155ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/.gitlab-ci.yml000066400000000000000000000015111506653766500163470ustar00rootroot00000000000000# You can override the included template(s) by including variable overrides # SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings # Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/#customizing-settings # Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings # Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings # Note that environment variables can be set in several places # See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence stages: - test sast: stage: test include: - template: Security/SAST.gitlab-ci.yml sd-mux-ctrl-0.0.4/AUTHORS000066400000000000000000000000631506653766500147640ustar00rootroot00000000000000Adam Malinowski sd-mux-ctrl-0.0.4/CMakeLists.txt000066400000000000000000000047301506653766500164610ustar00rootroot00000000000000# Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved # # 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 # # http://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. # # @file CMakeLists.txt # @author Adam Malinowski # ############################# Check minimum CMake version ##################### CMAKE_MINIMUM_REQUIRED(VERSION 3.31) PROJECT("sd-mux-ctrl") set(SDMUXCTRL_VERSION 0.0.1) ############################# cmake packages ################################## INCLUDE(FindPkgConfig) INCLUDE(CheckCXXCompilerFlag) ############################# install dirs ################################## SET(BIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/bin" CACHE PATH "Binary installation directory") ############################# compiler flags ################################## SET(CMAKE_CXX_FLAGS_PROFILING "-O0 -g -pg") SET(CMAKE_CXX_FLAGS_DEBUG "-O0 -g -ggdb") SET(CMAKE_CXX_FLAGS_RELEASE "-O2 -g") SET(CMAKE_CXX_FLAGS_CCOV "-O2 -g --coverage") # Check for C++11 support and enable proper compilation flags CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11) CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X) IF(COMPILER_SUPPORTS_CXX11) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") ELSEIF(COMPILER_SUPPORTS_CXX0X) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") ELSE() MESSAGE(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.") ENDIF() # Set compiler warning flags ADD_DEFINITIONS("-Werror") # Make all warnings into errors. ADD_DEFINITIONS("-Wall") # Generate all warnings ADD_DEFINITIONS("-Wextra") # Generate even more extra warnings # Don't export symbols by default ADD_DEFINITIONS("-fvisibility=hidden") IF (CMAKE_BUILD_TYPE MATCHES "DEBUG") ADD_DEFINITIONS("-DBUILD_TYPE_DEBUG") ENDIF (CMAKE_BUILD_TYPE MATCHES "DEBUG") SET(TARGET_SDMUXCTRL "sd-mux-ctrl") ADD_SUBDIRECTORY(src) sd-mux-ctrl-0.0.4/LICENSE000066400000000000000000000262441506653766500147320ustar00rootroot00000000000000Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved. Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] 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 http://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. sd-mux-ctrl-0.0.4/README000066400000000000000000000013551506653766500146010ustar00rootroot00000000000000sd-mux stands for Secure Digital Multiplexer. This is SD card switcher (multiplexer) designed to help automatic testing. This project is sd-mux controller - binary for controlling sd-mux device. Requirements: 1. libftdi1 1.4 - development library 2. popt - development library 3. cmake - binary tool Build: - enter into project directory - create 'build' directory - enter into "build" directory - run 'cmake ..' - run 'make' Install: - enter into 'build' directory - run 'sudo make install' to install binary into '/usr/local/bin' (the default one) directory Note: If you want to install files into different directory then add argument to cmake command: cmake -DCMAKE_INSTALL_PREFIX=/usr .. Then again run: make make install sd-mux-ctrl-0.0.4/doc/000077500000000000000000000000001506653766500144625ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/hardware/000077500000000000000000000000001506653766500162575ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/hardware/SDWire/000077500000000000000000000000001506653766500174145ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/hardware/SDWire/SDWire-assembly-v1.4.zip000066400000000000000000004377051506653766500236200ustar00rootroot00000000000000PK Z&OSDWire-assembly-v1.4/UT %r])&r]ux cPcPPKY&O@\^'SDWire-assembly-v1.4/SDWire-F_SilkS.pdfUT ;#r]$r]ux cPcPXyeÝS(yCRnEvٙwMv Dƈ.z5kVLGmT5{d$7)N{?W?LuszZ:sKy1eX^GvVcCSY i9a=ɮS YCH} R͵R5*dE5\x :G\]}{+J\:V};Z%6B\7E]afhD뱼\`푒gܚze Jo|f]: Y 鼆d ˛lJp*GL )PS.M }qF| Tv] lpq;21Koo>ҨJ9ЕVx)iGGSЕk=ԆH> m f Gз &BLE f&Rb[#;c})qBf# .f_Z O2/>aG鍖9tǣIL!#/cvٜ L q0 !jH,Pnpb.i+v/첡4bqönu ݶO|"wtKRz(*1LUQm:klB8>|B@yѫ- 2jӽ1oTN j$0l&:Y%>U3(-(B\Mxޱ< =Řر تoo?YH?={>#o?G.pɵoNݝC2}F}& 4kݞDNX]hԡ-p9ؠ-qƖWcJʳe̖JZb&Y}#eg1yL"۴.B’Pe>(٢`ɓs*ʔ+~=s(f;4jD&{a.RX[p~Up&yU l3$Ickcqi@o}òn޷W\/i7|@YFy_m 0b]%T#("z=l1-d^4 '3UnE9 {빰ā!;$W-2g-]ash\J}ޒ{k6J#1ϝP&ai ޓ\R{ >@xaCCĢFE[KWooL^fݍ`&bffry)ѫd8e/gP!!#p QLo 'K0bH3K+Vŗ]]oz0Sjyt#-(νOM{2饔s6M-8Y)qk{yWK50R˨蠶TC*]80)٢Kd?;]B`ӽQ3B-&|2_ [O^)(P];3/DiX0։<,Zl3.oI9뎯/&?9?{kUj0H-T r N4Z.hoi Wnds^/FK|g<,mB:o Vp/t:Kڏ|oؕYʝ{rBdD/nr|8e2kт=jY^& ,=|A[+z4XjĒ0p߼J2 .I-T]iQ)1bkd/qUݗ/ˤ]͑PjLe;:cg;= z=5 0QAWkZ &7r:Gb}4D܉0HIߩ:kgC!GM k~u<%|۰6gU=^y} f^1 90!g/-ۂ_g.]J[ү<ɵ1**gɨM% 9~3\gO_~c5cYkn+iͣm齑:)&]FogxQcmzL5sc #Ů`Y.FaR W>k%)Fs`+ `ઌhpwxǢk&拨Aa2Ƿe$|dI^Px\Hho8}m`"ӨwE&~R3X2? tL /u,FͦZKfE=مVq@ 6`~%*aϞ+snF?VD$˹׶tgDU'= ) ɭا3Jђ(WѵmIK[/Nf,Í8ah_|폡kU\Z ѱh bVSc&Y7ڗrg0]s~&հ}zT{[سkݳ:7zSg+%u5NNYJm6ROe ;Pow`$}O;/wh96/ĸq㿗 3 ]+58R-kgyef}/'c7[Ь+4{sģvMK5V xW09-A:$B,8/v&A5lži։jO#%m=f=na# ml${Eݰ4|naQQfeukgcma&,ˬ Uq5s"+)|`ʿ3=-} 2>Swȋ0/rlyg\TEoZA쩲izVb#iK b˰^\_l[.{-wG+nFvFV/jFKrڌbXL=D?%ta\dMrgdwܝCh\n[cy%R}N6=!iͬO 'E8 ".~ nC&C@@P3sDjw"xo`kn=CS=hD:xԄFu0%2+(P3x_Mo:TIdk$+_YkaXGp:MY( H $klO&{EF¨I%E:@/a"S+h@PM@P4Z`g:DVz?ZכǚL!oρ5 4ʏxljARx8u.C!a0<*/i!f$k#ш:v$)qm?wHd:J~^ No\it^9tJa}vQ҉FT dzlk ~Ar y|򼞬PĔ``ȟsᰟ1y%O!?)owL&ƠId"m0D3T*Oow0h#XWřow/xc} 0mPKY&OR6 'SDWire-assembly-v1.4/SDWire-B_SilkS.pdfUT <#r]!r]ux cPcPiXSkq L "H LJÐ !$,a(U*2H"UQUA)@ozK{9'^|{YKf+ щO8t/bfA:Pil)Hl gA`vI!yM߈>bUcrcXއY?js.|_ QH-Gt%϶^UoH3Fl99o7*zj8R9z sMӣL Q?Rٳ W,]Gܞ?qg;~ 㽓2FJ D3C+!#^r֨ս T:ԭ[TU6~E\Zҩ>~FIw`|sPuEwM[8Z, UҲ7Ͻꨇ,u8RAӾ614\1ˏt:]5-nm992mV=,]d"%03VĭoTw(?6vx]Ro3m2Ϳ3t$mNI)(GG<rHo+,cǙgh7mKu{WXP/SvztEJޝޚr Oؼ}εҝ7%_:e=>Xc&{|Bu5ŖW%oXSOkci:Z%GzgkL풻CF#/]/H^t+R7J=O\cS8"gIN )Ja蜳Uۉkd$xPbLÙMw5\9fs%?/`5i]WXkN_!(G_w|\ [mB~޶sIduQEHj/-njwq\bn/VbB3.Yj4R;R'E2Ź2GB/ /d- + O>poq']D&R/6iWh1_E91=Q9UǬwƪ5L4R *8:+Wݶ3لT<=cƚJzg&bv?>71ZIU೟*YsfI٧@T΀{i/:^qnk!ylSkk}^ˡtJ0a4֞m5SBj׵j#3.IQO5!ߧ0gӦ~u0$#tbu{/Z ƚ\3Ī,ibYX Ow I]'$)T;9))z䨢-;?ۃNw%5*3 Z '?nXTsODM1غdw7;VnKɒOͷb! t#'E0UYhx)u @ q4O DʷM1B!28 id c0qXɂ!M0#$Of48 HP `Mػ=+V Bttl PK"_%ONm ^#SDWire-assembly-v1.4/SDWire-BOM.csvUT p]$r]ux cPcP\[s6~ϯhfgڙ@ =#KvڲINAb[y%=XI6Ky$iޔR~YZD5WJDDBMJ8!  `8`3 ;ま' !cGHuqlYwwwf*S5@5e J"MB`7R0t[i3-D_`~߇\c- ~;.n%<h-ƻDVt,]r1\Dc߰ v 0KT(b %J' 0VwOG)zx(]^e!(#]dY ZMqF?"0[ć"Ѓo-AN {`y 21Q^}  Xe9?z0nh8$Y^~ i#f(\B#J?ֶfx چJ0#Qa+N kUEX%2g,Z'J4Ijo=uEb$-B`A=G)xo-]4mlm6&=Br==fяɕW]IcY~~'~s= ӫ#*Q`Ѝ` { an 4#$λR ؈RնZ>> __yt4:Qް8W3,BܨewBAV2( sT- BAC&(4uU4\]MO3.׃dҏW䱈7V]Cծh׆yfT V6.F聑]F&˝ OzyԵ=L v\{QD',.`t^-/Y EXZ^{Snj.`2y9r6<ٸ'۽ѷ9E_yAndq&~>l@ `stv [& hhl%5Jo3u4`{ѼݗLd_F.cwh_{,;} X@rG@9n`؁EܕʱJyyn6߻|[JqڶX v2gNvGpҎdty~t."mniZΑt(3$S+\]d3 _'6]x&F&:m[")qpXlKĈHU Cfu_ 8#djyכU#h;>rDZy<ē @{V.cMpoDL{í*uƔa_VU N0LJR4I~'2e$an{zV0 ]5ls#$oS OdgQ+;|#& y @aWFʶ)5o(rMW2݇Fm5DER$9pMVe~ calm}6Ft85uz;t)!AAE6"YDtX\Hy%\Yt. V|F&gXk[Ptw>p{xMGSO8%&p̦ӫAtjxVl[ueFV_?5sl٬(Jm( l ݴP#uU其AѭѤ?#t0EĘNhԨOS%p}i&:|Vu[%76"% "y -j>ai잘3Ԏ! ܀PFإ'F5h+6rZJӷrЪV*!R"MN7#G`z; WzR1r/y+"D-,t/ztf,7̵\j}#?ނ=1mŢc?ɟ$c[K}c1>7$:|1Bs>x58 ~i߃Bwy\ib8ўN3K}B;=:lKۖ$ag oN._;O'j*-JPww)jvبPKY&Ox>_c%SDWire-assembly-v1.4/SDWire-F_Fab.pdfUT <#r]M#r]ux cPcPeT\M.F@Bpw .!C7upHp'7 m~{8kY5gzjV]h?Iɰr~ E]H]ÆR`ut{t04wAwp4uDYlX$^$8WQ^lb̉$ur:Vc>K v6fZ,Fׂmlmn<읲oawK7k'ζ@CN%NIa,G ݆5}L\4XV #8T[-.`yY^ "g{Ȳ@MxFf̣w`HfmS/@JAujlbvvds߱9՞"xKWܨ)N91YԳW[؛ʉ-ӏ1=3ZxZ65Hਿt(!޳g9t`1RxU@hnI]6ڧpILu,z0Sz#u 4κp+(.9l Z]ٔ+B& :#cQ TЎyMӼ()+;T`iXb6,˼Ж|""ƮL{ dNdZ5V*ڰ.jQY޳'WQ(T<[NKh."P T<*w6;$W)>M*nuF%y|(<1r_21Y+ʺ ""|10e JvA0A\"άk k:>P-q&)ZTUlĕy׶7o"c]UtR[gWAUƖ/bsl;Kx3M C3%-&K;ځ9jd5dх ދ,ՉތQ $Oһo嘲p]ɵ@`4Ƭ٤mЗ3qVk=aQ2X1a hǤ2҇ tɂgfxDRx]ѠO4zwL"=uj;˾n1PKr?2ӂָv~_< E"ِ‰kXj'~g33۝Egd|٢`{{P%QNZg-rEztC5K$Һu.YXUgݲ k@ L{r/cGg/;g̣9bZbrcq~\DPꘗM|,OdczDBH4YqI+jXۣz{;{(Y ڄc/O73oK۱s LD}QΆE(DvPIܑXsf ۹O}̪vo:1+T3eSfΘMZa|-:gAs-pY|sfnL^rusm̦Wob7RzM7&S A'r3r 45]٬Svs:ޥFg˞nDQm*ch2^T^X.*=@s[*vj8rŶM鵿U]0i &XS!*>uN6║.AbVObc!]% ޘ&j`11kdXB{f˛T/{G֙;`p1#ȅ>9F+UW;Pa ;|sk bt F@!כܽ/?gFq:~C_=U}{GHYmlJۅj簁ϯ[+gmO2>w3ATGbYf>7ck| ΍t`zzzk{{wqHUKZH@0N\<&\nwڣ̃ws/N)KcCmo{OlFNruXj(T7g&& .eubBAZjOIEKأ̣zN][abF49|Pһ~!±qÚ\_*D7ݮ`z1sG1 cL ,.L穽h:@>N (olIkZO}#As!C5_&k7oFiG7{crkpÇn[{M2DJ5.anXha-֤йU=]_-BM[z㐕ac笁y*N{Zl'ȭGXp/0-}2jl'n)VwT#GkC J[7ߛyڂqd)= .C< Z-K7w2_N$t6:=(P4;MW675k˓( g9ߏu&I=ZQ|*AS9&ot|G ghٮ)1AܲJF)Nd7OKNoME F^aѿ֢=tͭႁ𘖙b/5VԘZcMd{u*k ZALq'sL#/i/|y:$8.q@=MLNGKR'/R, üQ4tMdI;vDCR"Oti_8X˗)NTޱg!Eq!BIGXrr5nMu؋Jt,EtlhO =b+x"\u73?K7NÅoVZ o.<99l*ʲտ+'j%kYpPys>Olln-l˭I<*]ŢΛ+݆Ld+qZV>ږ[̝֞/4gVIhH1%w$5"z%r6j%f0fIfsk6pc*"O+OB:E=MCXDdv#윉j}:?ʩN&KRRvn)P?wf7ѐ-iS@)jWjxWY1'Z#aZ ZlZ$p}MUjGnn-|$vFgi[M[V4NvV!U@ٵ~_#. ,\WMkFZ4Pq8֏ 5-yGfװlяNxk}:]6jH /K`ﴄ|=({ddXg~{{}7ת:}:6JcVRٻiXyBi.τJxHgS֒Kfǧ .nA{nO|YSز) R*/WmJ؃; ?Q@^͊ 昃sϯ#,䈚Lr) ջ6*h'GJڽΫVn◲}O՛\3'ՓxG6`ULNeD} G W14,ljePsJ 鿉ⶼbHu(CeYhr&|ȫ'˰bM>lqDe 9AP|`Aa=xSO&^$/sM;nPr $IT|=&F5&;<&uP1x^k#z(%j4VLA{uV&.*e9,.m?~y5Gw{+tE/;|2l(kĦ /j 2dͫʏL55MǗg̜ܳa4qN)HvʚNepT{ ѤEj\_91L7O%Z7[3=*UIc3R>w1fLЯgaY;UѺN!cҁbU֜f[gxe&7w%,J9GmM5UbL4 QcMV$Qh ϪԀCyc6݉43`Յ/mC𢡊,{Z< ݔm(HGX4F΋qT;^ WZu)%rậVZV5.u?ז=:gѩj. u'T߂(2SG ~x1Em=[ Fi,f]7 .캽o ~È  yVȄ }+L)Aj(^07YO2FWO/rX߳>H9E)4)3[zN=wDwz1p[0 WZ)˖8U>_U$;)ֵ6'jU/u?>02OݩO/d`G3;O -W-'`h,ԟw I]YJ04¸^΀T9\d0-ba ecStx\ic7ګ#I*Ϡ4רWMlC8JW<{W>rm1;e߳\QδrQ,Toh7R>'b'b#]7Y#`/3O#VuMZXt9i(X?J{+~!H&š߻ggˊ>Z^kǿh}2|t/jKdML$~}pg>Iapi@P]8ZJ`>終ϮQ]FTWڟT'1W F$Œk;NzN iĝ*]tf:)2=4҅0(UF26hDbLsA{*Uefxl&@ @£P@spCH!i8VYgΨ*5 gH>[ l!LҜLA`Uڇ %>;,ť'EJ')gzIL<1'_~Et40ܱ4? >q^[䁺6"ʒ=u7*Jf>Ɖ+B~j1.2q^@=_f`>g~+w}( yDLE_Ёy\QuQ; %3CZݒ}83|+8أH-E)5nR]NJXIN^jS8s^leE-g6 @Pjq[)9s+hkvtMYh/M&.XM%[yX9c788=W <K ފ>?~{-PnVy+[|DO0o_I'. %2DR1$VJu 2}H:2X_/)"RDXXEF ͎Ty[,,`ğZ,ʧG->bTXd-'S>OHbo+LZ[ZԝIxeJ 9Ӹ6=VYojU(_B4[ܾOI!G^޻o,JcvF%/,~X;=<wYp$M M5e&f'b..)WRQO͇S>$"CϏP ȗo14V<*:G1ވ:Dm<ͻ It(U DUjbmW]j;a!D~ +:Ԁ3tﶋltf?1;A;lz^1}\']TԠM tT9dS ]7Ig4>Ix;]z~9Z4,J%J ڱ@6;z6ˇ3{}؛uAB[7oHM޶WkBes !^ ֧8i40tX8|؀U4ڊ^}{~%} ۖE&=MU@>1a-̿bhqV8w!*ASVp8ȥKt躠y"F=)P"6k4w D_e]FAc1Ok˱IHL:5?°Aό2o5nm'˺;[)2OӞ3'.ȭ+ͪJ tcMH#ezE٩(# )L ?&Sz -{lS Lf=3~?d_-r3=tnO%נaDM-,Nc*Lug;c2KBήRȨ^cq]zߠ,ؤ$-ߩ}ap97767Mgu}*fZ'e<)_a ފd! Ȁ"L)2q nj́U*S(Օxq4D2cc eロ %u|3LeXSp_PE-Nxr@$a$"nw6h=~ށF~._ _5~<ˮf:>xݎ-E@~Jȿ G2r OkGe(ɦNdBy Un)g'n]j#/`T=؅?{ˣ쏏iHL椻U[(#Mۊ0Y4 0'[BKAU) okS\>k7k:=(sQV`&zg!Jf#$[Ɨ¶Lg+6ɼF6%=C2ʖ ;Z{*gwtiv&w5VeXG(~Xr#t& !=B^/I,En0I*@n;S]7u;o.ᛗ*OP1mYcW6.RU}\ga_Ra~vPyR궳*I6w!ߏ ߚ(J*KJE81QyZS'e~ QњBƤ#P&mH^*I4{e,[wVxul#9t9f"ׁǑ}\S#ַ?0&*&96ƆknM85UwMu>VM XzGug[QCpi8:*}ߚ_lSTRc+l:V9v³F DXzTeh9u8[\tV Tv</u/5ޑ9i B0 8KtTo$7ǟ+|o 6eS(ڞVεMTd>Mҝ>ƮKhmG*|UI؈s2Zh_GgpQ֨y (( -.oN@t  z3jF K\ALޯ'⹅] j4tYVCZ|%p~wp ~aFԱc:}ՍJ!#f/1g0N> Åfl(/P*L;uN`sg,P;ʑ?<۬S;kd/T/aAf055M:zOU3AP! A'ݪ޷|3)6g _3\TS'Mq+>8Nc 8SsL\懅Q%aWBQ#Ҍ"$%9 |췑4Ϙ.$'S;&m^[*ڽ[>G3cB{銈,S&#OEiM⫫I_;թx8ўSCTg/e\kjsJzcT j>R}Hĭkrv&C{AEԸG~$}"֌JG [dr9Tb A)SدEMaq;q;M{:U_aL Ye V#u~u5?(BfPuЀ()$%Ѽ_OeXC/r;c H4,@{q頚)PAeD勤_Hs- 6^o@nGBxfKj|KLdޱ}Cvlj=W; ,Qa|D-U\c -ߞkUjls2&7QhC ԍ|p%?G~[+K&x48 {z6ޯLJ^Zj/|}Tub<,Lާr**۬w([m "iDCnI < 4ܞ80f:| z۹Us7q9\>k"J ^ ?EmHw7,mHIW9B &_\wh~v:^ 2K7)3vq1i 5Ml=R9aĬQCmJ 97a~a(pOQ]xNɪWN0XĶг-`.GOY `YUeXgjC,dM:}v1_K_[~~qaX3ϳ Uڒ~3 qҬq0L"30H}9:H>wL~vRvflunņr4H` kYU_zX0!VU/*K;3t mh`(<ȯr~`^\H3llDț䑽1|h!Uu)_jX(WߑQWdNtv>yUVKK7ѷqS(OE. -/bK&;{0իC' rX DB3n60ofz(q5bu-2Bę_Qh߶ÿ*BTvHxNVk 8D7ddDⓞi%ήo+ܑ>yhPIg).蒤!YTY\Ꮚf!`w5x9wը&<FaS5jٶULCM#NeF+kQ7dW]M3-a$[ORa`a',tDm3ũQ0KIF'lWߔg3zt݃O[]krCBGH%3Pg7?שVVJ a_l^ӿM)1WIKu9if;MS[ˮa*kA_1w[7|ygEےAϰо|u%ٸS5lp7J&Z%nc)y!F,,k|-ʡ2ӞFxPVh(vu$MFWǭZ in(i"I= /5ysbhLNme{X׹!<XJ67J̩gOǏD(J6? -.O]BS`tTOdoةSHCuB!!#$H0|y-Tez@e:TUvC)LRۼjnB:~LΘ{LуȆb|cJiY hz ,q8J3BM[[G4!͓X[^1%I{G9|L?;n-PtlɴM`2r<=9~V/-1Tv#|⽗gao!KؔjɸOpmm;vp!Imsf'q'DY"%1wS&3S ~ s,ٌK`ȊnR斝ި>wy  |)'E Riv4nH2ct/x:;/q\:td.^+0[O7/*zQ~8Ͻ7坚7ks3>W K?n :?&H`XٰC~8XD87-2 d]q˹VFR;[R`k ,M!`rw;⣬" p ȮŊvv,[kE6hX` /&36ԉ^¹<4\C))r4mOr(.?XEZ4'@$&CBkvQz=;$ɶzqNKod|ޥf(d u,lX]YP +n֚ Mh̛~hjshyvMM0ʨNHPw m_H'OCs' by"`YVRJAuXr±2Щ昭?StmQ%sw $ \kQGub7i˺ή#p ץFg2U!Bk A؅eWZ1ˆfu /cLwJxyjY$nOd\>q3[6 iD4*NuPR~WǼPo˰7q0=:]\HEQI;^C\0Dj)Ys{#1/Jz~j^=S-_ 52$9wgAn8p鋲+7E? pߨu:q'7Ffw-eZ\»ݸ`T>At+h;zE}Rn2,! b!s|\[*ǘ !:L.ZQ@bLRhO| JVJ[]C;Jj/ͽt,q[}#tlVmZv,~Uź"ԝIz!bY] -toyԤt`/}[ǺO [WxA2w_SZiة -u谆%DZ?~ԛ^-eV}9Z,B}6]76?jT^2ޑFQtOLX_yaU/aKlaUaEl/4w˯֊rddaYT@bl'X e#({#$?jw>ew49;MvutqPNh=pM/ث/C2I2=ޗ? JEGh=5aeMLh1E,]^v̴:]7]v*}jB;N6%`lEk\ժmw q,;eO} -M#kEߦ`pЫ)1A.ޠHCU )j\(lJ 0nuHn*߇EH3 . Çk?Jџʡ?[5&%[t\e &~;Eq,*JV7}0{d#HA\'Z9쬨ޫjY=R[n +[- @ީw۵! tjvK$as-d h؀r}TDů8z1'Ϧ= pe=0DT9Y03lY ]@85Ol.^{ݝ+EkkVνͷ*kNa˞Ĵ4W&算˕++~C-=_OrƸswwSz6Hhn;+ `OȷbyVAod7>\/ʗ`4~k̭t]Z|ϾOX=:GOeILѢs/||%]li#~հY# 75}v 'Q :4ݷ( M2zkΉ\bQx,#-ZSͽAg¹|z7.|zΐFb*žyHe1 hY9IVba(׼ٳ9&v,X: 0亲Cz|#%?_ϛ2K6mܥCY#r=|0^q3[fYjKbҁП)~!.S׏UЁ/"DvD2E C:jd`[S4t(7H>h Ь5vg@i͋ہ<蓹"BN=Zc ӿE=EN.Wunʳy"-8uXDep;6}MnuH$}!KYT>퉓̫XⓄ?_ )e\FK+2 fn +)=Ug-Oರëi_ldFد]^˦ M,~)mQxaJs`k`(HP9gaH8Km 2nfQnhmܾG\s]G&P%m.2T@2I_VT{&QQ_tr"EC~UXO0ŪV V_\Njxٵ y)au|M~r2P t?O1 Nz.0S@CP@Q8uw.E ,5CMh>ymv5CԘgΦT[B .bKǧ'/PفC!CNG9Rzee>HGך ,M u/ykN"],DŽq^x)\bxy=}Emt!A9?{ s(tœ*p58akw␇}h=Cso[ (6_2/Cg1/\j '|7ن$KͦI5M!OU o1CՊ&c?M*|F>.wa:sOx Y$Uo֖zXF{&ѢwpVC?.1[xlD2@M6Hr4Qzj8~ݑU2wρAR'62f%M;W;a88lk~R )FӷVx Za&trTQp uxYo͵Ed֞&־?:ߊՉuK1 }-!s0@:`kBzpLx W $m]~gKei!1Myx0٤ɮ\֢X$t6Ytsr˦)zr/+W`[nG6J'|"~o yEZuš M:<)L ϴT. l[WEL,)iGiXOt[,[EmVu~5Kt$ti:Zd*swEqIGF5jIY^J,6iʤ^~wsS=p ;# kHH`g-hQ.Lb̝*Là ԵP##!_ȁaRjR:1r3 =~\ڑRTp("\+.Pˋ>&NW&GHJ2/O{"$VOpI&}[aN&3=߄ϥ* #l;qK%6T۵)mP˛h|R׋UYK6zL2S ISxƃG= 57'd~),ܑݼqO:X;kRCa4Eʜ79ታw\֞xZ{Q~D $z/Y#9Cm9#Vxí^7a;__=<7 v`AjΊ*k M?$Z#gz Vtx{)&0g-fbN)HV޴U'jƑwPa講k{,ϲ[{s(xE[% >(N͕u1GB{X1ġMC21/+ "I<Wڌ|堦7<=a_΂|r*V=vfe6~&bCd tT)&]k_{$u籮faŸl&OܹSJ* )2膛v%Va) Kj(6s]6\ (rP%!h2mf^[_c/mcøA_>8#V حC15jUk5 ^EMrJ1Sd|RÿW L*@v>? pA?94RGAEEƼ QIՈ4ГW4oc''MKϬ5)9,QMG&zdiIqL+d̯冸v[MP>{ubDtAga;B4,mw? kHre%Ι4(|~8c,0\QH{Ɓ'\_ٙaNu=cOU`xq|Cywҹ)zy}-3sm7,Zg2b9eʥo uoP6˩[EY_{9_w56}!^ͼR0TQV"M3(?eF6[_Ұa!>khҥuٲbF~׽Ì`LYyS8> 7F Y3GL,Wq*tѦ MaXA2ҊW/V8rJH>N3wCY͟zoiqFP%6=!GAdJT*%k6T>v6 E[>!F5yJGŚFz> Ƴ7+նZ0/L&k'+ ҿ}R*'[D+lDwl;"pB<0q eBq6@fDHT;{Ӡ%ް欥M+\~MQt@ jjŘد?'S~* y4koɓ~tU@z#;>۬efjpN&Gn+oh3kSwqjY@ ܵY8\J]= (X r'mpCVdH;|#HgA &ϗ)F;o\D%v`x/徑~>PJ\_͔)z:WBeR2Lld٧U&upvU0ƅbo&lȠ2 SfM:^Z,P㯾*)L|@go2WeU2Ќhb]U_'8KV\d|(]=LO7( /9 pt |4 ok].%pX|O-pL{" .7 _E x I&m։u:}Lz}r Ho@>z17!8@O(&5Q!vW%Όye!I30#1y3_K̿O{d,RYlOQXUX9iM%DVKVtNeoϖP 8GMrb:ՅLSr=Tک$MIfݟrG/z}͂Ϥx^YX).:?fUa\ǯ0A}k2c[r>+n fV_vþƿ`:1Oo(Mݢ\kOtt&o+P3YK.ݩ|fء\U.JZbG.q5ۏjlkQI*կ [7-zX 5;oBRKQgW[9ij$Yحr-Ű[a->sVap4f^,ut-&K6/sO^ƃW7}ܨ櫮Gjr89i5p=3Jw'b鼂x! 7G] kX❀2R8#g9[F~%٢Ԁhd)^HY#=[=e3Q_G~#zphM)]hg)WsXŽOߌ~5Xbx}cjDirIh )Qo_$ c~T3%7ق**8JhrHhBǺx% Gz#z"A.)$2,fDاD%{i\,sx(s?>~U>y!no|ozB$`n)cB:o_ ޿zO oi̯=MV"[E"OְmU#1R<[tHn'e›3ʹ (ƿ@[&2idӇҰd= }H'h^/w}E*i RBrZ{x{1$)}.w24w$rftfW MOW2ZwF8~Kn?qLa>Lbr0Kk9e!jF`oCcF{xM#V*Sփ{JP"K9vdptL=kUTe FǸgx;~x]ֈjmY U,7 }d-ॶ*"LgUS/]Z?w6uh7g/`jW\cҕf"jK?媗u}HTt^X5o-+H,=VB<[4W~)(4!@*Gc\qlĪm\n[>!Q[*pvCc+݈F 2t!2djPIdOP@xQ@nL HD O牻6bJq_?n)nђՙ=/w6>V]HEEH^?-{|#'|'ȏgOʲOi~E)?W5u+ u_lw) kpj^*^F&fRhh ^P|L,+]si JݤB8Rg@x]R ӻ/Ff*0vo@҆ă˺[T;j*ʭ7VxKʾ""lmSI\jHxlj9k CsSʛS }71)sdeji.M<T̥d6@cBbޛ:fN;F `A{,6; $sk/Nǝ5Dfɜ*L}bq|]'jԹQq i[|g8fNZҠL)+OqrzLԓIkk3 ېJD}'NT4/JlO>a Mf(Nzo 7Th'6cܴttUJu292 ̅U@Cw6;R,T-kx^u_I9C MmSאMR1zDb[-L[MXR)c1w #"jHAF+#I0]c@DUXR"pP;~xVӟhmd?~v8K?A:]Œ%ɃS-ݝ=-)(/On쟤d(5-}<(Jǧѿ$etxtveK [S g ?7':أFw T>y Swct57[Xw??5<G5?M|*A?[8G>?fp0o~[G~[x[Q0(JKQ<1cuv2`!Q#/ 8?$)"hz8S\W_JVZI[L Τ ]xcrT<_әŠph @]@8{1?{ooֲe'jp^f[:#zkpt _Y̾z0V ܑw{:}_,Ւ1t U[?-dU& Q.LͳhDRy=zUoZ}c4g>+d`삡oVEŝ䦴%^nG 3'ߕ;.OY Bk;n?ѥM;l"LG_\F:$MJ}v(uLՓO0vʿQlJSsܺ2Ks[/yL$FٞΊ{b-=3:1|H RoPӐpȘ ʤbQޅ;kt*6lfe냪j[ n6trёP"kNחJm-MaI y(ݮGjj STa<3|>dx]V ư*SxehXW>MBj&:x:jIjcO,|S oj_9_ev:]hъ*@/ i_n|Qw%z-HpHM9fGl˚OlZ9l8Ft2fq5ިTΝuTCpEJd3tPyqa/uXxN#UL Vǹy #oAi1ww\E0 ׭å12u.qC4Aha(WD$_|=Fcy u`CTQ $KB*grRs מ>s\8u$3w˒YM!gԤ* )Ѷf<ީ{l:WgT.G!1kI@K>*vR"튘Q*]/ Bm9L$ *j P2CHGG䔣W'e#-HX:wʚmYA@h %w\#伆c:Y~F[6u*2 JrRTQN]÷CѪag!*Lq1!GaXVTb:`?3 AC.G0w~L iK%nDKHPU{0ƪsfvHr-<}z`UW83wޕ̺JirXpYg9mgUQ?h+(CNPy7eCX&ҧVgpyӟ/q|t@1Wx_^PXZUwZJoLðgMQ a;N͑ss;s/3&Wˮ>=sˮF]uӶh4i CLCa 8KEY6grxf*12 ;༙%_݆ tgUL;nb [lMd7f4IוnܫޱU,6X v>k7*gUfQeɱl"mA]|T!سe-(6VB m 'vFFF Z*uӶOFoG"g[ȽXd"g>\wh$b!ugNãR.,KCg:^M\']8Iʕl+&**7/|dT-K|U_DYVt[)ODU? vew}s5;BM`Mv }.Vro^-z =O;PqaiT֠qQoS5"egCmV9hH'QSOuY]1zUjEߌɮ2XNDALx\hCU5Pzh˶^_^b[X;!DhɭL(u\|\7QYhj.ο؆"Gi%B5GfN# ڲ wܳ$̘Ic[`Յ$(h{ )KQ!Nη跚K:巺NSi&&b›CÂvu^4ɽج35fέ*UG ĹdxڐGy ?G$ 9:DOwGW ̧"k {!%є  6M;.)jGxõ&J6]te=U[G dII;aJJp=+w5hJFO%!$ԿVϢ<Sҵ_ǟZp۲[, .Wy(dڊ/EIt]{2z sfXT3 sƆ_=ysb796*W|dnE9i:e<53dBעY#*U>f-سTG{3 /d2K_TMLV)o_a{汽ۈbJ 췴xwcLO~`ZTo/۴^{.uVɎ5;!ͤ1):ˊv2VϾ8Z[$l0]d+LuLsZuh U6sirд9}~ Bponi2D6=(%Cӡp ՏCev߂GƏt:A82ZmaN^g2{x/}Y>NFJ [W=r)cTA)ʡ\alGiڪވ ׾"B=x9Ô{ۮ`\s]nwወ{9-Kdܹ`u4A[{:>I~z7̆2‚z} ADʞlk|ltY%S5J[Z-]R}`Q|m9AwbwY;7 ONOj1NpL͛N$1/[wY՗Zۤ`~+/SlQ9!lOn Pm[zo-L+bbsb,-!z/ ­?4인oL5@Zdr %>qS̉]6Mļw"‹W`C*:Ls jn|B`Ż{9&+5{'h]Y☶nְ*rdUJfμ*/͈@Z<$yŞtPJֻFT%H&/|f={-Mԥ*G>C6t[zuL."pi ~twG>WxwR0=x3VšZt^$jqL&RfImu[ HN7$j#KݦIDAoYɖ.n^č4#{oѻxc+9W㣯MJiK2b@~NNAb0Ax d0Q?}1D !|Q^ s_C؁u &zQsuk;>|4QWg`nڸ@ )ɁP&5H@$V𷹏3s< !Yϕ~.#!=onZߔJRf.n>~D&ؑ!R#i!@6@韨!nG?Ihp#SeK7h.&Qۉu&bb`Y TFAVVfh!FZ"|1RN.x_g<:{0=8=qX?6WWZa| bCң%O%c.;lA=OQs[*$3(C?"%Vd'+''+S\E/L kTN/ oFuv[0 8GSeCoW?ξģ%/($*g?PKqZ&O N#SDWire-assembly-v1.4/SDWire-top.posUT $r]$r]ux cPcP]o8+,x|JsmgD2]T׀c'BCLs9i43&x/`,GcD|)Dj=h4N??(> 7{^ QʟKe!?Ca/Wb1YP?/g4G>Q2tI%wd]`4x+-7u̖h;iB&_| n>8Âts"nPSOS#V8x'APPB? p8R"/:o2u֧đzwqc# I`ߵ>1)s IXalar;y9U׌ _&i,2,m9߃0V2ro94Ml8Vޠ'PfiPPk?[auև >SxԈc@Qkb|T(OQO [Qkhf>+jix.>O>Lb/syʈGiOkrw|6#cJ?FסS5 ?uۺ6~Pk+Uiz{.? uWD?N$Ieߛ#F.iz߶OqU)ˤݾ!Cj1ci|bˑzN04۵_w@-Yuo`T5*a*s5wu˴ܦ/,]lO`_u)bR{ G'PKqZ&O&SDWire-assembly-v1.4/SDWire-bottom.posUT $r]$r]ux cPcPk@W\w@mmZf> 3E~o{ax~W0`)ÃjUKс es+~5 )4J4[,p7`LZl= e!<@pH4{I(}dP= ڄj DbSBd{9R) HlO~{&_s8:n?Q&R$ QhRI$81m ?.W?qk\ʈ;HrI<2a>xmR8RmSz}3_ަir!ekZc&(0V!cR7܉U!PD~48kƧ*СXc+ilj8BukRէWӮl|"9]{IZ`[GƔFYfϗV|% %ҥMEۻygmwk`"sf+1_e%<{4M`[8FB2⯢Ac B^lC>Vƥ(KOƎĹ -e4} 8,[4%5D^% d("\9ا\OXWʥsbT4mn"iP塙a(Ca_armc͢ː-9e W 6`Qsw"& )~11N- #=\cO[,gudDhж{=ۯ`J[A]Exrjv^{l Ow \Kۢ$4~tk(̏O8mM] gkl^0Ov3[3y6ocMA+Yo坺S6;W^0 _ )e(FąLt)~K@FzZuI#hn2(ZNJ-ٹ =4]?M;.n6|o  +Uz4u[^9+TTArԂ ΀~+(#".ӽ&("i1i?փmC Nl4ҸRhj;ME;8ԯI TZaq-:uxd~Iír3Z LuԤig2kZzB;Ao^ %&=ɸ̫iN\KYFA;qQ!T<(?IZge ҇~#ƞc4@񊪱cM@6 Tjh=lIhl/pԽ bH2,*4ƣI4tbQEEyM#?Ddbv:s,kaڠaƧ/vf'%0}-[2v$=)~NR0&W:pBn/jc oHRbt,N[kPd%xw0R+8,f}蠬kˁdh8ٳ[< pYqSU$[FZv6αp3X`׬KHb~$ SDb{;$E-QCzJtq2=C6jRzײ%(?ӥZ?2FgA\$,͚ɐ VmSA;$Ifydm N~) K9񎃵[3+W+ )a;F*-˟8#DN<#7QQ,~SՑDw2z?ZGM^3`/2qScki/#X~X?IH약=~w\ϭ7hy3~l}~jnIsA*g> J8MOszQ;(Td1-Pdv!Ib &1$8Q=*ݚX4܎];Zg8Z#4v =.N_AlcTӭ}3Lk!dMRH?eg~"ڗ(+9$RHN3bVtg;:m8ɯu);^x.GE,D"GUQpMNb~7ȚkjI|/Vg٨*ߔ}øYؚK>%|)ry¹~gi.Ur`mP uk/XdI^*AyR]fttut>薪QE;ZzJY2ĐqLYX0]vsRicW)޵]y?9A 'wUWPe.〧0{^kV eEX#?n[jxYl?bZ (BRH̛''V{ҕDTKGѕscuӅT%ss;]a˞ -o\&Hl֓lEe&juVqbt3S!fZ辪ybhl!B)ΚWqқ.~rtגO:)U|OKmo-㠠e+I*VTF! Ħ9 idћΊu"̪BsN.b^ePEz`%Z86nRPy ĵ@ݶm,o$"q>*?rD{z8TUZ: \.=4ܤR=L*s8QAV8n7\y2ƾX2j"@SRȹ:KT|G`L[Y0Ҵz}|vfVՙ|d] ī*q\*}xɞ4PB#c#;AP= 9<]_JU]P_JV@JȍD yҐX n WJJגՋ^!jF|~ݲjgHSM?jxX []KT/:+2 |=+,ʂG ,5)0H;ћ"/d:tݗzyA ?LINAkiƠM;88Pd 7VwPoՀ nz+ξU 6c3(ZI)eBQFƨ/LR'*8+CDc}9۱2fNj1XdkGK зA1- X4|2*m*\U̴U75*>@AL>:3IʊޗޏR58mUq!G5>2pkHcV%-.л|F{ n;QQe쭸TAqviOB ( W!g~Vj L- c=,=5j3_sKNd~Nbʌ_. @dfܽBxq=(W(v3KyOr.a]J|F_GjSStQȧ!z%LR Ůd]zLBPBj @1R݉(%)0a**VpGzE@oFB칍P 4ʩJYL͠>A*!JOjȟ 0e1YbT!3 i o&f\2JjZj#S1XlgbHє"A:$H(GƋb9'a f 3x{HT+ f.8Kguh|pL_ *nb(3=3C">qn3CK/wZ[%uZ fg^9QSIMW&] . {)1کSTOT box!6 UEC cwT0#1/)kl`Ta ʨ, ʁԆ">.!S0&3QJQw2zQ bgYwlSIy T"/ XY7n\/cmU8G:v3,P[BǨ3k~# +KNo9$'o ٷ%ASuvaԵӿEQ;JN\W :(4T;NW.gn|b8^#!ƌ<~iů sx@ [ù%eŽ ?VikVcl7I[={,C'hUf6ڦAY}Keu'"p;fIy4,fd#}w]GlfK"l'~ !Mu`}*ݭu]9 C,Y`O=ypT4; *w>,(s:$#nD7u:anw߸8 45Z7Y7mj bĿQֿQ.lጾ H[;RAͭahJdb cZ; &^! ?f%ЉE >:[X&.A }=x'9j'#S~A0{H}[ "aHCâ$!$`5[Fv8흓Lc@v)|)&%7 &n3 ڎsyַsB(rqZo(1Q>2Ҫurͻ 0LCghPmhd:M[] KS[z6]DA=TT`fq"!wFl3r|,=Y[hM P8 _VmmrʡpP}noF)zE6k#/,0JjI[v`GBhM>ѫ)6 hL j?5X91ѷhMZ:U!,*M$^yf6pyj_*t.-|{w[ ˛k|rl26bnufg39Q^a<5LZPXk⅔JsF*CR\"ڣ)}~Fhui݀snHkjv+^etZڏ06!ljQQH[X^}bFI,$m'?}F&%. >({T}n8'_’WRpP/ w֢_\+z(;6|% xs"wגo@Ģ>]Mowʽ;YJ+&Ai'1(TD&0@-6bG X30;MJIFۯqxV [FFo`S.8qӶ`,ǩҩdtoprut[>#X֭tBq'$kv0{x|˪v͌UvvWͣG2M Y(EqiR#Tsd:Z2ŜS z}%=1P^I$>^o߹Gʆz] V2s;;mnx\x>}H(^rgh-G- 0t?bꦂOsﭗOㄗt0|\`%K-IR_]_'[i|P1M R(J]Xܴ[=".Rr hj+=)^:֮ F$@@?rz#B ڽ~tUhn(H 2Zb*0!0VuO0H9f9:аLQe^رLLwT#y^&R fECگ~]I*oM@<*Ӯ+OC_y1|)T&|]Ou}lhx^|=Tyݭy|x-}=my\}^Y{?M\}|fu Xk6Iy%];pdOU?r M3'+sC/vBD28N2C: ZIG*m TJ=7B -i@h6p FVej׺(*!4eqǯ.[5wL={':IGx\C sM X GN(!@b'i$b;fnA<SMY9r8yKR=̶jM2˯UvlevmON R~q~73XIW&6`-Dlt~yi uԌHǼDɁOBP .cX' ]3Ӵiv+K?ż+˛g*_.(X퓓xAֶKMxMiI`>-ĚI8AMsK OVsLnM.q320N9/ %ϴZVpvɰBlY?k,vS."27G^wLA h[iC `Jmy1MȌh j&x"A`YXQ*8NC;J6;"0 f¤\l -˰UO2ک53?͊^_O]"/v4,j9]J8'*<(ew.\@OX\T2v f+P^"C?ƮYT.<ʊ28lcjdhNA +5w>Uoie1,Lt lX3-Иu`kE' Dt԰1c-g7N6bW.o >+Rx5 :2YOtdea j;PRp./9^~g1Z#YQJd +"Ž2k⤫Al%9,/pP%_33?MdIM#iT'nJCza%[)FsLpNq7#Pޓ;Ymi,WN^Osm1~}Yqt;S2*P& tIO<Ĉ[XG y$YIl!岹E9}dCq07,᧽_b[ZCOg?pAqg$V o`R) 5+-;-2O–D qZ#$vΫ<87 j"@88Ȑ{?m#Ri)3;#Gjm|EZҝ^(KB NsQ)_\ }\@O3Ptwyf\*h v"tGP;nepGhD(%6v5"VLIL6_Skq>x>p6?¿p^״w>&nޜy/Xں>h>`h.q:?>p>o[T3>s8 'm~:LwHNt0:*U#ௐt`5+sVnS<θ6V]F$LQs1ąf-u#1#?Fx:\uEi5;-tʄYW4[c >ht2kzolHxTJKh|0rpe'?ɛ&"֣H9`o1)yx3T |VOCB4ӐCQ[qb9cV2-[,CjBl|@(5*{ $ڒ>&i_Ð^lZvRl(2=VzuRTjnJoRM4"mka1?:-/^bV{=qa@R9)&O+W>+|ַ:Vsf.(33wͳWS,_oU==v֫ZIݒ/,Z],˼=*'BBnH}: H CAiY^At*y=1f捤KG<]xŏo}JȕM=0vNsg &U&L+1(Nl:a|OChyV!)t/Hm?45) $dpwv&E88&ězם֍Drf2n3[@2Pa ps.bb̶e VL:5 Ɩ+ b~ EyQA6kt9D&Z<829FQTp#|&:IͶ 0jHbJ뒒m=9L#~h^+*1yf:P q{ъoH3oT38pRreׂe)jQ4`~Ԝ?ԙy#۲̌IV2L>)1hi9; 77ӻ8ݚyy."OӜ sL~'Y8wwN`&XChV6\H$۷K 5]KӇ}y'"3zRxS`m6a3ѧx+XItW'*_d lGڍH_3[J%k2J/!%te*Yws3_"I W?V"1.g9ǔH#835-zo_ⱶbٶll^4ȰRL3:I6J8ܸLHL%VhhƻF*RIqźeө+!s'`XG} 0ܾξ={ UR 'w}kAnc,vg#9{Uk9CO^9AV471XB-f*NO:xf"<,8Qh^OmO޷C-wޤz?oՔAR1e\We9<K>'fZ)oHUeMa;&6)Z3SMt|*߻̑ͬn&!xdpdNl@x(IP+,Ԧ\v½ۼUu2y8*W9F2ХrP=][@f& S㨶7 EޫȂ0C*Op8/>[ c^ /Zl[O$/⬙Lj85{@ 2T7 fk"ZGglu 墢xT4%&Z(C8˜ S(6HKGHv0GPR3:#axjϧrTNFim&*V⊂Y-asYǔy巃Ws!_b3820!ܚgߒ|~ r~ˎ,,IcИo Êq!WsKa m?yD?oII_+c=1n_"Eܶ64.=39mGm Z# _b nq^ N-ظH!&cԲG=-V^ex޴7_E,fUOW>ŕ0;5O#/ Y90^"9G[?/W˳2_}"ʑbr=O ȳ=Z̲ nܺeT/~ztfSgz^=TNk>0 cZAu9&QJşTuB8T"O[X(QT`R 4؅X}h-Bv(5n9𲤞A -&Dl#~72 / if̟ꘆ@3t @Pה,~+3 u ,gRsMhw |_QBԺiA`*'FB/ROI MXIU UͱO?X{+$ێ]14Wl>ph31F*lfR4ZmnbI˦ F>M^{f8"S`9kRT<r`|#q| t[_I-%0*>Yw7AsNsRelQ{vP"7W==AV _hHv׈';Qdݾg-=,6,ƷWV nljۇUM)w6ƻ'1Qľ. M!\%}7 9, A7| f6I rDl%$ Ke*ϕNoZΨ?]_t{բκͲ.J ʐŹ ;@K? lxW!Q<dLsKn>4B/ڞE:~w_LL2;xӅfz.*^d3fcq9&ĈYT)֕8V0Uu7ɴpA̫ gԧ484V0D, *VN!<.~ܢ}Fd{9dޑYHަ]99Œ *ѫw\l "7[zwV 4 S '%jY ^d ?hA40"4Ko_?;$^ Qq鋻B]9Sfؓ(u}TGWd@:≪A #)(Nz=LOP:x#!fLdML$Zhn|;-J98عX'Fv|^3߭y^PRb>CYnWFP&#pٳ*M!]7'l;5fVF =Fubs\ǿ*k3CtCJKn'tFL@W33L8D\QI%m2)s!?am ID'_nߊHF$bh"hy3 BIH]4LSqٍMR80;ldABW 3zudtKJ+At!WUh r=N@IW"{TlJ~VJ:v=0O[G:؀E܁;ZolؚF ?O KB$o#,E0^T(Y]\2?50.WL ЍHp<ˏzPeDE39OD/X\Q˗PSRumYu{.VY*8k!o(<:ķE^ "nܘ5j᜕V88Z{zKr=S}]f̘i{Iy猆jI9 \wc ]Í!B UG2ⶴ80'!aE"{.t".xx d.t.C?*GX*mCuZIУ*zKo]UK7bn|!$ %3_ )#[~&6x)Ɍzth `HDo\)CGqo<]Jس)b4!Vb%8Dmb}~00ϙ/00l|s_$ /gmEd"KtC:mdG^fග%>'k춌sW`;gzwA0<^/R+ u* 7jT)8qh }QYqo+&$"U"ǛpyZ"6_ lIH½WynFv'I9(/bٰf/6XR$_~ twL\q7 q}(5F'sЗvt:qK$3VX);_xy'/{?}&u=ql`7b~|wV!lIo;Wak1Eoq2``B})߹S0,qCp L_ݨH<!pYanOޕ6dޏ;)E;X஺xP7]9c=\ajuemch1rt,}zbBz 2 #}@*{0_E(b7=*(8rC}A4ȧ-T7xsSF;gɦ3GHr'Hx?u;CAZKCRl vkFE9I6~}Lȏ;ȏ8 㵖f/ U}Z8%'w|M:bq( CIalq!W1;Y,鵭/ S'Yʳ.pTʮg&m[K:4J㞒K=+(+vGUv3-Y=E 5$k|5$zK rDJ5&һ3=DyH)pd2a+x̫rt䔫_&Pz kk#Xo&(JoJC1y!g x3:iC!*ҭ|id@Z똛7BlqI6+E!T&_$CzyXx[(_>b!^w?Z MZu 6mDuG[lcqg/}+޻M. _XfCf"P1NRr1Nm ei*_o{8cxqny^{ +z zԫzR>jjtZ]r-??T_koW|k>ݧ.i/:s>[,FK B*P.6aAY$J T^~ A!xTsԶz$z5|v%P_Ä.vᗢvÇf_'Boħ#Wi͸' u7哟 '?n0WDHD W#wM9.OיEw6KL!țoE M{-X=`(CtZPJ鏢?Msh23w(*k%JC|ZťӵuQAi J7k$Y'e^ϼ8OYON-hFu6SD/Zq6(eٌ 4 ~8Zm|'"Y˲JteB,mdMGdaQֳGBZ,Twt!Rݘu*-sqtElf3/qg(5Tgzy;焢 &6IRR2"Sۆ QB F;\aB (wOVOr"ݪ7X_W>ïtP&AND!JEVR)y Ork:[0YFu9K#͜~<鈦9MwCke4 '4v2PbL+JybVXfΐ,/]qb(˓Q {ZƐG&'cy}uj9Z:c Wdey\z])l8%هk8(V_j-8pvλVFH+FĎD`j1.jςm@_|x±ZCUَn_0?y[zM#kMC- v_I0(bs3Ùbr_@D5J i4/.S>(޲ q$"ir̴=0&,mdQBv6:T@ztj:5P/q牓DOaeWK^泹9VQ,V3&1u 9Lm%c:PX{l]6N{@㶖pI~&cBl~ِc=חc?ԓlg{mx}xGXTϘPz_Mq 0e>̟n~乡)Jզ"vO2KŒY"!x U=ƣ"xPtK#}D&'P9 wu62B: p{_CH(vr+{sy$W\!b"xtXqPiCIR8;W?kA2Zmr=ɽ꨸;lA5?,֡`oK49L.-%|#CmQmڛB71'daćDZrgr9 Tby(ɘ!{cv+t$ }E @I Q;OubR"Ȩ&WVטx˝BVs] l5OsOA G~p U+|T89<2PȐBjn`^Mگ½0+p*`8yGhA~&R"pʵ Qm;Պ A *x֧i%]d{ Imʁ# B]1@`6o YLw%`]Hӄ6Y.wSoDvO)e]x_\XOrCw4yp" Xedg IN6ECfRU;"f^c~XL!͉lV[E+VV{+">R h]k22Q{%=XcC'xӟ(p'"c@1`-čRA!@ щ!!C԰1u7^a^QZpk!Le -D$nu$oAsBy<!q΃LbyX(hGYE;aR.בOEuIt/GsRZ %nUh;⣤ŒS~ Ӻ{K7*e(h&R [YSBF~fHIhWMTc_Hvn&y⋄WFd0]͒R! K5e4PeHyzYғߔIcT^xI5 $Pd{X0%AWoxuRX X'Fv(z6/Q1w\ͯ`﻽'5 Ԯ-Rn&'L@Mzl#|(&k+f 9AȶuvuO4+E4"2;y$4Y(vk$I .ג\+CjbMe>ƢA']k4b0٩<h :\m=J熓}^b7:MaMUލmQma Pq$_g)۞N g/WWB&4yF mRF~8cxGL6j#jZ6+LڟB|W8j`pBiQ^zMn1mlRn$P0O.խ\17][TaV|j{~fi5|Q\*%<†+oPrb9Ҍw$V6);cuȮ=M˫j(oH_Oe҆[ډ&F4YFiఖ*K٣VKoy" UECqs`rqPG'FptGVx/ڥZzNP%]Ԃ_,Qs7Fn'5r&ܖ!>]#joK2\ Iɱ-0IE<(p`-o )[~[ʨa|*+8A~4S*S2w( F8+oreIfytξ(Lj9ΣzBkW+ 5Es~( ?7)BL㐷a3S JZtZN&59bϦ󀚋JKk^e^.ړ;0M^{'7xWJjG>wPc_GӨ:*0t_ h7Xv@ VPe5\zI B H1#@\_u5!ni| D4))#>X*uvR]¾?kOqea׾]-$-K}7QJڂ4M/TlJM=IR޴EZ 3s6tPpkd(\O~?Lgk9hߺ:K3/VFY-;9n搚:ڋ}p6R$O%(Z-4fke*,Ny){dEFH}KU"@T_Q_V= ZJ>m(!z>Ӛ/Bߴ-w߮fE}vWcWR)چט#{ʠ5`YԯC* =Eؚ/"5ndG7grc m/SZJ竝ke1Ly"e]ɛgQP/Nk p< Ps{7Io;g#%ؒ!]" D#*A_|?!/8%X9s^135"sپ5tyk֞s7SSRk4vf)dW=AbQp||;BRUfrҔޖbRەaf)Ěՠ DW|+X&ANwWM[:g>q/4j2@sXqɿ?ohK^w$0Ur<[_jկB¡ :;8):.Z>boQ?NL(1! Cr 4g :ۦ ..ócȸMr9ޱ,t KDq[H怚 keB<,&z}p˥w&_[ 7ژ3ƞIܣ(b3t%vTCj{2-Omn.~"W&($oY`z$\){TGTR )uڼFy9$K_nJ.>b@&,W-[޽\|r|Iv~b$q P{2 ȫ[n> ڄ6#˸<{ƛ(^"}u?>+ki &~9譃Lp7-mǕeimZDnЍa@;O|}͵-&/7r VKT?(CG*_0p2^" Ե HNU&,O(޼K /T֣{C%UaG~Μ߭+|ώu\Oipٰ}Y.:!] d3+@eUϥ"'ۥ+a,dey]P&C=MX٣vB:P0}226ɖ"N"QW [Mn\)ޕX2XQ8fec~Z6<裇bor:y.jB&=oH-8f^蓘 CLfd@]AgBB;b}0V=!V4hTvʅJ6ծl|΅L_c 3h7#:\WH_s~t.Q/k9)웲̰/qrP^ZU[) ӯls?IѲpc(eՆclhVBE+-h Ɖt*X[ndBGoCCD9KRā}ˊsR?Dh߲AפgߢorERTQ%i|~l\fdA|oE/.&HUq`U6w@dK\BHXck`?rSn 徐U֚ې9)~Xv-ls"RY.-/ـ` k8mk f* 4jswqwʳGY[:SE5ӄ0TQ)N@b5>>5Ȕ&qZP'ZA\URYgñ0۳[OjGK ;ak2oFLa[\ZȩexjXX@gnap$W1b>bvhUmi< v^br/u[ U}Ɲh|h5i>G8 | Ae;1^8X%{nؼ?~6O0&@'٠1C%ɾ6rې= y&I/pfh,Lsx4zme;gc9-lELJ63+Fh%+IE%h \ ͞iR{sW%bm?j+(JgzxJt ro6h{-SkPB6tƈ~)l#|31cIg\VPVn[%ZTGk.-ZSuNmYO%-g9ϟ| l9 _h,RM Gϋyt͚_]Y/oMg</8ZPX  W? ;:òs7ejnR6PI5]\-A3E|F6,a'5h ts}m(rkܹ傱U-jWܝ^.cׁ atdrmI98\Srkvi1CkQ Qc bEjϏIMsDbPs/֎sSS8X`Z#@Ҁ s͜ØdD\Aj^ZW&GNG}=7_'Vt]Z?TeqM\U`?*oTm~ܖչcrԙHJ e`{Yfiuya84TL\΃aЪ/}o7+_27FK{t|2~q:jvgZ~Ȣe1I@fjvl^'Er' WrP #F=}p&*NvUc(rs#%_6`ìlk稧)ߎGS[;Y [aw@0ǙcŘIG&H[$sHEu2D0*bagE@Ovt)Ic`DAS^4?n r0/Vrypw9Kn6ћͷʚÿz5XF Qޏdm16ǁ7z*"`zٛyvGvlhң[>D[z 75rϯj-R{qj֫|\i~,QFK^}[R{S4Wu>, W!l-6ju\_d}g̜yX{D4([syX' /|qU5bm]N5]YKjY'3{gyO\{@ xMuى,v_i\4]YA% 4>*q"L5d?ΚstV0py {8mzGXv[{\|&}o|y\a{w~]4rxQxϪcu{ f0 [i,4;@G;U|F\:m5k OեCĀg-9,Z!OSwzB~WfU~/Ͻj7tvɑ-{EѬ dH>ХsL faQƔ;a4r nZ$0فtNz$ŅGf5"Ķ/(毩V:]Pt{UH .&@I*Ǭ IvTªywwN2=dPokLCA_okɺ7@ѰOڙ$+oG8|䨫a j}$Tu:se0t/{PYo*^!6@G\) 4 -Ig=pQ*EI-S^ z"`~~3i:0"m yoJߌ|wt :ysm)(2%oFӬi!ݪ<,y2SaJ?5i1Ane~.^1arXMHwVGk6e*&1\/2{z؜O2<_/`YC Gp4HA:aL+(s[ٍ7l:@"rgp/ʜ `;߆&= Ά?p:/<#'z/3RkR2Zx,9J&eJ7g?sD #;)v

^Gnk?׾[]N:X>Z,CanʨUܖw8ʮ^N>xlJN@̱ \MNQf"lZ CiO})$ (Ԝ9XPϙ.J+J`g] } ѡ%1Ѡjp?R_I\,Q*bԪ}K ˈ)llC[: 0dH򗟫 K!9-TqbClGYt:͞ HJx6nHl$:,`^jf`A8]1Q#Xj}+8o.ܯg9scՑt 3zBmI8ʊ= ;(ƺ+o`nb)yr/wcԟcap4V(}E![a35i&33 iÉB]uߏUwe|/oZ2&'0&[3)6j_uBݫϓxx>>>pޞ^ӮX8˧3^~qpXNpe?X5/Dp#$ ѧk%uT}w} Q6(aYf pÑrkl !v!>r;XDWzp44fWÇv)A4΢<XVwX"6k[^ Qu}ϒ"V0) RD&͈:#7AjFȤ@~L!LU˿\Gd}?OF5i/Ъ6I)+5d_rʎ:^>N͸QLsX޽hoJ zj [Rz4558'煫`lw@֩WMr{Jꅏ > ?:k):%i tq\!:n$_H*fk9S,uT*"%l#?F KŲB$K0|R؎@H~su҃v2Ǚr.Ml8jPr2X~8G5w`k|wฯOyy2aKɃ};q1ԃiw.jgF6$9 ǬDgPA*R=)osGUSf] R/{3`ntDTbY nTM28]cE^ cF\;=pbm]|r` O * '%f*+-hpE]EBsyuZbȠXWvWr? vQWW@yt{l{acI!H^G '0~(Z},,WK>/@Jd1;f$:Om;3G˙պeJqU-O-# ЕJ 끡 k[ҖsK΋~ڴtxK_-gɜD @ͺavH x:{ D ^p09 {!腰ME{>^lJCK͛SMVZgT١rHKi6u,O XKiXnߪMkcjF#'PxT Cv[-eJHdq*6[|"2sϋ[V6aWO ;FX{F= 6 |@ |{d04OMSUg ئjp ( ذ1da4Rx|XcӹѝBB iz#a Wr`yQr0燪۵:/O@ډ7^֦ls.5 VhR]UdPłDw cђ.TQB裯:͑)"b50:2<v=[" =b a>&[ع8Z 7SUF4͉/Q떚. "!o;=M8^q"~чY+D4J1V~ '>hey_ὴv@tAtjnF5ugmDwդy\H ϗ ѡq,I}=prhQ :F^\Kƙf" [i3@XnbJ\w(*H0X0g|"ol aIF鷏mZ9Zc{ `0?bredWZ~Gb@r'SgfwO|-?},*+Ov(7VXPZu/)bdELaʩOVq.ͻFxW.`Za47%.[6O?W(]F04ޜ<Ⴗ"q,xVZ84]ms`Z@Q0ȸaNgEj<qFΟ}E7x% (8NOZ Id l J_96x>N_Ekw!cRUѭ=i5[&E)0:@No֯4@ .9i"//c["iGkQ&𳶯Z4́F`C9ː ́=fR6\LpY@PÁ! 14dߣ|7$OLv>~ξo%ܪ5:KkD <8vs0-'x,@_8@ޚ \wyza[#Q}`pw[2ge$cߎڢUs: pY0>80"ƒd%".nDbA oJ>P|XP5#9#S)?ŁRual7mz&(xx{LJ:"9h&vF7,`X9:3+ .vx{O}hgk<)lLh河X.3B!~yR=(ZҴW^yZH҅ ?|bJ0kO\zebW¾Z.UBDavO(/DV4} PxqO uiܜGAV|JlK|nenvI]ʫ#kK7u|5?~& B&} 583rR2坂{pNi@Sl1D Ġm Ӂ8N!;~W4uJmiU?i4 $Ehyg 0M3}wbwBD*o X^$/{5!Y:[ ,j$Wfp#npe $G!+ #R(ĽH*HSGa,=ن&H޷H\&OW/_$6opH@SQBﻣ *_~ߡHRL+M1l St[6;~ :՘xlHcB)-ȁƹ!DtqDDrʫPGIShF$r er88C`l ߿?[W@ucSr0č~9P3ť83FP %CGdPCpPL#G"*! K'.Y_A0Ғ&A.J4}4ƌmba}+|Y>& c%ۻ,%KdDѡ>WSHcoQcr}"_D;/p m3̩QS&o5\kbw  _:@:+/𿧽̨ݵk568nzn*%W_WJ)s5¤1:3#^i8 Q4Sy}=RU|?T^W~U?2'PrXZeNXfuBg4.]K~^B? lNzW' gF\r*y9Of$Dc%ksEePP >;0ycI-bbf,Y --ff˞ٷ_vs""KfdQ5[/2sj'Lp EKCf >gܖG XՐX_a.tJKwu^sPWdu `ݔ ]ٸe#C!)awt%ԋlGђ%TN8z6v}IýKCQ.Ե#,DV:MTG~s~`OJ ×j97 PZ|pO.SݸA/$B2"9=̞Bnu>w.ʈ$M2MgeUFh*Z$HZ|5^ i+(%;[?bcP%#[gxUQ@X&˜(;!mBK>?h"LJX=|w|gZ0ik(GuB>ڡߊőzfvxBR.)aA!LØ%O?~ft&C~ |\*4Մ9m?7DӍ ߘH2%_fPb7lu8-sT"7Pٵl>ysDK'zXzmүgW8&$XEwUMС-GUƧa&~ԻsU +QnQZ pM|>?>#|!Yw|nZvHcBN%qWtPjqe swh9I]p@"G6pe`#fBtRӇNx-I.kR bOJJe>azd) t-rݽ(3x`ƣ?!g5#I^ìwT"+ـCEB)R2 2ML<'d('۰A8zRWΥdp1"Y[w|.!¡L{[IR;'L G;6RzC.˅EM GGu-;ۊT^g@ a54sxW,ͥ/G*}!Ybw=4Y־{Y"qY`/NR [:x:rHFe w," 5Krp9E?@ޣvJ )6 q,Y~mYʽ d"&q] E}V K&a!ІDӄHjWh TJyӠw^v^(M1_ŷk=' cɀĐ.]eR|e&[G;LccVpӯ@gHg mf:uUfz#?mV% ^W<`-,KL*ϫ|H(/ E g|6+oq8H!(OH"txCŜkEfGݜVofC fc<VټFm_H/>◳٥RQE+!]l 2ܯL =9/J䰔(qX -:?ui)~a&/ׂz(C={&/3wx|+zb]3BToYۡp絀i=r(EÛboV4L4  ᳟R]>DmH{4bu0%A#lQӾ| j ql"|Gn.R_yz c=Sbp*f=eF? zC{Ҿtij$/mI>Ɋ/q'~Ζ%^vK(}ҏM}Jafr** U;U"X)԰k@Z:Рx m17x%"20͹3脆FFE} oauC~KA-_0DHC0V4C:kpUX07b ?re1Z0l \ 2 #$g/8:n孑s:t۵藋0[\ #! Klnf%ݗ "oP3qFyu堃CuYC\ue++}6Eq:xqOiP-HY$3ܪr"ҙ6)@ѳJiBniDc .T;``@n٥Ǎ2:QD2#˰;o`O5JZ5 lhs-m1yJw3=SK~;[櫖 ,5zWUZO/ߤZ ~{u*v. _NeOkxL0O;n]Aw t]g GA> %BA*߇#=8p2Ԯ^F$Wvu,OoAO^^=pem 썜b3z:>N&ķ _}YESTTUi?-TZGl% hF3C9- "8|0*|L9:n#)aʤksqXJhP_[ynL᣺ڦ`ld,6+ҷnnQ^`5ӯ/ĢHD#p-Kp0 `8SPot;2mK{bbs>S$Y^pf?Ԭ^!_Rq!#^DM$mZ-BoݒБᮘL0|l0wXld"f~yF0^QbaRomkO{k\O{,9BڕW\_saU0fVd\ˍ/(vL^)ǩǚ`MkAEyELeQŵ+9WsژvK]·Ѻo2P2mj}7LeX޻?*~>'d; 쯏u*|b80>`ִ2<[Ig:w/D`jkɍ v5Q8 MM Y͢JLr͂z3!AѵbuI3a'bȾSW7pvT$>,ʦN;'"cIӼZ~;%xz;2G_ٰ*^3Tptͺ#l8ɢ SEǔ. ތ Sn,k@jV|?7sKx9H̛qsWiHSOvZk!tg.OI3#d̈́,.JG`w wQ kܑ0ĸ)Rtr$ԫ,F6_=KsXqꪬo/k~n*ё?jM|k&q 3'5}>ņ#g.ĹKͳ^kFjy~,@quR[Ǎ\>2`N ş礰z?E~aBZ+ȿPnBg{;Z>~TWγX]uf1g+wg`@)p!?;:Gכos=2t+FnWaX)7G*W7bN,VҌN,`q(f'~)o>t!:I/[ɫyG(+BqcVI~c_/ 5J?:׸>pBpwȜ8OZ=Gуf^)q5-Xޱ~*[q;vXVmhH.wuR~Err OIsQڰ8noJ,k˚h)a@niDG0?7E@m0#qNRo_;r6(Rxy'~yCqs.+= '~tEF^aM˼juEH]Sy[så(s:dyR-7[#Z̃ߍfkR &tC)ғmT%umדnn p]i4nr* p8>d֑"uzrX8%>bfڱ}÷-D/ܒ&ckG]"$Yn:R_=Nt[n~Yh g wJn5~nKzƆkQN2 -5H_Vs58ocf>g Mf΢o4e kԺN=7a&{@, Í-ŹЈ-lV-׭"ܔpc`Ӕ]3؍/ئ,}*IMzC5iPn6{қ1eEՆ\zow+ʧVإdWr+y/QOrkthI+E3_d e93DS, 'AV, ŵUp0| m27뾿{}.MgwƋkI#IN#I{R;R}r5ۿ毾S2iь''t7ZXſ4Ami(IOtH9N̗jn+{ɘ,/GHٚ"6Ԛ;m}ݚ-EwZA Ͽ(Em)Ý_)Sށ)Mޮ#L!]XhKt8J&)t.2~N$+e-Ub!-8>QLȿ:qce$No۸WtTW-$N2dZ270lr9r+'?үW`Ĕ'Xu/0Ov^gsϾOޑa>csqݙM ixr$1it Ӏt6;8(]9tX rr+TY~}BS {f*k>r|4ؕ)u_u9Y{9umsSee.oO\cb(ڊ.Z=U0VP~3._1tTR`LqMmpuǼh~5XuܔLGϗEG@9I&Ҵ(4/j>8xhY!_Fu# 绐:LM`)z@̮RCxVV3 AQC{\`ŞT`;g`,LCz΀F$+.9Aϖde k/%$xOwePm$MP38Bi/;=vodg !;:?eZ8blísI= \;7č<P[d[W)A.J s ʵAn#m{+31of;16Kkwv $qPa^j+\ ,tn6̨~2>hԍTZV&w_p>Iur$hoͼ}j!CpLl u;#G|y~/r4<=g䋆59jR>!b5DP -KJ}Qڻk9z;ڎ/5x9폿N_Dn#Opy9K8Ȱk}ɾ[xrZ'N\ÙZ,`aIi~Mw=p/xp/}x D$[[/̱L뀨h,s)fw #fC& \|?dY0.,AXN=0.y^+} 47|bfW͹0L: MrlYlb<1jȟl~ )哒_P I_5n:߆xHG_f1ezs/L0,n7Q jXX1ں 0ʅc4B8*j[ⓦfxa~]Q= %:$0{92s{7Qai043T[8H寂$L_8xJXfzKkIB.N_:Kv XmhZ6KΕ WB.|( \DJr~98 S38|oĿѹt>. +E7iSm}{:-YZ]j~yWt^]z{,$.c(e+1guO6a8<|"'!B3gg@NAr%o~sg3U/cN_p֖޺ޮx_N0VFOfKW!mfI|{cgyIQz}K1#Wg7c2HGYm=S6Rֺ7ٯIpZħrv6XHr `*q: wWk*OY%]4 i lwCXU?=q `u˕kt ""a16ZPbN(ՕJibՍmcq|tjt~\-=6P1[; &nJ .8ؘ9jSF 'c E<'}ng şbnS(tMLPi_ZOuKQH~t(Q̵?\Y B5CŚQKQV&4z:nd?0}V'b#~|+u; L[o ^3iAc]ʯq!0LQ9)XR+=KFɧׅ~"sA@JEtPCP=T wamFQ*sRa})Yt6B ؇jԟ*\oID3ߊNpS-VW390Nˤ p&HʨXuC>xڥ|3 ?t4^Z;a ^7tkbV5VL!j áwD[=z 3Hq):͉GnNΤZ$-,~cZhiRGB#BCUaGbhhp#Z8Fإa\czeI[R*\BB}?1?@2Yxhô@;a:e&]UC}D<1P_UC}?ġWM:!җJ*Cq+_ruNa.+i0+ Q9?RUy]UfpT,Y }& 쀖w'pF/5Pzk,xP r4xqi,POٍb33@̄,Z( ^Pc"73e)RX=Ӫ5|D: Gad\}ބ#| [, []f6u{) KRj=-|?zqq5hz @.+| \V'՝\weu9w#s F_t=S+|S~e.jG~_?p~]}Y{pΠ~~n:t{a~<4~>{{{zQAQ0K_` #;'e8̴&7Nn?!)Y75vtrVWpHVًU P! f(>>T‚Et#0(%Duy Db*!arL7|<\84d&LQ+Z;3%:==sBk]h$#fc׫۵jMe$gG狀l*K< H%_ww}*O1b3$ECR \/.f>`tM{.H_ `_P4k lr lSL+K}22ò;% ->ls$Yzu: ^/+Xkdm{.Z OnyO{OLsC!}hgd-ZJSĺ;6+_-}}Y(2֨?;Z̦{zd$_,]K*ŕE7/xK֑LO\ ˭^r~ \z<0^ ^Ju5~^m q-aUʺ`}E;)u*%؜ͱ? i5 {j>jriJJ %nHB*O%:;=-`9ME$00W[QFڜa8VZ{iO:Hu%g'n- y1zLĶVW$)?}x,M*$;I+c2wׄMHpspuy¬ fNi5V"5~`s_Z\YJʞ[JҸ2xIo'S59$ /-\iKee+ڬB2{Q~; ?HuU("<RuYGYK<*"Ib#վO$89}ʮߗb8mCBG  o2&t8q`[Eߴ0޾UꑻQΔ#ZdϡfJձ x XSiO#2[\%({GюS%&ohTɌKe#Ra؃j*|=0i5wodJ3<_͠H1&CX=ȑd , oK(_俢zV0Yp֑A{`fh]Ş0gT8TF4 ͠Lt8&v6b D~w!wbd2!J lܼ] cOulUf"mcTMTwaQp<9$-Rr# 7ǯӈ"I{oZ qnM3A~֩o=,IE4 e&R>0*u{2Gnr xj*Ţ4K*U toT,+_}I. @ۻٛLTL&񆜚L;T?95|א]\7P_8dr<ߩHw2@BjjB>JZæ, hl~X=502fԁgI-萠*}_۸Q4(<:cەN}p\h*kl0Ɂu7m&SCIrMNޡ'3f3: /8jpLY+#p4S ">*§<#;'=0İUJ~Ȟl $lvaF& i˅w +I2cOlU V9=i+O@ ~&#B-pOpl`s?񮐵N 8hXA{OAzyV͌`Zwm! v]dN!hc~!~\h5a=1Rh5 C﵇bjrXI9@s_,w 0..cKG|=rUVNQZ$ fhm'0<wXA,ېvXpVW v"ZZ^bp*7>kixϔ^"0^VZAcQ->0Gﴔ(JcS~ޱD$w_M{T7Zx1G 2gJ$GTAHS/Q%ׯѥWKVBH̽Z޻H\!mNlcā!oPFh8RBA nt  ma~?2?x(։uclV^,#F>hfW A+!WjZ唕wF@3dvcY@K]גc"szXYz?sHXx*V*B`]Y);MAg$S9Sڣ\Z8v戍LA!U] Iw| VV@GUBt9;7yVMSx>UV;vCGA'$=gP|)+b44~7@L@0X䵰\p׫tTufq&5~f*E4Aſh%nK=3LtW2BL|Nx[٢_-t }KÄ^<^N7&\/6>y4Ď*y43J\o(]- }@ug# pPN$4H(cjpo,/<@K5Vr%ĹfurZRcwы`vnf*L{`m @ ~c9pvFCP]:.W[yf ?ȮեZ"]z^# Ws^/9A-?h5%-Ya8_f IXG5 7 `QܯsةN,u-ͻkkF!PN|]rZv8yu;,e{Z~:|n˶?\G ܽm5"<-=Y!z⼀TW'>*VӤ7%ikKV-]d>.vukn f\y?@XJ1~)7Ź<.d$\W ]4ZrfiR(Giϊq:%.%nQCͅPgln:(2!D'$Jŀݥ&sfLzf39d@&S O0(00 TZYKίm5ChwV,Yqr|%LD4et.p==wkZ} Tս@/\ `,Jte+ei6 3qwM75z?k3 tBQ IFمq3 sOa- s=.' ;>̋.',]q,z:n _|ΖГ4e﬒knZ6Ӭ62[~uI~BC?lO?n`%>/Zx=aZ~c{ {=u8Y;~ېjFhOB*9Ж*8ђ=N?tɇ#XKdSf'O>ST~ׁy2AZQ;XDa՟\8KFԽ!eZᅳeP%b;CVXIVUp!/M N=<#M=p{4{=-?0 ,o+h{x)ZdF*pX0>%hEvY8L$aAf:lЬMTE2;Da:VA[k-w<шma*6F'rDrU৘6ؐvV$Ts'.U_@<$<pB΀=w-mrB^+S'2r(U7L?IkV5e \P~\<ҽrA:]€հ5U#C:jG ωShyۦT]D}u2B~x=Y?y&|ݟLj2C>AR<-wLь #Dt،!M3QQqlC+#kk{pg{ #rٯkKJ}׽7*ۗɫYACpsC&@ $BUzm&[bD>.q"ۨ_*9 P-b[#U>g1-9_؃3U︬fԔF̨Z= t.+$@lpAqrlÏO3H`Lܹݘ[9R#% riHGj/vCUT.c2(>K׏(tY9m,]m8M8?y)dY[ܦNYO*|lrm;WHYo=@;MghK!P((mHÜI;;AraaP,pRr|bv&Fcgd q?6yH"ר! amw^e6m҆ij1 iNT>~9{uBHkL/H#zL~4$ɿM5-v+H8R'4oߢޝ|cO3N_θ|551H ێ0?J ߗQ1M文EZC k+S'Z&laḪ(@ʤ]3ٖ@.\_j[W5GWQ)]n?=*t]>_HBQItWpS $xOh;?韤C4=5%!81]<bȞp%h!d-kU?UpLխuJhnZURem%@2/͘yH߳fTcNp`>9g7:@/M/xx]z^"Tآ O<NWTƨ[?Цmcwð18P[d^˛WWՑXu܉mAzDz4jұ4MYQsrfxf,2p2~ ?;fnM 3sSb̞a𩍾Kf=3:''xōdkqR<~F,{ .?^r%i.1n[{{{s8ٲ*׀D l 8sN2Fr)sёEʀ$eZU:|m B(@Yj Sd)Ţ HLրی|zBa"{}*b[idӴ2N2 ozen kXׅgG߾΄܈XlCۍ 9ErÅ;)iQd:{Q ްʠ ^OyWJ0HWY3qhd'cb6PpP9x ,h"™!PբЦ2 jgWuh_p]51 hÎt`,؝cY qHb庂[,vKƀN_:M >ðViܛG_8+p;  ,Qٳ'zu >YF5BpkPЄ#@zϸ)iB!Rc: )wIi,R N0yDp|P1mO'ESE]~@kyYG:!:豯Y@pŮ<6\Vms|B5ĜNk Hz6h'ㅏvc5L7zC0']I12;C:K*IBn8 bjVIM٩윴d?ge./GFvZFGKn#a27_>/¸H7=@GІ1Y # ɢjDCf勉Fp՗'D]Z_t`]r \6䧾O8Hj_.{rM'E1&`'LM 0GÌE Z1L%w5Ԭ 0迩@y=ϤFU] Mv4M^Lr7-!6}]1?Q𯒜:Hz:OYc˨vUUL?(X}8mȗnB!*_moIjiH4vjif.fn14>/jB[[c~~Qے$QAz3$/ެcȱu38]bpgz?!甚6Cؒz {:Gn|Z'X"1v:N$1M?zb3$C98uhFȺk\< rtci 66G1ؑgbXVz &}Z7T @\e,d#u=9ey Gl:ӏO/ԨEmMT!8YcĬK$ICoW)ϼrU{ژCN+? t3wӭt>ܟ_OC7ʤbD'`N ~%&-@0u4ʙƂ-%ܩwL^jCs׫a.t~[K=J9rƸg^ȺsNlE8k1*88SE fj~jI VA)R>]ꂫ+u1x7c ؂\5,}nz^ۃSrF_HvZmsF_(N9hEm }}&FX V+uJ6ThtN`x8Cq@sAܭ2Va򾞿L.g\nCrv @>DKYDžѷ7:㹷 sGi$KƩz*Z8@g #Nz<2C A |eatVn]`t~w^EdG^F8![;UL7@)l%B$F[K<K+4jF 𯍣? ;}k~{~ܿVETU Ccrqnk{ PgdN qSQYu@nSjF`]RJDZT}AKVF`Kz|82V_~l/ fqTdJRXQhԣ/<co*M{ y# 2|qXquR䀮$s#\Xg?>>;}R8W%Y3ņί (78TiiIo*Ǜ7"UbԥpN` B5ޱծBއQj #&`4,vw̶ULruS kcftTSU8E*(ID3md3T@<ҫN?,^:fځHhHְltjhLP *]%[rv6QVbgf40P׳T 2S&ώ͉q$t \ڸFιFS?UG8_kO6lH:⾞bzζa1k]Ohp@2\k'&FK)/3AƘ=ӔuM<.;'󂉏CUG^$ͪj\"zF <12o =LCJBCUdz6t(݃^^3Ϝk\~#%snyA+eE_.kƝmXQˁXp'[\Ʌ-y'[j`TmNj!4& 摉R8塉*W ghk’Fv%.i;:F浽<W{`/UBJ9t ԸwBŀΡx* c/j -M; m ;-&l"FB\A] 675lڦ]7ifPsR $YL`IX=tB5xpk2 ѱZ͢%Ti7z?D⬸G?\Dj?l£bΗ|TB_Z*)Dh\:7i15PyeϟhYHGS^jmwk=i73ݍDc5WGl)(-vR)1dKB"+>F2y׫~Y7#~5P/sΎ"~z6ݯgܡԜw1~\3)kFKMIu F**$>E=I'}m އ$ܴYQzjnjH݀rզ9`˶O/usg,F eʽR=I/ %,>I{0:M?^|p\;:M¯EN\ˣM$l|FG(Ž'5:4C f$)WŨ,^
_19`fMBWk).},"ׁt\iMkzxu)lPxRS}"!M|X@s@xHj|ĶJ9ovӁ956r3H%!L6nL#3„r#&DgBV~ZQcUCoy5e< ݠ| Zx",s Ҟwh y8y L)1rYv <@FL', ?4GS0ɗ/8e4pL-,$D'kWC&k "<݆J_b)2N)IhgG?J,%@d) 9-VM8ߐ:#%T,8|)iQL@9e~<&:w+qjt~c40Xs$ħ@N+x ?fۥ# XSRq9G[I.ܼw{{(^79B,MqV<"{m_ ?s^IExl;7' F[[9YPIEФn1M5ILk}<2Kv_u3SݳN+fiqU_5W*Ә*֜-[Ϥipėr${KItYUZB9MÏDw E:Gk'ڽC  a('e!g 3']Mгrd8iF.O[Q$Ϳwлw-'T&s1-ڧ.s\O?T'y~FF\+}حӋsDtÚd򏘌tnZxH|&ѧ 08<1h5Fl4g{G1JqGʋ`WXi*0vod.l Nxyo+İӭ3Am4Bl{<'Tomo8ۺv(UT˦0gvDj7м'X[,'΍K~_[5DmqHK?ހSE3Gs=E1`ET=FFQm n2NjMg%I[1Fkz;e^2dX"ן._ .h.{.Ϳyj#*q: Ky"LN+ԃ[57T̑XxwB4 R\4#(8j<@LrK /*%'P()K9{NCEfj @d,4gx+*9Ŋt8m*=tH[ Di B$W^e1)1> K" U:Al}­ry[(kfܯf(k0)pEy1 &aK}\ߞ;8C`>~ksC%bT\Ὕ].11c"&o'O;\>n)3x2spͅ8y *ߎGZخJm75n#@9,%AN¡?KExu E$g3(SSf͉C6h繣^|IڥѾMmsU M<ՁO[ B\Jl4LHCd긠2NѡOy8f2b_U!q'_q&m˅`~Gړi~S l7F$-0+?+1_\kMaXހEo'J&EWeJ{ڊi<?4|+?{34,3fҵy'q%7"nٿ5Ç`Ums`Ew$V]f#0Wٟn,VFr*N?WAϜZW0]w]p3Yf:ijMus4L?UPk+̿A?1G&@)j&ɎAR9]!st *3:tys@`? 0sM7#  Bk@yC`;7R!ZJ]Z[P1m1ɷX}G,:$bc$X-; c ./iB]{rRTMϸ9J5z!?NU>w\ʄcLWP%7ߓM~֌wH/w|Iy4L6CGt1qKOd;&^4׍)psJ̘Q7<]dBPH8#&BRæbcC7SR2I)vyɼϰGhෆ׼ 3#a/LJNRx0V!0C5!0P_GAX.E?zA{$A&>ȥ/d+ZS YhpV sVTAQEB`AMf +0+2V~ۭ>gpkiAIn˴ y׬vfR 16෠A)S]B$ej1sIjM„?$1ZOUC-S Ux?ɿdTL_(-+VYkfi}'EL0Ŵ} zKc%GB g)~o4hfH%-!]ZHWkB*jJCrOH H n4&[*+-R硦헰0oǽ?bA@S@8l]mQ@pl M e0e2JufJݥ?//F{Ď Xѳ-J(6ذ`=Tp+7cP-lwd<n~{C2FtA> /w_]1*& HD.ƙ|Ohf#T9! "v=wX!3gݵfW^q?yׂa7Eh& .'cҬ6|6lb)76Hn3xV6`_Ԥ ؖ3wk?Z,n"bL;!bc) bztz>B2'?8^X.ͱ ?s 1⻂@mWtio1OP37lO.X{;u  3`w1cwYƕ6ecCe=V4#mDq &qG*g!"B9 l)ku104sݨȠpVJwmXwRolTn5l2'{ Q2)׎CNW5DЛvH+P= d\2r!Lv{3AR]B!F1exS<YjY2_+Z,{S˦IDƊ[Bk}K ov(~x!5pQ O &V :-tHdt0Sd>9X.}ǽ >9L?k --+y]ej^7ux)X-[I9u#ڨ,{ug&XpUC|IzQ}$%ͮMkݎf[O?;CO$5U=rW(E}4yudkg7ڞ)4j9Ψ)z2sw8J㺈?|(V1/ʊ|QA^FzAC9R94R:<\H rԩP̻SvMa >U\W0"0P塉97A&j A9U&e3B^\ *ww00BeVڄ`>5"2|iG2aٷ3:&E0i#;sEʭJY^ђHa(.=$ Rm ?]!dlrv, +CX:RKۃ͈e`@9&QA- 8]GݵDg;2*7bWF4Z PyInݯqAӰCd`Vrw>Isk^l 'y?!A1eᐧw(ӹ7Πf",SJɰծ'MY$%y:cU m,ŷbS \}7 U~_\rPhc;ѧ٠=HLc:xJCb;fVT˩GǨG# ՌJy:َjV(Mq e7%WWSFSGwo鿽 ܛpD q/q(m|Lοv`N,V IG,;R elVʀQѬP1zVcpo`T5GZF& E A4ENa,F`ܼm# nv ;,Xy}rI*^{zʔA.W 4|竈r~D2̮jh&l 6fdS#e&nG3vk\Ҫ>LQlVs<.0bJdƭ燿[.Ewdu';Β<,5Û}5Q8m in:iDqkP{[zzx=TD&9& S#0ON_$j:8͍9jUTVr )GU֒-A'x\̄@secmQLQ=sT X%:$̅ Oyqm+;4AdJ>Zp q nTqNgq|5; Prw򠎚[$^e˗ v:_c̆|B(FOv.o7.f|}!baZb-ŹФg#KMZfIBd.NRtޢķ&Z ЖgV{?:(ALpi(_Q }Qi&&│7)d/_J@P;U/>~F196zT[24[<_$*# r뇵T9%![JٜLXD: g%.(/%F>bN;(T~w7jTiʸJ:vC>͓\˗q v3 *H> uO59 ./P- S^}gs Bڦ9p!w dȬmMY>d'.s޹2;4 Am:3}sR<NQ K>m]obZjr15Z|6;1I+>Lnʵe;XE [|pnT'G.a>%}N)B<Ғ%BIyfOe*OfyaCB<&WۭrϸC .z,Dw 7Äudr9IWUݞ|z1SZ3"u1rY{z[\rYƨ]d.ˠwkF畲Z58<=|kz`<ڴ[Դ#J ŀw=MǮz"!"uNq^sUYWЊpWg6|t-Փu UUHmXʼ5u]z1$!IaA;8˫vlβb!Nw8!AEymM]щLӃ3F$C!ֽz,+ͽǶIo1[/X{7=+ 讎6:]=]YbbBl[˗#*i/?MKzt1?. fVP(ۇkYl|"\{D.og1.' >5/*OXI#WÏCI`k Jo人j]%H3=%}l9EQ ]'u a^J't;Bغ1g˛0sn^ jt47=Vγ$гfg{#st^lmY,\$ܢ$rpgZR#dMZpAu/QSܬ A Ґ۷ W@Xv ? w`p8 :l%vhdžGڙp ovG"u l~]Zf;āփ^!Gۼ Gri)Fb(.6('=ޭVw(15uMRaZ풽6G h-ٵXֱ$+)Eې*n`dv@rvzȏ +!CÖoi\7`g'JEQ(i,=R y)vr7,'aw?Cſԃܞ9s(* `҃wCODck4&{e1r=I,W<w(Bwvwr=Hnu"XcG&5yݤd*G%;i/P5 ͪC]fq{ydG:^V`N {op1E efu+vTCp}y̼ژkowo}Z ^t|ŔTB *]y fApl@:. U|(WnfAX'qdN!Ӱd4./TTp4(:?]I'wymy]DvBZ0\$GЍe|ޏ-M#HcFP=yW(|5ŪʪۭŪLn ⑙'MLJ4V|Ea䮕*#Ѵ_&h1n)?m[Rd)[h-]|S}Մ]Xn_&P4zJy2]j7~xvjy'{M/[ga3Zw&ޒšv\wS/?&c=rH5giMOWbym[{{U!u9;i%[*IȻ1] -":]] @#w[]S?8*a1S? *~QChOj/w5di{ 㜩ι*s 7еDVBLJup]y)wYPܔĬ~*P m N%3\cZm9VrՋ{-S>,-KQ8RZ-WI$*wA`TmDtGyf'R ;j7ZdxAv8>U}/ı}q3'F"OO*S>F껟fRBݪ1ac7^)sA+!2+MVDI1yp2q8yNSE.'ɨ02DjUIh~V[P ሴZH[NU9y5kPhE%9[={*pW;TA?iHVvVrVzj.4[Ǚ˧JEAX&T!gGcly65~ǐNGui#Ayī$/{@up)Άv=+RF579_&br`U`iAVaJCck3C)ņ8e *܆0ѥ"O+j3;4gqD(3M"]hi0q:=VhSahMLT'ec س{mXNr= Ir*$uq'z2w[IΕ%ZT 7۹5At=f6o&OlU/H/iMm8cOhKq;QyO1kfLzpC٫*(sX-ʯ@Z>qq7Dx XJQ⌮XnaZdv >P?m0)z1><&pDgC##4"&^2E(&g;(9t:!h)17Е.!G1d(o'yCj Ne&`5ʊ!oN7PZo?Pc|5韌>GNv׆$#1 do9@hR$wL{C cr3Qh[ͪ).FuX.Y\8LgrϏ_~n5IA붲䜷bK,`AQ^ш_"vޮ UJSCRBs "g#Y([==ƣ*xx8&6|c9tq$ë ^gGfRF='.ZfF$R3#07Q(H]ph<-R9\4e!C,,c8q{${$|hS}[gunvX=*'QT5pr\Ƌ4AbU4dFE%ht5O~@˾Eo)a*OcV)GD]ljPg rc|@̔K.yZH:%BEJL,ǧ@ϢlzwCְ IC!C8A t;kw,LG:,R_EOFd^ k^pU6Q 5=s5=IAuZzKvOU{ɗMgSI0Z~c!p"LwDdv6+%NlFClR(@&葈cd%Ū[z R6ĪEZ|*r]h7"} Լ/zFou ʠbh Hd)4Dus?`Y x.{ ])=m&ΕxφZK E,'ljmnTR?i3di3dUXAIwj0zJ,g-AeeTߦl(Q&×ܤZl1m/m۶w۶m۶m{m۶m۶_9~*UI*=j.bS)h$I+v1Qi^|*cyOy`= E ᑗ>GQj@tY;-X>ۤ!goоHl!N}ϫuaTҨNKo2C48 x*{*G!/e#sہcUuj@u0 \R?"~ōf+(C0]KUB] 3g ًLnHf9q0Q%NÔ5MҞpv܊^N2Hظ 2[PfJq4 *ecQ7m/]z$Is #˷C桨୻;߇Ż,,6RYځFH-uj_*&+aT+$1(>Bg3fڜ@۪-Cd:G5*Yt&wܚ&9z~=!F) g+_' oW*y1Tmm𶟎{0H~֪ݕž-RX լ\=>Nqk+5+5k.q$U[jᨪ-i]]K֬WnznIgV! Sb*KQJ"FdEWyw` Wg&S=/z]k«# I I5.o 9[b| \CI~XF#T&pPpm<}X#dX'gq~6j[r[~ é|X-G% g<$l$$,MP`SN {vrvjq8WK2%SSlsQC2I 69Z`H?s@mEcjՒ"U 3 q̄0vQ)cF +JcW-UcY_4݇5"N2gS. m  WPN<ZЯmj_U(&S'W&†ﭛm)dZ⫝̸ *.:=U]Sc} MыWa-d,2ME)"*qXEUOs'{Lo?sxU{f@S)ر qx=&ٔ|I/8[=g';Pb:]D )+:*3E93z}g[]^b/䭾(.X{ĎVR'}]ӏSF4ɇhWYZz@BmlV\v*Sgn,㈴:N)oVrÉ;Di+/47ܼBVk EAmV:6ڂ(a:;#mU^.{lf1Y ~ܺIK92jb,̩ ,IɠN#WX%2;P˕f7ŷ ; ڽcvyu0]C_ CDGɋӾV@Ng Gc4vI4sHb$77,o=RYf/p[-|Vv7*ay]7 m*SFa# P`T GAr-F54Ө1-O4 a{EِuPRJs'Yu{Wl%)zN6Z]=B+*J8lU9!OvEH Y,5+L2,֦~ݧT+g X:w+:uLo !LMfP-kh 3lA,xxԴlE$M1 ru hݝhFZh{I ST( 覰l"$f%}7A,!5vD-*.iĸޤ2t;uY|Er:ȑ8$EξPi(TW%RM3^%xnԨScW2Vh@Bж0ACcђm';Ai׊HN]rsCZj~*ZBx?oڠmTؒ _B/-I-E/f-m2 2L@qd]kJQz8 >;:|vLT+q'M7."@ W&D07[q5 ψ2K2,<52xHͬ=Ŕ)z_MZ+i"]n ?1CjD ^@z0YϋS-0r7"uX)1އFaB6m48Ҳ\nwaM)Js[ ʕ3SHugdP!% ;O_p}_XQ_ev0*MXɘ?5VJ_ī ׾[s1k\AC?ݪ8~=MX#p6 ~r|Bkfq@\9\e!]8E}0(`-{H>#\L6y՘:jPlP_&0:{!nQP7SyDW׊ Lq'/]n>ם˸U]W)1 sbW"yfK᢮|CeQQ9NR}pi2]<\ep=84(X`|PCə"+9Umo[s<ܧYM{7,D|,K Kͫ<|;b0"(bѐןtsW!=@HVm&5w3\F65ʞ m{'I\Gl3 lODuSY/"3kR"?/z7ut.2C C]PVK>Âڊ-fŻ7kYkX;c-h Ii MhٚS|{s5Rj\J;6'VR[€`2T[Toᝊ_"#>,FhB8@ uwha>V?䍧3Sٚ, ^)Jj"sK="EӖNL)o'g"*ȱZGsDҘzʪX6-͍*$'=[l(Xe*|I1F-!P.fnI~!gK3Q6k{ר='O5ivݭY}ʥkOc\pޱ=KK^B_&A̭]UIfÛU!/+QarO#<T#6=QcEcIցsrTL"[rOE01UBK!(09 f`$Agpf wwm=^ fb[u|Q=rQ 5P% zNwrW]d (a(P㗱N};jUP$ZaDZt)?z7{uvɯmQq9&T-uSAS,: Od>7>B-x_;Z) >3YiS s|9~ߗ6C|.`4HG/+Q.#6>M J lݒ@eXIFw~ٻD&#WpbSv8C[h%_Ͻlzbu.̱ |ND cnL, Kg%DDM=8im}Huzmaln0H1- ү$npXj.^9KI_leG/ߒϑ.e&yH&5d<75b} ՘+MK`?1<Uք]~樤gYd?'@*n`r}}N3ft}~Ro? VI_Iz\qnF<);<1mSavg]})aEb}kz ]ycwMz!N)HfI ) 4k:U~zTZ~?9^UH*=CDL?5= Zrf4GIn T/2tv ϖ]a+ n/%i#o814uRL<2$6џo"ZUQ{U>H)D<>9_:46LtcuetEEȯMr-X`|tv8'𤷿6#q4Lf$X(M6,^z,8 Wf+{/'x6_M~qY`5ARn6y%AP;YSGEr9V3T %rFw \՟}m#/WxQ*0J]Wb?9vkŅ0޵t4>; 3 cW6v[ʲpFOl#A?*_lc3 !'`$"9PDgMcjӢ8abf}\fݸw{o?*\%9°prت﵆%qU  [/`G2wb6j5)}(x*ziA<6&\vL } Q;FEVQNR($&Q%l}YX חCd/K)r#ܕ4Hl@_ws]{OƃfCk; z`MAqqM{yQLc,;{j"!׮ڡ`oyVߍeW0'KzˈPpL~Ad;:k9i?h/J j8l(?Pj׼Z&Eg <#/Lpmcn&odrb>Zo1b+^S8/><2+m-ȧD%ڭEtU@'9c,QrL՗h|#}Y w ;۩ 1"(䍃1ǃm*MY$զR6J}ͭ AEުPtuV!*?X0FTM3<`ꀥ ŋT&*/1r4x^p)k Nձ* [ʀ)'|Pr,}b@~U*CqbOn>ȯyM||342B4'\'^QRq5hAۀLH󴎾 OPCM;/\‡A*|AIf? ͫ0G}^AEtZK~hS`p)9FOg'шøkQ|rF {|_rݫ?YjЄ(bg" ŹGa.7mg=aŘxќ+׀HꯊD[_ŭILFcm.z/@;|?wKug;j NCgj*#Z 㬫,RMyf0 2mɝ'aʅq9 X"ʄ 9]bQ]bq#=t#UF?ui@d%on>i_YUn @%yeF(Fцў+j9犯4Z#9wgƷړW^ilì2IOOZrQxDatvLuγXYKpq-ónHWXGi6`_.Ƶ)9Ƥ\tZUXW#TX>Tet#w:8YcT'\ޙ}6'3Rz];ƣ9͌zȜB,Fzty;nA*ORd5]`n[O5];i!Eؔ5u#uѷ d|)yZu$W45)嚥t3I\­ lV%="SYM=txK35dhMVg7h@LDB#$y [% 'VNI25ʡ-"d_D+;:=UL)p[8Gk4w v NB. F[ z'%@hTxbߖLh+c-vɫ8kZE3V++E~ .vak<wkXݪy@ڇ'$\]>Lx}HfYfy5l~vNd߸B["L0, |"b-4=,& Ѳ3aA;K k@|{XW"AT sS-%ԪSzh>0ͭWRe]5rZ"kOz_|͍٠fs3 0pu(p֮Ȕ e#9!XvTI~Y`ud`=QX\XJn6/^QS$fM3[([#5q&HYn=f\ j:j쎙#(EB}@WݟPC5Z`zla9߄7F̟.&Tx?'))B|KFGYP3ɡL M5c@r*&xr˗Df]z#dNC:wIC)&X.eaL`lөH5Vm W@B "NCYs`K{ NR&aQ &"P"%)w XaIkRDB@ʋkos3wRtH&feֲOֲ*%P)TvWXEptDHGZ̈J\#zD=_dJ^=l`oY s#^ _W ^ ;D9jss%9/T勄\ ;t)rN`P9>1J.4g$=fj,BLuFBE)*ۥ(Q>*pd6s*6=+ rh.7|in)N}3U3TcW|PVI?*LvTQ[ϳ2 5o*&drB3%B ^uB4tJKLgpMs-q& ۢ- o臛A>ʴ&I3F}uE>JI{LGVS$Q6k@>Yۙ1^>JPhBl6VSP3,zx534HFK6xcIҳ d7oRvsONcSbq@8左?Wa 'e59U u@u&3< */4c!j6*bg ϩ cj-`P)"(F8麟_GE'93(|ˑU.j $/OH<@؈S~]dLw.ث_VQWŬ, >,^J̉I\U2.b |Ql XT] 7 6%CaҌm!dq=iќ5h-SO6ˉHD5+ 1U nmeM wb0=Qqt4}:;zT_֛Qݰ[zw٭IK^"PBb7/|tDk7 L|;A^=QUL J? i)Za* ;.%ՙW}aV4i9DzSs;e؅Z*9p$4K. y\G>P lٳ$Cr$Kp{ l4j@(:h2{XF)o I"="Xo+5쏔&nry ^d} jDU3hsz6"34*DN#.V# u>% 2,`>lugn,;'LF&p 5?!r_X\5of ?ϜO0rMhOWυfrAdz%"on(+uvW}P?zmr3} &m@"JDϑ}&?n :Y 6fa }nA$Q!\¶!Ze8}ʄgrj&uY8N6?M ɨh`}Ȓ|Q7Pϛ7/S`Ȗ٦\ʢ|4mEXWIޯ`BjiBletWIBwk1aMAvG!";E*$t&:+,7n`8|1"0o|? sX[? sI9Rz#Yn-IiA=/C^soFVOnNYyj|HMWcD4g S0'h]SRuj*I0;䤢:čRMVJƋi'QMSrD#5uJAVrpV'CI`u7m)Q"(ޚ `}b~Yƒ q p8X"_1c"PAgχMlh8EhgRͨv{RW\J-@ 1n^Q ߰QHert?,wj~y.Vc,sI@f8b3OT)iQ$ 0i-'Y|IbQU&O< AY b 86KȪ"XW之BXYᮝ1J%\N.PHV0m@P؄(kF5Yy"*dqg6&, Yz-Qv٦H;a ؍RDg{u9;~f6uQX~y@0o6X.-ߐ%Vod]!CNeR[F6qFϙ%N4)*3#q1YodFӬFu~Me|'_2SM!fЭIe`QFR#uF+u*Hf/H=w|*P\psI8ɛ\ǻ:j vYw))/[^:T8Uq_Abo̦\0~6I iXD|sF]a8 S.,i8H4QxKZ:W0}+Vitқtyu'x¯n-k~nʔ:S$:3%7qoi&`ECu#gFB>t1^`uA1y̹ڃō{t`@ (QryہŶSP^" $3mqFSmA ӽNS/R,w 3K\Nqy4!3P"߹r ri[<r7lW.u֞?-y $LoHfxk(B8nQzHr;'3ȅ&7 ' ]U ]&c-F/8ig=/?&=ѲَuDyYևa~bO8@.47S1nBTC?}_ ?`W՚) nȗdۉiW JR"u3϶yqݽ)EJ$RqPh|h8B`MYs9A%X7ỏGυ>B̹W~ՎQ3dy׌>u>YbA،d)!؍Nj=kVUz$TqV4`%;[Ό >>OFyֿB\G vȸU8rijfwK2`Vv{0ÓoW+>y-^ĵ%k*L߈dTsiw碼Xp<:L6gn=qoުǓ,kIC Y\vBz!7)A[+&w3 n<& n'U kqTbXQ7xЂܖQ >؍;cJP;@R;$< a_pG%f><'uXo~CS2PkS&}H-u?ļWCҦxt[4jPߍE| pZ}/2uFi'Tشg~5J^GOѮXF1&i/R>Vh1ߌxY/wRbe̒ߌE- NR6ec4uEf^buYsR^$ṢRsdR>iݸq$*%r?n,z%|u6܉~ Dis/;$j9:SI$<*܅Jw&@sX&$ZQ7aM5c-,z'ZG?ټQt+ύK+#1(E[e(f`WN%vi{R5 k,f9n]6i|GT\ǽLh\>m h;~)')< ۀ6]|/[hV!{䁑d۰VnfO(G!V# ]@&N\>KڔGV4W.E\'#k\݊,).ilJn)˞n ;ho?A6~F)gX6 >6'q>`# v9?'?T pIj' y8+Co78fܤ"ڜGf8Δ_Hn;?t ?4-;ُ?6l>נuʀOcsJg}s\9hN45$ܺQ,n/#Uw 3 ʈXDS_Ku#ʶE#eP07Lb}?!}&27`{ydd0zxk_(4;^L5JSt[cfmm1*"^STT1H1?W!Ƽ\c4p~kGuhg>b Zjܛ"d#7֨s5BN'E[$%Anl]4_;vvyQyߨũl!0Ak/wQ+0rdIkv6MSlYdIaP U.\Ċ CRsvww*#N%[t欹iᲓ 0p2بFR6e?%mwWy3.K#ʫ1e}x/Qϝz(33 {[LIJ [ Bf1BIq_T]{63BT#ʮ(3,-&'W CGܵjcr3BLCXq:g̥<5)牑GқӤfl1mi'$sv )8![0ׄMMηSp4 8== Msr}jېw"eW (>H)qvE UfHK»)&~ Q=w㕰1N&xQ]99IBfC^N AuBV`^1ҪLE!$u_vcI|\qgפ 1*s֝b}_ו,/$=-[kV$WOGm|b1[R$6d>$Coڸۥ=;:a./w6,apRO/gJL&傞oz*~-9KI-S>z$c|+.+ͩIAt-elT$^PǴu>3p7myY~s8Pz/LWlr`d߶S"\besXݵͿҗr7EOgnLrΎb_e?dNmc3^7!z^iOEyZdNe޶2lxlSlvLL6LL&|,w400n)$5N\cNx2dr^/eMEcMʗL>aOIC 5rhP 㨨p-h 5VLC)OgQ\*bj&P0wziJg~GBt0SW'Qu!o,Ds<ӄ 7d.RəQ4.9V8]@ ʕs}*Ӡg}?#xiU!u+rs6uV5DӪ5RwI-1&*?!-q&?C@$aMؖE}tl/Ay})]scU% ~rl{ W|܅zBW>0as5FUwmYj3^BBPa P#o K?5vMOiVL r@K0~]jEHS$0is3cb\鍯 ЅVUF#˙7($VI)Z{q0gXqm =eM&GvNe*ݛS\!BⰥĽDe"KdPmY@Ue.DPReQs8UI8eHN%QbtW> k+-/iUM.թyж"т婢3LƊwq{K 1dΡȻxȃ.MAC!*Aqs bgܖI*H*g~=TOͮ;J+Xfq#f/cM{7f;뫯y]%?pgG5-[UL9(~P!*a*}fnd.[_#L5?p`V +%v<6L_eF!)XMFĀ)=Ф,D nޓuWu\PGo64Q|[׈6uΌXIS#&HjLU쳞VsK/v jm8vwnnroKns:_~dk#1+k )z7lBY:DLSoҜuBP߉-4 )Xgbio)wcj#@T~#5J:qz:NI4}fVP'Am@#_5D:ʨ.}1s$ΌVؙ϶/O_1mw_!_Ti qAfG ,dE(:X;ymwH6( F|<q3E왉zPf݁Itw?<%K}%S zӈ Pd#q~8m6+ܻ[Jee(c,ܝQFkSݍ撢Tu35W^r]EֵV0Qބ23d@pw䪶(ds;}>y$qг>X;nbFbuJ{TyO8c#ófƾeOc<:r2T0sP2GX~!Pc`s!mGh@ZjHX|%O;[hN;@rhH][= /PiEOu bU/p9ѫi ` •qkZNآ $[69uU'v;㳏 OɕڎfWq*53@n$tm4-vES4Jng&Z+]=0%u3xsU.*|sr.̄?oY%FyJceHl5wEeš<7ѮjhzvSRK6)lB-Y5%R;ۤ|@c­+Я˯۞O=Ai+R.ljs3 .۬:Y_-CUdp!/x>7]&ϱń( kp倧8o*!A$w4o]`HcYdNlЦ AO3ip㡳LE93@uwki4..Ef9!6:1[vK >S՚st6c8v4o1>ȁOBYґ J ImAgF$G9t[xGgtGb6q5dfA#4 ɸu$զZ@dž ;J݀Z $}5C; EMCoԴ GLEԁOp{УDwg>iOj 4;gHQN-T-Y$!,~:@;VVO)f: IG b)}DN.IٮA`Ԅ^+3UupOlONۗ7Q} ޻FWf~M{"aE$%: #qa|TY |alLȱYqe]?o#jzQw49%qA|k\ò#-9\5OC\y³N~ՍeU"&=S;m}7zΧ³N$@yU+jr=,&tm<=sG|>:=x00(TX+.矨FQ|sQѱpt u G㑗Q1OӚ+b.@,ŷU`(\|pV.^Z:Q?ͫ:_J'²MO|os1,{7cЕ1ȊPpz@LMџo\ 1B`LF䖊.$o]FT N UV=ݜ3"m\.9#ȦsIZёC>SIl, /앯EsEԈmX\O<d@r_غ>j p tJ%6L9/ˮW=9!j/ ˗CfڴLN"- O˿85Gxt^;KgERx^EvXUG˕!v9+\{d)%ǨwF{Ϗ)8JA3!ms'!ku|VD]Vi)R9 z+&uOh Du98n}̺EOgWač-}B%#L,g2LݶSLq̟t-`wAi\n)~=zkѿAmV¶_Vz]/s4-Lϋc{a7 njoɞh=@z#[TuN$L(ЯPA巂rD~547LUWEY?A"2"P< AAlC1Xb*@2@(W\)ވ۟YDixG`g&ߣ87@AV=P) Z#G$<߰ۑ=X<9StI JE'mZHTS3Ƕ'Ũ/*#/Uⶋ:)U+ 0w9v_ fj]HY7y'hqV*O|9#{Ns%fCcb`;:,X+ԿZ+r᭰b[z5:CaXvMq&+h&~jB׊`<1Oη:5*+em^{*Yy1|7yB١wBBam4 66||DՂ%ޠ\4!➜*{[N\ۨ$z DA=7Ȣ4ll6fw+6gy3P֫`r& eLA*)f$Rkaw97ץ\iQ,v2T j(#r)3mLq^J~eTz'%FXh IES'<2O+Y`),9䷦-dcvn4UPa%B"tmD`kNF>#0bJc3py_€-4F'Z# gOI)UD 3=ni˭f1@|4ZdZ {ӺFI4:28H, ~ }B/;y5b+9TyYho3pFG"+q )g\•M?h|+rhջ5Yb=ReǞU= 4hܪKHE>S^@Jy帉RPQga\v*×vXlMyB746)ʼn5gs)e9Dm7ιFנZN"Eq,F1 E`42̻ʆyvuu5ZBsm`&Fػˁ!1UFY*C;ӧ'͍OXED,3x [BsKk"'JrR4szBSiSevJ`" Ȅ$+޴\4NOJ%9̮Ϲ,;-(qzj~AWZ& s%, u;Ulu?l`,A?( t!9LZy=`SU$yѻ9ICPb`jh3l9Ly(;=xzB_Ig6 ,gHɘ ,YQBYQB'{ Z+Dzog5tDPݲ:Oc(GPnr!M|>N+Y&eTVK'1~@DVz 6B>Xr Xk[@r(D8k~S%_ҟ8t2觱Hl\ibpL1XKPAjD2uI;AUSwE,ՖV♕ lĞ3k;c|ۺUNd}K!r눵N! lw"6<(!9zt:5 Qc4ɭͿK#&PpQ6H;{akuj$=E% m(f4ۮ78Y߽>[Z״w-,^yh;l X„DUu,p+!"7=m^z=fϗu굚_ݼ88P~Uû Me_eF!Hx%jQd["+ij_"khwt[hw Xjk'F-[M1-j̺TeC_1$/p3m1Jz#>@٩6vБG"R|Lj"Z[s7!7(S2%yp)Cv ݨ6S(5~Npf2&Sf!ꕼQ@l}+X~AbX hƾ*d*i5&H+bqk:z׋e"yK;kFi5GBw"䇃YUqJWOrV[Yx-¯}vN"1H&c5v޽Z)1O$Ҍytȟ-k hV 2*`Ԟsyق6[{{EQ9smyJTMMV %p;Wx$KM>s"_YbjhqzSM@$^+nOOn?jr<#2SBX,Vզ"uW-5{Wv"w>Fx?HE)|8u1*)z r-8.}3HGGvvGv1 j1ȍ~gowkr0\\ nJs IJuW n6ĩ_cNGgŊWG6?'PVAV^YnpkWBc#Ƈժp mkR4$ԓ'|̩,)Psë3%`. `$CUFYUXhM'AZk_j/9[rs|Jg{Xq0 Y ,KefS\F9a]n*;7)-(r͏ܟx|AU@@ew&꼣׫ї#̫$'ޙ|<ɘD[ Y03ǿNW; [a+q3ҽAK鸻wnyknO_vNe\b_W"qKVwoK˨*7TtKVYT>enDmY:Тtuv 8s@/GO*oj=/$[KcvBc@TQr1N?A-BF#ٛB >KHn("Z._/&.rnQYGO1){D0ou|E"Cq{i.ǎڻ:_޴9r\fXi\|/nȟy3uir%YogcgwS*–~F2fݶ~-|͓>u3yܾz!5R5y_fR'PYt|7'KAjck CD,1@R. nŁhTPlJ>SVu@i-baCOk<'H,/6S=ҷ\P谰ԿB :,!Ex9(5L؜Ym+f_kyဃ#Zv\5Ad~(~ZBlu ˍ`ŒA,mrNՍCok@IJ}; *2)+׭Xo*g{15fR" ]#$H|)Qݗ+ҥ3qgBFI')qsMaؚuf̼kN}%da[_6֍ #'H䅹 W"n WHH$+GDK{MmQ9WZ 8zyyKϳpm;HѕU[ۇ&殟VmKr+gSVZ3x(BJ#b,K^VdՁ_jc qX|{IL> t Qv=S粴Kѓ}ukf1Ou3ק>uu Mĵ MK;GfihZ7 NҚ:6xTtΜ]+̍ ehR싈ugV}%h՚ko?WBϵSxOkJ^25ƀyuW*iv~4cbJ&ؗ.2;=N$XЎ 1#Ma:2v=؆qԋ|&x '?h_h출%1:ϿZfd@>qd|m|޻qrr*KJ(OmHpդiݬfYb FPXN?+Մ2Lԯfr04kȂ*l qǃNQ%ە,milͰfR,I5b!b<]SyܺJؑܐ2xEbO8FzPuuhJ_1?Qd(o\sӺ}%sd}%;c 4CMM|Fock [ #^pGs{ ?,Y!I0K@L,Ex&@Ƚlϫ~>8Ihx:}5^)7UvFޤXnq'і+`]{l 94ğUw {nijD+\DȐt;t|?=~yA[0vxgl+z̳a龍d/p}"毩:Cjia H*Ř4/>fm q;VF߂7Fiɜchnzq#9`5[$5q@pK.k:NK6WEدJ0^K_@KF |[;vFӾ"?i^YlU`.yۉ/59:Y$Ckk. xPrp`)r#@8"I'їĴ٭ /j[UUi<"^b^ r֥ 1nJՈ[̏W[0-@nPj`<Ň)]8`Կ9Si M˚=#.,ͷs{77j&"-NՠФ&/:ӓgFrŤ[ b֯R'$ [ ~Ѝf@pd4ĺE5:~ruOqa|c wAIXZõj#a}̐fhWW$DF/aH1 IJ ەrv> CHAɲχ.y]Ȃ\~Zx`VFkK5SZRKX88 Fh~Fw:gP|hl;6t~ǫϫT1G\WwR$jz`vî.E<4x:\o4Kn GX*jr;ji$C!o3fhH1<_6Dy5& n[ڥ@L3ڰ8s(:Bjo%(<7ڌKul|k>![$t4:.ˠUϘ𐞑JV+Kx>DEOonVWH>AXF#o{vbkބٶկbTDBZ4vMbtEbBL<}av eeF3nlU q~quFeh|y>P,U&,yV}k0x*zȢ8MBc|s " ⏋2ϨLY`a@UMҤ\B8N68Sm]_6&.$.hA" Q\5ꯎB%U,P7s;R$zE#&V6"6~++`/~qw[F2P*q)7t B[Rhdh1*+oc"=$\|׈NPyMhX0Jb_䴋qF~7P-)pLV\?uQ>*'Al;9!PJZ?Neyk1GXRtkز"xY\/R5HTҥέsؑ% a~FRP50* V7&?JWD Gv’NJ~5&G6"Lrby{זwD 9UJ[ԎK[T O(nfNG"&+KX^ [ hw4AZT@so7 &bFe@F%I>~ԃ9FVgM0YG}214e<@4T]2ҁd8qm(]p\$|UxMuxIf8涆FՑo 9ןucn3F#{,JY%ϔr[?G zcb0o-fumu@Ou( 槠H᯽ p?ڄ n8,j:3jޅ 0r$*:  6sq/9< ,ִUy{&* 5E~ڮ1:|٩+BWVwpvF;]7!$ae32x& })^Mw8G~6M(m|;rF7cܵqSYu kEΗFq g=q+zZDkT2#HbiV7a|A10tVdπPKt u M)Ȝc Mh˜;j`2H|AR )$1h N+Tڪ^];7fٻUк]Ҥ\Zo\hSP!9`p=S+j aGÆ't ,$ݢJ1 =I ^vUx_^rhdwڻ`x_.WUn.:|_ޤTh&=zHVE4Z̝Ud8{0'\ښ%N9ulAr#ه/@[a~$WbA:]/l%M\18#@Yd=U.: ]'k:BK]¨THm:hc&HzYyk$L/@ aa؆7`QZB.D\}u v#WQT N$MpjzCy?a 6#: "]7Iٝ(Crc٧OcnA fG\&O>H:C=AxPLBBd¸VUn|m 'Qv~=. "aRNKo|_ ݋ K\! >fI{#!=tIeBP]S_)8 J*#+ ibSF74[k1wp*h]C6&32௅& 16WD//>၁"&6ξvi?lѡjO->VX C$~Tv٧bKHeS{uVh6.$PCy%@^LޕkiToHj\p~H)/wB׊˞छS0]2ԏZS֘VL(ڝe\K=rk`M:)S͡Rv{eA [ m%MKUK)Nձ|~36+F̣zg{w?6-C(zv-X':0VrBKiwc%7"MXf/(lB۸$U|όlYZt^L'hsn.PcɃh;"r ucxy2YyX1s'jř]6fK,FwsQyYY; 4&,iuWe~vvP?X}͡7}XXT %7 50ZȺo3õ1wN_J sp5@Q5x4a6Š'h*^Ēn%Lg s_ KG}I7͒i2/ 7)Jvr7!]a8,0-T[JDxlf/4/2[. F(>9pSd7=pZ"بHnKehYkW+ kg_9݈% 4K[wv6sӫH]:!kU})¶l7}`r#nqkC{H\0W8ƀWoڜ oJr{z}5@*NFB˘KDZEwBAKϷZt Sye{"+J& 6 -`gԋMie(c_ FM zxVp@Ҥ&̴NVzTjd }#cK-e`˿ MEFٓꨙVݵXF9¸'AI-f }6 vX5J{.w1X耩yc0w/AJ̜O5X5ݐ5S6#$[M K⹍!QJJj*0aXAϾ(~R2W,m&QeJ=o^jЂmd& ʩCmژxS;hun'@;4FF{ F/Ί-(ffadϛ,YzmzFqWYz<#9dnKJMz=|E2޳M\ߦnX]M.[g[n9я:Iޏ#b) 7{6]HR[hǿ*oHWne vaӚw±31ħVғ%s;rR YEpNQܽA3ֶU5|sJ +]$ gC=odK 1qt'C=m̊c<懳e-G4ڞ#]l-,pJ/! [dwʬqKh>p]8jct.kE2xZx,;Rmf5d3 3C\٧$4nHBQH&{Y(;ӭ}q~|s,goX U"8u}`sUI>Oj/#ݵ>8}Qqhg`(ȋWR<{hHy>2KLl):>|kC[0J=p^l~{!Uk‰EˉDp5Oӽt7U쭖B.SIXw:CQeXt=Ҟ ֜dnŕBaLIFp`p<޹n1Ogv$yq9?`Rf,~N*nˏv^߽7$M=jl7_G7{~0gnЧ[nqf(帗WOtߝ.Y(x{Wn8P>Ň{~ׇ]XQ]QUR!3}7nȣ.zWDI %*I1iT׉ݰFIR uojlѶ{S܀bha#a";#yv(Q`nT7'Vz0b?&mp9=UcgƑ0#@g9} eYsWn]ku p,Lf˲N L OtW-ې ~pdoײmt\@Ix2_= -dr2nJ=1 t;HRp ]%; =~c~#M>W {h3.\^zS>qR͕}1쬺n ѲƉcgzZguzE⚦g>ީ%{Cʒ)Rqpګ1&.]Īڌk t"%|ٲrs\'G3~ꍌenoI"grKclJ=+I~kjl@T^Gt[$b,_ NoZ)¼lsˁ5`wq|Me^aji},}c;N]]Cf6i, /\is,3疫\& k^,k u]Qʮt*-VThFN| m^'۵a7!!QAdŃyu@ b+QKzHj=]PhIzQÐ'R'ӓ/v}؃W:+GZdTd]CݵdtDb$SDtK6XDz&/,F 'l1{U,)36}/K;H@NXl["sdK^Z5-ȒkBK~i(@$f:5YM9Cؓip~_:BOtKǿI6՝YlJt(jL9!tz1,Bܛ2/F%| h=~]p=E G$R_RjSTCV:]!IE8&&`s9>ԣ/_wsņz6_YF3*Vi%VvǴi;D3~2P"Vobm: ~sjJ:v%j+ ݡ$s b}BZP_]!mʼ@pȁ&ws^z{Haqdm*Gg)\ݳ睫hC8۱c,Ȍ#P˕Nt͞*kZj xi>w6E@$Tݱ5f5v1P,m]=ҳC*P3ocZ :Nx06!r^Z}#x$nk,Ǘ 0iEo|4s R=69b!ڿżB8Â~rLx)qz w&zy/&WU˯TBñaą0;'fr\BDy玨ŷ>\ Xϵ5"q۵i¼yiXmU*K%S)H-U5co`YAgo-9l0t-K/dH8 PEpSye)pl;g:^Meoж׾۾El3Ҡ-bJ*>Ȃ;ٺA/ʞ3XG%\\ȚZ'lc2!趾P?4ɊW=C,t373|6ù1=7]!fiʾJw`Ҕ:U+=fBINǘ-rzncPyZ;DǏɂjGk(fimY18ɳFSV9nkBC9ft0^0ypてKѨ`;}fۍ‡}3$ͅ+?=MszGoExu޴2},[/yHHΈaB._4T}3{ j!z))S O9ؑhYrzVG+9-f\ {ݪA7auyG$_ݸUT9鸁?vvk fњ8u鲸wfI3!ZV/wQI1ՃY2 S`}f5oqUƶ|cJ #} tRϊ6Hy|0=Ө1ԵgI{8>osBI4G#C (RR>'(&0 ?!l7X07zD`|!;b B `C("% fvB# `&p _>g ǧF#0;0o[@@%;;o<VU]qx2b@7TSDWire-assembly-v1.4/SDWire-BOM.csvUTp]ux cPcPPKY&Ox>_c%_(SDWire-assembly-v1.4/SDWire-F_Fab.pdfUT<#r]ux cPcPPKY&ON-%SDWire-assembly-v1.4/SDWire-B_Fab.pdfUT<#r]ux cPcPPKqZ&O N#SDWire-assembly-v1.4/SDWire-top.posUT$r]ux cPcPPKqZ&O&6SDWire-assembly-v1.4/SDWire-bottom.posUT$r]ux cPcPPK=M%O\.Kqkث(+SDWire-assembly-v1.4/SDWire-v1.4-sch.pdfUTEp]ux cPcPPK ;sd-mux-ctrl-0.0.4/doc/hardware/SDWire/SDWire-fabrication-v1.4.zip000066400000000000000000002516631506653766500242570ustar00rootroot00000000000000PK UNSDWire-fabrication-v1.4/UT p.\ar]ux cPcPPKUNx&G2'SDWire-fabrication-v1.4/SDWire-F_Cu.gbrUT p.\%r]ux cPcP}IuݟSjp_|Oe#ǂAdXF5FrgǷJz?ߙ??<|={Ƿ}݇w?<~=12g?wXw>_%OO2/~w|i4滏OY5O~m !Wom!bNR,Y|)?g#~|z޾k[/>zӇ/*ۏ?/~MH߆_Ӈ><|LJ*=>|]?LJ|?wwo?>?~x?_~/?=_Y>|_}7oXGF}c_SuѼ}c^1\XXaӹ1fXm:fmN/cqc` :V^7,njg!?sCiG1ܺs)66M )ԍ6cǢf"mɺ<0dX!t> :1YQ{0̿~d/W5_#׏Ȉ_,;oF_|c/:kG3oYLAt89{1a\iҕ&iq]ZH+MiZS4iA4`ŜrW{1WsAv,+MҔ+Mi Ȗ!+MҔ+M+M0'ȕ^i_ziZQ1\gK/؊=D*114TtO+0CA\>~(a4gMx8ra p:H:Ҫczi%t`#0a.M7Xu6ܬfU1݈4n E0M ECLcҭs" shiJBcnPp"&[?!4F>]x"!t G /IE,pVhׅ }=NbמG! *vIkN-o b,APk!Z֚ON L5X^][1lהZ+6-a= ItdONDhױ_?+2.NćL$Da&BT.h"D C \$G޸4 !c}!#M_91F<+N%O$ݔigG3Xo41 ux2"tXV-'pr$Y4.#~?I D7f-{~hLXSpCҙ';:# `o4x i1Dʍ"_]_quf_D!K("4&V1* ^S ?*ƛ9-c $F1~|QsOFu $1FaU z 5iE{| [\/ZR@leP-xcjȉZȖ W7Bmc 5i]$RvB?lB+i?n4)ZMӌSp` U[=h8ΚTdWHR Һ#/\\ciD ̻G4D*$ehjtks(iֿ4dZo]%@RK :My1)xcH\i`!Z ©^W}Y"$ok s Mpɷ*g%dt܆?N sUoZV!`rjH]/uhҜHX9[ :whIVI_hlC57F &bQ.D7n'Z:/tThjJ 5j)mK};#@F+%s-m*:n77[:ѥ4w_i``UC8oq,\X7#0쓁[qD_[1*^@0l~sVܪ-AY42A9ŶLsh;ܵ5{msrפ#@E&#LhfO{b p`^IG*i LiDDLdqV) :"Z;+M$,*(Cz-P/hȢQV-g}y1bȦ+܂7k"~oƔ]2 kd(ҏ,6񨈤!2P49$AȢQv3=GgvJՐFȢQ-< S' ,e][[va#\chݵ5T[۱a4Zkdc$(ߎ %jk70(oʺr஭bd6 j}?G|Zq@v"% 4M~YLJHjkښr-aT`Lqq#DڦDa@Fim$H.ܵ594JkH8fblUU$( LD1~亾e`j.ᚏ紶*lXY4)][ۻLK^AM[yn(qc \نhNb=NWXWQ(JvFkre9܈ٳL$OMWk- VK^RDJ DE69ePAv-?k#i#yن _iHՅC&ZI(Fٰ殭kk*!\yÞ/*nhS'i6پmca ) &M֟臭j 4pakEn*h;Hp69BOCM^;iΗDEZ-p#;,=mfaRAζ[lUVYx/lȢ9!K"h""ER_j7%Q!]ईOkYϲCXHj+&_<`ƏgEt#](YqD*h+؁B1jE󺛙H iZSSZ@wµ~5A٫DoHT$cU˝kc,J"=Kgb!byM>v4 ^Nk( eLgQA{Eg>Bv$W+qq#^&IcdM'(y2@MCܕk{3NxS^u/ R 0s--w>5`)_mH|r#2Q#6=3s%uB$tSmm3>5Gyv/"i(崢r)2L1=!v+azd8G&*<ۿYFim2jGk^Gi6ُ2o ;Z"&$y]ʞmg"OͥRMUEm;,ބwAhG]]k^[D?5DW%}GkM~6 ]>k-wm&YhrmUz!l7Z%A$oim -;_q-/NfYrCwJ =LwhI''PVpjxg*RUEQ1S*SR0;ɉh79q篾Ͷi^70M[%xD^5wmm7oh٨!;&e_JGrlS|X@HnVM2fY0셵7SQ4Zけ HkO2/թAShUndkV.9d+j2phdkKw\eς,G趩 &fHgeNdrc9Kk]^6 T [T+# &7!FRm/E֚&i8H4M$w%b媷ES%b2ؿ[c.8!O4iqt؞3 4Xnk)4-ASs;zBk|h GiMTZ-Ůj@rӚͷ4ChWAI@E`^n6M,I{ #|iHuShvk;XrH3VCaASkhjk4y䮭O󡑭t|.n v 픀]5m2iP[1;W'܁1C#[4>4N1T.6M~!~ $M :wJ;NqkFIĥmn &bXnB\͑"7WYpzkZ"f_hbmd/en|5^NUF5=d):5v"B4?ŖjQ)E;tO% hђf~J$R"s~EU5m5C}(-"btwr+ȋyJvn8>Zl*UXI!.Kk% q28fԵY!斡Aip<0KTybq\ |D;oJC#p{X.k"Л%k^T\JP^Fǣ\ '(}AG ٫c(dKC=\c 4nϊQ(,!Z 4P\l0EPpp/LI*HBTtQ h()1rG/ve/565'W+?1RmoqR|@g NU uz_oâyK=T{+[\7W.&[.NG MS4C!n&0XbX/ءtK KZCKFj0z:`tRy[,:KK5ƌ}iwC!(m7߷K K-_ 3A>F*sZut;K-^wV."q]p=j+7t < ZV +f[SB_Ov!.%8:6IM1 &A$p Z"nY #&>a>.:eBF("};&!thL<hL<Qd#l ތAFb% 8g(+d-#>",m 8W28vdG !x%>dg'bϔB% [Q(GɦxB ?:M`> Y&bW卩XujM637AtSufXhOrc}4iA- 7= n.G28\ggUQVom 1n1ʥUvݑ)[ju:TUkI )|*vpFy*JԢ/L.#^uYSdt/^(Cv)Y泤CDsƈ-1&42CꙖH< a#eAsnr_4GWX V"Enr+q "hO1N½"DK/_`ӌU]J772)9;'T݇"ܓ"ܡoSW`Cp}Up+9W-x%A8"(ٔfj@2.hNѪq{lir0Vdc·s o]Ut4^IEJW\mW Xb%5`2f x9MIUF!JlWZBD5b ҶbcgDl$,r{@Dq.凐n1QWPls}$wGr4.>D11*]a(ywu-g ZQF l C} _v\ 8J/p:%IAeEV,?* !Z6dBj|ERG -tz'+q\BRF"KP-wt5.]\y1%^\L+xE ? Y+jhn*n =& 6TR^ #JĊQWlDBVlA#’UĒ$ ALrrs;DhI@ ~.Mˎ3^4>]Z Cd1!D U$G)P+^;SP>2 3^1=9jvgwSz$@#Ī.qO hZRt8;| R!g` 0yhM8r5 K?؀&!Q{70#{,&L xscq g{8 [?z'?mCl(dSAs{HS&m=RqS|uc>r656{LBN몈F3YfwT0a{ɒՒ&z/X4Omu?>8(m^oIZk ;qմ/Jkfb\lv6{6> jC Hb]D5>CxP EX{>[kMqnZa@&irWaA45[֫F[#Mn}CJRiJhRUc%*>jG+x<[ZUp4Q:+꼍QOHqxh녏|Q"٘~Fu~qCѬ͹6;L.t|l9:)~۫hzulKb4R:]aF>z$p t[ Nsoe@$:iܲʎa+68UjkPHA%{%N'7#R֙-_zer&j$kE@XE"_),,}6T`lf8!e$+04wxPf@մFc˺kgw՛(QۃQ݆' 4_S 1dͲ=Q;o 4/+RܫF 8UVnjaџΉx4ELw:>/QØGLF6so0QHɱy'doeMґrsrOHZgE/eRVȻ ˪lSH[%"{yo1oF_)4d/lwdMᚦFkm}jk"`35N6'4pevhOvBJw Wߕk6vڿ"9(AxӘZ.42;a[#T$Y<ȢN: M\?qY> HxZ1sF`v6{*YGCN;ty ( *gVy}}Wǽt]v :kZ?.tx<žHaB"ۭHϛYI  .*e^ݟx%/!JuZk }V@k^99'qY"k< ⮭~H~ʬ*ˎ!{Y³Nk@5s 5^ޔ籝@\WPh6#ב-Q{EU V4vgE:Rn5{mMCm'Qj_=y DV1֏Ɓ殭D F+#4 aA[kMȠ`Y"~tvH}7D/SZ4ctc?ڱ,n~|AE|zFdY[bc~4"iלx.סs)-^H"ZOMim|!AkB->vЦF$/{=/@k"Bk{<7DVt1igV34&s_#~:B*MVv˼opY M{k6植@ 4(sGf@`YF%Jޖ(-NefvL :lGDXa%jU`zO+|Tyw b=>kkwhTq$TCCΧ_!ѦAl@{E6Mg'8Afz#%>K6nX6 WE|k"/wo>xR5ȯO6nڮ4OOZ\[/ ĵ%8Xk(-O鍌7 rm`uyְ h@v¬:]oF<8ޚ1$۱~ҹd,/86͊i!_j9VUFϱļ8:VbH;T-,s*PYܱe`,kmKiX?-9y!m7ۊ׋~BD?-~m {e<oekV.!MA6MKu . mjJkv7%xBu6Xh[7֤~SyD{ͮAs2VP I;2ӊ8 I|8lr$*jF[o9`4J%$b 7sfo~r[Klzh9~jӍKJ?B_%qThM҄[Lt!bhAbs4&*Z>g 5Gc&J -hMثhN9,NT]\S(Y`"DEܱ*cթ_/^3;DUdK4h.C>kg)AMx?}7-JZgo-g}NE pdЯZs@*KSA}#uWD?Кi7|)A:lW-z<ǥ"&ZؗVKGnyyĆZ` \/S-&Y 9V=J\jobd3WkuMF#4Ło~!\Gg*w?!75E[jrG}}qNq-bX"ݏ&M猴o >D:)؄hdkRnnjN@min46Y]SD)m)7۟BZ^O?VzZg05ř^oͺA R֛?Q,%UD dsP'%Q5U QhtixD ?z_de潓(r#]-~ێbjUjU; J742@e?_(rsEqle&8eث8΁b4ȧ Χ|<ޕi;8JbP 5%y-&9Wo }p(?~bFho~EsVCԽ"h>U bEsa.Cke >^hhMސZjJ=_7#y͖&%Z@g"@IQGh7iƳ_z v?Fimѵa |NiM!Z4:ܐ&hE<֦]֕Y4d<_ 9w.&eGi͞ڨ'M6ɹϵ,_f4ct"i6\io \/4vD!z3'*'&֚ φyzB$ѫ4,uPe&e 4dKE®ՐES/4/۬ӫ~l"vd}L?ت%vO3~XZo h`stA< A9uHEM1~wPKUN$ZC\*SDWire-fabrication-v1.4/SDWire-B_Paste.gbrUT p.\%r]ux cPcPKol$]]^E%dKL,(¿=}DBaTzܥ_͛gϷ뇛w??~}=͓wgW?~V.܅;xۻoԮc}TG?]t}|v7,8]>w_U s+蒫mzod9ki5|¶/)\]goݿp/_闞}>2ïVrugWwnn~>g_%e*\*ܟAO.9iY18])k؝T,?)l4q*&5888>88>88~2p3p*&j4fotWwC Ɯ TiQ62c FYq*XXSQ R bT+e6  ͅgijF;EYrD`9 hʜ94r6?W !Õ`Eq#KYr:f@]O&;%w#QD( |9rK69,U2U99U"?U/*(C]rӺ\1pRְ;X8$N}mpڟqe1:ƩO؎q*S?E~JNT z)1N4888-8-8 !8 8 8w<ƩT]q*b4Hq]lSqe8 8 r8 8(NWl< g&wA䈢rД9shm4WB+Ջ0Gr 4PnѸq8kv Sv;F] ·clb+cUc%c212%3VՕ1NWv' !NSNEc8MYb3ĩ(aSQ1NEcR8q*4iW8qڕ1N2ij`PTh(`\`ʐNAtADYBB)CC(RJTU`W0VQkFЌ`J)XSY8SD8e88SL1ps1p*Sْ8(Nc6nT TìS*w(G*,()l+ Q U*Q?T"T t)tCqawR!&h.j`bjƧY `Qz|Fy$ h #zT*H GX8~ex Ï0(0s͏B$V?JGX+bYh`H^+Q\ ԬԝY,)́l `ȨJ0.hB%^w=ΚÎe,a-1X!XUXXL x v ?΢GԍZYbz؋ "/`bh0>6 V}Q\#W_ȃ/:,`R fPPdh Y &oT; >4&>-m>g V"C=X|[AGZYBff &OERE VeLYe\e_UCU@FU"IU/LU<Pu @Su*i" qx.v$(f3nf aWƪb'Jdeb`3eK(v8nv' Q$g : =`|x5: q)`8:bP2(;I#@u惢hzmf^5;U'@t+ QdA:S[@+P!**Tz}Wr^SVQ@a鵲 E ILL)(6*D^x,PT7haa)N@t#ADAA[BB(WRNW*^QD(ů`75N*NeKLE 0-}r5UdakDxn9ʺsQj0ye*b{F΢>" <<>V(Sk \^b +i9E`4ku]NeyS#@2Z=֓8ԓ8S1ĞAtaI $qzA8um~Bd#U]T(՛\W(=( X{(YqZZ3C/es sp^̃踖z "ZM3Ȃm9|oA]wCܸBԺ JnJtfPtT( ꒮; F;g]VNw "\ 2*D2TrrDPP2KxZuVWv'Nw²'qS;ܟ/ q*SY8+1Ns!NegTrn4uӼ3©$ <8͹8k1p*:RNeiO`܊SY8m✁⼁₁"TTN>bS{8i1NE1p*SIӕ2 E ILL)(6*)W"┫`*: F;g]f;ew;.PpQ· !vK\<₋]i丰c 2#At"*DT,! 0XȜԜSlǃCH!:0*Q**Q)dzwVsX Z *tl`GG_^+Qb.jn1$5kSSS)G`wʙs;l;؝RS*`wJ۲eٝRŋNK2,Tq4`w=ΚT DG;));));));)))aw=謮`g%؝*e 4 $N lTcT}2Ʃ(NecTNNc'82pd8ͽ8ըӾ1in|ӾV-J8mJ ʸN8SQ J b8iǡW NS=lTߩi2p#`w 9؝z \!S*)W"IU/LU<Pu @Su*܍8w0΀gNwQU.|Rn '尰R 4䰰SAE X@*Bu.nIipb:neVRZ3wDC%xKRRpqB7^wC螥-̯oiek8R) }I_PKUNfJ'SDWire-fabrication-v1.4/SDWire-B_Cu.gbrUT p.\%r]ux cPcP][}@ wOH %{h(F!}MTjzM}."K7vgO?{s7˷wo_ݯ{Ꞽ{o}$e^s/|ݛw~S!;|68_o8c>vx{?w?o_?^?G|7_|]*ߧч?{g<ܤ拻_^?oo~$d2˯/k?yן|oO|wnSڟ+~UدBUO}4243Yj3ړ>zd}<1~u̐+OG|糋>m.~ć\\BxB ġ.$sONIRSͻSa=XNItawSRThW.ט4r8%OIH[,|)CSPH_-mJ!ٚPB8Go, a$)gEB11R$ L՝̔B6S:ţŷ(% !Cf(AA|ҾgS3$mL$qjuڷr֙DUI IGI~eIRB[#G8h$d*5CH75ħ+{Y&$4f|8BJZY(Ո F xգ)p];У0 0r-1a1C8*cVq$L3 Vɠ1qV"YQqk|y>Rq5n4ؠA$1蔔 :MtJN)A)9NMGDijJ*RKm)}ƠӔvNӶtjiڽAiRtJtbi+%N :MԤtJNS :%AFNIb)I :]$(h.$n5)%(,296?$ UH2<x"GU+I"飱 fgV3`3e¼yC>9, aY0TfYŐe"C1X3aUi :]$+=*4^:tJ.14liA :%54fow*Ɯ :m))aAaN#-dt:%t$ƒ :%tJNc)ĠStHP\Hj1>S>KQXe9rm!HHq~M\ ĵZ\5 q<*A@ nW4 Cĵ*q2Q\WN 5(q X\ b4a@LOxRxVD@YD\D_d* @L"{D*Q0`@T=X-f*# <*P "'-2D2d@rD1 @2PY: V"YQEERQ$OO% t>F-ͯNP uF_W'Ӵ:U^{kZ"YPk b5Ԃ̔QN;CAT<9Q(d$*˄m¬dYdUvd"IԔ5w<_3$ͅC2K$5WY߂jm X@shIXM˖L [2+q5PhJWF˶2tvZl7aNۦQFtʴۦF:&Z3 z`毆d`Z}$7 $]:SՁ7AHs4Iw͂Gu.x>#4`sW:;{v~h(U[uso&磠qW I0{ y eKKeks Yfo xӂ`v=LW6Z0;oZfRq)YGx 5طƦD0GhI!;^(#-/:NmyI`)I{>V45.:zyը)2]¯7=/NU8~Q{]ԗ4x|JM,,3]|0,G#邹JY$IV:ekWjw:ԙܕW%RXo:}ՙSWwnGM!ks 0wrĨ$tImEgɠ-L0]tk_qp^=%h?1UG;uheS Դ:hWA| ŷHsKtN/]F#4v12ddtɉXYxvZ&؎ v$IQT%,׺ݽmuǂ$KCѨ)RϐHqa},A.\!޲­:i޹3-P{huHz q)9s}> .`{qg7-Xmsy#:Η3rtxuڽɃZQQkyP7W#| tvzTZP+^c)lq=Zөݏ)bc2$P:uO͘yZ-y`zzNi[:nxj~SJx3k4Cv^} i_d\.}:IV3>Gic$V/vGך;4 Xx'L j "uWLȷz5k?$ &R7Ple># +L\Ga;1֔4^h_@ۂH- :i.]1eE^ kWstFoTѥFV$GBkQ$7sMyt-?-/"&nk-X3)/xHen $㰗*Yt_h;o4I0g:9SRχm9 | /WC|m5Yq\G`}NM!Z]sX$?]<6+j`;=hshNܰ|MwdVt ۘ_xmC_Ytի7ݧДď.[ǎ6ڵk{uʗN:QFvvSGʷ@,q1,6տ=JLɥvG;]U^/l6Nyp~ǃ#Mm{n=⣌ߡRT[x#t^RH >E{ngiq3U&^iV{`Z}Cdr(yDŽS%UG;"2L8WԵ׽ оI)tB; v$N8^GO@j3wF~clTg$fU[}Xp}Xݾ%s񔐟HϥSV7%]'K:CP!rM \lK77cۇJtE>9%LQ揗[6ts>:َǞcS"򠝿V{sÅCGɪo#{G/*lŽ g f9㱧0f.hff֜`ZE%I/YV|(|͗<3׏k>9ozڬe+Bxs:xs.~IY3ۜOj~ ޚO|jf\Vh偖!=wV;8:Jbuϊ|n=Gz2 YY`E^kwZȽ4h=EpVOys{mfV{h|fVuONׂhUsMTSJ4I1kE*fufV^L[ܱX5sM2{F[QTa͡c.xHYۊ"{&(cqqu|j[cYVmk+cr" fVy3κD@ qo[ K}׾r9NʟGK`v&Gg㶽QFs՗r}qyΰ<:eorx]AEGmt ĭ*mw:2g/u؅yD*M:}4ioe9p D\ҮJy $B&:ꅪM9~)ܘW:ՋMjuEg|˶?5`ʛ`4ko0G[ub*Egk_byF:_6PKUN @"k*SDWire-fabrication-v1.4/SDWire-B_SilkS.gbrUT p.\%r]ux cPcP]]oǑ}"0h)bszh ʱ 9(Y]h*F!};}NMeaT9}{_Nwo}{ps/}|.t5=tw=/myl{Ք³^)_<&~xs<9Oi!o>\PRe9<Ǜ|y/ZS 5橦K~wo^?|z/G_r}n~p߼?._zxg}W_r}_ዓo[1W~7Wyŗazq9]*__U:VW+X\rD>Ẅ́Ƹx[^6Ul0]-?'?|/>AV+CS\rbIV Ǝ8Mu_Z9a?9yYgRgZOUz3R"?o@٦2>S@ZTڜX0÷rglj囹yfmD*/i)Qj6RѶ6sr;GKns9EaԖV`޻duN%y#juB[3JtF(skGwf?3WMURvۯcj4b.Ov*a \"˜f/}**wW0Zx^`Qoj4'hi3wnvt [24m1WS͛jL:K "̝Esm4":o^GxOL5*Jţ{1N, ב ӄԘ cz QxZk7)&a9L $wLIac|uƁ=rxX@aHSKcl^b#ENCr+7j>bg "NgoG>;UjٸzWaFB2a0r̖mfXfe*frDf^V xVMv%j!{;Ls}}wy3WNsɩ 44"1/iTiՑS9$NH9.ߑSy#9-9ԆlmvTvJ;rȩ#y9r*qT~r[NA-}-}m[Nq䴟rCQlD.dYM$F+%#YG`) D9$r6?g g g" g/g< W &W!Y 6U0Y@UOVSJ];HQb11F ¬YLˊ*UӮqt,iI9K:';r!)I|``ʩݑSi9iѶJ8r:!rȩ"9Mar4i őӴhV'GNS99rjs4ő4GNӜ9Msv4l9K9r4IL9ޑSA9đφ !HbR$>%{ ̑C"h#s`pVp&0qqƣrhrenQTd51؅CD%(a-1̰!ʘU䘉2X%<*KGNw^"TP99ؑPgGNC/B]9u4 4Hl9 4tB24Sl9 -8rzrl95ai\?3f;r*Lȩ0#Qؖ>Si9ߑSi9yvT6ʆőSL9r禜9đX#;dFB!DbR">%y@LC"h#s`pVp&0qqƣrhre!Ոq\h53Ìe(0a-1̰!ʘU䘉2X%<*KGNw^"i14ޯr*pTٖSA[N-$[N) Rm9r*bi.yT`˩ іӎr[NINfSD(r!JwGYBB)CC(RDW d3(%e=afZOL$8riw9L9Mɶ9W;rq))7GNS\9orL9M2-UM9đӴFMU0XVL+UQU,QPSl V XJ19db^JeJBehb5؝EHN a/ oÑx$}$>>"@c$X>@R ru䯎I@0 :aRG8 fPh%DJsTc|Vq;|,<Aԑ!D[3BI*u @!{ձ)d:jRQdzPH~EYS+STUQRV"WW DFe"^3 J@4Ue!Ոq\h53Ìe(0a#l3,6\ؤ1cc +62ta/6tKͭFbw;yHH.Cb $20O} d>U)ׁ@C| ?,¤.K "H+Kh_@2/wz/`r DN]hhK0! dl.@K="<.A\ErQ!)Jw,G`UUUU`Q¤Le<MUYp5l\hW=ZL+evA0#G0 |9ŖmŰ!!C&*UTD]E GX;d/vgONHe\ 3_{FH||ɒd#5n$e D+ Z:¤+ =WX^5;z ^ȩ-  Zdz2Q>٫^9W@W[0P;$8/( @bj@|;@ʣ@* @*r@*@*C@0TVȨLaR b2PU ,@T5lU`b Xbb$b1b>l-ybņY4frldUN~QUz[,ɩRȐH#$ڐ?o"ߘMʢ'a$.IfX-iT'ᝩG{QB3"7K/N#zA"Wkd$.52qK'#{ed ٌ*fQ  TՃՊ)`]; r-!ڊa!C+CV)<٫2^ T&O+ q,rӲ"1J3sNNvTGN;r*}#q-rpԔ"ym˩'~˖ҫޔҿgǔSY#e YGNe͎6l9ԑS9i S19ю-{GNeȩV9ݏ#8r*#5GNwFj6 eHLOyRyVEHYE\E_e* L*{ATƃ*A9Bř+f l]`FY f>l-ybņY4frldUΓ<T9!{;xrZk{9,Ku(9io۝ e{ڝ҃Ccݩ3+N{T؝JGci7,aw*7*ΰ;zi_S<v{+ݩtZ#â7P{ iJ@`Ae@HRI$>@|ҿS,F{l#r]!ڲ@!" ?d ~ED 0AƗ~oJvqݩB`wʳM;e &؝a)4,;8DѰ {ձ; cwJі)eHh; m gDmN){DZ;dNJ_'gT a6U`zZ1T xG1xTDA1DN%D[1,dbe*䐉'؝bL;e`wz]e  S,Br&7Ӓ99ؑӒ#]m9%;r? Lg˩d#sSNs䴟r*#a˩“ӥ9r*}#=a֩:rZT:GN{rw2eΦP9#BY)sm9đ2vjA.ڂAHj 1R > KQ X e9 rm ! *@dT&01S+ Fg`tzl)q`vf f1ljb.felҘɱS͠R h @y}#;d/vgONo_73Rwg?6'Lѳɮ\,]+3g\rJWR+Ɛr}ؿoo֡Z*3+)љ__4(2#[f؝l&Ҿݭ?Cgi_{}v/_]m[^󳛋;e+s|xۭ]soܴE qwms|܆Pfo_x`u[3{7}Лm.^܆' ή[>Ww|.LCo_l?ݱ琉lԀCmԦFm؅Ĝ#f}3w{(`RåaƁƇ=box a8lMD(0iڤ""]b.GC,a\b$bS;}.ѳ;}μqPl@K 9c%PZt ڙh$t4騺l DN~̦&#p<@vaR t9E)G3ьt8p#HG֝EƉDrEF:rIǑ#K:t ƖkK!N:t0y|@HǑ#[wSv\SĒ%G:t[+|d-Ofʀ4Ye@>xGܞ}ۺک~9!kgp_!''~68[T=sckJ1/_1Xm.ytŋv[ft՗ϯK_|Ʒ=\n?۳߮W=y鋏jܳOwͫvs?ow:͋6ooD/7l9pv_yܤ2Ûuy8̧gC틳>oP[/OҏpHя-Gء̼n>]줛M:-anc6j2a K_2To8 AV7y::< ѩىcn ?<o30l1Ӹ.yn;\u!bϮyYQ)ֆ12/RG0ϯGNB&0kgEsu0bd,YtkbXw2e; >iLTdM!i#-5nZU5PUވZNSC~z@~Q:xj1ADꎠ[G|Xhf`hYe[8Ӓ(h{E~M<<J}:%FtFHFƊclx-UyXS,zJZ-Q}ji 4f]+t\jZfRy!&:qF!kɳ XJ,ϣ=r|^h*?DIZ2;V&4~E5gA)I0=QM"Y& IP]#-T7F1R*#d9#u>rCW 1!#H!ؐ5|H#P\kϵ1yvT t&#X kYbm>+\ $%'S-Y2- 5)w2'N{%g#\1,(FӳgOGzҾ,{N?HƼHf)Zy="L@CD5N&X5VԘf8TlrB4֢drmM F$&(i4V5 jPԠ}>y!aMݺ!F"J(IQ@5AQE5N8IG6Uz4DԀQD4$"j 5)N3Ƌ j&J*5 j NO=ScE)EvO]د??QwT4OQ"'O)~p׻S"#8]uO\~!/NԭI ;:U,B'7!$w)Wv5Ua UywTƜ@F F h'TQNFE-p4J x#jp4 dkޗf=P%E׎uBBhTrQPJd=bJ&X@0B-4Jִd>uQ+FÜQ_(h]G&Z%tJZNb"swU!vI,rS!X,Ki \*ezUpώX s%1&!^AUH%swi#=#H@%ѱu~I^ :TPKUNx*SDWire-fabrication-v1.4/SDWire-F_Paste.gbrUT p.\%r]ux cPcPKo7[W>rkFP;lqR R!5C~{OP9q>p0ϿTݞ.M[y'Oզ~ؙy3ڭ~xi?I?f&_]!Owu;|'J00VƼ Angy~r3sm 8NYUiXfPn&~|ح~#tV?m>7,qۿ~eܭ'z>~ut~syrg'c߿wzW?+3^_ݶ>~R/r_~ڬÛ.^Z}ڔW?X,oW)Ր8٫WWqGy?ۓg廛'9 ;9jnN,`it#cTdLh63 L1}cRS% cj2&ɋjbuѼڼќ NJ/X ǯ]OSl-/F#$WtًX Eֱcyg$)f똲ߤ.Q69! RI|5Eq]-4X%X'p:u$(QNܻB@:sdXdzg:u,Xr+1q@XGd:sPYǕ7ی8qYdzN`9Y:u{ۊqlWI;֊6Y B-:;A4z!NFPJpAq <Aq(q2'QRxY|8Aq]հ:0la\d=pDq΁PtbMCUevT{J׋q(!Pa8Gpq(Ahd;1q2Bš;pq(u\J#8 Lq-VmM',"u"}D#Ʒ@v=}j=GH\$޳ZҐٞ0DHBhrpiefʐ`yw;n3$ ?' Y7ZFILIe$>@tvئ΋ХJx4HnH8'4*gf0)5 Mu7!N<9:sB >֓`2Ueg|[ą򾧣x-Lx<ٯ,|&dLU}=LP`I25^ -ʲrVms`Rr釘3b}_N8mCȉgۮyI3m]>>YAIM!?OnwNVN+T*dWpUU ߥe6&`g,-nw^;VmPUGrj| >st`d׋Nt޲.77c0:bE< ׎_Eo:lprqޗBVb@4: P Ц#4l" =R}lcXOn Ùpĩ:ˆLk%©(׬ֹS2^v税nfӾ纎 &[w{B1׈!R‡FI>RKIuC3dĉ 3Ԛn:]uap:@pHr]_{ž=4JwY a@CԛCBa-Sh s @a?%n(.fRk]鿊t5b,_PKUN~QF)SDWire-fabrication-v1.4/SDWire-In2_Cu.gbrUT p.\%r]ux cPcP}]fm޽E/j'F":ƻf o/IG8ؾ>sR$EQI̥?ͧoշݧ|~?/G|W?[?|߾p wƀ_~#㯽˔2_:>wO_㯾SʵPRT~K-?UWG~o~?E~/~o}ɷ~|_~o_OC*I6>}O}(?W}~O~?1o>?> __?wfD/ 2rQ__}_/~GEt?/BX?|t_4"SV)??r<>:o|tHgpphI}8s NF4ys֓Fnz̊BR` DoGFB\߈-E;Y3|rH{Not&oz^H3u%@Hpхڽϴ=QDYp{m[<[خiNJubewZVmxSQCAl.8B-!?+))"=Sqh;if!ru־[yHDxӶTyiJY,I@0x@+y@2[*==TRo 1m = J>d >Jk77t7L4{oq%v0x!}҅oh= V21o,hoܣ&:7{4?\MЦW "S}gp5/9Rh5пhۣM`d$!n} |o?7ѼҬ̃hoL_<أז7_gF3S (I'f#օh$fzFɍ6?;Ѽ͓N7LspuS0v>L6o7'_9':2 M-MlMt3 4GC5tg@[i;,I&  $h .DNp ooӸLo~^CyG; "Q tqM!c$$ӋD !'33i}oܐW/h&MvIR6"t H|NORT:)B#~b%fB{@v7F2#<D sHed6J<EF^)#򬚠 ⻾HUHHTZ IoYe;GdX. Y jw,}.!!25vh;ݒ5.!,#:ITRL3×᭓κq51mu^ϣ7[Eٜs. $VN}0S2;d!GR4`,~C)%o:}̔fDIk8|0 #F-Kߐƥk[&Omho )ݩ-?Kh _G>/ #SZk+BHUiv3u[_9l&olцHᶉO߄Y\H"Bf4-ÉWb[TjPﴉ+uIkqhHdD2(9)fH&[ A~ GBtbܕT @!8JG1@:Kێb)`TH+L~Pd %:EbeHJH+k_üVExx[ Rr")$фȋ`Ϯ={00e`m\}!rX8hrX/<{#EgsT[X ߶䴵 ѣѩ`k TDM5aQg n=r'g߶ &ɉьFCB{4 $.tq#w0%N[x!V܆N ǵ86׃_wyFhڤ1rd!6^ә$Fvp!Fy&B6XS4J"6dF8"%NbjBAD'BuApLmZ%>O Ė4W=!wV&b2 Z a+4o'D.\O't#獓S+ԃ`bgaD`H>D-R'kBL Q3ۏW3^۪ =}ƈ^۪,㴭RH!б)QؠqI9:udfC'aރ}7ȨA2Gjuhظץ \E^> Ĺ^!.qiBJ5LoxZ,n^s"! c#yLM88ܘ{>8}yz3&Y[ļѪO9 Zr4֝Eu|!d|z(+.KE{u^E{SiDѴJ JM{SioJ7M"Yh/Yx^/K*$=yyf7K8-C kǰHHώaGCd)ވ4g{c1+Ne퍸cH-f/sro2d}\n97Y+ ,;!M t߻sr;LJ|@Bw'4  P\8U0.tH.k6k.!e H@vDAtD‹l)$VBژ cѐ1S',Pґj=诇3!!?{h"hɵLU*viʴ_eگ2WLU&n2%"n2&SB.2&S(ɩѼgMAI =P]a !CKњPǦ{EXv4KkZj^񊣟Y?5oPo4_哮IW|U>*tO'^Y}N ȓ䳳\H*IK+#U yb+jXW!6ZVzykIO1b%mINFh̚DTXMMʯ";Nي0bv4ՆdX._Tػ8|,ovoT7b2*1S#xPT )$NՈ&8jt҃h2\%AOQh%HXP]LWNq[EtEXv4C*CD3Sw14~ë,KF3 Ī[ 3.a Š gtGZKow{«|+3il>Bgc ^d!*F7 0ᥡPa!;\3wѫ7e}'qn B v4?m@-̛b,pn>ΰKX7=g!efUR3ӔqټBqGb\8=TVBp"XoG@ng4R-^kHx(y9\_?! 1-VWs b&dj2翉FZNPܡ vs(Gc)Ġ3MhWIu g2đQ ##p;' "Nj=gu@, j$ey+WXaKaFP ,ZZ1=Si4w޻HȔr) Rz<2a#!;9qo#nV-m K=VE )doB)?[X-Žug[g2N-k')cFB䌑Hc=@IuE"@H}F򬊩H1| [K'iev):"9qO+FþˉtTgGspOH!\:>bc?#XYC;&q:re 3hi#FOLA#ojڪ}!sҐIH Xy[#pQ Itcv60DAėtL][KLkCk8p"%dZ~Dhv4y$)Lsd 8r+KHa4R`YmFb(Zehf*pGhguUԳΝ6eA:-TOH{0s=mL{N4};),OaG+ОF;{OAT'q/O)IϮެS5"҃$>Z%;N*1h#;JBvd5ڎF  C5mۃ3nGJ wٞhEg%95$u#NfH4$ɝn$GR}^ӈMj@jZj^~k5%Gq1!rX Ժ\YW8 Mڼf(08-ҁ|MANĕG#ɺ4})B,n)7*[rJvj5,4DXXZ&e)bgɱ$*ѣ+KSyg|Z:|pLګxA>NG:"݉6+f!cb(y`f.K5xΎGG=`e=@]ȁuQMFO@5";%7+E9 B^o.fWA;R 틡v7wˢZϴ F;oE wlEBY XhhbL{|S@c@m3u 7wΗQ#<-FR>[r/dK5Kk5Δr5r~k! FUvbbb4_ۆn"fnlV#s۾y鱣+2> Ϯ=g״Tv>NϮi8L)Ⱦt~zŒCF\GY{fWH qg!ԃ؃ǽG c.ytwM#}jN{1m7:%yw]#b_uU8]#NE}Ӈɸ'SM44=LEFpT4R-  TǪ3x#N:S)V<np\MFo~B\6icɼC@vHث2f^s?PRUss" qrB 2H' "2 7pB7郌)mN M Wev%.̸A޲FF8ԣJ\Kbc`"ɏ0̯ܢ4z?o; $cfU5vcOn^?mo0=XZ=K{9%IU! ҄ *y$l(dh MG iܷwH{gn!Gxͷo^Z`MgvmjtFm䮥 ,1Srar~ =U2!TW3*t^-A]#;;ݫL?uf6~u6w䗍LBTMgK tv:~F |S |Sg#q6 TGxO30Ӗ yhIiH 3' )pfO7ikϞ^:5V}Mҁ8ҡt/9y1@ Ih=TLo 3]z;I/}+F+_7"^O4pj"E e;}I<RElI5*[# 6LCE5N+D6VNFs1HH 6y@ l{ Xq#ï|ݑHDZ]a uG۬H qRXx/!.)kH@PdF Ac ݣh q^-'3+Vp4pxekhDv`l=^B*m )kPq=]qJb߅Լ5S=~^uAXz4Hx(_Ts c瞿32e |;ICOYClo%#!H5ژ3ܩ8kxhrB-Z ,9h!*Ch$;(q6t>h|aTtp}[Zh^v4^ja] Ht!BV;߹Ļўk+89S촜gGuuMyD,E3ݙ3KqdQDE.KFpjF&w ,Uy# <Ǟ ՞Ufc\;b>ߤ -99O3v|q)qDAGu7R-ÒKێb(Zehf*WsGjuלD`Kѕ;2&Bfcb66jw 55"y<.iSA~!zS@;ݴQ~CGGZ!ߩ !_* 2c%ᅐg"7^u<;gtC5E)#wbt;pNX^TwDG[s|m͍ou5w0VY&E b4|1b&N.hMi 3Di"_Lqz͠8ZM 1b4s[E6p"Af0ݰ8cT͠fR`YmGc V& 5ܑ9z_?5&JDQqoH{0>WJ1oawY²B4:7ҕƽM#&^;kKxK5 fb/1u7A}69:eRblHvYٝF:*[YoV@Z?wteMWvnnCr?euMǢY_^ bTXa] Gn%L ?t*bfuq[=;ihs/քh^H^v h5[sk,9<0!Qj<< X۸M5\XTk x:a -=pgKu+s1suH#>Vw/QSF9H[ CA]!Vʬ' p<<_Ig;:< z&ƣ54T3mQNqYV/b6Zkk˾i a4K 6{3XKm3+6a9ZM ђi VMܩ^WPaL}#*?z Jc5<;\ sj"p-:SO6s?$eȍp^!8{:"Bټ/ĉUB-v qKdw7!5 lk/3r65@ˌF'Z т;M=U F$1ZSȴIOSk{;#Zͭ).-#&BѾGGR4[V In#j$2"F0Pųmȶ3%2n=Lo0!U_HB &3b$%IUW:qMjsޙR\哝G?=P& '}!+,ޤ!]za*Y;FG:<)]S(ABܰzč+"x52,¯8t?RR5$v[ƚ#襳hxH5*QQg y5 `CAUiݝ,wVf9M *S1ZQjAAБmAup1Ӡ#;AGG )t!9hBC B BL7?^QN3mO 7-hxH^GO T@_<ȁ߀ ٸ7<mn4}/W@f"A,3mK&@au$4vh/ԈhqFJ`;"@ @Iȣ?̣[(is\Le{"gNg< ) 3ԏ1[:^H]p%%Mu8Dʡ E$gu7P *$ྷhl j n.!0~#l@w6&'0e "ǥ̡PH ƞFXxG`̜a{0O (@q܍ǩ t]bV*4Dq*UiEC'sIΘ]}sxa@"u>xol][ ʪaw[S+lwvݝ@ڀc O,n5H=E}dD"v$6BgmJTo9kh1́38#E܌֖qSa=Gpe?fd4K5f3Ëb3fV3`BT wUbaWiPyH-_:T7V%[D<rG5d1T xct7j^Ł)z҉ PiiUh7n <)3\gt!!ϐiqH:eYzqHԬh?hJayBe3M3)Vf;8B|di=H3 mf x qȍvuԟqHXHMlDԸ|к`LJ3XadQC aTȼH3FzTj[!SqQ[h-8@JZ8B.9+p="Ԟ BFF vg~S#kv#&H#V?vLEOLdDB߭($ $*d$X}Ekځ#2, >PY+i3"¬vh#Y$?\+6H`Ґ<9Hy# %C:2 9gI?]sFƒx5~Ilj7ZGRQg헫ujT 2- GE[Cap9K t]RCb]RSpuit۽IM4<0o q(D*i%mLdp;}c)O޲ ֣>4n6v h52UorEAhMƹlo%\Bvk]`W!-!o?J[vB FP6uC_H#;d\QCxbXS444h#RB zVm’Hk QHjG$qmZ%>*dP_3zU A&a*#25Ze=yViBIA~<}CL1ڳHLu1BFMxݢk)/dhuN>^RdO%E%E6zDdI]vgSc]3Q$EdTrEҶ;Yש@u8@ymԌ6:󌎫$֩czq#gvtiN4Lol%rBH!$pl$IccͬN_%shZoހmGF>hѴ, [wo 8uEݳƽGEY{SiDѴJ JM{Si/.ڋ,ֳx^G]Y{SjojojojojBH>? ng;`e1,ҳcY:Dʹ'8G*'҉1P;E~97 լ[r06dmDקɋp(ԐLq:G])iXPnN f ע](\/p5&6 cѲ8P%FLsgah"hɵLU*viʴ_eگ2WLU&n2&n2&Sy)ґRP;yȒ,ji-C?p,)Ա$g5RZg*WsGig}|7|u13W|U>*tO']Wī|{}H%+sGij1Pj_QêfK<#U?͞7Ng2ےnHNj ߨG^w ![1 ^!6 z雦pdzi ~FL@[E@#|*T/0FCݢPQC5JuI{fNCWѷуfD~J<.F3O)1E?$.&1Ӣy)i(ѢR 9h!UjfB{ \c:hW^Y6^f>bUof4a] "33莴Zni/r=3il>Bgc ^d!*F7 0B MSPq:?r6F"*?IOwe< AH`33ṕGJBb7t_ºFn43=z"ǗRҾ"_q"-qWN|l98Ob$F[h#(-[qS\5Ӏk%/VLBį?1LTDŽ^0S4sjG>ZmKogH) "mFb()2}R@hE/.Kn !jtR9Ӏ#Qb+ G=FF^bUof4a] "3OsGZKѫk@7şA 5[yC/,y;Z1yo#nV-m K=V"izO@t n\ԭcbi1 Q+8*݆>VDݺ>v^]AkA=Z4H>wFȧE1F*$xt}c<ՅI@W$&]/ "xG˂1\(b4X?񄨮xH4'h_LżD,-hO߂E.hRGEl0hV{E "niFNC \y}siδ\gZ3יLuWc@1OX}Q9^j}1S}}Q}!}!9h!Uj#<>F:ri4_g3יLu12聴bZw6nG?qz" ;yܾ m`"n#'V !sV|,L]9$+DgdTE1*1Z'7џ7,G%TB$M؞ 򛧪渺]}~}071R{r'7=su 9Rŷo^Z`MgvmjtFm䮥 ,1Srar~ =U2js09ΨXy^#suMt27Nי٠Nܰƛ pL?94tP32jɋ:kIx:{Zyx\C NN@b(=-f LA;7{DwL[{,!k Nu^:D5w_sZw_Z'M@1Zz (Zaw֫OwRcYaP"^O4pj"E e!W'~QrBxx tplOSx/i4T(ʧ[}i%&d;BǾ B≠\ed[ccy# <y>mu8+,:9.FJ+6@~ōK 37lc+;CwX9v(ZhrIT%FwGk _Tk 825m4\q";0 !gĔ5S8{؎.8%Bj^)Ǟz?: c= VPr[c( h'GoWjJT{Yp ,9h!UjfR{5wk^}I4] )?{!ˌ\P`5;DFּ]4 qs)K6oȿC";4a#KYDfv6?Jj":{iXTk tZϔ|Zˁ;1:d8Jk'lac;+MƷ:ښ;g h,m"_ԅ|1]KDy|1'bz&4]䋙c"_L?E~DۋlnR /m :E6殠l}E6K",m;kP-4Thxo6Q"ڎ G~{@7^>WJ1oawY²B4:7ҕƽM#&^;kKxK5 fb/1u7A}v  No})MW6$EqNJ|#B7s+ zF;[Ҧ+|teAo7~z3rW.^3l]t_T"^ݬX7˗=[Kg!VYS[r=Ӝk]r4$bj3g:Y ?q9 o.ܱD/ܱQ`wZqwZqӁa46l}C!cѬ/dh{X u1T bf*Ꮀ.W{CMPA:Im~v1|CIP:x-㝴|k[]LAl /u/P4ߚ9JzߐD5,Ujm&.,5hc _+m `NT  sjv6WŊ%EMxƺ@@g^;4sm~gjo8^`WAdj`{ A$Q[_JRэ-Rh9T. &2N=k33qCEGyZ-/$e.8 ؒ&:~M"Pd"3ʺaU r@Bp[4P657 D[I{6v JcRP U cOHj,Bq#CE|0fN=Y_ s8YITH:.1+If8突N\$g.9`F]x d2";a6^%*75V "nFk͸YZqͰYўfQ3HA3E3ks0!MtT x ~PKUNf;\)SDWire-fabrication-v1.4/SDWire-B_Mask.gbrUT p.\%r]ux cPcPOol"Y#-H ,)km0Hb8TsȝjVǝz? e׿e7_Oqɋ^?i4{^g70ԇ1Ro!}}տ?|2KSNՇ%k-RB'|W]\ʍ;=ѓ'/;yuo|}uWϯ/n8nL}ճGoJɇ]9m'gs/쯯vW.nnNvJnuÇ/.u}}[/wuw,}2ϟ8߼|ϗ}ţ?ǯUot/Oi74П'kis46E07ts7ߝMI# ۃ|n*?>Dg!u\B˽<JJK}UʔiQ#Jk[E)iUz)/J)RCs]{ȫ>yJcB]e rUż(VEJ*/k k5%$k%ME)].J2@#p2 j-(1F ~%ƨ[Ih̴$괔b9hKYnӍ(4ш,ܩn˰ iiU-Yidb˱7Ȫ5{[NUl- KxPR%˲Jɹ)}"+j,؎@$u6oG-JۙvuDiRiuNRhȉ6Re!׹ lJ}Va&2ͲJfP8۶JbW*\x5`W=gÎ+.Q`ȱ[ba1Cؕ111{L6%JEO\qlawTysםr㴤p ";8-):8-HL+);8-R"6N&NKjNKN%N0$%g%WrC%NKINүYW듃gN˜JZ98-sspZTfT~rpZ6N%8sqZlTe5  FM&F3%!%()S9h! * g"a*AhreR4hW PӨ)h.:Hbr>%F3]3ϔ*9iSY88([U*ǫ,H6,FS`8:bP2(;I#@u惢+0Zj3U'W`EkDNnVh@: ԫ ^ dzMJE^(yQE ILLOZQ0X0e90rm0! U&3@U%MUYj Q+*wQ+\ !vKlabW&;vl@2eeQavG2r6jaD"2uHs p#yGz8E{BS[q޻'*}=N%b{Z>O2E)u-]69]w{v?J1brߥsP8=VPCɠn.lF E6rؕH$gu }јiaX#$F%FjƏFkǍ )[Y%42QcL:A/XU9py%,JbsKRFIY1F%ɌQKFb3d6V'/X(# rQhF44> ǘUA.521Lu 22^lFɫ,PT5TTèSL(GU.QPSn V \J99dr^E xE6% VTFrӴmu$#~éNEqp:Ʃ]Net䡍Sp98=wjJ^8lQ&Ntp*3vpZG#gtʜ6lJSTz5-N[Ntp*vp:v6NNeTv+NeT88m):8(PWsQ#CRS3SfV VELYE\E_eCe@Fe"Ie/Le<PU + F3W0v l]`G] v>l-ybņ]4vrldb`ɔOF57e Ӻ+t8FYwjF &f ƧVR(6*D^x)W*\g`:W=68` 65|[b 26i)fPHEh:mTsqpQ;x88C.aQ=e%.ucKYwYJNñZG(˜WѤ@ >Xo09QY\s9B,r;6$rSڡt^?3}ZujJyR 6фPKUNZVPV)SDWire-fabrication-v1.4/SDWire-In1_Cu.gbrUT p.\%r]ux cPcP}]Ϧmy~,G6k'AIk4Y=I.݃%%E> Z>)H~һ˻_~ǯ~?~oswֿl?͟Ͼ}? c/||w\[O~%rL)?RP>пX|IՕ^_~GWG_?{o>ux>W?÷OWOs*?O?K~k>~?}Ͼw㟾_ox?Շ?? 믾|i|w&{L"~՗ڟ}~;}w}1a) _w7WSV) R}>OOgW3/]d$3B o8~p5,:=dOT91ZOF-3+ IAHo7d q}#;Y3|rD$=SW T7GC&f&JO!0~#EBjk?i{뉊|+ڶx]Ӥ=* RT!h񦢆\qf;%ZB ~W6RR hE{ J5wif!ru־[yHDxm@Ӕ3,~BaWdL˧Tzz~SIzf~SwU/{7|\B+A6\3+ys{p4j$d>c[Jr~CjhbTC$.O}ӫQhӉ+q1uҺCǹ^g k뵝:iϲJHsjtIKC`[ .-aZ{da]bs^Ho:ƺo>\G^MggU>RM%{o~-6B5t>zc'm rgB P%EdAHdg ӷ[MF)yN>k r'$Z "ąq̂Jr$i7yv֐@3I9-tR)Y#m# YssUeTyM'0G&BN!> 4:t9Le2m NҮs\Zfe@F@ ^Ivu iBA%LiRN%v:^R'6THIN#Y<>wYf Lk)i2!D2M:1ړjb""2~2 -EsHdvJ_H]lT$?/ b `7H~_ Yk 9xYDkm'Fܧ-D jl4-v6B~jFY>A2\anY?/qu AmFnY1=rc!)A BL{ČF6$vkCug>)gi6igw6&[H6AH6Z hCrօ#Ǻօc%SXvźd+u:du)3{u)h2ۺT!e[';x14%P]1LK;NI{0-8rg|!۫;zPLQ+?bu /Ж^w-D!v@5*q 5:PPLլ*~(9,RpFDr=wHJjC۵,ծ3-2NesStu+kw_VEdڂª'3Kᓚ)X3)X$_LŊߨ^mݎ~m?rf> oE@(9Poy2%(RC*=#+N(HH~3pطOqhէYAx)-nDk=LK2E'd:2]A. Ed<m*pi4\e2U~X%(G[,"єM"0/`ԦC/R oħ#d=F՚ BoYQ,)@6B#УaCSM5fWLUFFqGeqG H*" @cK'RUk3 |DquŰnEJ|8 DRj!Fɇ$>Db1uj6&qBa4Z<커#9=̔4>,Qr|/R@DK]eڮ2mWLU*~iʴ_eگ27Oq)!fwiv7riv7*DINk9̴!wj?p,)ᒜ$gM4R ZFM3EQ8|zCAi']哮IW|U>*xO'^sݳ"(߅EO*Oy\1bNRjBu*+qǫ|^Tw㬚K+锶 LF@[e)|*;FăIN'z;ɰEhjN4NԥvНC>qnwS:k-)o((Qy@5ELW:p8G u®|EDv4Ch4?'o#~GVMV`XKaFb(d+ff ZKoW{׈d >B~,>5،r\,:9ʓĀ/:+n|D<;K B0'VT S>@䔔?Φ7UA_7򺟕I_Փ̔ B{!m N*riv|`"Kn0p10,yf4eHP,Ɗn x?u[سL)%awhzF%Vs b&PԭL#E,\$QQ )Ġ 3Hیb(QmOT_oYE 'XAriBuʷ\|Z+TZϙ޾vFP-+8Ta[D, ,)Z>W{׈yP>;l?>x];^ŀui!:vλl"dh=o?$CbwGFW"D,o G?$0JDR7nEW}Xs’;`x.{9ng%c\="E$>ILk(HfImÝ$1.R@DKGৡ_%ӑ@6̔`;lA k) 6 @ ՠf;s_s[ַ.Zِ'[do]do]MTH*2/BE(YW> HB "o?!Sγ(+!EN* cڊt5v'a4WF@ˁQu\i;!71a\| d;ͺwRKóca?!|8}>;Z߿Ru5vJnU)횝+wImWrBp4-m@kR* yVWWƽ^k/ZѧЫ B˔b@FJuk$jXynEȽhUfQ)|pjښa^Nܡ 8M heXrm׆ONv2zRnaG}}Voww&Aڙv#ܙ3J;"zgњޙw&革+" Q"͕@ʏ]S[Xv}ٵ\ztz 1yeН F*h *莦L+HNs5GkI-9-,5Puv̔63w4䈁鼲H6-EDv4Ch5QWs5^s~kN_8ڂ>녣M5QGhQC˱Tgਸ਼;8mUjތMDDI^kJLmc(wLޝepGn]llE"%ml߅}s ;3;7q!8+nQw$Vb-['$m)!. !7MIZ#K ,e:Wwr%i2<)%_X[ݯuҹ_Z;F5E@A.n|X,!3,m$UxtorzS^; %~vGgmK b;ƮLXp,4՝K\$8¦N:X:N>l |UŸFB'G *:aBxhB'WREKA$gM4R Zef=,V?h/Yqn{x.( \%+ڎaeբWF ɪ0Tup T; X1}Hnv#~*.FR#%&̂td)-R8qs3#X$Ӛwۗ[XnMAoLҜi,BsenJNpkT)nkw63%b;&g9ZM hhcD5UH0Gԁ;c&],Ha ),"6 @ ՠf;s_sg/єt} zQrIKpjPzʉVNפ ^"~3,KfP%cf%'d%d8M hh|lQPT4K`ĩjɗt( ص|DriDC UjD3S^x9DX0_?:-Ŭ2Xt]xκ bәzu:NDcG*QH)83Z;W7H32%_R&=Pfx7N *1dX.%{/U i̓o3lAVWoDA:5}gᨾ%wmWn&"׫ _o/[þ}A./$G˲/( +/(/fj wK8 )(DIN!ICo3Mr'{mѤ¡=@K֣h P4ըz;JͺKҚHA۝* [պH[۷ '0Zl*1ۤ#Ց+ūi#6ɫ$o E^6}--$vf] ѷhU7hbзhhA=Z4iVfsSUi4;tF!P&,"6 ^] i^sHx^  ƒ5ƒLa[Dx`FKa(bdfVLs-_Էsovn{qKăC?zTcԞj҈Rm(P ޺7{Df{#Ƹ%! j=L!&6AvčXGsʫ B)t i?p'ݟBbPt5-"MbZCjL!6]s߳p-,W`)́d\1]upƘ)ozr|rO/{VH/ y~6Nn?ϳko 턐ᙽ_F4X;P]meVǬ_TF"r^އ÷^mz5kK^o2?(Ͼ< T]^Yd~Fɲ o\oiPov[6 ܑ[疣5ܤ% f %kP]Ldq@|gH 2{FBA$NRdFTA^@^AjLwz#.|T Ty 8Pt*Au`&( :+UAgr PhF ICTUx"w3-יLu:ziδ^g)HZ27DhV{u6:3::V{읖H""m;hP NMδ\gZ3יLu:|)X#SHFЊiݹĻ%vMg3vCD8?& 9U,l: LAd/!cWWs|G,WƨesEs7S3ط հכ`>C{5 q#xO&n 97::HtətArL 9Mv]mUg7BtжjJlⶣ/ȶ/m{m)o}TLnvewޓ/ziO(os`=UwHy-aSҍ;-޸ӂuy}{bo J7+ O|m ym5.2PPS6[̷bh;%KAb5Îr#vǫ\F(@]HﰻN~8oDʶxBh6z7ѸbXTk mj@u͠a|F?p;[=) %rv?9R:rʲY[HI|Χ<#wt&8^3ӈsT7@曌֜PмP̴݂ESW[\/iUk-O6u>֖}HPZSPy{R]hx) :oYYg9ZM hhF@hh"pz}Rur*>AJ|1fGR ~|K3SG>݋F$gp pmЖ~op[A yDhM r[N}KϾ]+eډ t3H<''"#b(dvDBmkFg@Ώ8=C0zqn-mvuy;~4q b7R I! 7zNHNzUri7R;ɵsBhƳBSFFZE5A2o- >Mdt ԪT;HKrƁL;*< II(p;K+HF*lBۈh @;Lg3 r'n99! 81ε ~ xv#ZQҞg 4x3)Hk~K!+ԟyH@؇XH&R6:5a "h< y%GR ԕ<$ lV i!5HJm+e %|?62&O;sԑWbd>F Ҥ%+8r"4bnd*iDFNJ돜B" Q!k-$܇ afQ*6,Wum$6>86(ҐO9H x'!A?1q:m/GF8Z߉GѺ!{4&-G5q iL^ YWrڸ8NDy:'~JQnVǤ!2M4HuJC;('ď5Oz#nMdLA 'QJ]3Io^ZI 2&GǤg{%ŭFdeOA~7=Iтp)~ R@C|1K1횗bi/mb4lchDJhRf)8K] :ϗN.茾^ :MQO9yO㽳5a4Wx+j 8D́jW&{󁻑"VmYiy;<7-(E7rrk~3pطOqhէYAx)mK7 =]d^)zvf>&S 5ߖyT2ty./ yhWLU*pBhSĢ-9F9cddh}6/`}AEj_x#>Ǵ!0@$n"~BfH  ̔h1g22;*8FNG_i~]>B\qVӤ,cӆSp׍j^ z.+?eWP1@jmƕU}IF~L@.HuN_3%78ph]LU>*tO']哮IWī|U>*u)WČjspdn-Wn8壛je~>NTijKr8Grx#:v.0e48, \@MSEEN$V7 ;]~Nu#[sa>z$^NlvajC'G ՜tK'=hK;[+VF/:inkLWv+d`n=ɣa\&D?Ƕ4qv~Av;v iKAm-q3N--GcI#9-.Pu&:{ 3: :K : R:3Hیb(2T&^}!] 4Hk+o# s’?!m-$u\n?w/HL{fC\Kw\[.KCJCDnμ~Ӓܪ?Rj2Z㻖DgKϗ(|ÉK/ZeO `Fse 8_E;ng Tqn 5)~~w/7hHXo|IƇ9h||Q(·RM;`_gMؾrDFy(!)(DIGF Zg|eN|e5} JP^ < ӊn#7VKXn`B2yt'SX.HgSș F>b ھNl1:[ "pgv@Ƚhܲ<.5/NPM[mB0SnNܡ 8M h<mh7Owɳ<%O75]Lj;]Lrw3GQ6hG-" G |o6vo6 o6 o66'y+1rEy{0?hvo {m#[ۧ <8!ܶ4 ]9Zҏ ~J=Fa!!*84O٤rZ#k_HU/\km{Ү;yĉd {0Nr-sxY$MAܖBWw)4:Yrϳђ8'3;G1x|rϴjYrʁeR Hیb(2T&Ꙣjk^}![U{C>%wc= Sqlfڄk|*ӱA)-R8!Iq>|KA*t>GHjKGjiYYs̟. *Օ[/L+E Nek=Y~"Zr0ZCy4w8QgAU,4Q9uNIGgRpDri@C UjD3S^x9D3<)O1TNI(:B9 mD|6;v3`OE;Zʉ VuŦ3uv_GL.9E=0HUn{Rq* gwoRj/)UЃ V~ }*v2 |Yd?2Zuj( /4}Gu#[Q}KBME}W d_зz}A/8/]ȥ{_0H}Ae_P {_PTgWe_P3ndĒ+rsBhR1:f8Ӥ!w׆M.JA m=jJSgګ4^߬kU8mHk"mwZ)[պH[۷ '0Zl*1ۤ#Ց+ūi#6pB(;~8FC11xEJ?h~9v^}#$9xY%zeei ӬF  xo$6QH x`zH <0)eceX?frgg:ygght 騗a.|2h: w'CH!MYDmF 1p6搀|i턐ᙽ_F녬M;P]meVǬ_TF"r^އMdzG mk׫>^[ܷzٷGf~ QЧ:&d5Ol}e}K}R-L:V ^kOAPe)Ȕ@dw Sg$4)Mtio A_j$Lhd(ddfTq{8!P+PMuF*@^Й :[ՁAg0T!ɂE@ *$ PUi.uF@$߹δ\gZ3-יLu:z);Z#i=bF:["9h!*C5h";14:ri4_g3יLu`]L"=@+ujv5՞%m9Dވy})9U1V 1+9S#{+|cTʲϹ9  `CۆjL?0ABsܽ'7zHNGS$g:LVAr: 9u&FHN&t~ӵk{-DDǍ)IXx3R8+Rb3~3Hes+M` b (qE$ִI|j)R-q)Ά;o^{SX&|OwV"Lisu=8+Gq/ ɸo/Hw_ݸ; w x/N߉LYGX$}2Kfki*ksKgX͝Xr"JGw왫vGLg*ZeWA]98SEtGEtD RDhUPD ]98S@yNSrU@j|3_ "Ų8 KCߤR_\dTvYJ ugLJok`;%t'8,Yi ?kv4nB՚|sxC%fZ8ځ;e(lY XhI"~=P0Vp?Q=Li_h՛;qc|(2"ثْ{A_Fb)T&ڙZ[}9'vTMT:LѶ7]WmgCtζUVmuB&)ێ @lZ;SK,wp1㯻}zO[Ke>e s$/T?0-"9lpn2ߊ/լ;i7szvPnVK bu!{j;>^p+ے dG֊aQ)ඩ=y4·KFl9J\VّH+Bg9o!rC&r9dU9!Z6!ʫR8qN] L ځOҙzN#UR5io2ZsoBAoBu o2M=_mqYV9,>kM^[[M#k@}8F~ϋjMA!5KuI}a&%gSrfh)7) %iFCjU0SIJodRkU"g9߀>*溲䜉ìath9ɹ^g*sֆș;rhmZ8Z*r2|芿*..˩"?*r%EDv4Ch4˩o3-יLu:|iv3#STu臐Oߥp/^C!!^H]_X*,"M|>Kj-L5Gzw/=t%õA[omm,8o57al ;2K,=p(2e"3*P [{D'7b+I C ;̡W@nd$G#1蠡Z1s ¢Ծ>_ n5?gq*CdNt[dȭi Hj m( a$y˝"f΃. O2D_xZ`·$^ߴ\v:?"vsN m mݍ&]A܇.b< d2p1=a6^*>3g*$xuy3Z[nZf6kK֌g֌ IQ#iF@7sfm< iR l,_Fn.^ƅPKRN:u"SDWire-fabrication-v1.4/SDWire.drlUT )\\ux cPcPTKk1P)=V=\ ΃,-ހi&f Л73<8z}-x.ۍRI5?c?ZV/ѿWpQ*'شNԻ^h+0J'؅3\|OOD߻#:߮ۇͅ\gb̵mY(5/ۓvnf׫{_Iꜙ>on.F/t1x`AUˤKH~hdP1%C &HŘF! Le*HޡaL˂6/#`-1- R ' zSp&&YJ;&( DŎ@Kt:< vu%w7P Gd^1qq8 ; GņY3FS1-)S^:YI1nPܧJ%~;qtvC3xd#?7i#F38BCLvW5fiIcmiy@q/ҡ&]IWt%.NրV=Zq">`}oTU[UPK UNASDWire-fabrication-v1.4/UTp.\ux cPcPPKUNx&G2'RSDWire-fabrication-v1.4/SDWire-F_Cu.gbrUTp.\ux cPcPPKUN$ZC\*L3SDWire-fabrication-v1.4/SDWire-B_Paste.gbrUTp.\ux cPcPPKUNfJ'ESDWire-fabrication-v1.4/SDWire-B_Cu.gbrUTp.\ux cPcPPKUN @"k*/eSDWire-fabrication-v1.4/SDWire-B_SilkS.gbrUTp.\ux cPcPPKUN-IN)zSDWire-fabrication-v1.4/SDWire-F_Mask.gbrUTp.\ux cPcPPKUN9L :*aSDWire-fabrication-v1.4/SDWire-F_SilkS.gbrUTp.\ux cPcPPKUNx*SDWire-fabrication-v1.4/SDWire-F_Paste.gbrUTp.\ux cPcPPKUNb(},XSDWire-fabrication-v1.4/SDWire-Edge_Cuts.gbrUTp.\ux cPcPPKUN~QF);SDWire-fabrication-v1.4/SDWire-In2_Cu.gbrUTp.\ux cPcPPKUNf;\)SDWire-fabrication-v1.4/SDWire-B_Mask.gbrUTp.\ux cPcPPKUNZVPV)JSDWire-fabrication-v1.4/SDWire-In1_Cu.gbrUTp.\ux cPcPPKRN:u"KSDWire-fabrication-v1.4/SDWire.drlUT)\ux cPcPPK Nsd-mux-ctrl-0.0.4/doc/hardware/SDWire/SDWire.kicad_pcb000066400000000000000000013637561506653766500224170ustar00rootroot00000000000000(kicad_pcb (version 20190605) (host pcbnew "5.99.0-unknown-efbc802~86~ubuntu18.04.1") (general (thickness 0.8) (drawings 36) (tracks 1507) (modules 83) (nets 74) ) (page "A4") (title_block (title "Micro SD card adapter") (date "2019-05-12") (rev "1.4") (company "SRPOL") (comment 1 "Author: Adam Malinowski ") (comment 2 "Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved") ) (layers (0 "F.Cu" signal) (1 "In1.Cu" power) (2 "In2.Cu" power) (31 "B.Cu" signal) (32 "B.Adhes" user hide) (33 "F.Adhes" user hide) (34 "B.Paste" user hide) (35 "F.Paste" user hide) (36 "B.SilkS" user) (37 "F.SilkS" user hide) (38 "B.Mask" user) (39 "F.Mask" user hide) (40 "Dwgs.User" user hide) (41 "Cmts.User" user hide) (42 "Eco1.User" user hide) (43 "Eco2.User" user hide) (44 "Edge.Cuts" user) (45 "Margin" user hide) (46 "B.CrtYd" user hide) (47 "F.CrtYd" user hide) (48 "B.Fab" user hide) (49 "F.Fab" user hide) ) (setup (last_trace_width 0.2) (trace_clearance 0.19) (zone_clearance 0.2) (zone_45_only no) (trace_min 0.2) (via_size 0.8) (via_drill 0.4) (via_min_size 0.4) (via_min_drill 0.3) (uvia_size 0.3) (uvia_drill 0.1) (uvias_allowed no) (uvia_min_size 0.2) (uvia_min_drill 0.1) (max_error 0.005) (defaults (edge_clearance 0.01) (edge_cuts_line_width 0.15) (courtyard_line_width 0.05) (copper_line_width 0.15) (copper_text_dims (size 1.5 1.5) (thickness 0.3) keep_upright) (silk_line_width 0.15) (silk_text_dims (size 0.5 0.5) (thickness 0.1) keep_upright) (other_layers_line_width 0.1) (other_layers_text_dims (size 1 1) (thickness 0.15) keep_upright) ) (pad_size 0.8 2.9) (pad_drill 0) (pad_to_mask_clearance 0.13) (aux_axis_origin 0 0) (visible_elements 7FFFFF7F) (pcbplotparams (layerselection 0x010fc_ffffffff) (usegerberextensions false) (usegerberattributes false) (usegerberadvancedattributes false) (creategerberjobfile false) (excludeedgelayer true) (linewidth 0.100000) (plotframeref false) (viasonmask false) (mode 1) (useauxorigin false) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) (psnegative false) (psa4output false) (plotreference false) (plotvalue false) (plotinvisibletext false) (padsonsilk false) (subtractmaskfromsilk true) (outputformat 1) (mirror false) (drillshape 0) (scaleselection 1) (outputdirectory "SDWire-assembly-v1.4/")) ) (net 0 "") (net 1 "GND") (net 2 "Net-(C1-Pad1)") (net 3 "/~RESET") (net 4 "Net-(C3-Pad1)") (net 5 "Net-(C4-Pad1)") (net 6 "Net-(C5-Pad1)") (net 7 "Net-(C7-Pad1)") (net 8 "Net-(C10-Pad1)") (net 9 "+3V3") (net 10 "Net-(C12-Pad1)") (net 11 "/USB_B-") (net 12 "/USB_B+") (net 13 "/USD_VDD") (net 14 "Net-(D1-Pad1)") (net 15 "Net-(D1-Pad2)") (net 16 "/DAT1_DUT") (net 17 "/DAT0_DUT") (net 18 "/CLK_DUT") (net 19 "/VDD_DUT") (net 20 "/CMD_DUT") (net 21 "/DAT3_DUT") (net 22 "/DAT2_DUT") (net 23 "Net-(J2-Pad1)") (net 24 "Net-(J2-Pad2)") (net 25 "Net-(J2-Pad3)") (net 26 "Net-(J2-Pad5)") (net 27 "Net-(J2-Pad7)") (net 28 "Net-(J2-Pad8)") (net 29 "/VDD") (net 30 "/VDD_TS") (net 31 "Net-(L2-Pad2)") (net 32 "/USB_UP-") (net 33 "/USB_UP+") (net 34 "Net-(P1-Pad4)") (net 35 "/SOCKET_SEL") (net 36 "Net-(R4-Pad1)") (net 37 "Net-(R6-Pad1)") (net 38 "Net-(R7-Pad1)") (net 39 "Net-(U1-Pad36)") (net 40 "/DAT2_TS") (net 41 "/DAT3_TS") (net 42 "Net-(U1-Pad31)") (net 43 "Net-(U1-Pad30)") (net 44 "Net-(U1-Pad29)") (net 45 "Net-(U1-Pad28)") (net 46 "Net-(U1-Pad27)") (net 47 "Net-(U1-Pad26)") (net 48 "/CMD_TS") (net 49 "Net-(U1-Pad23)") (net 50 "Net-(U1-Pad22)") (net 51 "/CLK_TS") (net 52 "Net-(U1-Pad20)") (net 53 "Net-(U1-Pad19)") (net 54 "/DAT0_TS") (net 55 "/DAT1_TS") (net 56 "/~CD_TS") (net 57 "Net-(U1-Pad11)") (net 58 "Net-(U1-Pad8)") (net 59 "Net-(U1-Pad7)") (net 60 "Net-(U1-Pad6)") (net 61 "Net-(U1-Pad4)") (net 62 "Net-(U1-Pad3)") (net 63 "Net-(U3-Pad8)") (net 64 "Net-(U3-Pad6)") (net 65 "Net-(U5-Pad3)") (net 66 "Net-(U2-Pad4)") (net 67 "Net-(D2-Pad1)") (net 68 "Net-(D3-Pad1)") (net 69 "Net-(D4-Pad1)") (net 70 "Net-(Q4-Pad1)") (net 71 "Net-(Q3-Pad1)") (net 72 "Net-(R16-Pad2)") (net 73 "Net-(R8-Pad2)") (net_class "Default" "This is the default net class." (clearance 0.19) (trace_width 0.2) (via_dia 0.8) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) (diff_pair_width 0.2) (diff_pair_gap 0.2) (add_net "+3V3") (add_net "/CLK_DUT") (add_net "/CLK_TS") (add_net "/CMD_DUT") (add_net "/CMD_TS") (add_net "/DAT0_DUT") (add_net "/DAT0_TS") (add_net "/DAT1_DUT") (add_net "/DAT1_TS") (add_net "/DAT2_DUT") (add_net "/DAT2_TS") (add_net "/DAT3_DUT") (add_net "/DAT3_TS") (add_net "/SOCKET_SEL") (add_net "/USB_B+") (add_net "/USB_B-") (add_net "/USB_UP+") (add_net "/USB_UP-") (add_net "/USD_VDD") (add_net "/VDD") (add_net "/VDD_DUT") (add_net "/VDD_TS") (add_net "/~CD_TS") (add_net "/~RESET") (add_net "GND") (add_net "Net-(C1-Pad1)") (add_net "Net-(C10-Pad1)") (add_net "Net-(C12-Pad1)") (add_net "Net-(C3-Pad1)") (add_net "Net-(C4-Pad1)") (add_net "Net-(C5-Pad1)") (add_net "Net-(C7-Pad1)") (add_net "Net-(D1-Pad1)") (add_net "Net-(D1-Pad2)") (add_net "Net-(D2-Pad1)") (add_net "Net-(D3-Pad1)") (add_net "Net-(D4-Pad1)") (add_net "Net-(J2-Pad1)") (add_net "Net-(J2-Pad2)") (add_net "Net-(J2-Pad3)") (add_net "Net-(J2-Pad5)") (add_net "Net-(J2-Pad7)") (add_net "Net-(J2-Pad8)") (add_net "Net-(L2-Pad2)") (add_net "Net-(P1-Pad4)") (add_net "Net-(Q3-Pad1)") (add_net "Net-(Q4-Pad1)") (add_net "Net-(R16-Pad2)") (add_net "Net-(R4-Pad1)") (add_net "Net-(R6-Pad1)") (add_net "Net-(R7-Pad1)") (add_net "Net-(R8-Pad2)") (add_net "Net-(U1-Pad11)") (add_net "Net-(U1-Pad19)") (add_net "Net-(U1-Pad20)") (add_net "Net-(U1-Pad22)") (add_net "Net-(U1-Pad23)") (add_net "Net-(U1-Pad26)") (add_net "Net-(U1-Pad27)") (add_net "Net-(U1-Pad28)") (add_net "Net-(U1-Pad29)") (add_net "Net-(U1-Pad3)") (add_net "Net-(U1-Pad30)") (add_net "Net-(U1-Pad31)") (add_net "Net-(U1-Pad36)") (add_net "Net-(U1-Pad4)") (add_net "Net-(U1-Pad6)") (add_net "Net-(U1-Pad7)") (add_net "Net-(U1-Pad8)") (add_net "Net-(U2-Pad4)") (add_net "Net-(U3-Pad6)") (add_net "Net-(U3-Pad8)") (add_net "Net-(U5-Pad3)") ) (module "Package_SO:SO-8_3.9x4.9mm_P1.27mm" (layer "B.Cu") (tedit 5C509AD1) (tstamp 5CD3E8F6) (at 147 124) (descr "SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") (tags "SO SO") (path "/5CD3BDFB") (attr smd) (fp_text reference "U6" (at 0 3.4) (layer "B.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror)) ) (fp_text value "AT24CS02-SSHM" (at -0.6 -3.9) (layer "B.Fab") (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_line (start 0 -2.56) (end 1.95 -2.56) (layer "B.SilkS") (width 0.12)) (fp_line (start 0 -2.56) (end -1.95 -2.56) (layer "B.SilkS") (width 0.12)) (fp_line (start 0 2.56) (end 1.95 2.56) (layer "B.SilkS") (width 0.12)) (fp_line (start 0 2.56) (end -3.45 2.56) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.975 2.45) (end 1.95 2.45) (layer "B.Fab") (width 0.1)) (fp_line (start 1.95 2.45) (end 1.95 -2.45) (layer "B.Fab") (width 0.1)) (fp_line (start 1.95 -2.45) (end -1.95 -2.45) (layer "B.Fab") (width 0.1)) (fp_line (start -1.95 -2.45) (end -1.95 1.475) (layer "B.Fab") (width 0.1)) (fp_line (start -1.95 1.475) (end -0.975 2.45) (layer "B.Fab") (width 0.1)) (fp_line (start -3.7 2.7) (end -3.7 -2.7) (layer "B.CrtYd") (width 0.05)) (fp_line (start -3.7 -2.7) (end 3.7 -2.7) (layer "B.CrtYd") (width 0.05)) (fp_line (start 3.7 -2.7) (end 3.7 2.7) (layer "B.CrtYd") (width 0.05)) (fp_line (start 3.7 2.7) (end -3.7 2.7) (layer "B.CrtYd") (width 0.05)) (fp_text user "%R" (at 0 0) (layer "B.Fab") (effects (font (size 0.98 0.98) (thickness 0.15)) (justify mirror)) ) (pad "8" smd roundrect (at 2.575 1.905) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 9 "+3V3")) (pad "7" smd roundrect (at 2.575 0.635) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 1 "GND")) (pad "6" smd roundrect (at 2.575 -0.635) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 72 "Net-(R16-Pad2)")) (pad "5" smd roundrect (at 2.575 -1.905) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 73 "Net-(R8-Pad2)")) (pad "4" smd roundrect (at -2.575 -1.905) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 1 "GND")) (pad "3" smd roundrect (at -2.575 -0.635) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 1 "GND")) (pad "2" smd roundrect (at -2.575 0.635) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 1 "GND")) (pad "1" smd roundrect (at -2.575 1.905) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 1 "GND")) (model "${KISYS3DMOD}/Package_SO.3dshapes/SO-8_3.9x4.9mm_P1.27mm.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu") (tedit 5B301BBD) (tstamp 5CD3E762) (at 151.2 125.3 90) (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") (tags "resistor") (path "/5CD42A3D") (attr smd) (fp_text reference "R16" (at 1.95 0 90) (layer "B.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror)) ) (fp_text value "10K" (at -2.2 -0.1 90) (layer "B.Fab") (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05)) (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05)) (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05)) (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05)) (fp_text user "%R" (at 0 0 90) (layer "B.Fab") (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror)) ) (pad "2" smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 72 "Net-(R16-Pad2)")) (pad "1" smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 9 "+3V3")) (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu") (tedit 5B301BBD) (tstamp 5D71602C) (at 152.3 125.285 90) (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") (tags "resistor") (path "/5CD42F84") (attr smd) (fp_text reference "R8" (at 2.185 0 90) (layer "B.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror)) ) (fp_text value "10K" (at -2.215 0.2 90) (layer "B.Fab") (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_text user "%R" (at 0 0 90) (layer "B.Fab") (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror)) ) (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05)) (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05)) (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05)) (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05)) (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1)) (pad "1" smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 9 "+3V3")) (pad "2" smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) (net 73 "Net-(R8-Pad2)")) (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "mux-footprints:usd-attend" (layer "B.Cu") (tedit 5AC5F446) (tstamp 58825FD4) (at 143.4 107.7 90) (path "/58802A8A") (attr smd) (fp_text reference "J2" (at -3.4 10.3 270) (layer "B.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror)) ) (fp_text value "uSD Socket" (at -3.5 -1.8 90) (layer "B.Fab") (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_arc (start 1.9 -5.2) (end 2.6 -5.2) (angle -90) (layer "B.SilkS") (width 0.1)) (fp_arc (start -8.3 -5.2) (end -8.3 -5.9) (angle -90) (layer "B.SilkS") (width 0.1)) (fp_line (start 1.9 0.1) (end 1.9 1) (layer "B.SilkS") (width 0.1)) (fp_line (start 2.6 -0.6) (end 1.9 0.1) (layer "B.SilkS") (width 0.1)) (fp_line (start 2.6 -5.2) (end 2.6 -0.6) (layer "B.SilkS") (width 0.1)) (fp_line (start -8.3 -5.9) (end 1.9 -5.9) (layer "B.SilkS") (width 0.1)) (fp_line (start -9 1) (end -9 -5.2) (layer "B.SilkS") (width 0.1)) (fp_line (start 3.2 3.7) (end 3.2 0.7) (layer "B.CrtYd") (width 0.1)) (fp_line (start 2 5.1) (end 3.2 3.7) (layer "B.CrtYd") (width 0.1)) (fp_line (start 2 10) (end 2 5.1) (layer "B.CrtYd") (width 0.1)) (fp_line (start -9.6 10) (end 2 10) (layer "B.CrtYd") (width 0.1)) (fp_line (start -9.6 0.7) (end -9.6 10) (layer "B.CrtYd") (width 0.1)) (fp_line (start 3.2 0.7) (end -9.6 0.7) (layer "B.CrtYd") (width 0.1)) (fp_line (start 1.7 5) (end 1.7 9.7) (layer "B.SilkS") (width 0.15)) (fp_line (start 1.7 9.7) (end -9.3 9.7) (layer "B.SilkS") (width 0.15)) (fp_line (start -9.3 1) (end -9.3 9.7) (layer "B.SilkS") (width 0.15)) (fp_line (start -9.3 1) (end 2.9 1) (layer "B.SilkS") (width 0.15)) (fp_line (start 2.9 3.6) (end 2.9 1) (layer "B.SilkS") (width 0.15)) (fp_line (start 1.7 5) (end 2.9 3.6) (layer "B.SilkS") (width 0.15)) (fp_line (start 1.7 9.7) (end -9.3 9.7) (layer "B.Fab") (width 0.15)) (fp_line (start -9.3 1) (end -9.3 9.7) (layer "B.Fab") (width 0.15)) (fp_line (start -9.3 1) (end 2.9 1) (layer "B.Fab") (width 0.15)) (fp_line (start 2.9 3.6) (end 2.9 1) (layer "B.Fab") (width 0.15)) (fp_line (start 1.7 5) (end 2.9 3.6) (layer "B.Fab") (width 0.15)) (fp_line (start 1.7 5) (end 1.7 9.7) (layer "B.Fab") (width 0.15)) (pad "1" smd rect (at 0 0 90) (size 0.8 1.3) (layers "B.Cu" "B.Paste" "B.Mask") (net 23 "Net-(J2-Pad1)")) (pad "2" smd rect (at -1.1 0 90) (size 0.8 1.3) (layers "B.Cu" "B.Paste" "B.Mask") (net 24 "Net-(J2-Pad2)")) (pad "3" smd rect (at -2.2 0 90) (size 0.8 1.3) (layers "B.Cu" "B.Paste" "B.Mask") (net 25 "Net-(J2-Pad3)")) (pad "4" smd rect (at -3.3 0 90) (size 0.8 1.3) (layers "B.Cu" "B.Paste" "B.Mask") (net 13 "/USD_VDD")) (pad "5" smd rect (at -4.4 0 90) (size 0.8 1.3) (layers "B.Cu" "B.Paste" "B.Mask") (net 26 "Net-(J2-Pad5)")) (pad "6" smd rect (at -5.5 0 90) (size 0.8 1.3) (layers "B.Cu" "B.Paste" "B.Mask") (net 1 "GND")) (pad "7" smd rect (at -6.6 0 90) (size 0.8 1.3) (layers "B.Cu" "B.Paste" "B.Mask") (net 27 "Net-(J2-Pad7)")) (pad "8" smd rect (at -7.7 0 90) (size 0.8 1.3) (layers "B.Cu" "B.Paste" "B.Mask") (net 28 "Net-(J2-Pad8)")) (pad "9" smd rect (at -9 9 90) (size 1.5 2.4) (layers "B.Cu" "B.Paste" "B.Mask")) (pad "9" smd rect (at 1.3 9 90) (size 1.5 2.4) (layers "B.Cu" "B.Paste" "B.Mask")) ) (module "mux-footprints:Crystal_SMD_2520-4pin_2.5x2.0mm" (layer "F.Cu") (tedit 5AC5F37A) (tstamp 5A8EA80C) (at 142.6 120.4) (descr "SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package") (tags "SMD SMT crystal") (path "/5887FAFB") (attr smd) (fp_text reference "Y1" (at -2.07 -1.02 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "24MHz" (at 0 -0.3) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -1.35 1.4) (end -1.65 1.1) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.65 -1.4) (end 1.65 1.4) (layer "F.SilkS") (width 0.12)) (fp_line (start -1.65 -1.4) (end 1.65 -1.4) (layer "F.SilkS") (width 0.12)) (fp_text user "%R" (at 0 0) (layer "F.Fab") hide (effects (font (size 0.6 0.6) (thickness 0.09))) ) (fp_line (start -1.15 -1) (end 1.15 -1) (layer "F.Fab") (width 0.1)) (fp_line (start 1.15 -1) (end 1.25 -0.9) (layer "F.Fab") (width 0.1)) (fp_line (start 1.25 -0.9) (end 1.25 0.9) (layer "F.Fab") (width 0.1)) (fp_line (start 1.25 0.9) (end 1.15 1) (layer "F.Fab") (width 0.1)) (fp_line (start 1.15 1) (end -1.15 1) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 1) (end -1.25 0.9) (layer "F.Fab") (width 0.1)) (fp_line (start -1.25 0.9) (end -1.25 -0.9) (layer "F.Fab") (width 0.1)) (fp_line (start -1.25 -0.9) (end -1.15 -1) (layer "F.Fab") (width 0.1)) (fp_line (start -1.25 0) (end -0.25 1) (layer "F.Fab") (width 0.1)) (fp_line (start -1.65 -1.4) (end -1.65 1.1) (layer "F.SilkS") (width 0.12)) (fp_line (start -1.35 1.4) (end 1.65 1.4) (layer "F.SilkS") (width 0.12)) (fp_line (start -1.7 -1.5) (end -1.7 1.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.7 1.5) (end 1.7 1.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.7 1.5) (end 1.7 -1.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.7 -1.5) (end -1.7 -1.5) (layer "F.CrtYd") (width 0.05)) (pad "4" smd rect (at -0.875 -0.7) (size 1.15 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "3" smd rect (at 0.875 -0.7) (size 1.15 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 5 "Net-(C4-Pad1)")) (pad "2" smd rect (at 0.875 0.7) (size 1.15 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.875 0.7) (size 1.15 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 4 "Net-(C3-Pad1)")) (model "${KISYS3DMOD}/Crystals.3dshapes/Crystal_SMD_2520-4pin_2.5x2.0mm.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "mux-footprints:DFN-10-1EP_3x3mm_Pitch0.5mm" (layer "F.Cu") (tedit 5AC5F039) (tstamp 5882618A) (at 155.8 128.75 90) (descr "10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf)") (tags "DFN 0.5") (path "/58838D1F") (autoplace_cost90 7) (attr smd) (fp_text reference "U3" (at 1.35 -2.04 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "FT200XD" (at 0.15 0 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -2 -1.15) (end -1.5 -1.65) (layer "F.SilkS") (width 0.15)) (fp_line (start -2 1.65) (end -2 -1.15) (layer "F.SilkS") (width 0.15)) (fp_line (start 2 1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.15)) (fp_line (start -0.5 -1.5) (end 1.5 -1.5) (layer "F.Fab") (width 0.15)) (fp_line (start 1.5 -1.5) (end 1.5 1.5) (layer "F.Fab") (width 0.15)) (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.Fab") (width 0.15)) (fp_line (start -1.5 1.5) (end -1.5 -0.5) (layer "F.Fab") (width 0.15)) (fp_line (start -1.5 -0.5) (end -0.5 -1.5) (layer "F.Fab") (width 0.15)) (fp_line (start -2.15 -1.85) (end -2.15 1.85) (layer "F.CrtYd") (width 0.05)) (fp_line (start 2.15 -1.85) (end 2.15 1.85) (layer "F.CrtYd") (width 0.05)) (fp_line (start -2.15 -1.85) (end 2.15 -1.85) (layer "F.CrtYd") (width 0.05)) (fp_line (start -2.15 1.85) (end 2.15 1.85) (layer "F.CrtYd") (width 0.05)) (fp_line (start -2 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.15)) (fp_line (start -1.5 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.15)) (pad "11" smd rect (at -0.3875 -0.62 90) (size 0.775 1.24) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "11" smd rect (at -0.3875 0.62 90) (size 0.775 1.24) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "11" smd rect (at 0.3875 -0.62 90) (size 0.775 1.24) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "11" smd rect (at 0.3875 0.62 90) (size 0.775 1.24) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "10" smd rect (at 1.55 -1 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 38 "Net-(R7-Pad1)")) (pad "9" smd rect (at 1.55 -0.5 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "8" smd rect (at 1.55 0 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 63 "Net-(U3-Pad8)")) (pad "7" smd rect (at 1.55 0.5 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "6" smd rect (at 1.55 1 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 64 "Net-(U3-Pad6)")) (pad "5" smd rect (at -1.55 1 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 35 "/SOCKET_SEL")) (pad "4" smd rect (at -1.55 0.5 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "3" smd rect (at -1.55 0 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "2" smd rect (at -1.55 -0.5 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "1" smd rect (at -1.55 -1 90) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (net 37 "Net-(R6-Pad1)")) (model "Housings_DFN_QFN.3dshapes/DFN-10-1EP_3x3mm_Pitch0.5mm.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "mux-footprints:QFN-48-1EP_7x7mm_Pitch0.5mm" (layer "F.Cu") (tedit 5AC5EDDA) (tstamp 58826159) (at 150.7 119.15 90) (descr "UK Package; 48-Lead Plastic QFN (7mm x 7mm); (see Linear Technology QFN_48_05-08-1704.pdf)") (tags "QFN 0.5") (path "/58804558") (attr smd) (fp_text reference "U1" (at -0.35 -4.4 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "USB2640-HZH-02" (at 0 0.1 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -2.5 -3.5) (end 3.5 -3.5) (layer "F.Fab") (width 0.15)) (fp_line (start 3.5 -3.5) (end 3.5 3.5) (layer "F.Fab") (width 0.15)) (fp_line (start 3.5 3.5) (end -3.5 3.5) (layer "F.Fab") (width 0.15)) (fp_line (start -3.5 3.5) (end -3.5 -2.5) (layer "F.Fab") (width 0.15)) (fp_line (start -3.5 -2.5) (end -2.5 -3.5) (layer "F.Fab") (width 0.15)) (fp_line (start -4 -4) (end -4 4) (layer "F.CrtYd") (width 0.05)) (fp_line (start 4 -4) (end 4 4) (layer "F.CrtYd") (width 0.05)) (fp_line (start -4 -4) (end 4 -4) (layer "F.CrtYd") (width 0.05)) (fp_line (start -4 4) (end 4 4) (layer "F.CrtYd") (width 0.05)) (fp_line (start 4 -4) (end 4 4.05) (layer "F.SilkS") (width 0.15)) (fp_line (start -4 4.05) (end -4 -2.65) (layer "F.SilkS") (width 0.15)) (fp_line (start -4 -2.65) (end -2.65 -4) (layer "F.SilkS") (width 0.15)) (fp_line (start 4 4.05) (end -4 4.05) (layer "F.SilkS") (width 0.15)) (fp_line (start 4 -4) (end -2.65 -4) (layer "F.SilkS") (width 0.15)) (pad "49" smd rect (at -1.93125 -1.93125 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at -1.93125 -0.64375 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at -1.93125 0.64375 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at -1.93125 1.93125 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at -0.64375 -1.93125 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at -0.64375 -0.64375 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at -0.64375 0.64375 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at -0.64375 1.93125 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at 0.64375 -1.93125 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at 0.64375 -0.64375 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at 0.64375 0.64375 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at 0.64375 1.93125 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at 1.93125 -1.93125 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at 1.93125 -0.64375 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at 1.93125 0.64375 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "49" smd rect (at 1.93125 1.93125 90) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND") (solder_paste_margin_ratio -0.2)) (pad "48" smd rect (at -2.75 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(C12-Pad1)")) (pad "47" smd rect (at -2.25 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 36 "Net-(R4-Pad1)")) (pad "46" smd rect (at -1.75 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 6 "Net-(C5-Pad1)")) (pad "45" smd rect (at -1.25 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 4 "Net-(C3-Pad1)")) (pad "44" smd rect (at -0.75 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 5 "Net-(C4-Pad1)")) (pad "43" smd rect (at -0.25 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 32 "/USB_UP-")) (pad "42" smd rect (at 0.25 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 33 "/USB_UP+")) (pad "41" smd rect (at 0.75 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(C12-Pad1)")) (pad "40" smd rect (at 1.25 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "39" smd rect (at 1.75 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "38" smd rect (at 2.25 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 3 "/~RESET")) (pad "37" smd rect (at 2.75 -3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 15 "Net-(D1-Pad2)")) (pad "36" smd rect (at 3.4 -2.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 39 "Net-(U1-Pad36)")) (pad "35" smd rect (at 3.4 -2.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 31 "Net-(L2-Pad2)")) (pad "34" smd rect (at 3.4 -1.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "33" smd rect (at 3.4 -1.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 40 "/DAT2_TS")) (pad "32" smd rect (at 3.4 -0.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 41 "/DAT3_TS")) (pad "31" smd rect (at 3.4 -0.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 42 "Net-(U1-Pad31)")) (pad "30" smd rect (at 3.4 0.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 43 "Net-(U1-Pad30)")) (pad "29" smd rect (at 3.4 0.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 44 "Net-(U1-Pad29)")) (pad "28" smd rect (at 3.4 1.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 45 "Net-(U1-Pad28)")) (pad "27" smd rect (at 3.4 1.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 46 "Net-(U1-Pad27)")) (pad "26" smd rect (at 3.4 2.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 47 "Net-(U1-Pad26)")) (pad "25" smd rect (at 3.4 2.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "24" smd rect (at 2.75 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 48 "/CMD_TS")) (pad "23" smd rect (at 2.25 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 49 "Net-(U1-Pad23)")) (pad "22" smd rect (at 1.75 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 50 "Net-(U1-Pad22)")) (pad "21" smd rect (at 1.25 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 51 "/CLK_TS")) (pad "20" smd rect (at 0.75 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 52 "Net-(U1-Pad20)")) (pad "19" smd rect (at 0.25 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 53 "Net-(U1-Pad19)")) (pad "18" smd rect (at -0.25 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 54 "/DAT0_TS")) (pad "17" smd rect (at -0.75 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 55 "/DAT1_TS")) (pad "16" smd rect (at -1.25 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "15" smd rect (at -1.75 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 7 "Net-(C7-Pad1)")) (pad "14" smd rect (at -2.25 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 56 "/~CD_TS")) (pad "13" smd rect (at -2.75 3.4 180) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "12" smd rect (at -3.4 2.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "11" smd rect (at -3.4 2.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 57 "Net-(U1-Pad11)")) (pad "10" smd rect (at -3.4 1.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 73 "Net-(R8-Pad2)")) (pad "9" smd rect (at -3.4 1.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 72 "Net-(R16-Pad2)")) (pad "8" smd rect (at -3.4 0.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 58 "Net-(U1-Pad8)")) (pad "7" smd rect (at -3.4 0.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 59 "Net-(U1-Pad7)")) (pad "6" smd rect (at -3.4 -0.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 60 "Net-(U1-Pad6)")) (pad "5" smd rect (at -3.4 -0.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(C12-Pad1)")) (pad "4" smd rect (at -3.4 -1.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 61 "Net-(U1-Pad4)")) (pad "3" smd rect (at -3.4 -1.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 62 "Net-(U1-Pad3)")) (pad "2" smd rect (at -3.4 -2.25 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 12 "/USB_B+")) (pad "1" smd rect (at -3.4 -2.75 90) (size 0.7 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (net 11 "/USB_B-")) (model "Housings_DFN_QFN.3dshapes/QFN-48-1EP_7x7mm_Pitch0.5mm.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "mux-footprints:micro_sub_molex" (layer "F.Cu") (tedit 5AC5EC48) (tstamp 58826019) (at 147.2 130.8) (tags "Micro USB OTG") (path "/588237A0") (attr smd) (fp_text reference "P1" (at -4.3 1.7 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "USB_OTG_MICRO_USB" (at 0.1 0) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start 3.5 -2.4) (end 3.3 -2.4) (layer "F.Fab") (width 0.1)) (fp_line (start -3.5 -2.4) (end -3.3 -2.4) (layer "F.Fab") (width 0.1)) (fp_line (start -3.5 2.3) (end 3.4 2.3) (layer "F.Fab") (width 0.1)) (fp_line (start 3.5 -2.4) (end 3.5 2.3) (layer "F.Fab") (width 0.1)) (fp_line (start -3.5 -2.4) (end -3.5 2.3) (layer "F.Fab") (width 0.1)) (fp_line (start 3.5 -2.4) (end 3.3 -2.4) (layer "F.SilkS") (width 0.1)) (fp_line (start -3.5 -2.4) (end -3.3 -2.4) (layer "F.SilkS") (width 0.1)) (fp_line (start 3.4 2.3) (end 3.5 2.3) (layer "F.SilkS") (width 0.1)) (fp_line (start -3.5 2.3) (end 3.4 2.3) (layer "F.SilkS") (width 0.1)) (fp_line (start 3.5 -2.4) (end 3.5 2.3) (layer "F.SilkS") (width 0.1)) (fp_line (start -3.5 -2.4) (end -3.5 2.3) (layer "F.SilkS") (width 0.1)) (pad "1" smd rect (at -1.3 -2.4) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (net 29 "/VDD")) (pad "2" smd rect (at -0.65 -2.4) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (net 32 "/USB_UP-")) (pad "3" smd rect (at 0 -2.4) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (net 33 "/USB_UP+")) (pad "4" smd rect (at 0.65 -2.4) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (net 34 "Net-(P1-Pad4)")) (pad "5" smd rect (at 1.3 -2.4) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "6" thru_hole circle (at -2.5 -2.4) (size 1.45 1.45) (drill 0.85) (layers *.Cu *.Mask) (net 2 "Net-(C1-Pad1)")) (pad "6" thru_hole circle (at 2.5 -2.4) (size 1.45 1.45) (drill 0.85) (layers *.Cu *.Mask) (net 2 "Net-(C1-Pad1)")) (pad "6" thru_hole oval (at -3.5 0.3) (size 1.3 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Mask) (net 2 "Net-(C1-Pad1)")) (pad "6" thru_hole oval (at 3.5 0.3) (size 1.3 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Mask) (net 2 "Net-(C1-Pad1)")) (pad "6" smd rect (at -1 0.3) (size 1.5 1.9) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "Net-(C1-Pad1)")) (pad "6" smd rect (at 1 0.3) (size 1.5 1.9) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "Net-(C1-Pad1)")) (model "/home/a.malinowsk2/vcs/sd-mux-ctrl/doc/hardware/3d/usb_B_micro_smd-2.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "mux-footprints:TSSOP-24" (layer "F.Cu") (tedit 5AC5EB3A) (tstamp 588261C2) (at 150.8 109.7 270) (path "/58802A33") (attr smd) (fp_text reference "U5" (at 0 4.3 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "TS3A27518EPWR" (at 0.1 -0.1 270) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -4.25 1.7) (end -4.25 -2.5) (layer "F.Fab") (width 0.15)) (fp_line (start 4.25 2.5) (end -3.45 2.5) (layer "F.Fab") (width 0.15)) (fp_line (start -3.45 2.5) (end -4.25 1.7) (layer "F.Fab") (width 0.15)) (fp_line (start -4.25 -2.5) (end 4.25 -2.5) (layer "F.Fab") (width 0.15)) (fp_line (start 4.25 -2.5) (end 4.25 2.5) (layer "F.Fab") (width 0.15)) (fp_line (start -4.4 2.65) (end -4.4 -2.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 4.4 2.65) (end -4.4 2.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 4.4 -2.65) (end 4.4 2.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -4.4 -2.65) (end 4.4 -2.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 4.25 2.5) (end -3.45 2.5) (layer "F.SilkS") (width 0.15)) (fp_line (start 4.25 -2.5) (end 4.25 2.5) (layer "F.SilkS") (width 0.15)) (fp_line (start -4.25 -2.5) (end 4.25 -2.5) (layer "F.SilkS") (width 0.15)) (fp_line (start -4.25 1.7) (end -4.25 -2.5) (layer "F.SilkS") (width 0.15)) (fp_line (start -3.45 2.5) (end -4.25 1.7) (layer "F.SilkS") (width 0.15)) (pad "24" smd rect (at -3.575 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 35 "/SOCKET_SEL")) (pad "1" smd rect (at -3.575 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 21 "/DAT3_DUT")) (pad "23" smd rect (at -2.925 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 17 "/DAT0_DUT")) (pad "2" smd rect (at -2.925 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 22 "/DAT2_DUT")) (pad "22" smd rect (at -2.275 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 16 "/DAT1_DUT")) (pad "3" smd rect (at -2.275 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 65 "Net-(U5-Pad3)")) (pad "21" smd rect (at -1.625 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 18 "/CLK_DUT")) (pad "4" smd rect (at -1.625 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 23 "Net-(J2-Pad1)")) (pad "20" smd rect (at -0.975 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "5" smd rect (at -0.975 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "19" smd rect (at -0.325 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 20 "/CMD_DUT")) (pad "6" smd rect (at -0.325 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 24 "Net-(J2-Pad2)")) (pad "18" smd rect (at 0.325 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 48 "/CMD_TS")) (pad "7" smd rect (at 0.325 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 27 "Net-(J2-Pad7)")) (pad "17" smd rect (at 0.975 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 51 "/CLK_TS")) (pad "8" smd rect (at 0.975 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "16" smd rect (at 1.625 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 55 "/DAT1_TS")) (pad "9" smd rect (at 1.625 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 26 "Net-(J2-Pad5)")) (pad "15" smd rect (at 2.275 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 54 "/DAT0_TS")) (pad "10" smd rect (at 2.275 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 25 "Net-(J2-Pad3)")) (pad "14" smd rect (at 2.925 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 35 "/SOCKET_SEL")) (pad "11" smd rect (at 2.925 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 40 "/DAT2_TS")) (pad "13" smd rect (at 3.575 -2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 41 "/DAT3_TS")) (pad "12" smd rect (at 3.575 2.8 270) (size 0.35 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 28 "Net-(J2-Pad8)")) (model "${KISYS3DMOD}/Housings_SSOP.3dshapes/TSSOP-24_4.4x7.8mm_Pitch0.65mm.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 90)) ) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 5A8ECAC4) (at 137.72 115.62) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 5A8E6954) (tstamp 5A8ED1E4) (at 138.24 108.76 180) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/5AC1EF51") (attr smd) (fp_text reference "R14" (at -0.26 0.9 180) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1K" (at 0 0.56 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start 0.8 0.45) (end -0.8 0.45) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.8 0.45) (end 0.8 -0.45) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.8 -0.45) (end -0.8 0.45) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.8 -0.45) (end 0.8 -0.45) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.25 0.53) (end 0.25 0.53) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.53) (end -0.25 -0.53) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_text user "%R" (at 0 -1.35 180) (layer "F.Fab") hide (effects (font (size 1 1) (thickness 0.15))) ) (pad "1" smd rect (at -0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 71 "Net-(Q3-Pad1)")) (pad "2" smd rect (at 0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 56 "/~CD_TS")) (model "${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 5A8E695E) (tstamp 5A8ED1D3) (at 137.92 112.94 270) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/5ABE2A60") (attr smd) (fp_text reference "R15" (at 0 -1.35 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1K" (at -1.04 0.02) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_text user "%R" (at 0 -1.35 270) (layer "F.Fab") hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.25 -0.53) (end -0.25 -0.53) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.53) (end 0.25 0.53) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.8 -0.45) (end 0.8 -0.45) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.8 -0.45) (end -0.8 0.45) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.8 0.45) (end 0.8 -0.45) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.8 0.45) (end -0.8 0.45) (layer "F.CrtYd") (width 0.05)) (pad "2" smd rect (at 0.45 0 270) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 35 "/SOCKET_SEL")) (pad "1" smd rect (at -0.45 0 270) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 70 "Net-(Q4-Pad1)")) (model "${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 588776CA) (tstamp 58826105) (at 141.35 117) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/58832FB0") (attr smd) (fp_text reference "R10" (at -1.05 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "10K" (at -1.15 0) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (pad "2" smd rect (at 0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 19 "/VDD_DUT")) (pad "1" smd rect (at -0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 70 "Net-(Q4-Pad1)")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877674) (tstamp 588260F5) (at 141.25 108.7) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/58831BBA") (attr smd) (fp_text reference "R9" (at -1.15 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "10K" (at 0.05 -0.6) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (pad "2" smd rect (at 0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 30 "/VDD_TS")) (pad "1" smd rect (at -0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 71 "Net-(Q3-Pad1)")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "TO_SOT_Packages_SMD:SOT-23" (layer "F.Cu") (tedit 588777C0) (tstamp 58826052) (at 141.8 111.1) (descr "SOT-23, Standard") (tags "SOT-23") (path "/5A69265B") (attr smd) (fp_text reference "Q3" (at 1.3 -1.2 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "MMBT4403LT1" (at -1.3 0 90) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.15)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.15)) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.15)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.15)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12)) (pad "1" smd rect (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 71 "Net-(Q3-Pad1)")) (pad "2" smd rect (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 30 "/VDD_TS")) (pad "3" smd rect (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 13 "/USD_VDD")) (model "TO_SOT_Packages_SMD.3dshapes/SOT-23.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "TO_SOT_Packages_SMD:SOT-23" (layer "F.Cu") (tedit 588777BE) (tstamp 58826065) (at 141.8 114.6) (descr "SOT-23, Standard") (tags "SOT-23") (path "/5A8F3224") (attr smd) (fp_text reference "Q4" (at 1.3 -1.2 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "MMBT4403LT1" (at -1.3 0 90) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.7 -1.52) (end -0.7 1.52) (layer "F.Fab") (width 0.15)) (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.15)) (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12)) (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.15)) (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.15)) (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12)) (pad "1" smd rect (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 70 "Net-(Q4-Pad1)")) (pad "2" smd rect (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 19 "/VDD_DUT")) (pad "3" smd rect (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (net 13 "/USD_VDD")) (model "TO_SOT_Packages_SMD.3dshapes/SOT-23.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874DA3) (at 148.8 120.4) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874D96) (at 149.4 121.1) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 5887452A) (at 152 119.4) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874526) (at 152.8 120.4) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874519) (at 153.4 131.6) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874513) (at 154.2 128.8) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 5887446C) (at 154.2 126.2) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874468) (at 151.3 126.7) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874463) (at 150.9 129.4) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 5887445D) (at 143.2 128.4) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874457) (at 143.3 124.4) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874453) (at 143.3 123.5) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 5887412C) (at 144.2 105.3) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874126) (at 137.4 107.7) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 58874122) (at 137.4 106.7) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 588740F2) (at 145.1 112.4) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "mux-footprints:VIA_0408" locked (layer "F.Cu") (tedit 58873E7A) (tstamp 5887411E) (at 137.4 105.7) (fp_text reference "REF**" (at -1.1 2) (layer "F.SilkS") hide (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "VIA_0408" (at -0.3 -3.1) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.4) (layers *.Cu) (net 1 "GND") (zone_connect 2)) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877AFB) (tstamp 58825F2F) (at 153.4 124.7 90) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5886BCF7") (attr smd) (fp_text reference "C21" (at -1.5 -0.02 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1uF/16V" (at 0 -0.5 90) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0 90) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "2" smd rect (at 0.55 0 90) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877AA7) (tstamp 588260B5) (at 156.2 124) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/588045C7") (attr smd) (fp_text reference "R5" (at 1.4 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "330R" (at 0 -0.5) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 14 "Net-(D1-Pad1)")) (pad "2" smd rect (at 0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "LEDs:LED_0402" (layer "B.Cu") (tedit 58877D09) (tstamp 5882ED12) (at 156.2 125.8) (descr "LED 0402 smd package") (tags "LED led 0402 SMD smd SMT smt smdled SMDLED smtled SMTLED") (path "/58849DC5") (attr smd) (fp_text reference "D6" (at 1.4 0 90) (layer "B.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror)) ) (fp_text value "BLUE" (at -0.2 -1.4) (layer "B.Fab") (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_line (start -1 0.5) (end 1 0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start -1 -0.5) (end -1 0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start 1 -0.5) (end -1 -0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start 1 0.5) (end 1 -0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start -0.95 0.45) (end 0.5 0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.95 -0.45) (end 0.5 -0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.15 0.2) (end 0.15 -0.2) (layer "B.Fab") (width 0.1)) (fp_line (start 0.15 -0.2) (end -0.15 0) (layer "B.Fab") (width 0.1)) (fp_line (start -0.15 0) (end 0.15 0.2) (layer "B.Fab") (width 0.1)) (fp_line (start -0.15 0.2) (end -0.15 -0.2) (layer "B.Fab") (width 0.1)) (fp_line (start -0.95 0.45) (end -0.95 -0.45) (layer "B.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.7) (layers "B.Cu" "B.Paste" "B.Mask") (net 15 "Net-(D1-Pad2)")) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.7) (layers "B.Cu" "B.Paste" "B.Mask") (net 14 "Net-(D1-Pad1)")) (model "LEDs.3dshapes/LED_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 180)) ) ) (module "LEDs:LED_0402" (layer "B.Cu") (tedit 58877CDC) (tstamp 5882ECAD) (at 156.3 105.6 180) (descr "LED 0402 smd package") (tags "LED led 0402 SMD smd SMT smt smdled SMDLED smtled SMTLED") (path "/588469C5") (attr smd) (fp_text reference "D8" (at 1.3 0 270) (layer "B.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror)) ) (fp_text value "GREEN" (at 0.9 -1.3 180) (layer "B.Fab") (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_line (start -0.95 0.45) (end -0.95 -0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.15 0.2) (end -0.15 -0.2) (layer "B.Fab") (width 0.1)) (fp_line (start -0.15 0) (end 0.15 0.2) (layer "B.Fab") (width 0.1)) (fp_line (start 0.15 -0.2) (end -0.15 0) (layer "B.Fab") (width 0.1)) (fp_line (start 0.15 0.2) (end 0.15 -0.2) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.95 -0.45) (end 0.5 -0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.95 0.45) (end 0.5 0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start 1 0.5) (end 1 -0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start 1 -0.5) (end -1 -0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start -1 -0.5) (end -1 0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start -1 0.5) (end 1 0.5) (layer "B.CrtYd") (width 0.05)) (pad "1" smd rect (at -0.55 0) (size 0.6 0.7) (layers "B.Cu" "B.Paste" "B.Mask") (net 69 "Net-(D4-Pad1)")) (pad "2" smd rect (at 0.55 0) (size 0.6 0.7) (layers "B.Cu" "B.Paste" "B.Mask") (net 9 "+3V3")) (model "LEDs.3dshapes/LED_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 180)) ) ) (module "LEDs:LED_0402" (layer "B.Cu") (tedit 58877CE1) (tstamp 5882EC70) (at 156.3 112.6 180) (descr "LED 0402 smd package") (tags "LED led 0402 SMD smd SMT smt smdled SMDLED smtled SMTLED") (path "/58844702") (attr smd) (fp_text reference "D7" (at 1.4 0 270) (layer "B.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror)) ) (fp_text value "BLUE" (at 0.5 -1.3 180) (layer "B.Fab") (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_line (start -1 0.5) (end 1 0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start -1 -0.5) (end -1 0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start 1 -0.5) (end -1 -0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start 1 0.5) (end 1 -0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start -0.95 0.45) (end 0.5 0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.95 -0.45) (end 0.5 -0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.15 0.2) (end 0.15 -0.2) (layer "B.Fab") (width 0.1)) (fp_line (start 0.15 -0.2) (end -0.15 0) (layer "B.Fab") (width 0.1)) (fp_line (start -0.15 0) (end 0.15 0.2) (layer "B.Fab") (width 0.1)) (fp_line (start -0.15 0.2) (end -0.15 -0.2) (layer "B.Fab") (width 0.1)) (fp_line (start -0.95 0.45) (end -0.95 -0.45) (layer "B.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0) (size 0.6 0.7) (layers "B.Cu" "B.Paste" "B.Mask") (net 9 "+3V3")) (pad "1" smd rect (at -0.55 0) (size 0.6 0.7) (layers "B.Cu" "B.Paste" "B.Mask") (net 68 "Net-(D3-Pad1)")) (model "LEDs.3dshapes/LED_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 180)) ) ) (module "LEDs:LED_0402" (layer "B.Cu") (tedit 58877D25) (tstamp 5882EC33) (at 141.4 131.4) (descr "LED 0402 smd package") (tags "LED led 0402 SMD smd SMT smt smdled SMDLED smtled SMTLED") (path "/5884B908") (attr smd) (fp_text reference "D5" (at -1.4 0 90) (layer "B.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror)) ) (fp_text value "RED" (at 0 -1.4) (layer "B.Fab") (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_line (start -0.95 0.45) (end -0.95 -0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.15 0.2) (end -0.15 -0.2) (layer "B.Fab") (width 0.1)) (fp_line (start -0.15 0) (end 0.15 0.2) (layer "B.Fab") (width 0.1)) (fp_line (start 0.15 -0.2) (end -0.15 0) (layer "B.Fab") (width 0.1)) (fp_line (start 0.15 0.2) (end 0.15 -0.2) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1)) (fp_line (start -0.95 -0.45) (end 0.5 -0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start -0.95 0.45) (end 0.5 0.45) (layer "B.SilkS") (width 0.12)) (fp_line (start 1 0.5) (end 1 -0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start 1 -0.5) (end -1 -0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start -1 -0.5) (end -1 0.5) (layer "B.CrtYd") (width 0.05)) (fp_line (start -1 0.5) (end 1 0.5) (layer "B.CrtYd") (width 0.05)) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.7) (layers "B.Cu" "B.Paste" "B.Mask") (net 67 "Net-(D2-Pad1)")) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.7) (layers "B.Cu" "B.Paste" "B.Mask") (net 29 "/VDD")) (model "LEDs.3dshapes/LED_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 180)) ) ) (module "LEDs:LED_0402" (layer "F.Cu") (tedit 5887760E) (tstamp 5882D411) (at 156.3 105.6 180) (descr "LED 0402 smd package") (tags "LED led 0402 SMD smd SMT smt smdled SMDLED smtled SMTLED") (path "/5883DBC6") (attr smd) (fp_text reference "D4" (at 1.4 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "GREEN" (at 0 -0.9 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -1 -0.5) (end 1 -0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1 0.5) (end -1 -0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1 0.5) (end -1 0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1 -0.5) (end 1 0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.45) (end 0.5 -0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.95 0.45) (end 0.5 0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.15 -0.2) (end 0.15 0.2) (layer "F.Fab") (width 0.1)) (fp_line (start 0.15 0.2) (end -0.15 0) (layer "F.Fab") (width 0.1)) (fp_line (start -0.15 0) (end 0.15 -0.2) (layer "F.Fab") (width 0.1)) (fp_line (start -0.15 -0.2) (end -0.15 0.2) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.45) (end -0.95 0.45) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "1" smd rect (at -0.55 0) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (net 69 "Net-(D4-Pad1)")) (model "LEDs.3dshapes/LED_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 180)) ) ) (module "LEDs:LED_0402" (layer "F.Cu") (tedit 5887761D) (tstamp 5882D3D4) (at 156.3 112.6 180) (descr "LED 0402 smd package") (tags "LED led 0402 SMD smd SMT smt smdled SMDLED smtled SMTLED") (path "/5883505B") (attr smd) (fp_text reference "D3" (at 1.3 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "BLUE" (at 0 -0.9 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.95 -0.45) (end -0.95 0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.15 -0.2) (end -0.15 0.2) (layer "F.Fab") (width 0.1)) (fp_line (start -0.15 0) (end 0.15 -0.2) (layer "F.Fab") (width 0.1)) (fp_line (start 0.15 0.2) (end -0.15 0) (layer "F.Fab") (width 0.1)) (fp_line (start 0.15 -0.2) (end 0.15 0.2) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 0.45) (end 0.5 0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.95 -0.45) (end 0.5 -0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start 1 -0.5) (end 1 0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1 0.5) (end -1 0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1 0.5) (end -1 -0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1 -0.5) (end 1 -0.5) (layer "F.CrtYd") (width 0.05)) (pad "1" smd rect (at -0.55 0) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (net 68 "Net-(D3-Pad1)")) (pad "2" smd rect (at 0.55 0) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "LEDs.3dshapes/LED_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 180)) ) ) (module "LEDs:LED_0402" (layer "F.Cu") (tedit 58877BB2) (tstamp 5882D397) (at 141.4 131.4) (descr "LED 0402 smd package") (tags "LED led 0402 SMD smd SMT smt smdled SMDLED smtled SMTLED") (path "/588377EF") (attr smd) (fp_text reference "D2" (at -0.1 1.1 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "RED" (at 0 0.8) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -1 -0.5) (end 1 -0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1 0.5) (end -1 -0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1 0.5) (end -1 0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1 -0.5) (end 1 0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.45) (end 0.5 -0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.95 0.45) (end 0.5 0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.15 -0.2) (end 0.15 0.2) (layer "F.Fab") (width 0.1)) (fp_line (start 0.15 0.2) (end -0.15 0) (layer "F.Fab") (width 0.1)) (fp_line (start -0.15 0) (end 0.15 -0.2) (layer "F.Fab") (width 0.1)) (fp_line (start -0.15 -0.2) (end -0.15 0.2) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.45) (end -0.95 0.45) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (net 29 "/VDD")) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (net 67 "Net-(D2-Pad1)")) (model "LEDs.3dshapes/LED_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 180)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877612) (tstamp 5882D288) (at 156.8 108.4 270) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/58842A16") (attr smd) (fp_text reference "R13" (at 0 1.2 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1K" (at 0.1 1) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0 270) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 69 "Net-(D4-Pad1)")) (pad "2" smd rect (at 0.45 0 270) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 35 "/SOCKET_SEL")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877616) (tstamp 5882D25A) (at 156.8 110.3 90) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/58841418") (attr smd) (fp_text reference "R12" (at 0 -1.2 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1K" (at 0.1 -1 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (pad "2" smd rect (at 0.45 0 90) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 56 "/~CD_TS")) (pad "1" smd rect (at -0.45 0 90) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 68 "Net-(D3-Pad1)")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877BE3) (tstamp 5882D22C) (at 139.1 131.4 180) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/588381DA") (attr smd) (fp_text reference "R11" (at 1.2 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1K" (at 1.1 0 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 67 "Net-(D2-Pad1)")) (pad "2" smd rect (at 0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "TO_SOT_Packages_SMD:SOT-23-5" (layer "F.Cu") (tedit 588779F4) (tstamp 58827BB9) (at 141.0973 125.094726 90) (descr "5-pin SOT23 package") (tags "SOT-23-5") (path "/5881E410") (attr smd) (fp_text reference "U2" (at 1.094726 0.0027 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "SPX3819M5" (at -0.005274 0.0027 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer "F.Fab") (width 0.15)) (fp_line (start 0.9 1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.15)) (fp_line (start -0.9 -1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.15)) (fp_line (start 0.9 -1.55) (end -0.9 -1.55) (layer "F.Fab") (width 0.15)) (fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.9 1.8) (end -1.9 1.8) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.9 1.61) (end 0.9 1.61) (layer "F.SilkS") (width 0.12)) (pad "1" smd rect (at -1.1 -0.95 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 8 "Net-(C10-Pad1)")) (pad "2" smd rect (at -1.1 0 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "3" smd rect (at -1.1 0.95 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 8 "Net-(C10-Pad1)")) (pad "4" smd rect (at 1.1 0.95 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 66 "Net-(U2-Pad4)")) (pad "5" smd rect (at 1.1 -0.95 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "TO_SOT_Packages_SMD.3dshapes/SOT-23-5.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 5887777C) (tstamp 58825DE9) (at 143.5 126.2 90) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5885D1FA") (attr smd) (fp_text reference "C1" (at -1.4 0.1 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 1.9 0 90) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 90) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 90) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "Net-(C1-Pad1)")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 588777D8) (tstamp 58825DF9) (at 143.55 117 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/58861E57") (attr smd) (fp_text reference "C2" (at -0.05 1.1 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 0.05 1.7 270) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 3 "/~RESET")) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877789) (tstamp 58825E09) (at 142.8 122.5) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/588045AA") (attr smd) (fp_text reference "C3" (at 1.4 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "33p/50V" (at 0.1 -0.6) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 4 "Net-(C3-Pad1)")) (pad "2" smd rect (at 0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877831) (tstamp 58825E19) (at 141.9 118.3 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/58863FB9") (attr smd) (fp_text reference "C4" (at 1.4 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "33p/50V" (at 0 0.6 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 5 "Net-(C4-Pad1)")) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877A24) (tstamp 58825E29) (at 145.55 122.9 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/588046FB") (attr smd) (fp_text reference "C5" (at -0.45 1 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1uF/16V" (at -0.15 0.7 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 6 "Net-(C5-Pad1)")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877A2E) (tstamp 5D70F3C3) (at 145.55 124.1 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5886C222") (attr smd) (fp_text reference "C6" (at 1.35 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at -0.05 0.6 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 6 "Net-(C5-Pad1)")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877A94) (tstamp 58825E49) (at 156.2 121.6) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5886D25C") (attr smd) (fp_text reference "C7" (at 1.4 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1uF/16V" (at 0 -0.6) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 7 "Net-(C7-Pad1)")) (pad "2" smd rect (at 0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877AA1) (tstamp 58825E59) (at 156.2 122.8) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5886D400") (attr smd) (fp_text reference "C8" (at 1.4 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 0.1 -0.6) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 7 "Net-(C7-Pad1)")) (pad "2" smd rect (at 0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877BC8) (tstamp 5D715BB8) (at 139.2973 130.094726 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5885ABB2") (attr smd) (fp_text reference "C9" (at 1.3973 -0.005274 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 0.9973 0.594726 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 8 "Net-(C10-Pad1)")) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow" (layer "F.Cu") (tedit 58877BBB) (tstamp 58825E7C) (at 140.1473 128.194726 180) (descr "Tantalum capacitor, Case A, EIA 3216-18, 3.2x1.6x1.6mm, Reflow soldering footprint") (tags "capacitor tantalum smd") (path "/5880004B") (attr smd) (fp_text reference "C10" (at 2.8473 -0.005274 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "10uF/10V" (at 0.0473 1.294726 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -2.65 -1.05) (end -2.65 1.05) (layer "F.SilkS") (width 0.12)) (fp_line (start -2.65 1.05) (end 1.6 1.05) (layer "F.SilkS") (width 0.12)) (fp_line (start -2.65 -1.05) (end 1.6 -1.05) (layer "F.SilkS") (width 0.12)) (fp_line (start -1.12 -0.8) (end -1.12 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.28 -0.8) (end -1.28 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1)) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start 2.75 -1.2) (end -2.75 -1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start 2.75 1.2) (end 2.75 -1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start -2.75 1.2) (end 2.75 1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start -2.75 -1.2) (end -2.75 1.2) (layer "F.CrtYd") (width 0.05)) (pad "1" smd rect (at -1.375 0 180) (size 1.95 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 8 "Net-(C10-Pad1)")) (pad "2" smd rect (at 1.375 0 180) (size 1.95 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_Tantalum_SMD.3dshapes/CP_Tantalum_Case-A_EIA-3216-18.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 588779DE) (tstamp 58825E8C) (at 140.45 122.594726) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5885B52B") (attr smd) (fp_text reference "C11" (at -0.55 -1.094726 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 0.05 -0.594726) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877A5D) (tstamp 58825E9C) (at 147.3 124.9 270) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5886F9B8") (attr smd) (fp_text reference "C12" (at 1.8 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 2 0 270) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0 270) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(C12-Pad1)")) (pad "2" smd rect (at 0.55 0 270) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877702) (tstamp 58825EAC) (at 146.8 114.5 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/58871AD4") (attr smd) (fp_text reference "C13" (at 1.4 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 0.3 0.7 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow" (layer "F.Cu") (tedit 58877765) (tstamp 58825EBF) (at 138.0473 124.219726 270) (descr "Tantalum capacitor, Case A, EIA 3216-18, 3.2x1.6x1.6mm, Reflow soldering footprint") (tags "capacitor tantalum smd") (path "/588602ED") (attr smd) (fp_text reference "C14" (at 2.380274 1.2473 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "10uF/10V" (at 0.280274 0.1473 270) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -2.75 -1.2) (end -2.75 1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start -2.75 1.2) (end 2.75 1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start 2.75 1.2) (end 2.75 -1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start 2.75 -1.2) (end -2.75 -1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1)) (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.28 -0.8) (end -1.28 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.12 -0.8) (end -1.12 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -2.65 -1.05) (end 1.6 -1.05) (layer "F.SilkS") (width 0.12)) (fp_line (start -2.65 1.05) (end 1.6 1.05) (layer "F.SilkS") (width 0.12)) (fp_line (start -2.65 -1.05) (end -2.65 1.05) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 1.375 0 270) (size 1.95 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -1.375 0 270) (size 1.95 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "Capacitors_Tantalum_SMD.3dshapes/CP_Tantalum_Case-A_EIA-3216-18.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877792) (tstamp 58825ECF) (at 144.4 118.3 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5886F88D") (attr smd) (fp_text reference "C15" (at -1.4 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at -0.2 0.6 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(C12-Pad1)")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877AE9) (tstamp 58825EEF) (at 150.8 125.3 270) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5886FB2E") (attr smd) (fp_text reference "C17" (at 1.8 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at -0.1 0.5 270) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 270) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 270) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(C12-Pad1)")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877A9A) (tstamp 58825EFF) (at 156.2 120.4) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/58871C5A") (attr smd) (fp_text reference "C18" (at 0 -1.3 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 0.1 -0.6) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877AEE) (tstamp 5CD3EDE1) (at 149.6 124.7 270) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5886BBE1") (attr smd) (fp_text reference "C19" (at 1.8 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1uF/16V" (at -0.1 0.6 270) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 270) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 270) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(C12-Pad1)")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877ABC) (tstamp 58825F1F) (at 154.6 124.7 90) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/58871DF9") (attr smd) (fp_text reference "C20" (at 1.2 0.02 180) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 0 -0.5 90) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 90) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 90) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877B85) (tstamp 58825F3F) (at 152.8 130.8) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/58848C61") (attr smd) (fp_text reference "C22" (at -0.6 1.3 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "47pF" (at -1.2 0) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 11 "/USB_B-")) (pad "2" smd rect (at 0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877B0C) (tstamp 58825F4F) (at 152.75 126.9) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/588480F0") (attr smd) (fp_text reference "C23" (at -1.25 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "47pF" (at 1.15 0) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 12 "/USB_B+")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877B7E) (tstamp 58825F5F) (at 155.2 131.5 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/58849A1D") (attr smd) (fp_text reference "C24" (at -1.4 -0.2 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at 0 0.6 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 58877750) (tstamp 58825F6F) (at 138.5 120.8 180) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/5887802E") (attr smd) (fp_text reference "C25" (at 1.5 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at -0.1 -0.6 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_SMD:C_0402" (layer "F.Cu") (tedit 588777E4) (tstamp 58825F7F) (at 144.1 111.55 270) (descr "Capacitor SMD 0402, reflow soldering, AVX (see smccp.pdf)") (tags "capacitor 0402") (path "/58877E23") (attr smd) (fp_text reference "C26" (at -0.55 -1 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "100nF/16V" (at -0.95 -0.1) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.475) (end 0.25 0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 0.25 -0.475) (end -0.25 -0.475) (layer "F.SilkS") (width 0.12)) (fp_line (start 1.15 -0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end -1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 0.6) (end 1.15 0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.15 -0.6) (end 1.15 -0.6) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.55 0 270) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 13 "/USD_VDD")) (pad "2" smd rect (at 0.55 0 270) (size 0.6 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_SMD.3dshapes/C_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow" (layer "F.Cu") (tedit 588776B9) (tstamp 58825F92) (at 141.6 106.7 180) (descr "Tantalum capacitor, Case A, EIA 3216-18, 3.2x1.6x1.6mm, Reflow soldering footprint") (tags "capacitor tantalum smd") (path "/588786DB") (attr smd) (fp_text reference "C27" (at 2.9 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "10uF/10V" (at 0.3 0 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -2.65 -1.05) (end -2.65 1.05) (layer "F.SilkS") (width 0.12)) (fp_line (start -2.65 1.05) (end 1.6 1.05) (layer "F.SilkS") (width 0.12)) (fp_line (start -2.65 -1.05) (end 1.6 -1.05) (layer "F.SilkS") (width 0.12)) (fp_line (start -1.12 -0.8) (end -1.12 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.28 -0.8) (end -1.28 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1)) (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1)) (fp_line (start 2.75 -1.2) (end -2.75 -1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start 2.75 1.2) (end 2.75 -1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start -2.75 1.2) (end 2.75 1.2) (layer "F.CrtYd") (width 0.05)) (fp_line (start -2.75 -1.2) (end -2.75 1.2) (layer "F.CrtYd") (width 0.05)) (pad "1" smd rect (at -1.375 0 180) (size 1.95 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 13 "/USD_VDD")) (pad "2" smd rect (at 1.375 0 180) (size 1.95 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Capacitors_Tantalum_SMD.3dshapes/CP_Tantalum_Case-A_EIA-3216-18.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "LEDs:LED_0402" (layer "F.Cu") (tedit 58877A83) (tstamp 58825FA7) (at 156.2 125.8) (descr "LED 0402 smd package") (tags "LED led 0402 SMD smd SMT smt smdled SMDLED smtled SMTLED") (path "/5880468B") (attr smd) (fp_text reference "D1" (at 1.4 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "OSB50402C1E" (at 0 0.7) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -1 -0.5) (end 1 -0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1 0.5) (end -1 -0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1 0.5) (end -1 0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1 -0.5) (end 1 0.5) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.45) (end 0.5 -0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.95 0.45) (end 0.5 0.45) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.15 -0.2) (end 0.15 0.2) (layer "F.Fab") (width 0.1)) (fp_line (start 0.15 0.2) (end -0.15 0) (layer "F.Fab") (width 0.1)) (fp_line (start -0.15 0) (end 0.15 -0.2) (layer "F.Fab") (width 0.1)) (fp_line (start -0.15 -0.2) (end -0.15 0.2) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.45) (end -0.95 0.45) (layer "F.SilkS") (width 0.12)) (pad "2" smd rect (at 0.55 0 180) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (net 15 "Net-(D1-Pad2)")) (pad "1" smd rect (at -0.55 0 180) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (net 14 "Net-(D1-Pad1)")) (model "LEDs.3dshapes/LED_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 180)) ) ) (module "connectors:usd" (layer "F.Cu") (tedit 599D4420) (tstamp 58825FB3) (at 144 87.28) (path "/5881C318") (attr smd) (fp_text reference "J1" (at 3.79 2.35) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "usd-plug" (at 3.64 -2.55) (layer "F.Fab") hide (effects (font (size 0.3 0.3) (thickness 0.07))) ) (pad "1" smd rect (at 0 0) (size 0.8 2.9) (layers "F.Cu" "F.Mask") (net 22 "/DAT2_DUT")) (pad "2" smd rect (at 1.1 0) (size 0.8 2.9) (layers "F.Cu" "F.Mask") (net 21 "/DAT3_DUT")) (pad "3" smd rect (at 2.2 0) (size 0.8 2.9) (layers "F.Cu" "F.Mask") (net 20 "/CMD_DUT")) (pad "4" smd rect (at 3.3 -0.15) (size 0.8 3.2) (layers "F.Cu" "F.Mask") (net 19 "/VDD_DUT")) (pad "5" smd rect (at 4.4 0) (size 0.8 2.9) (layers "F.Cu" "F.Mask") (net 18 "/CLK_DUT")) (pad "6" smd rect (at 5.5 -0.15) (size 0.8 3.2) (layers "F.Cu" "F.Mask") (net 1 "GND")) (pad "7" smd rect (at 6.6 0) (size 0.8 2.9) (layers "F.Cu" "F.Mask") (net 17 "/DAT0_DUT")) (pad "8" smd rect (at 7.7 0) (size 0.8 2.9) (layers "F.Cu" "F.Mask") (net 16 "/DAT1_DUT")) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877BEE) (tstamp 58825FE4) (at 141.3973 130.094726) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/5882E1A4") (attr smd) (fp_text reference "L1" (at 1.2027 0.005274 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "BLM15PD121SN1D" (at 0.8027 -0.594726) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 8 "Net-(C10-Pad1)")) (pad "2" smd rect (at 0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 29 "/VDD")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 588776E8) (tstamp 58825FF4) (at 143.15 108.7) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/5882DB0D") (attr smd) (fp_text reference "L2" (at 1.25 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "BLM15PD121SN1D" (at 1.55 -0.6) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (pad "2" smd rect (at 0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 31 "Net-(L2-Pad2)")) (pad "1" smd rect (at -0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 30 "/VDD_TS")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877AE1) (tstamp 5CD3ECF1) (at 152.1 125.4 90) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/588045B8") (attr smd) (fp_text reference "L3" (at -1.01 -0.01 180) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "BLM15PD121SN1D" (at 0 -0.5 90) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (pad "2" smd rect (at 0.45 0 90) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 10 "Net-(C12-Pad1)")) (pad "1" smd rect (at -0.45 0 90) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877719) (tstamp 58826075) (at 145.5 116.65 90) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/5883DA8A") (attr smd) (fp_text reference "R1" (at 0.85 -0.9 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "10K" (at 0.95 0.1 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0 90) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (pad "2" smd rect (at 0.45 0 90) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 3 "/~RESET")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877A10) (tstamp 58826085) (at 145.05 126.7) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/58827C67") (attr smd) (fp_text reference "R2" (at 1.25 0 90) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "10K" (at -0.05 -0.6) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 2 "Net-(C1-Pad1)")) (pad "2" smd rect (at 0.45 0) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877802) (tstamp 58826095) (at 145 121 270) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/5880470B") (attr smd) (fp_text reference "R3" (at -1.4 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "1M" (at -0.9 0) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0 270) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 5 "Net-(C4-Pad1)")) (pad "2" smd rect (at 0.45 0 270) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 4 "Net-(C3-Pad1)")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877A18) (tstamp 588260A5) (at 145.55 125.4 180) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/5880458E") (attr smd) (fp_text reference "R4" (at 1.15 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "12k 1%" (at 0.05 0.6) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 36 "Net-(R4-Pad1)")) (pad "2" smd rect (at 0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877B29) (tstamp 588260C5) (at 153 129.5 180) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/58842CE3") (attr smd) (fp_text reference "R6" (at 1.2 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "27R" (at 1.1 0 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (pad "1" smd rect (at -0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 37 "Net-(R6-Pad1)")) (pad "2" smd rect (at 0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 11 "/USB_B-")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "Resistors_SMD:R_0402" (layer "F.Cu") (tedit 58877B49) (tstamp 588260D5) (at 153 128.2 180) (descr "Resistor SMD 0402, reflow soldering, Vishay (see dcrcw.pdf)") (tags "resistor 0402") (path "/58843EA0") (attr smd) (fp_text reference "R7" (at 1.2 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "27R" (at 1.1 0 180) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1)) (fp_line (start -0.95 -0.65) (end 0.95 -0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start -0.95 -0.65) (end -0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.95 -0.65) (end 0.95 0.65) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.25 -0.525) (end -0.25 -0.525) (layer "F.SilkS") (width 0.15)) (fp_line (start -0.25 0.525) (end 0.25 0.525) (layer "F.SilkS") (width 0.15)) (pad "2" smd rect (at 0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 12 "/USB_B+")) (pad "1" smd rect (at -0.45 0 180) (size 0.4 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (net 38 "Net-(R7-Pad1)")) (model "Resistors_SMD.3dshapes/R_0402.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module "TO_SOT_Packages_SMD:SOT-23-5" (layer "F.Cu") (tedit 58877824) (tstamp 5882619D) (at 138.3 118.3 270) (descr "5-pin SOT23 package") (tags "SOT-23-5") (path "/58802A47") (attr smd) (fp_text reference "U4" (at 1.2 0 270) (layer "F.SilkS") (effects (font (size 0.5 0.5) (thickness 0.1))) ) (fp_text value "MC74HC1G04DTT1G" (at 1.3 -0.5) (layer "F.Fab") (effects (font (size 0.3 0.3) (thickness 0.07))) ) (fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer "F.Fab") (width 0.15)) (fp_line (start 0.9 1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.15)) (fp_line (start -0.9 -1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.15)) (fp_line (start 0.9 -1.55) (end -0.9 -1.55) (layer "F.Fab") (width 0.15)) (fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.9 1.8) (end -1.9 1.8) (layer "F.CrtYd") (width 0.05)) (fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer "F.CrtYd") (width 0.05)) (fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer "F.CrtYd") (width 0.05)) (fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer "F.SilkS") (width 0.12)) (fp_line (start -0.9 1.61) (end 0.9 1.61) (layer "F.SilkS") (width 0.12)) (pad "1" smd rect (at -1.1 -0.95 270) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")) (pad "2" smd rect (at -1.1 0 270) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 35 "/SOCKET_SEL")) (pad "3" smd rect (at -1.1 0.95 270) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 1 "GND")) (pad "4" smd rect (at 1.1 0.95 270) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 56 "/~CD_TS")) (pad "5" smd rect (at 1.1 -0.95 270) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask") (net 9 "+3V3")) (model "TO_SOT_Packages_SMD.3dshapes/SOT-23-5.wrl" (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (gr_text "SDWire\nv1.4" (at 147.3 96.85) (layer "B.SilkS") (effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror)) ) (gr_line (start 152.7 98.9) (end 152.7 103.9) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 58D4FBD2)) (gr_line (start 141.7 98.9) (end 141.7 103.9) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 58D4F274)) (gr_text "10.0mm length of archs\n117.04mm length of rest" (at 180.8 140.3) (layer "Cmts.User") (effects (font (size 1.5 1.5) (thickness 0.3))) ) (dimension 48.4 (width 0.3) (layer "Dwgs.User") (gr_text "48.400 mm" (at 162.45 108.9 90) (layer "Dwgs.User") (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 158 84.7) (xy 163.8 84.7))) (feature2 (pts (xy 158 133.1) (xy 163.8 133.1))) (crossbar (pts (xy 161.1 133.1) (xy 161.1 84.7))) (arrow1a (pts (xy 161.1 84.7) (xy 161.686421 85.826504))) (arrow1b (pts (xy 161.1 84.7) (xy 160.513579 85.826504))) (arrow2a (pts (xy 161.1 133.1) (xy 161.686421 131.973496))) (arrow2b (pts (xy 161.1 133.1) (xy 160.513579 131.973496))) ) (gr_line (start 152.5 84.7) (end 157.7 84.7) (layer "Dwgs.User") (width 0.15)) (dimension 21.6 (width 0.3) (layer "Dwgs.User") (gr_text "21.600 mm" (at 147.2 137.35) (layer "Dwgs.User") (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 158 133.2) (xy 158 138.7))) (feature2 (pts (xy 136.4 133.2) (xy 136.4 138.7))) (crossbar (pts (xy 136.4 136) (xy 158 136))) (arrow1a (pts (xy 158 136) (xy 156.873496 136.586421))) (arrow1b (pts (xy 158 136) (xy 156.873496 135.413579))) (arrow2a (pts (xy 136.4 136) (xy 137.526504 136.586421))) (arrow2b (pts (xy 136.4 136) (xy 137.526504 135.413579))) ) (gr_line (start 157.2 104.7) (end 153.5 104.7) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 5882C0E5)) (gr_line (start 140.9 104.7) (end 137.2 104.7) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 5882C093)) (gr_line (start 158 132.3) (end 158 105.5) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 5882BF52)) (gr_line (start 142.5 104.75) (end 151.895 104.75) (angle 90) (layer "F.SilkS") (width 0.15) (tstamp 561EF05F)) (gr_text "2. Contacts finished with gold - optional" (at 185.51 83.17) (layer "Cmts.User") (effects (font (size 1.5 1.5) (thickness 0.1))) ) (gr_line (start 161.65 84.6) (end 197.75 84.6) (layer "Cmts.User") (width 0.15)) (gr_text "1. Board thickness: 0.8mm" (at 176.95 80.85) (layer "Cmts.User") (effects (font (size 1.5 1.5) (thickness 0.1))) ) (gr_arc (start 142.5 103.95) (end 142.5 104.75) (angle 90) (layer "F.SilkS") (width 0.15) (tstamp 561EF059)) (gr_arc (start 151.895 103.95) (end 152.695 103.95) (angle 90) (layer "F.SilkS") (width 0.15) (tstamp 561EF051)) (gr_arc (start 157.2 132.3) (end 158 132.3) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 561EF01D)) (gr_arc (start 137.2 132.3) (end 137.2 133.1) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 561EEFD3)) (gr_line (start 136.4 105.5) (end 136.4 132.3) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 561EEFCF)) (gr_arc (start 157.2 105.5) (end 157.2 104.7) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 561EEF9E)) (gr_arc (start 137.2 105.5) (end 136.4 105.5) (angle 90) (layer "Edge.Cuts") (width 0.15) (tstamp 561EEF97)) (gr_arc (start 142.2 92.8) (end 142.4 92.8) (angle -92.86240523) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 142.96 89.83) (end 142.96 85.51) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 142.4 93.8) (end 141.7 94.5) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 142.4 92.8) (end 142.4 93.8) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 141.69 92.6) (end 142.19 92.6) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 141.69 91.1) (end 141.69 92.6) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 142.96 89.83) (end 141.69 91.1) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_arc (start 153.5 103.9) (end 153.5 104.7) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_arc (start 140.9 103.9) (end 141.7 103.9) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_arc (start 143.76 85.51) (end 143.76 84.71) (angle -90) (layer "Edge.Cuts") (width 0.15)) (gr_arc (start 151.9 85.51) (end 152.7 85.5) (angle -90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 152.7 98.9) (end 152.7 85.5) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 137.2 133.1) (end 157.2 133.1) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 141.7 94.5) (end 141.7 98.9) (angle 90) (layer "Edge.Cuts") (width 0.15)) (gr_line (start 151.89 84.71) (end 143.76 84.71) (angle 90) (layer "Edge.Cuts") (width 0.15)) (segment (start 149.575 122.095) (end 150.862984 122.095) (width 0.2) (layer "B.Cu") (net 73)) (segment (start 150.862984 122.095) (end 152.114054 123.34607) (width 0.2) (layer "B.Cu") (net 73)) (segment (start 152.114054 123.34607) (end 152.114054 123.911755) (width 0.2) (layer "B.Cu") (net 73)) (segment (start 152.114054 123.911755) (end 152.114054 124.614054) (width 0.2) (layer "B.Cu") (net 73)) (segment (start 152.114054 124.614054) (end 152.3 124.8) (width 0.2) (layer "B.Cu") (net 73)) (segment (start 152.45 123.575809) (end 152.114054 123.911755) (width 0.2) (layer "F.Cu") (net 73)) (segment (start 152.45 122.55) (end 152.45 123.575809) (width 0.2) (layer "F.Cu") (net 73)) (via (at 152.114054 123.911755) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 73)) (segment (start 151.2 124.815) (end 151.2 123.63299) (width 0.2) (layer "B.Cu") (net 72)) (segment (start 151.2 123.63299) (end 151.057012 123.490002) (width 0.2) (layer "B.Cu") (net 72)) (segment (start 151.057012 123.490002) (end 149.700002 123.490002) (width 0.2) (layer "B.Cu") (net 72)) (segment (start 149.700002 123.490002) (end 149.575 123.365) (width 0.2) (layer "B.Cu") (net 72)) (segment (start 151.95 123.1) (end 151.559998 123.490002) (width 0.2) (layer "F.Cu") (net 72)) (segment (start 151.95 122.55) (end 151.95 123.1) (width 0.2) (layer "F.Cu") (net 72)) (segment (start 151.559998 123.490002) (end 151.057012 123.490002) (width 0.2) (layer "F.Cu") (net 72)) (via (at 151.057012 123.490002) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 72)) (segment (start 140.8 108.7) (end 140.8 110.15) (width 0.2) (layer "F.Cu") (net 71)) (segment (start 138.75 108.7) (end 138.69 108.76) (width 0.2) (layer "F.Cu") (net 71)) (segment (start 140.8 108.7) (end 138.75 108.7) (width 0.2) (layer "F.Cu") (net 71)) (segment (start 139.79 114.21) (end 139.79 113.69) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 140.5 117) (end 140.9 117) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 140.299999 116.799999) (end 140.5 117) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 140.299999 116.334299) (end 140.299999 116.799999) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 139.79 115.8243) (end 140.299999 116.334299) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 139.79 114.99) (end 139.79 115.8243) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 139.79 114.21) (end 139.79 114.99) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 138.64 112.49) (end 137.92 112.49) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 140.8 113.65) (end 139.8 113.65) (width 0.2) (layer "F.Cu") (net 70)) (segment (start 139.8 113.65) (end 138.64 112.49) (width 0.2) (layer "F.Cu") (net 70)) (via (at 156.8 106.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 69)) (segment (start 156.85 106.55) (end 156.8 106.6) (width 0.2) (layer "F.Cu") (net 69)) (segment (start 156.85 105.6) (end 156.85 106.55) (width 0.2) (layer "F.Cu") (net 69)) (segment (start 156.8 105.65) (end 156.85 105.6) (width 0.2) (layer "B.Cu") (net 69)) (segment (start 156.8 106.6) (end 156.8 105.65) (width 0.2) (layer "B.Cu") (net 69)) (segment (start 156.8 107.95) (end 156.8 106.6) (width 0.2) (layer "F.Cu") (net 69)) (via (at 156.8 111.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 68)) (segment (start 156.8 110.75) (end 156.8 111.7) (width 0.2) (layer "F.Cu") (net 68)) (segment (start 156.8 112.75) (end 156.8 112.265685) (width 0.2) (layer "F.Cu") (net 68)) (segment (start 156.8 112.75) (end 156.8 111.7) (width 0.2) (layer "B.Cu") (net 68)) (segment (start 156.85 112.8) (end 156.8 112.75) (width 0.2) (layer "F.Cu") (net 68)) (segment (start 156.8 112.265685) (end 156.8 111.7) (width 0.2) (layer "F.Cu") (net 68)) (via (at 140.1 131.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 67)) (segment (start 140.85 131.4) (end 140.1 131.4) (width 0.2) (layer "F.Cu") (net 67)) (segment (start 140.1 131.4) (end 139.55 131.4) (width 0.3) (layer "F.Cu") (net 67)) (segment (start 140.85 131.4) (end 140.1 131.4) (width 0.2) (layer "B.Cu") (net 67)) (segment (start 154.2 122.625002) (end 154.2 119.8) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 139.3 116.7) (end 137.782706 118.217294) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 137.782706 118.217294) (end 137.782706 118.310087) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 154.2 119.8) (end 152.8 118.4) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 152.8 118.4) (end 150.8 118.4) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 150.8 118.4) (end 147.61002 115.21002) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 147.61002 115.21002) (end 146.893729 115.21002) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 146.893729 115.21002) (end 145.403749 116.7) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 145.403749 116.7) (end 139.3 116.7) (width 0.2) (layer "B.Cu") (net 56)) (via (at 137.782706 118.310087) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56)) (segment (start 155.853956 110.027565) (end 155.099999 110.781522) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 155.750002 113.750002) (end 155.750002 122.049998) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 155.099999 110.781522) (end 155.099999 113.099999) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 155.099999 113.099999) (end 155.750002 113.750002) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 155.750002 122.049998) (end 155.174998 122.625002) (width 0.2) (layer "B.Cu") (net 56)) (segment (start 155.174998 122.625002) (end 154.2 122.625002) (width 0.2) (layer "B.Cu") (net 56)) (via (at 155.853956 110.027565) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56)) (segment (start 156.8 109.85) (end 156.031521 109.85) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 156.031521 109.85) (end 155.853956 110.027565) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 156.8 109.85) (end 156.9 109.85) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 136.734999 115.215001) (end 136.734999 117.869989) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 136.734999 117.869989) (end 136.76501 117.9) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 136.76501 117.9) (end 136.76501 117.930011) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 136.76501 117.930011) (end 136.855 118.020001) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 136.855 118.020001) (end 137.49262 118.020001) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.49262 118.020001) (end 137.782706 118.310087) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.3 118.8) (end 137.3 119.35) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.382707 118.710086) (end 137.382707 118.717293) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.782706 118.310087) (end 137.382707 118.710086) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.382707 118.717293) (end 137.3 118.8) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.3 119.35) (end 137.35 119.4) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.35 119.4) (end 137.35 118.94) (width 0.2) (layer "F.Cu") (net 56)) (via (at 154.2 122.625002) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 56)) (segment (start 154.39 122.625002) (end 154.2 122.625002) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 154.750001 121.500001) (end 154.750001 122.265001) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 154.65 121.4) (end 154.750001 121.500001) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 154.1 121.4) (end 154.65 121.4) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 154.750001 122.265001) (end 154.39 122.625002) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.2 109.85) (end 137.2 114.75) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.79 109.26) (end 137.2 109.85) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.79 108.76) (end 137.79 109.26) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 137.2 114.75) (end 136.734999 115.215001) (width 0.2) (layer "F.Cu") (net 56)) (segment (start 154.9 111.625) (end 154.6 111.325) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 154.9 112.494298) (end 154.9 111.625) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 155.100012 112.69431) (end 154.9 112.494298) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 155.7 113.7) (end 155.100012 113.100012) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 155.7 114.946435) (end 155.7 113.7) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 155.600011 115.046424) (end 155.7 114.946435) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 155.100012 113.100012) (end 155.100012 112.69431) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 155.600011 118.980691) (end 155.600011 115.046424) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 154.1 119.9) (end 154.680702 119.9) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 154.6 111.325) (end 153.6 111.325) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 154.680702 119.9) (end 155.600011 118.980691) (width 0.2) (layer "F.Cu") (net 55)) (segment (start 152.6 111.975) (end 153.6 111.975) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 152.499999 113.690001) (end 152.499999 112.075001) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 153.109998 114.3) (end 152.499999 113.690001) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.584325 114.787744) (end 154.096581 114.3) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 152.499999 112.075001) (end 152.6 111.975) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.610587 114.808686) (end 154.584325 114.787744) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.673597 114.830734) (end 154.64085 114.82326) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.707186 114.830734) (end 154.673597 114.830734) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.770196 114.808686) (end 154.739933 114.82326) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.919319 114.744753) (end 154.885729 114.744753) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.00859 114.787744) (end 154.982329 114.766802) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.150012 114.929166) (end 155.00859 114.787744) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.170954 114.955428) (end 155.150012 114.929166) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.982329 114.766802) (end 154.952066 114.752228) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.193002 115.052027) (end 155.193002 115.018438) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.185528 115.084774) (end 155.193002 115.052027) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.170954 115.115037) (end 155.185528 115.084774) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.129069 115.167561) (end 155.170954 115.115037) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.096581 114.3) (end 153.109998 114.3) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.739933 114.82326) (end 154.707186 114.830734) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.114495 115.197824) (end 155.129069 115.167561) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.193002 115.018438) (end 155.185528 114.985691) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.107021 115.26416) (end 155.107021 115.230571) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.885729 114.744753) (end 154.852982 114.752228) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.129069 115.32717) (end 155.114495 115.296907) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.114495 115.296907) (end 155.107021 115.26416) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.150012 115.353432) (end 155.129069 115.32717) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.64085 114.82326) (end 154.610587 114.808686) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.150012 118.86499) (end 155.150012 115.353432) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.952066 114.752228) (end 154.919319 114.744753) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.107021 115.230571) (end 155.114495 115.197824) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.852982 114.752228) (end 154.822719 114.766802) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.822719 114.766802) (end 154.770196 114.808686) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 155.185528 114.985691) (end 155.170954 114.955428) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.615002 119.4) (end 155.150012 118.86499) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 154.1 119.4) (end 154.615002 119.4) (width 0.2) (layer "F.Cu") (net 54)) (segment (start 152.6 110.675) (end 153.6 110.675) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 152.099988 111.175012) (end 152.6 110.675) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 153.93088 114.7) (end 152.944298 114.7) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 152.099988 113.85569) (end 152.099988 111.175012) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 152.944298 114.7) (end 152.099988 113.85569) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 154.750001 117.799999) (end 154.750001 115.519121) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 154.65 117.9) (end 154.750001 117.799999) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 154.750001 115.519121) (end 153.93088 114.7) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 154.1 117.9) (end 154.65 117.9) (width 0.2) (layer "F.Cu") (net 51)) (segment (start 152.6 110.025) (end 153.6 110.025) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.699977 110.925023) (end 152.6 110.025) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.692456 111.688135) (end 151.699977 111.621379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.670268 111.751544) (end 151.692456 111.688135) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.634527 111.808425) (end 151.670268 111.751544) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.466734 111.913857) (end 151.530143 111.891669) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.399977 111.921379) (end 151.466734 111.913857) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.202516 111.951088) (end 151.265925 111.9289) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.032681 112.221379) (end 151.040203 112.154622) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.202516 112.491669) (end 151.145635 112.455928) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.040203 112.288135) (end 151.032681 112.221379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.587024 111.855928) (end 151.634527 111.808425) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.062391 112.351544) (end 151.040203 112.288135) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.040203 112.154622) (end 151.062391 112.091213) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.098132 112.408425) (end 151.062391 112.351544) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.098132 112.034332) (end 151.145635 111.986829) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.145635 111.986829) (end 151.202516 111.951088) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.699977 111.621379) (end 151.699977 110.925023) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.145635 112.455928) (end 151.098132 112.408425) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.530143 111.891669) (end 151.587024 111.855928) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.062391 112.091213) (end 151.098132 112.034332) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.265925 112.513857) (end 151.202516 112.491669) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.332681 111.921379) (end 151.399977 111.921379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.265925 111.9289) (end 151.332681 111.921379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.399977 112.521379) (end 151.332681 112.521379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.634527 112.634332) (end 151.587024 112.586829) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.692456 112.754622) (end 151.670268 112.691213) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.634527 113.008425) (end 151.670268 112.951544) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.670268 112.691213) (end 151.634527 112.634332) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.530143 113.091669) (end 151.587024 113.055928) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.332681 113.121379) (end 151.399977 113.121379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.098132 113.234332) (end 151.145635 113.186829) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.062391 113.291213) (end 151.098132 113.234332) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.466734 112.5289) (end 151.399977 112.521379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.040203 113.354622) (end 151.062391 113.291213) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.699977 112.821379) (end 151.692456 112.754622) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.040203 113.488135) (end 151.032681 113.421379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.062391 113.551544) (end 151.040203 113.488135) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.466734 113.113857) (end 151.530143 113.091669) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.098132 113.608425) (end 151.062391 113.551544) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.145635 113.655928) (end 151.098132 113.608425) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.202516 113.151088) (end 151.265925 113.1289) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.587024 113.786829) (end 151.530143 113.751088) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.530143 112.551088) (end 151.466734 112.5289) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.399977 113.721379) (end 151.332681 113.721379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.530143 113.751088) (end 151.466734 113.7289) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.145635 113.186829) (end 151.202516 113.151088) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.399977 113.121379) (end 151.466734 113.113857) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.032681 113.421379) (end 151.040203 113.354622) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.670268 112.951544) (end 151.692456 112.888135) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.670268 113.891213) (end 151.634527 113.834332) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.265925 113.713857) (end 151.202516 113.691669) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.634527 113.834332) (end 151.587024 113.786829) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.692456 113.954622) (end 151.670268 113.891213) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.587024 112.586829) (end 151.530143 112.551088) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.699977 114.021379) (end 151.692456 113.954622) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.692456 112.888135) (end 151.699977 112.821379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.466734 113.7289) (end 151.399977 113.721379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 152.778598 115.1) (end 151.699977 114.021379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 153.7 115.1) (end 152.778598 115.1) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.265925 113.1289) (end 151.332681 113.121379) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.202516 113.691669) (end 151.145635 113.655928) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 154.1 115.5) (end 153.7 115.1) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.332681 113.721379) (end 151.265925 113.713857) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.587024 113.055928) (end 151.634527 113.008425) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 154.1 116.4) (end 154.1 115.5) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.273447 112.521379) (end 151.265925 112.513857) (width 0.2) (layer "F.Cu") (net 48)) (segment (start 151.399977 112.521379) (end 151.273447 112.521379) (width 0.2) (layer "F.Cu") (net 48)) (via (at 150.2 114.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 41)) (segment (start 149.95 114.95) (end 150.2 114.7) (width 0.2) (layer "F.Cu") (net 41)) (segment (start 149.95 115.75) (end 149.95 114.95) (width 0.2) (layer "F.Cu") (net 41)) (segment (start 153.6 113.275) (end 154.225 113.275) (width 0.2) (layer "F.Cu") (net 41)) (segment (start 153.355495 114.694986) (end 153.4 114.7) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.219806 114.586777) (end 153.243633 114.624698) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.194985 114.455496) (end 153.205014 114.544505) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.180193 114.413224) (end 153.194985 114.455496) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.124697 114.343634) (end 153.156366 114.375303) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.044504 114.305015) (end 153.086776 114.319807) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.913223 114.319807) (end 152.955495 114.305015) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.875302 114.343634) (end 152.913223 114.319807) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.843633 114.375303) (end 152.875302 114.343634) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.819806 114.413224) (end 152.843633 114.375303) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.805014 114.455496) (end 152.819806 114.413224) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.8 114.5) (end 152.805014 114.455496) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.794985 114.944504) (end 152.8 114.9) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.205014 114.544505) (end 153.219806 114.586777) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.780193 114.986776) (end 152.794985 114.944504) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.756366 115.024697) (end 152.780193 114.986776) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.6 115.1) (end 152.644504 115.094985) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.475302 115.056366) (end 152.513223 115.080193) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.419806 114.986776) (end 152.443633 115.024697) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.405014 114.944504) (end 152.419806 114.986776) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.4 114.9) (end 152.405014 114.944504) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.4 114.5) (end 152.4 114.9) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.394985 114.455496) (end 152.4 114.5) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.324697 114.343634) (end 152.356366 114.375303) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.244504 114.305015) (end 152.286776 114.319807) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.155495 114.305015) (end 152.2 114.3) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.686776 115.080193) (end 152.724697 115.056366) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.075302 114.343634) (end 152.113223 114.319807) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.019806 114.413224) (end 152.043633 114.375303) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.955495 114.305015) (end 153 114.3) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.005014 114.455496) (end 152.019806 114.413224) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.980193 114.986776) (end 151.994985 114.944504) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152 114.9) (end 152 114.5) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.443633 115.024697) (end 152.475302 115.056366) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.886776 115.080193) (end 151.924697 115.056366) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.844504 115.094985) (end 151.886776 115.080193) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.2 114.3) (end 152.244504 114.305015) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.086776 114.319807) (end 153.124697 114.343634) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.380193 114.413224) (end 152.394985 114.455496) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.713223 115.080193) (end 151.755495 115.094985) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.994985 114.944504) (end 152 114.9) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.643633 115.024697) (end 151.675302 115.056366) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.619806 114.986776) (end 151.643633 115.024697) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.6 114.9) (end 151.605014 114.944504) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.594985 114.455496) (end 151.6 114.5) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.113223 114.319807) (end 152.155495 114.305015) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.580193 114.413224) (end 151.594985 114.455496) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.8 114.9) (end 152.8 114.5) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.556366 114.375303) (end 151.580193 114.413224) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.355495 114.305015) (end 151.4 114.3) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.755495 115.094985) (end 151.8 115.1) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.313223 114.319807) (end 151.355495 114.305015) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153 114.3) (end 153.044504 114.305015) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.644504 115.094985) (end 152.686776 115.080193) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.2 114.5) (end 151.205014 114.455496) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152 114.5) (end 152.005014 114.455496) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.243633 114.375303) (end 151.275302 114.343634) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.2 114.9) (end 151.2 114.5) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.124697 115.056366) (end 151.156366 115.024697) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.275302 114.343634) (end 151.313223 114.319807) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.444504 114.305015) (end 151.486776 114.319807) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.086776 115.080193) (end 151.124697 115.056366) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.275302 114.656367) (end 153.313223 114.680194) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.8 115.1) (end 151.844504 115.094985) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.194985 114.944504) (end 151.2 114.9) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151 115.1) (end 151.044504 115.094985) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.180193 114.986776) (end 151.194985 114.944504) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.524697 114.343634) (end 151.556366 114.375303) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.286776 114.319807) (end 152.324697 114.343634) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.955495 115.094985) (end 151 115.1) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.156366 114.375303) (end 153.180193 114.413224) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.205014 114.455496) (end 151.219806 114.413224) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.843633 115.024697) (end 150.875302 115.056366) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.819806 114.986776) (end 150.843633 115.024697) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.356366 114.375303) (end 152.380193 114.413224) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.805014 114.944504) (end 150.819806 114.986776) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.956366 115.024697) (end 151.980193 114.986776) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.794985 114.855495) (end 150.805014 114.944504) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.486776 114.319807) (end 151.524697 114.343634) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.513223 115.080193) (end 152.555495 115.094985) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.4 114.3) (end 151.444504 114.305015) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.756366 114.775302) (end 150.780193 114.813223) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.675302 115.056366) (end 151.713223 115.080193) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.924697 115.056366) (end 151.956366 115.024697) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.780193 114.813223) (end 150.794985 114.855495) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.605014 114.944504) (end 151.619806 114.986776) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.555495 115.094985) (end 152.6 115.1) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.913223 115.080193) (end 150.955495 115.094985) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.724697 114.743633) (end 150.756366 114.775302) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.724697 115.056366) (end 152.756366 115.024697) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.686776 114.719806) (end 150.724697 114.743633) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.644504 114.705014) (end 150.686776 114.719806) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.156366 115.024697) (end 151.180193 114.986776) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.044504 115.094985) (end 151.086776 115.080193) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 152.043633 114.375303) (end 152.075302 114.343634) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.219806 114.413224) (end 151.243633 114.375303) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 151.6 114.5) (end 151.6 114.9) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.6 114.7) (end 150.644504 114.705014) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.2 114.7) (end 150.6 114.7) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 150.875302 115.056366) (end 150.913223 115.080193) (width 0.2) (layer "B.Cu") (net 41)) (via (at 154 113.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 41)) (segment (start 153.6 113.275) (end 153.925 113.6) (width 0.2) (layer "F.Cu") (net 41)) (segment (start 153.925 113.6) (end 154 113.6) (width 0.2) (layer "F.Cu") (net 41)) (segment (start 153.355495 114.694986) (end 153.705014 114.694986) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 154 114.4) (end 154 113.6) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.705014 114.694986) (end 154 114.4) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.243633 114.624698) (end 153.275302 114.656367) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.328015 114.694986) (end 153.219806 114.586777) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 153.355495 114.694986) (end 153.328015 114.694986) (width 0.2) (layer "B.Cu") (net 41)) (segment (start 149.45 114.35) (end 149.45 115.75) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.502166 112.067153) (end 150.5 112.086373) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.518844 112.03252) (end 150.508554 112.048897) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.548898 112.008553) (end 150.532521 112.018843) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.62385 111.991446) (end 150.605594 111.997834) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.653904 111.967479) (end 150.640227 111.981156) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.672747 111.913627) (end 150.670582 111.932846) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.670582 111.467153) (end 150.672747 111.486373) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.664194 111.448897) (end 150.670582 111.467153) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.640227 111.418843) (end 150.653904 111.43252) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.605594 111.402165) (end 150.62385 111.408553) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.413627 111.386373) (end 150.5 111.386373) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.5 113.3) (end 149.45 114.35) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.5 111.386373) (end 150.5 111.4) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.653904 111.43252) (end 150.664194 111.448897) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.394406 111.384207) (end 150.413627 111.386373) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.5 112.086373) (end 150.5 113.3) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.640227 111.981156) (end 150.62385 111.991446) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.62385 111.408553) (end 150.640227 111.418843) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.359773 111.367529) (end 150.37615 111.377819) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.37615 111.377819) (end 150.394406 111.384207) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.346096 111.353852) (end 150.359773 111.367529) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.664194 111.951102) (end 150.653904 111.967479) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.335806 111.337475) (end 150.346096 111.353852) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.670582 111.932846) (end 150.664194 111.951102) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.335806 110.83527) (end 150.329418 110.853526) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.329418 110.853526) (end 150.327253 110.872746) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.346096 110.818893) (end 150.335806 110.83527) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.508554 112.048897) (end 150.502166 112.067153) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.605594 111.997834) (end 150.567154 112.002165) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.37615 110.794926) (end 150.359773 110.805216) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.327253 110.872746) (end 150.327253 111.3) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.432846 110.784207) (end 150.394406 110.788538) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.467479 110.767529) (end 150.451102 110.777819) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.327253 111.3) (end 150.329418 111.319219) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.491446 110.737475) (end 150.481156 110.753852) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.567154 112.002165) (end 150.548898 112.008553) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.497834 110.719219) (end 150.491446 110.737475) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.5 110.4) (end 150.5 110.7) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.532521 112.018843) (end 150.518844 112.03252) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.481156 110.753852) (end 150.467479 110.767529) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.672747 111.486373) (end 150.672747 111.913627) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.4 110.3) (end 150.5 110.4) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.5 111.4) (end 150.586374 111.4) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 149.9 110.3) (end 150.4 110.3) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.394406 110.788538) (end 150.37615 110.794926) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.329418 111.319219) (end 150.335806 111.337475) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.5 110.7) (end 150.497834 110.719219) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 149.9 112.4) (end 149.9 110.3) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.359773 110.805216) (end 150.346096 110.818893) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.451102 110.777819) (end 150.432846 110.784207) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 149.675 112.625) (end 149.9 112.4) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 150.586374 111.4) (end 150.605594 111.402165) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 148 112.625) (end 149.675 112.625) (width 0.2) (layer "F.Cu") (net 40)) (segment (start 154.45 127.2) (end 153.45 128.2) (width 0.2) (layer "F.Cu") (net 38)) (segment (start 154.8 127.2) (end 154.45 127.2) (width 0.2) (layer "F.Cu") (net 38)) (segment (start 154.25 130.3) (end 153.45 129.5) (width 0.2) (layer "F.Cu") (net 37)) (segment (start 154.8 130.3) (end 154.25 130.3) (width 0.2) (layer "F.Cu") (net 37)) (segment (start 146.649999 122.265001) (end 146.649999 121.534999) (width 0.2) (layer "F.Cu") (net 36)) (segment (start 146.700001 122.315003) (end 146.649999 122.265001) (width 0.2) (layer "F.Cu") (net 36)) (segment (start 146.4 125.4) (end 146.700001 125.099999) (width 0.2) (layer "F.Cu") (net 36)) (segment (start 146.649999 121.534999) (end 146.784998 121.4) (width 0.2) (layer "F.Cu") (net 36)) (segment (start 146.700001 125.099999) (end 146.700001 122.315003) (width 0.2) (layer "F.Cu") (net 36)) (segment (start 146 125.4) (end 146.4 125.4) (width 0.2) (layer "F.Cu") (net 36)) (segment (start 146.784998 121.4) (end 147.3 121.4) (width 0.2) (layer "F.Cu") (net 36)) (segment (start 149.009999 118.209999) (end 152.9 122.1) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 143.919977 117.919977) (end 144.209999 118.209999) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 139.152684 117.919977) (end 143.919977 117.919977) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 138.772656 118.300005) (end 139.152684 117.919977) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 153.448452 124.70001) (end 153.748452 124.70001) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 152.9 122.1) (end 152.9 124.151558) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 144.209999 118.209999) (end 149.009999 118.209999) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 153.748452 124.70001) (end 154.900001 125.851559) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 152.9 124.151558) (end 153.448452 124.70001) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 154.900001 125.851559) (end 154.900001 126.300001) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 154.900001 126.300001) (end 155.1 126.5) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 155.1 126.5) (end 157.6 126.5) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 157.6 126.5) (end 157.6 125.1) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 156.8 130.3) (end 156.8 130.797002) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 156.8 130.797002) (end 156.754555 130.797002) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 156.754555 130.797002) (end 156.640042 130.911515) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 156.640042 130.911515) (end 156.640042 131.4) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 157.040041 131.000001) (end 156.640042 131.4) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 157.6 130.44004) (end 157.040041 131.000001) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 157.6 125.1) (end 157.6 130.44004) (width 0.2) (layer "B.Cu") (net 35)) (via (at 156.640042 131.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 35)) (segment (start 156.8 131.240042) (end 156.640042 131.4) (width 0.2) (layer "F.Cu") (net 35)) (via (at 151.4 104.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 35)) (segment (start 154.1 105.3) (end 153.899999 105.099999) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 152.975 106.125) (end 151.4 104.55) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 153.6 106.125) (end 152.975 106.125) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 151.4 104.55) (end 151.4 104.5) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 155.590001 107.411203) (end 154.1 105.921202) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 154.1 105.921202) (end 154.1 105.3) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 153.899999 105.099999) (end 151.999999 105.099999) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 151.999999 105.099999) (end 151.799999 104.899999) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 151.799999 104.899999) (end 151.4 104.5) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 155.590001 109.209999) (end 157.319929 109.209999) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 157.319929 109.209999) (end 157.6 109.49007) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 157.6 125.1) (end 157.6 109.49007) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 155.590001 108.5) (end 155.590001 109) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 155.590001 109) (end 155.590001 109.209999) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 156.9 108.85) (end 156.8 108.85) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 155.590001 107.411203) (end 155.590001 107.480071) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 155.590001 107.480071) (end 155.90993 107.8) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 155.90993 108.05993) (end 155.90993 107.8) (width 0.2) (layer "F.Cu") (net 35)) (via (at 155.90993 107.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 35)) (segment (start 156.7 108.85) (end 155.90993 108.05993) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 156.8 108.85) (end 156.7 108.85) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 155.590001 107.411203) (end 155.590001 108.5) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 154.709989 113.709989) (end 155 114) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 155.590001 109.209999) (end 154.709989 110.090011) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 154.709989 110.090011) (end 154.709989 113.709989) (width 0.2) (layer "B.Cu") (net 35)) (segment (start 156.8 108.85) (end 156.8 108.9) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.3 117.2) (end 138.3 117.3) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.3 117.3) (end 138.4 117.4) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.4 117.4) (end 138.4 117.927349) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.4 117.927349) (end 138.772656 118.300005) (width 0.2) (layer "F.Cu") (net 35)) (via (at 138.772656 118.300005) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 35)) (via (at 155 114) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 35)) (segment (start 153.6 112.625) (end 154.465002 112.625) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 154.465002 112.625) (end 154.700001 112.859999) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 154.700001 113.889965) (end 154.877267 114.067231) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 154.700001 113.900001) (end 154.700001 113.7) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 154.8 114) (end 154.700001 113.900001) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 155 114) (end 154.8 114) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 154.700001 113.7) (end 154.700001 113.889965) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 154.700001 112.859999) (end 154.700001 113.7) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 137.92 113.79) (end 137.92 113.39) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.410001 114.280001) (end 137.92 113.79) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.410001 115.951201) (end 138.410001 114.280001) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.3 116.061202) (end 138.410001 115.951201) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.3 117) (end 138.3 116.061202) (width 0.2) (layer "F.Cu") (net 35)) (segment (start 138.5 117.2) (end 138.3 117) (width 0.2) (layer "F.Cu") (net 35)) (via (at 147.400016 126.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 33)) (segment (start 147.2 128.4) (end 147.2 126.900016) (width 0.2) (layer "F.Cu") (net 33)) (segment (start 147.2 126.900016) (end 147.400016 126.7) (width 0.2) (layer "F.Cu") (net 33)) (via (at 145.8 118.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 33)) (segment (start 147 125.8) (end 147.400016 126.200016) (width 0.2) (layer "B.Cu") (net 33)) (segment (start 147.3 118.9) (end 145.7 118.9) (width 0.2) (layer "F.Cu") (net 33)) (segment (start 145.7 119.4) (end 147 120.7) (width 0.2) (layer "B.Cu") (net 33)) (segment (start 147.400016 126.200016) (end 147.400016 126.7) (width 0.2) (layer "B.Cu") (net 33)) (segment (start 147 120.7) (end 147 125.8) (width 0.2) (layer "B.Cu") (net 33)) (segment (start 145.7 118.9) (end 145.7 119.4) (width 0.2) (layer "B.Cu") (net 33)) (via (at 146.300058 126.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 32)) (segment (start 146.55 128.4) (end 146.55 126.949942) (width 0.2) (layer "F.Cu") (net 32)) (segment (start 146.55 126.949942) (end 146.300058 126.7) (width 0.2) (layer "F.Cu") (net 32)) (segment (start 146.4 119.4) (end 146.087849 119.712151) (width 0.2) (layer "F.Cu") (net 32)) (segment (start 146.087849 119.712151) (end 145.443499 119.712151) (width 0.2) (layer "F.Cu") (net 32)) (via (at 144.877814 119.712151) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 32)) (segment (start 147.3 119.4) (end 146.4 119.4) (width 0.2) (layer "F.Cu") (net 32)) (segment (start 145.443499 119.712151) (end 144.877814 119.712151) (width 0.2) (layer "F.Cu") (net 32)) (segment (start 145.4 119.7) (end 144.889965 119.7) (width 0.2) (layer "B.Cu") (net 32)) (segment (start 146.6 120.9) (end 145.4 119.7) (width 0.2) (layer "B.Cu") (net 32)) (segment (start 146.6 125.834373) (end 146.6 120.9) (width 0.2) (layer "B.Cu") (net 32)) (segment (start 146.300058 126.134315) (end 146.6 125.834373) (width 0.2) (layer "B.Cu") (net 32)) (segment (start 144.889965 119.7) (end 144.877814 119.712151) (width 0.2) (layer "B.Cu") (net 32)) (segment (start 146.300058 126.7) (end 146.300058 126.134315) (width 0.2) (layer "B.Cu") (net 32)) (segment (start 143.6 108.8) (end 143.6 108.7) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 141.950012 110.95569) (end 141.950012 110.449988) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 141.950012 110.449988) (end 143.6 108.8) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 144.399999 115.300001) (end 142.200001 115.300001) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 144.649999 115.050001) (end 144.399999 115.300001) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 148.45 115.234998) (end 148.265003 115.050001) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 148.45 115.75) (end 148.45 115.234998) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 141.65569 111.250012) (end 141.950012 110.95569) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 141.65569 114.75569) (end 141.65569 111.250012) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 148.265003 115.050001) (end 144.649999 115.050001) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 142.200001 115.300001) (end 141.65569 114.75569) (width 0.2) (layer "F.Cu") (net 31)) (segment (start 141.7 108.7) (end 142.2 108.7) (width 0.2) (layer "F.Cu") (net 30)) (segment (start 142.2 108.7) (end 142.7 108.7) (width 0.2) (layer "F.Cu") (net 30)) (segment (start 140.8 111.45) (end 140.8 112.05) (width 0.2) (layer "F.Cu") (net 30)) (segment (start 142.2 108.7) (end 141.550001 109.349999) (width 0.2) (layer "F.Cu") (net 30)) (segment (start 141.550001 109.349999) (end 141.550001 110.699999) (width 0.2) (layer "F.Cu") (net 30)) (segment (start 141.550001 110.699999) (end 140.8 111.45) (width 0.2) (layer "F.Cu") (net 30)) (segment (start 142.59999 131.30001) (end 142.5 131.4) (width 0.5) (layer "F.Cu") (net 29)) (segment (start 142.59999 130.10001) (end 142.59999 131.30001) (width 0.5) (layer "F.Cu") (net 29)) (segment (start 143.00001 129.69999) (end 142.59999 130.10001) (width 0.5) (layer "F.Cu") (net 29)) (segment (start 145.07501 129.69999) (end 143.00001 129.69999) (width 0.5) (layer "F.Cu") (net 29)) (segment (start 145.9 128.875) (end 145.07501 129.69999) (width 0.5) (layer "F.Cu") (net 29)) (segment (start 145.9 128.4) (end 145.9 128.875) (width 0.5) (layer "F.Cu") (net 29)) (segment (start 142.594706 130.094726) (end 142.59999 130.10001) (width 0.3) (layer "F.Cu") (net 29)) (segment (start 141.8473 130.094726) (end 142.594706 130.094726) (width 0.3) (layer "F.Cu") (net 29)) (via (at 142.45 131.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 29)) (segment (start 141.95 131.4) (end 142.45 131.4) (width 0.2) (layer "F.Cu") (net 29)) (segment (start 142.5 131.4) (end 142.45 131.4) (width 0.5) (layer "F.Cu") (net 29)) (segment (start 141.95 131.4) (end 142.45 131.4) (width 0.2) (layer "B.Cu") (net 29)) (via (at 146.8 113.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 28)) (segment (start 147.975 113.3) (end 148 113.275) (width 0.2) (layer "F.Cu") (net 28)) (segment (start 146.8 113.3) (end 147.975 113.3) (width 0.2) (layer "F.Cu") (net 28)) (segment (start 146.35 113.3) (end 146.8 113.3) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.71153 113.916904) (end 145.742602 113.901941) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.677905 113.92458) (end 145.71153 113.916904) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.643417 113.92458) (end 145.677905 113.92458) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.57872 113.901941) (end 145.609794 113.916904) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.425606 113.836294) (end 145.460094 113.836295) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 146.0415 113.6085) (end 146.35 113.3) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.742602 113.901941) (end 145.769567 113.880437) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.333944 113.880437) (end 145.36091 113.858932) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.36091 113.858932) (end 145.391982 113.843969) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.127491 114.086889) (end 145.333944 113.880437) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.091024 114.144926) (end 145.105987 114.113854) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.743579 114.931424) (end 145.701694 114.878901) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.772726 114.99195) (end 145.743579 114.931424) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.787675 115.057444) (end 145.772726 114.99195) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.743579 115.250643) (end 145.772726 115.190117) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.649171 115.345051) (end 145.701694 115.303166) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.523151 115.389147) (end 145.588645 115.374199) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.105987 114.113854) (end 145.127491 114.086889) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.701694 114.878901) (end 145.127491 114.304699) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.390478 115.374199) (end 145.455972 115.389147) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.329952 115.345051) (end 145.390478 115.374199) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.609794 113.916904) (end 145.643417 113.92458) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.455972 115.389147) (end 145.523151 115.389147) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.083349 114.178549) (end 145.091024 114.144926) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.127491 114.304699) (end 145.105987 114.277736) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.024264 115.05) (end 145.27743 115.303166) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.493718 113.843968) (end 145.52479 113.858933) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.27743 115.303166) (end 145.329952 115.345051) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.588645 115.374199) (end 145.649171 115.345051) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 144.971741 115.008114) (end 145.024264 115.05) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.391982 113.843969) (end 145.425606 113.836294) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 144.845721 114.964018) (end 144.911215 114.978967) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.091024 114.246662) (end 145.083348 114.213039) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.083348 114.213039) (end 145.083349 114.178549) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.105987 114.277736) (end 145.091024 114.246662) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 144.778542 114.964018) (end 144.845721 114.964018) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 144.911215 114.978967) (end 144.971741 115.008114) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.701694 115.303166) (end 145.743579 115.250643) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.787675 115.124623) (end 145.787675 115.057444) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.52479 113.858933) (end 145.551757 113.880437) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 144.6 115.05) (end 144.652522 115.008114) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.772726 115.190117) (end 145.787675 115.124623) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 144.25 115.4) (end 144.6 115.05) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.551757 113.880437) (end 145.57872 113.901941) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 144.652522 115.008114) (end 144.713048 114.978967) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.769567 113.880437) (end 146.0415 113.6085) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 144.713048 114.978967) (end 144.778542 114.964018) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 145.460094 113.836295) (end 145.493718 113.843968) (width 0.2) (layer "B.Cu") (net 28)) (segment (start 143.4 115.4) (end 144.25 115.4) (width 0.2) (layer "B.Cu") (net 28)) (via (at 146.5 111.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 27)) (segment (start 147 110.025) (end 146.5 110.525) (width 0.2) (layer "F.Cu") (net 27)) (segment (start 148 110.025) (end 147 110.025) (width 0.2) (layer "F.Cu") (net 27)) (segment (start 146.5 110.525) (end 146.5 110.875736) (width 0.2) (layer "F.Cu") (net 27)) (segment (start 146.5 110.875736) (end 146.5 111.3) (width 0.2) (layer "F.Cu") (net 27)) (segment (start 143.4 114.3) (end 144.25 114.3) (width 0.2) (layer "B.Cu") (net 27)) (segment (start 144.25 114.3) (end 146.5 112.05) (width 0.2) (layer "B.Cu") (net 27)) (segment (start 146.5 112.05) (end 146.5 111.724264) (width 0.2) (layer "B.Cu") (net 27)) (segment (start 146.5 111.724264) (end 146.5 111.3) (width 0.2) (layer "B.Cu") (net 27)) (segment (start 143.4 112.1) (end 144.1 112.1) (width 0.2) (layer "B.Cu") (net 26)) (via (at 149.2 111.325) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26)) (segment (start 144.1 112.1) (end 145.6 110.6) (width 0.2) (layer "B.Cu") (net 26)) (segment (start 145.6 110.6) (end 148.400002 110.6) (width 0.2) (layer "B.Cu") (net 26)) (segment (start 148.400002 110.6) (end 148.800003 111.000001) (width 0.2) (layer "B.Cu") (net 26)) (segment (start 148.800003 111.000001) (end 149.100002 111.3) (width 0.2) (layer "B.Cu") (net 26)) (segment (start 148.025 111.3) (end 149.100002 111.3) (width 0.2) (layer "F.Cu") (net 26)) (segment (start 148 111.325) (end 149.075002 111.325) (width 0.2) (layer "F.Cu") (net 26)) (segment (start 149.075002 111.325) (end 149.100002 111.3) (width 0.2) (layer "F.Cu") (net 26)) (segment (start 149.2 111.325) (end 148 111.325) (width 0.2) (layer "F.Cu") (net 26)) (via (at 144.9 109.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 25)) (segment (start 143.4 109.9) (end 144.9 109.9) (width 0.2) (layer "B.Cu") (net 25)) (segment (start 145.5 109.6) (end 145.2 109.6) (width 0.2) (layer "F.Cu") (net 25)) (segment (start 145.7 109.8) (end 145.5 109.6) (width 0.2) (layer "F.Cu") (net 25)) (segment (start 145.7 110) (end 145.7 109.8) (width 0.2) (layer "F.Cu") (net 25)) (segment (start 145.2 110.5) (end 145.7 110) (width 0.2) (layer "F.Cu") (net 25)) (segment (start 145.2 111.477778) (end 145.2 110.5) (width 0.2) (layer "F.Cu") (net 25)) (segment (start 145.722222 112) (end 145.2 111.477778) (width 0.2) (layer "F.Cu") (net 25)) (segment (start 145.2 109.6) (end 144.9 109.9) (width 0.2) (layer "F.Cu") (net 25)) (segment (start 147.975 112) (end 145.722222 112) (width 0.2) (layer "F.Cu") (net 25)) (segment (start 148 111.975) (end 147.975 112) (width 0.2) (layer "F.Cu") (net 25)) (via (at 144.9 108.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 24)) (segment (start 143.4 108.8) (end 144.9 108.8) (width 0.2) (layer "B.Cu") (net 24)) (segment (start 148 109.375) (end 147 109.375) (width 0.2) (layer "F.Cu") (net 24)) (segment (start 147 109.375) (end 146.425 108.8) (width 0.2) (layer "F.Cu") (net 24)) (segment (start 146.425 108.8) (end 145.465685 108.8) (width 0.2) (layer "F.Cu") (net 24)) (segment (start 145.465685 108.8) (end 144.9 108.8) (width 0.2) (layer "F.Cu") (net 24)) (segment (start 143.4 107.7) (end 143.65 107.7) (width 0.2) (layer "B.Cu") (net 23)) (segment (start 145.111708 107.268819) (end 144.711709 106.86882) (width 0.2) (layer "F.Cu") (net 23)) (segment (start 143.65 107.7) (end 144.48118 106.86882) (width 0.2) (layer "B.Cu") (net 23)) (segment (start 144.48118 106.86882) (end 144.711709 106.86882) (width 0.2) (layer "B.Cu") (net 23)) (via (at 144.711709 106.86882) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 23)) (segment (start 145.917889 108.075) (end 145.111708 107.268819) (width 0.2) (layer "F.Cu") (net 23)) (segment (start 148 108.075) (end 145.917889 108.075) (width 0.2) (layer "F.Cu") (net 23)) (segment (start 144.396234 101.066873) (end 144.464739 101.042902) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.650887 101.075) (end 144.324113 101.075) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.499413 101.109572) (end 143.573203 101.083752) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.377941 101.206444) (end 143.43322 101.151165) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.43322 101.698834) (end 143.377941 101.643555) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.336348 101.577362) (end 143.310528 101.503572) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144 101.775) (end 143.650887 101.775) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.640098 102.027878) (end 144.616127 101.959373) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.336348 100.177362) (end 143.310528 100.103572) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.377941 101.643555) (end 143.336348 101.577362) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.499413 101.740427) (end 143.43322 101.698834) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.070711 102.597919) (end 144.122031 102.546599) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.336348 101.272637) (end 143.377941 101.206444) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144 101.775888) (end 144 101.775) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.310528 101.503572) (end 143.301775 101.425888) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.464739 101.807985) (end 144.396234 101.784014) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.802363 99.640427) (end 143.868556 99.598834) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.573203 101.083752) (end 143.650887 101.075) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.122031 102.546599) (end 144.183485 102.507985) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.616127 100.891514) (end 144.640098 100.823009) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144 99.325888) (end 144 98.681857) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 148 106.775) (end 146.95 106.775) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.310528 101.346427) (end 143.336348 101.272637) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.183485 102.507985) (end 144.25199 102.484014) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.573203 100.366247) (end 143.499413 100.340427) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.301775 101.424112) (end 143.310528 101.346427) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.991248 99.403572) (end 144 99.325888) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144 103.825) (end 144 102.8) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.396234 101.784014) (end 144.324112 101.775888) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144 102.8) (end 144.008126 102.727878) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.640098 102.223897) (end 144.648225 102.151776) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.25199 102.484014) (end 144.396234 102.467761) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.648225 102.151776) (end 144.648225 102.1) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.43322 100.298834) (end 143.377941 100.243555) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.573203 101.766247) (end 143.499413 101.740427) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.648225 102.1) (end 144.640098 102.027878) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.324113 101.075) (end 144.396234 101.066873) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.577513 100.952968) (end 144.616127 100.891514) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 146.95 106.775) (end 144 103.825) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.526193 102.405176) (end 144.577513 102.353856) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.396234 102.467761) (end 144.464739 102.44379) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.43322 101.151165) (end 143.499413 101.109572) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.464739 102.44379) (end 144.526193 102.405176) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.616127 101.959373) (end 144.577513 101.897919) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.032097 102.659373) (end 144.070711 102.597919) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.577513 102.353856) (end 144.616127 102.292402) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.43322 99.751165) (end 143.499413 99.709572) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.616127 102.292402) (end 144.640098 102.223897) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.324112 101.775888) (end 144 101.775888) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.464739 101.042902) (end 144.526193 101.004288) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.650887 101.775) (end 143.573203 101.766247) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.923835 99.543555) (end 143.965428 99.477362) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.008126 102.727878) (end 144.032097 102.659373) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.577513 101.897919) (end 144.526193 101.846599) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.301775 101.425888) (end 143.301775 101.424112) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.526193 101.846599) (end 144.464739 101.807985) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.526193 101.004288) (end 144.577513 100.952968) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.640098 100.823009) (end 144.648225 100.750888) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.648225 100.750888) (end 144.648225 100.699112) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.648225 100.699112) (end 144.640098 100.62699) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.640098 100.62699) (end 144.616127 100.558485) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.577513 100.497031) (end 144.526193 100.445711) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.616127 100.558485) (end 144.577513 100.497031) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.526193 100.445711) (end 144.464739 100.407097) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.728573 99.666247) (end 143.802363 99.640427) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.464739 100.407097) (end 144.396234 100.383126) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.396234 100.383126) (end 144.324113 100.375) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144.324113 100.375) (end 143.650887 100.375) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.650887 100.375) (end 143.573203 100.366247) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.499413 100.340427) (end 143.43322 100.298834) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.310528 99.946427) (end 143.336348 99.872637) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.377941 100.243555) (end 143.336348 100.177362) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.301775 100.025888) (end 143.301775 100.024112) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.310528 100.103572) (end 143.301775 100.025888) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.499413 99.709572) (end 143.573203 99.683752) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.301775 100.024112) (end 143.310528 99.946427) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.336348 99.872637) (end 143.377941 99.806444) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.377941 99.806444) (end 143.43322 99.751165) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.573203 99.683752) (end 143.728573 99.666247) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.868556 99.598834) (end 143.923835 99.543555) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 143.965428 99.477362) (end 143.991248 99.403572) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 144 98.681857) (end 144 87.28) (width 0.25) (layer "F.Cu") (net 22)) (segment (start 147.375 106.125) (end 148 106.125) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.1 103.85) (end 147.375 106.125) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.107414 97.834196) (end 145.1 97.9) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.129285 97.771692) (end 145.107414 97.834196) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.461521 97.596867) (end 145.329914 97.611696) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.626919 97.492941) (end 145.580095 97.539765) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.684021 97.374367) (end 145.66215 97.436871) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.691436 97.308564) (end 145.684021 97.374367) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.66215 97.171692) (end 145.684021 97.234196) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.626919 97.115622) (end 145.66215 97.171692) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.580095 97.068798) (end 145.626919 97.115622) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.461521 97.011696) (end 145.524025 97.033567) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.395718 97.004282) (end 145.461521 97.011696) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.329914 97.611696) (end 145.26741 97.633567) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.1 97.004282) (end 145.395718 97.004282) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.1 97) (end 145.1 97.004282) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.804282 97) (end 145.1 97) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.580095 97.539765) (end 145.524025 97.574996) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.619905 96.935483) (end 144.675975 96.970714) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.573081 96.888659) (end 144.619905 96.935483) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.21134 97.668798) (end 145.164516 97.715622) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.53785 96.832589) (end 144.573081 96.888659) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.515979 96.770085) (end 144.53785 96.832589) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.515979 96.629914) (end 144.508564 96.695718) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.524025 97.574996) (end 145.461521 97.596867) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.573081 96.51134) (end 144.53785 96.56741) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.691436 97.3) (end 145.691436 97.308564) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.619905 96.464516) (end 144.573081 96.51134) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.675975 96.429285) (end 144.619905 96.464516) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.804282 96.4) (end 144.738479 96.407414) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.461521 96.392585) (end 145.395718 96.4) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.524025 96.370714) (end 145.461521 96.392585) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.626919 96.288659) (end 145.580095 96.335483) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.684021 96.170085) (end 145.66215 96.232589) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.691436 96.104282) (end 145.684021 96.170085) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.691436 96.095718) (end 145.691436 96.104282) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.684021 96.029914) (end 145.691436 96.095718) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.461521 95.807414) (end 145.524025 95.829285) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.804282 95.8) (end 145.395718 95.8) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.524025 97.033567) (end 145.580095 97.068798) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.53785 96.56741) (end 144.515979 96.629914) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.573081 95.688659) (end 144.619905 95.735483) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.515979 95.570085) (end 144.53785 95.632589) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.164516 97.715622) (end 145.129285 97.771692) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.508564 95.504282) (end 144.515979 95.570085) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.508564 95.495718) (end 144.508564 95.504282) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.53785 95.36741) (end 144.515979 95.429914) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.1 97.9) (end 145.1 103.85) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.508564 96.704282) (end 144.515979 96.770085) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.738479 96.407414) (end 144.675975 96.429285) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.66215 96.232589) (end 145.626919 96.288659) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.675975 95.229285) (end 144.619905 95.264516) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.626919 95.91134) (end 145.66215 95.96741) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.804282 95.2) (end 144.738479 95.207414) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.395718 95.2) (end 144.804282 95.2) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.524025 95.170714) (end 145.461521 95.192585) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.580095 95.135483) (end 145.524025 95.170714) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.524025 95.829285) (end 145.580095 95.864516) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.66215 95.032589) (end 145.626919 95.088659) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.684021 94.970085) (end 145.66215 95.032589) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.691436 94.904282) (end 145.684021 94.970085) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.684021 94.829914) (end 145.691436 94.895718) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.66215 94.76741) (end 145.684021 94.829914) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.524025 94.629285) (end 145.580095 94.664516) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.66215 95.96741) (end 145.684021 96.029914) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.626919 94.71134) (end 145.66215 94.76741) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.619905 94.535483) (end 144.675975 94.570714) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.738479 95.207414) (end 144.675975 95.229285) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.684021 97.234196) (end 145.691436 97.3) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.738479 94.592585) (end 144.804282 94.6) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.580095 96.335483) (end 145.524025 96.370714) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.53785 95.632589) (end 144.573081 95.688659) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.53785 94.432589) (end 144.573081 94.488659) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.675975 94.570714) (end 144.738479 94.592585) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.508564 94.304282) (end 144.515979 94.370085) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.573081 94.488659) (end 144.619905 94.535483) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.508564 94.295718) (end 144.508564 94.304282) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.515979 94.229914) (end 144.508564 94.295718) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.573081 95.31134) (end 144.53785 95.36741) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.395718 94.6) (end 145.461521 94.607414) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.508564 96.695718) (end 144.508564 96.704282) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.573081 94.11134) (end 144.53785 94.16741) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.66215 97.436871) (end 145.626919 97.492941) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.580095 94.664516) (end 145.626919 94.71134) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.619905 95.735483) (end 144.675975 95.770714) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.395718 95.8) (end 145.461521 95.807414) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.738479 96.992585) (end 144.804282 97) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.619905 94.064516) (end 144.573081 94.11134) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.738479 95.792585) (end 144.804282 95.8) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.395718 96.4) (end 144.804282 96.4) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.515979 94.370085) (end 144.53785 94.432589) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.738479 94.007414) (end 144.675975 94.029285) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.626919 95.088659) (end 145.580095 95.135483) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.461521 95.192585) (end 145.395718 95.2) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.675975 94.029285) (end 144.619905 94.064516) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.804282 94.6) (end 145.395718 94.6) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.580095 95.864516) (end 145.626919 95.91134) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.870086 93.992585) (end 144.738479 94.007414) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.675975 96.970714) (end 144.738479 96.992585) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.675975 95.770714) (end 144.738479 95.792585) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.93259 93.970714) (end 144.870086 93.992585) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.515979 95.429914) (end 144.508564 95.495718) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.98866 93.935483) (end 144.93259 93.970714) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.035484 93.888659) (end 144.98866 93.935483) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.691436 94.895718) (end 145.691436 94.904282) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.070715 93.832589) (end 145.035484 93.888659) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.53785 94.16741) (end 144.515979 94.229914) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.1 93.704282) (end 145.092586 93.770085) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.461521 94.607414) (end 145.524025 94.629285) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 144.619905 95.264516) (end 144.573081 95.31134) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.092586 93.770085) (end 145.070715 93.832589) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.26741 97.633567) (end 145.21134 97.668798) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 145.1 87.28) (end 145.1 93.704282) (width 0.25) (layer "F.Cu") (net 21)) (segment (start 152.689998 109.375) (end 153.6 109.375) (width 0.25) (layer "F.Cu") (net 20)) (segment (start 146.2 102.885002) (end 152.689998 109.375) (width 0.25) (layer "F.Cu") (net 20)) (segment (start 146.2 87.28) (end 146.2 102.885002) (width 0.25) (layer "F.Cu") (net 20)) (via (at 147.3 102.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 19)) (via (at 140.8 114.650096) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 19)) (segment (start 140.8 115.55) (end 140.8 114.650096) (width 0.4) (layer "F.Cu") (net 19)) (segment (start 140.8 115.8) (end 140.8 114.650096) (width 0.25) (layer "F.Cu") (net 19)) (segment (start 141.8 116.8) (end 140.8 115.8) (width 0.25) (layer "F.Cu") (net 19)) (segment (start 141.8 117) (end 141.8 116.8) (width 0.25) (layer "F.Cu") (net 19)) (segment (start 147.3 87.13) (end 147.3 102.8) (width 0.4) (layer "F.Cu") (net 19)) (segment (start 140.8 114.084411) (end 140.8 114.650096) (width 0.4) (layer "B.Cu") (net 19)) (segment (start 141.08 113.804411) (end 140.8 114.084411) (width 0.4) (layer "B.Cu") (net 19)) (segment (start 141.08 107.250798) (end 141.08 113.804411) (width 0.4) (layer "B.Cu") (net 19)) (segment (start 143.820799 104.509999) (end 141.08 107.250798) (width 0.4) (layer "B.Cu") (net 19)) (segment (start 146.790001 104.509999) (end 143.820799 104.509999) (width 0.4) (layer "B.Cu") (net 19)) (segment (start 147.3 104) (end 146.790001 104.509999) (width 0.4) (layer "B.Cu") (net 19)) (segment (start 147.3 102.8) (end 147.3 104) (width 0.4) (layer "B.Cu") (net 19)) (segment (start 148.4 93.039829) (end 148.4 87.28) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.4 93.766123) (end 148.4 93.039829) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.425636 93.878445) (end 148.40649 93.823728) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.456478 93.92753) (end 148.425636 93.878445) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.820285 94.081478) (end 148.7712 94.050636) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.917755 94.366123) (end 148.917755 94.283877) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.892118 94.478445) (end 148.911264 94.423728) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.861276 94.52753) (end 148.892118 94.478445) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.820285 94.568521) (end 148.861276 94.52753) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.7712 94.599363) (end 148.820285 94.568521) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.7712 94.050636) (end 148.716483 94.03149) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.141122 94.625) (end 148.658878 94.625) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.861276 94.122469) (end 148.820285 94.081478) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.083517 94.63149) (end 148.141122 94.625) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.0288 94.650636) (end 148.083517 94.63149) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.40649 93.823728) (end 148.4 93.766123) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.979715 94.681478) (end 148.0288 94.650636) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.938724 94.722469) (end 147.979715 94.681478) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.907882 94.771554) (end 147.938724 94.722469) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.888736 94.826271) (end 147.907882 94.771554) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.882245 94.966123) (end 147.882245 94.883877) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.907882 95.078445) (end 147.888736 95.023728) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.979715 95.168521) (end 147.938724 95.12753) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.4 95.225) (end 148.141122 95.225) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.882245 94.883877) (end 147.888736 94.826271) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.658877 95.241123) (end 148.4 95.241123) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.7712 95.266759) (end 148.716483 95.247613) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.917755 94.283877) (end 148.911264 94.226271) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.820285 95.297601) (end 148.7712 95.266759) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.083517 95.218509) (end 148.0288 95.199363) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.861276 95.338592) (end 148.820285 95.297601) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.658878 94.625) (end 148.716483 94.618509) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.911264 94.423728) (end 148.917755 94.366123) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.911264 95.442394) (end 148.892118 95.387677) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.892118 95.694568) (end 148.911264 95.639851) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.716483 94.618509) (end 148.7712 94.599363) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.716483 95.247613) (end 148.658877 95.241123) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.861276 95.743653) (end 148.892118 95.694568) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.820285 95.784644) (end 148.861276 95.743653) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.911264 95.639851) (end 148.917755 95.582246) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.7712 95.815486) (end 148.820285 95.784644) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.601271 95.847613) (end 148.716483 95.834632) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.888736 95.023728) (end 147.882245 94.966123) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.911264 94.226271) (end 148.892118 94.171554) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.716483 94.03149) (end 148.601271 94.018509) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 147.938724 95.12753) (end 147.907882 95.078445) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.4 95.241123) (end 148.4 95.225) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.546554 95.866759) (end 148.601271 95.847613) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.892118 95.387677) (end 148.861276 95.338592) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.497469 93.968521) (end 148.456478 93.92753) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.0288 95.199363) (end 147.979715 95.168521) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.456478 95.938592) (end 148.497469 95.897601) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.425636 95.987677) (end 148.456478 95.938592) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.40649 96.042394) (end 148.425636 95.987677) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.497469 95.897601) (end 148.546554 95.866759) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.141122 95.225) (end 148.083517 95.218509) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.4 96.1) (end 148.40649 96.042394) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.892118 94.171554) (end 148.861276 94.122469) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.716483 95.834632) (end 148.7712 95.815486) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.4 103.925) (end 148.4 96.1) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.917755 95.582246) (end 148.917755 95.5) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.917755 95.5) (end 148.911264 95.442394) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.546554 93.999363) (end 148.497469 93.968521) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 152.55 108.075) (end 148.4 103.925) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 148.601271 94.018509) (end 148.546554 93.999363) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 153.6 108.075) (end 152.55 108.075) (width 0.25) (layer "F.Cu") (net 18)) (segment (start 150.6 96.5) (end 150.6 90.852398) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.992164 99.207521) (end 150.925408 99.2) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.833243 96.792478) (end 150.769834 96.77029) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.925408 96.8) (end 150.9 96.8) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.992164 98.007521) (end 150.925408 98) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.159957 96.912953) (end 151.112454 96.86545) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.195698 96.969834) (end 151.159957 96.912953) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.225408 97.1) (end 151.217886 97.033243) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.217886 97.166756) (end 151.225408 97.1) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.195698 97.230165) (end 151.217886 97.166756) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.217886 99.566756) (end 151.225408 99.5) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.112454 97.334549) (end 151.159957 97.287046) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.055573 97.37029) (end 151.112454 97.334549) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.217886 97.033243) (end 151.195698 96.969834) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.925408 97.4) (end 150.992164 97.392478) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.992164 97.392478) (end 151.055573 97.37029) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.173503 97.457313) (end 150.223314 97.426015) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.225408 99.5) (end 151.217886 99.433243) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.131906 97.49891) (end 150.173503 97.457313) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.081179 97.604246) (end 150.100608 97.548721) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.074592 97.737296) (end 150.074592 97.662704) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.112454 98.534549) (end 151.159957 98.487046) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.081179 97.795753) (end 150.074592 97.737296) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.9 96.8) (end 150.833243 96.792478) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.131906 97.901089) (end 150.100608 97.851278) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.100608 98.748721) (end 150.131906 98.69891) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.173503 97.942686) (end 150.131906 97.901089) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.055573 99.77029) (end 151.112454 99.734549) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.66545 96.687046) (end 150.629709 96.630165) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.337296 98) (end 150.278839 97.993413) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.925408 98) (end 150.337296 98) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.081179 98.995753) (end 150.074592 98.937296) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.195698 98.169834) (end 151.159957 98.112953) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.217886 98.233243) (end 151.195698 98.169834) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.225408 98.3) (end 151.217886 98.233243) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.769834 99.829709) (end 150.833243 99.807521) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.217886 98.366756) (end 151.225408 98.3) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.112454 96.86545) (end 151.055573 96.829709) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.074592 98.862704) (end 150.081179 98.804246) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.195698 98.430165) (end 151.217886 98.366756) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.223314 97.426015) (end 150.278839 97.406586) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.055573 98.029709) (end 150.992164 98.007521) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.131906 99.101089) (end 150.100608 99.051278) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.607521 96.566756) (end 150.6 96.5) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.100608 97.548721) (end 150.131906 97.49891) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.159957 98.487046) (end 151.195698 98.430165) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.6 104.825) (end 150.6 100.1) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 152.55 106.775) (end 150.6 104.825) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.159957 99.312953) (end 151.112454 99.26545) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.223314 98.626015) (end 150.278839 98.606586) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.173503 98.657313) (end 150.223314 98.626015) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.6 100.1) (end 150.607521 100.033243) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.055573 96.829709) (end 150.992164 96.807521) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.217886 99.433243) (end 151.195698 99.369834) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.159957 99.687046) (end 151.195698 99.630165) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.992164 96.807521) (end 150.925408 96.8) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 153.6 106.775) (end 152.55 106.775) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.337296 99.2) (end 150.278839 99.193413) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.9 99.8) (end 150.925408 99.8) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.195698 99.630165) (end 151.217886 99.566756) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.712953 99.86545) (end 150.769834 99.829709) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.100608 97.851278) (end 150.081179 97.795753) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.992164 99.792478) (end 151.055573 99.77029) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.131906 98.69891) (end 150.173503 98.657313) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.159957 98.112953) (end 151.112454 98.06545) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.223314 99.173984) (end 150.173503 99.142686) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.112454 98.06545) (end 151.055573 98.029709) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.173503 99.142686) (end 150.131906 99.101089) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.629709 96.630165) (end 150.607521 96.566756) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.159957 97.287046) (end 151.195698 97.230165) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.112454 99.734549) (end 151.159957 99.687046) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.833243 99.807521) (end 150.9 99.8) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.074592 98.937296) (end 150.074592 98.862704) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.112454 99.26545) (end 151.055573 99.229709) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.769834 96.77029) (end 150.712953 96.734549) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.278839 97.993413) (end 150.223314 97.973984) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.223314 97.973984) (end 150.173503 97.942686) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.925408 99.2) (end 150.337296 99.2) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.195698 99.369834) (end 151.159957 99.312953) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.607521 100.033243) (end 150.629709 99.969834) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.055573 99.229709) (end 150.992164 99.207521) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.074592 97.662704) (end 150.081179 97.604246) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.992164 98.592478) (end 151.055573 98.57029) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.629709 99.969834) (end 150.66545 99.912953) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.278839 99.193413) (end 150.223314 99.173984) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.278839 97.406586) (end 150.337296 97.4) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.100608 99.051278) (end 150.081179 98.995753) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.081179 98.804246) (end 150.100608 98.748721) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.925408 98.6) (end 150.992164 98.592478) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.712953 96.734549) (end 150.66545 96.687046) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.925408 99.8) (end 150.992164 99.792478) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.337296 97.4) (end 150.925408 97.4) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.278839 98.606586) (end 150.337296 98.6) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.66545 99.912953) (end 150.712953 99.86545) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.337296 98.6) (end 150.925408 98.6) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.055573 98.57029) (end 151.112454 98.534549) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 150.6 90.852398) (end 150.6 87.28) (width 0.25) (layer "F.Cu") (net 17)) (segment (start 151.200538 101.76545) (end 151.257419 101.729709) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.153035 101.812953) (end 151.200538 101.76545) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.087584 102) (end 151.095106 101.933243) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.262416 101.381208) (end 152.255365 101.318633) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.153035 102.187046) (end 151.117294 102.130165) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.200538 102.234549) (end 151.153035 102.187046) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.257419 101.729709) (end 151.320828 101.707521) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.103219 101.127848) (end 152.043782 101.10705) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.257419 102.27029) (end 151.200538 102.234549) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.156538 101.638649) (end 152.201065 101.594122) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.387584 102.3) (end 151.320828 102.292478) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.70705 103.137425) (end 151.727848 103.077988) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.918633 102.925842) (end 152.043782 102.911741) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.981208 102.318792) (end 151.7 102.318792) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.103219 102.34664) (end 152.043782 102.325842) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.095106 102.066756) (end 151.087584 102) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.262416 101.418792) (end 152.262416 101.381208) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.201065 102.424669) (end 152.156538 102.380142) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.76135 100.994122) (end 151.727848 100.940803) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.255365 102.537425) (end 152.234567 102.477988) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.7 103.2) (end 151.70705 103.137425) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.981208 101.7) (end 152.043782 101.692949) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.117294 101.869834) (end 151.153035 101.812953) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.859196 102.94664) (end 151.918633 102.925842) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.043782 102.911741) (end 152.103219 102.890943) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.095106 101.933243) (end 151.117294 101.869834) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.262416 102.637584) (end 152.262416 102.6) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 154.807904 105.707904) (end 154.6 105.5) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.234567 102.477988) (end 152.201065 102.424669) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.387584 101.7) (end 151.981208 101.7) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.320828 101.707521) (end 151.387584 101.7) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.7 103.784999) (end 151.7 103.2) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.320828 102.292478) (end 151.257419 102.27029) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 153.415001 105.5) (end 151.7 103.784999) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 154.807904 107.292095) (end 154.807904 105.707904) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.043782 101.692949) (end 152.103219 101.672151) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.117294 102.130165) (end 151.095106 102.066756) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.234567 102.759595) (end 152.255365 102.700158) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.043782 102.325842) (end 151.981208 102.318792) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 154.6 105.5) (end 153.415001 105.5) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.201065 102.812914) (end 152.234567 102.759595) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 154.675 107.425) (end 154.807904 107.292095) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.7 102.318792) (end 151.7 102.3) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.262416 102.6) (end 152.255365 102.537425) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.7 102.3) (end 151.387584 102.3) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 153.6 107.425) (end 154.675 107.425) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.727848 103.077988) (end 151.76135 103.024669) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.76135 103.024669) (end 151.805877 102.980142) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.255365 102.700158) (end 152.262416 102.637584) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.7 100.157057) (end 151.7 87.28) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.805877 102.980142) (end 151.859196 102.94664) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.103219 102.890943) (end 152.156538 102.857441) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.156538 102.380142) (end 152.103219 102.34664) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.727848 100.940803) (end 151.70705 100.881366) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.156538 102.857441) (end 152.201065 102.812914) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.103219 101.672151) (end 152.156538 101.638649) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.201065 101.594122) (end 152.234567 101.540803) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.234567 101.540803) (end 152.255365 101.481366) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.255365 101.481366) (end 152.262416 101.418792) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.255365 101.318633) (end 152.234567 101.259196) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.234567 101.259196) (end 152.201065 101.205877) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.201065 101.205877) (end 152.156538 101.16135) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.156538 101.16135) (end 152.103219 101.127848) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 152.043782 101.10705) (end 151.918633 101.092949) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.918633 101.092949) (end 151.859196 101.072151) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.859196 101.072151) (end 151.805877 101.038649) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.805877 101.038649) (end 151.76135 100.994122) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.70705 100.881366) (end 151.7 100.818792) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 151.7 100.818792) (end 151.7 100.157057) (width 0.25) (layer "F.Cu") (net 16)) (segment (start 147.624929 116.30002) (end 147.651578 116.30002) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 153.309999 121.958441) (end 153.309999 124.009999) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 156.360378 124.294693) (end 156.5 124.434315) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 153.309999 124.009999) (end 153.594693 124.294693) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 156.5 124.434315) (end 156.5 125) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 153.594693 124.294693) (end 156.360378 124.294693) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 147.651578 116.30002) (end 153.309999 121.958441) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 147.22493 115.900021) (end 147.624929 116.30002) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 156.75 125.25) (end 156.5 125) (width 0.2) (layer "B.Cu") (net 15)) (segment (start 156.75 125.8) (end 156.75 125.25) (width 0.2) (layer "F.Cu") (net 15)) (segment (start 156.75 125.25) (end 156.5 125) (width 0.2) (layer "F.Cu") (net 15)) (segment (start 156.75 125.8) (end 156.75 125.25) (width 0.2) (layer "B.Cu") (net 15)) (via (at 156.5 125) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15)) (via (at 147.22493 115.900021) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15)) (segment (start 147.3 115.975091) (end 147.22493 115.900021) (width 0.2) (layer "F.Cu") (net 15)) (segment (start 147.3 116.4) (end 147.3 115.975091) (width 0.2) (layer "F.Cu") (net 15)) (segment (start 155.65 125.8) (end 155.65 125.124588) (width 0.2) (layer "B.Cu") (net 14)) (segment (start 155.75 124) (end 155.75 124.7448) (width 0.2) (layer "F.Cu") (net 14)) (segment (start 155.75 124.7448) (end 155.510106 124.984694) (width 0.2) (layer "F.Cu") (net 14)) (via (at 155.510106 124.984694) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14)) (segment (start 155.65 125.8) (end 155.65 125.124588) (width 0.2) (layer "F.Cu") (net 14)) (segment (start 155.65 125.124588) (end 155.510106 124.984694) (width 0.2) (layer "F.Cu") (net 14)) (segment (start 155.65 125.124588) (end 155.510106 124.984694) (width 0.2) (layer "B.Cu") (net 14)) (segment (start 144.1 110.4) (end 144.1 111) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 144.150001 110.349999) (end 144.1 110.4) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 143.2 106.7) (end 144.150001 107.650001) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 144.150001 107.650001) (end 144.150001 110.349999) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 142.975 106.7) (end 143.2 106.7) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 142.9 111) (end 142.8 111.1) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 144.1 111) (end 142.9 111) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 142.8 111.9) (end 142.8 114.6) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 142.8 111.1) (end 142.8 111.9) (width 0.3) (layer "F.Cu") (net 13)) (via (at 142.632434 111.11163) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13)) (segment (start 142.632434 111.677315) (end 142.632434 111.11163) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 142.8 111.9) (end 142.632434 111.732434) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 143.198119 111.11163) (end 142.632434 111.11163) (width 0.3) (layer "B.Cu") (net 13)) (segment (start 143.4 111) (end 143.28837 111.11163) (width 0.3) (layer "B.Cu") (net 13)) (segment (start 143.28837 111.11163) (end 143.198119 111.11163) (width 0.3) (layer "B.Cu") (net 13)) (segment (start 142.632434 111.732434) (end 142.632434 111.677315) (width 0.3) (layer "F.Cu") (net 13)) (segment (start 150.4 126.8) (end 149.382842 126.8) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 151.4 128.217158) (end 151.4 127.8) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 149.382842 126.8) (end 148.4 125.817158) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 152.45 128.2) (end 152 128.65) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 148.45 123.075) (end 148.45 122.55) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 152.55 128.2) (end 152.45 128.2) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 152 128.65) (end 151.832842 128.65) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 151.4 127.8) (end 150.4 126.8) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 151.832842 128.65) (end 151.4 128.217158) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 148.4 125.817158) (end 148.4 123.125) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 148.4 123.125) (end 148.45 123.075) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 152.55 127.25) (end 152.2 126.9) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 152.55 128.2) (end 152.55 127.25) (width 0.2) (layer "F.Cu") (net 12)) (segment (start 152.55 129.5) (end 152.117158 129.5) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 149.090011 127.190011) (end 147.95 126.05) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 151 128.382842) (end 151 127.951558) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 147.95 126.05) (end 147.95 123.1) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 147.95 123.1) (end 147.95 122.55) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 150.238453 127.190011) (end 149.090011 127.190011) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 151 127.951558) (end 150.238453 127.190011) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 152.117158 129.5) (end 151 128.382842) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 152.55 130.5) (end 152.25 130.8) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 152.55 129.5) (end 152.55 130.5) (width 0.2) (layer "F.Cu") (net 11)) (segment (start 150.8 124.75) (end 151.9 124.75) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 151.9 124.75) (end 152.1 124.95) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 150.2 124.15) (end 150.8 124.75) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 147.3 123.85) (end 147.3 121.9) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 147.3 124.35) (end 147.3 123.85) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 146.436392 118.4) (end 147.3 118.4) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 146.186401 118.150009) (end 146.436392 118.4) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 145.049991 118.150009) (end 146.186401 118.150009) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 144.9 118.3) (end 145.049991 118.150009) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 144.75 118.3) (end 144.9 118.3) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 149.95 123.1) (end 150.2 123.35) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 149.95 122.55) (end 149.95 123.1) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 150.2 123.35) (end 150.2 124.15) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 150.2 124.15) (end 149.6 124.15) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 149.95 122) (end 149.95 122.55) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 149.85 121.9) (end 149.95 122) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 147.3 118.4) (end 147.85 118.4) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 147.85 118.4) (end 147.968749 118.518749) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 148 121.852502) (end 148 121.9) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 147.968749 121.821251) (end 148 121.852502) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 147.968749 118.518749) (end 147.968749 121.821251) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 148 121.9) (end 149.85 121.9) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 147.3 121.9) (end 148 121.9) (width 0.2) (layer "F.Cu") (net 10)) (segment (start 152.1 125.85) (end 152.2 125.85) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 152.2 125.85) (end 152.800001 125.249999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 152.800001 125.249999) (end 152.849999 125.249999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 152.3 125.77) (end 152.97 125.77) (width 0.2) (layer "B.Cu") (net 9)) (segment (start 152.97 125.77) (end 153.2 126) (width 0.2) (layer "B.Cu") (net 9)) (segment (start 151.2 125.785) (end 152.285 125.785) (width 0.2) (layer "B.Cu") (net 9)) (segment (start 152.285 125.785) (end 152.3 125.77) (width 0.2) (layer "B.Cu") (net 9)) (segment (start 149.575 125.905) (end 151.08 125.905) (width 0.2) (layer "B.Cu") (net 9)) (segment (start 151.08 125.905) (end 151.2 125.785) (width 0.2) (layer "B.Cu") (net 9)) (segment (start 154.256757 127.719957) (end 153.2 126.6632) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 153.2 126.6632) (end 153.2 126) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 152.849999 125.249999) (end 152.849999 125.650001) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 153.4 125.25) (end 152.949999 125.249999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 152.949999 125.249999) (end 152.849999 125.249999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 152.849999 123.700001) (end 152.849999 125.249999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 153.45 122.55) (end 153.45 123.1) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 153.45 123.1) (end 152.849999 123.700001) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 153.199998 126) (end 153.2 126) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 152.849999 125.650001) (end 153.199998 126) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 157.48499 120.258224) (end 157.48499 119.18499) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 157.199999 118.899999) (end 156.8 118.5) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 157.48499 119.18499) (end 157.199999 118.899999) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 157.480043 127.719957) (end 157.480043 120.263171) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 157.480043 120.263171) (end 157.48499 120.258224) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 155.65 119.65) (end 155.65 120.4) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 156.8 118.5) (end 155.65 119.65) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 156.3 127.2) (end 156.3 126.7) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 156.3 126.7) (end 156.2 126.6) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 156.2 126.6) (end 156.197002 126.6) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 154.6 125.3) (end 154.6 125.25) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 156.197002 126.6) (end 156.182001 126.584999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 156.182001 126.584999) (end 155.184999 126.584999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.184999 126.584999) (end 155.05 126.45) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.05 126.45) (end 155.05 125.75) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.05 125.75) (end 154.6 125.3) (width 0.2) (layer "F.Cu") (net 9)) (via (at 153.2 126) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 157.480043 127.719957) (end 154.256757 127.719957) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 156.8 118.5) (end 156.8 114.036311) (width 0.5) (layer "F.Cu") (net 9)) (segment (start 155.75 112.986311) (end 155.75 112.6) (width 0.5) (layer "F.Cu") (net 9)) (segment (start 156.8 114.036311) (end 155.75 112.986311) (width 0.5) (layer "F.Cu") (net 9)) (via (at 156.8 118.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 157 132.5) (end 157.480043 132.019957) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 157.480043 132.019957) (end 157.480043 127.719957) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 155.8 132) (end 155.8 131.55) (width 0.5) (layer "F.Cu") (net 9)) (segment (start 155.8 131.55) (end 155.75 131.5) (width 0.5) (layer "F.Cu") (net 9)) (segment (start 155.8 132.5) (end 157 132.5) (width 0.5) (layer "In2.Cu") (net 9)) (via (at 155.8 132) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 142.306798 132.5) (end 155.8 132.5) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 155.8 132.5) (end 155.8 132) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 139.9 121.9) (end 139.9 129.956798) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 139.9 129.956798) (end 140.940001 130.996799) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 140.940001 130.996799) (end 140.940001 131.133203) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 140.940001 131.133203) (end 142.306798 132.5) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 139.899988 119.399988) (end 139.9 119.4) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 140.1473 123.994726) (end 139.1973 123.994726) (width 0.5) (layer "F.Cu") (net 9)) (segment (start 139.1973 123.994726) (end 138.0473 122.844726) (width 0.5) (layer "F.Cu") (net 9)) (segment (start 155.8 130.8) (end 156.2 130.8) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 156.2 130.8) (end 156.3 130.7) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 156.3 130.7) (end 156.3 130.3) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 139.918535 120.864156) (end 139.918535 121.881465) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 139.918535 121.881465) (end 139.9 121.9) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 144.951364 117.459998) (end 142.14952 117.459998) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 139.518536 120.464157) (end 139.918535 120.864156) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 142.14952 117.459998) (end 139.518536 120.090982) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 139.518536 120.090982) (end 139.518536 120.464157) (width 0.5) (layer "In2.Cu") (net 9)) (via (at 139.918535 120.864156) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 139.9 122.1) (end 139.9 122.594726) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 139.9 121.2) (end 139.9 122.1) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 139.9 122.1) (end 139.9 121.9) (width 0.2) (layer "F.Cu") (net 9)) (via (at 139.9 121.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 149.4 109.7) (end 148.3 110.8) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 148.3 110.8) (end 148.3 114.040002) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 148.3 114.040002) (end 147.3032 114.040002) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 147.3032 114.040002) (end 144.951364 116.391838) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 144.951364 116.391838) (end 144.951364 116.894313) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 144.951364 116.894313) (end 144.951364 117.459998) (width 0.5) (layer "In2.Cu") (net 9)) (segment (start 145.259999 117.759999) (end 145.5 117.759999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 145.5 117.759999) (end 146.440001 117.759999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 145.5 117.1) (end 145.5 117.759999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 147.3 117.4) (end 146.8 117.4) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 146.440001 117.759999) (end 146.8 117.4) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 144.959998 117.459998) (end 145.259999 117.759999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 144.951364 117.459998) (end 144.959998 117.459998) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 145.5 117.1) (end 145.311362 117.1) (width 0.2) (layer "F.Cu") (net 9)) (via (at 144.951364 117.459998) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 145.6 117.1) (end 145.5 117.1) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 148.3 114.040002) (end 148.3 114.448587) (width 0.5) (layer "F.Cu") (net 9)) (segment (start 148.3 114.448587) (end 148.351413 114.5) (width 0.3) (layer "F.Cu") (net 9)) (via (at 148.3 114.040002) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 148 110.675) (end 148.828798 110.675) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 149.4 110.103798) (end 149.4 109.7) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 148.828798 110.675) (end 149.4 110.103798) (width 0.3) (layer "F.Cu") (net 9)) (via (at 149.4 109.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 155.8 112.265685) (end 155.8 111.7) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 155.400001 107.288727) (end 155.400001 106.999999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.163954 109.357248) (end 155.5 109.021202) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.5 108.411272) (end 155.219929 108.131201) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.219929 108.131201) (end 155.219929 107.468799) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.5 109.021202) (end 155.5 108.411272) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.8 111.7) (end 155.163954 111.063954) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.400001 106.999999) (end 155.8 106.6) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.219929 107.468799) (end 155.400001 107.288727) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.163954 111.063954) (end 155.163954 109.357248) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.8 106.6) (end 155.7 106.7) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 140.1473 123.2473) (end 140.1473 123.994726) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 139.9 123) (end 140.1473 123.2473) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 139.9 122.594726) (end 139.9 123) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 154.1 120.4) (end 155.65 120.4) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 148.95 115.75) (end 148.95 116.3) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 148.95 116.3) (end 149.05 116.4) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 153.45 116.3) (end 153.45 115.75) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 153.349999 116.400001) (end 153.45 116.3) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 149.05 116.4) (end 153.349999 116.400001) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.8 130.3) (end 155.8 130.8) (width 0.2) (layer "F.Cu") (net 9)) (via (at 155.8 106.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 155.75 106.55) (end 155.8 106.6) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 155.75 105.6) (end 155.75 106.55) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 155.8 105.65) (end 155.75 105.6) (width 0.3) (layer "B.Cu") (net 9)) (segment (start 155.8 106.6) (end 155.8 105.65) (width 0.3) (layer "B.Cu") (net 9)) (segment (start 149.049999 116.400001) (end 149.05 116.4) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 148.351413 114.5) (end 147.95 114.5) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 148.95 115.75) (end 148.95 115.098587) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 148.95 115.098587) (end 148.351413 114.5) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 147.95 114.5) (end 147.35 114.5) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 155.3 130.3) (end 155.3 130.7) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.4 130.8) (end 155.8 130.8) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.3 130.7) (end 155.4 130.8) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.75 130.85) (end 155.8 130.8) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.75 131.5) (end 155.75 130.85) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.7 112.75) (end 155.65 112.8) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 148 110.675) (end 148.075001 110.599999) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 139.9 121.2) (end 139.9 120.2) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 139.9 120.2) (end 139.9 119.4) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 139.45 119.4) (end 139.9 119.4) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 139.9 120.8) (end 139.9 121.2) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 139.05 120.8) (end 139.9 120.8) (width 0.3) (layer "F.Cu") (net 9)) (segment (start 153.4 125.25) (end 154.6 125.25) (width 0.2) (layer "F.Cu") (net 9)) (segment (start 155.8 112.1) (end 155.8 111.7) (width 0.3) (layer "B.Cu") (net 9)) (segment (start 155.85 112.15) (end 155.8 112.1) (width 0.3) (layer "B.Cu") (net 9)) (via (at 155.8 111.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9)) (segment (start 155.8 112.75) (end 155.8 112.265685) (width 0.3) (layer "B.Cu") (net 9)) (segment (start 155.75 112.8) (end 155.8 112.75) (width 0.3) (layer "B.Cu") (net 9)) (segment (start 155.8 112.265685) (end 155.8 111.7) (width 0.3) (layer "B.Cu") (net 9)) (segment (start 142.0473 127.024726) (end 142.0473 126.194726) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.197301 127.074727) (end 141.997299 127.074727) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.1473 127.024726) (end 140.197301 127.074727) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 141.997299 127.074727) (end 142.0473 127.024726) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.1473 126.194726) (end 140.1473 127.024726) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.4 130.094726) (end 139.8473 130.094726) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.9473 130.094726) (end 140.4 130.094726) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.2 129.2) (end 140.4 129.4) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.197301 127.074727) (end 140.2 127.077426) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.4 129.4) (end 140.4 130.094726) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.2 128.147426) (end 140.2 128.1) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.2473 128.194726) (end 140.2 128.147426) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 141.5223 128.194726) (end 140.2473 128.194726) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.2 128.1) (end 140.2 129.2) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 140.2 127.077426) (end 140.2 128.1) (width 0.3) (layer "F.Cu") (net 8)) (segment (start 154.95 120.9) (end 154.1 120.9) (width 0.2) (layer "F.Cu") (net 7)) (segment (start 155.65 121.6) (end 154.95 120.9) (width 0.2) (layer "F.Cu") (net 7)) (segment (start 155.65 122.8) (end 155.65 121.6) (width 0.2) (layer "F.Cu") (net 7)) (segment (start 146.1 124.1) (end 146.1 122.9) (width 0.2) (layer "F.Cu") (net 6)) (segment (start 146.75 120.9) (end 147.3 120.9) (width 0.2) (layer "F.Cu") (net 6)) (segment (start 146.1 122.9) (end 146.1 121.519298) (width 0.2) (layer "F.Cu") (net 6)) (segment (start 146.1 121.519298) (end 146.719298 120.9) (width 0.2) (layer "F.Cu") (net 6)) (segment (start 146.719298 120.9) (end 146.75 120.9) (width 0.2) (layer "F.Cu") (net 6)) (segment (start 142.45 118.675) (end 143.475 119.7) (width 0.2) (layer "F.Cu") (net 5)) (segment (start 142.45 118.3) (end 142.45 118.675) (width 0.2) (layer "F.Cu") (net 5)) (segment (start 145 120.55) (end 145.85 120.55) (width 0.2) (layer "F.Cu") (net 5)) (segment (start 146.5 119.9) (end 147.3 119.9) (width 0.2) (layer "F.Cu") (net 5)) (segment (start 145.85 120.55) (end 146.5 119.9) (width 0.2) (layer "F.Cu") (net 5)) (segment (start 143.475 119.7) (end 143.65 119.7) (width 0.2) (layer "F.Cu") (net 5)) (segment (start 143.65 119.7) (end 144.5 120.55) (width 0.2) (layer "F.Cu") (net 5)) (segment (start 144.5 120.55) (end 145 120.55) (width 0.2) (layer "F.Cu") (net 5)) (segment (start 142.25 121.625) (end 141.725 121.1) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 144.9 121.45) (end 145 121.45) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 142.300001 121.949999) (end 144.400001 121.949999) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 144.400001 121.949999) (end 144.9 121.45) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 142.25 122) (end 142.300001 121.949999) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 142.25 122.5) (end 142.25 122) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 142.25 122) (end 142.25 121.625) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 145 121.45) (end 145.5157 121.45) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 145.5157 121.45) (end 146.5657 120.4) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 146.5657 120.4) (end 146.75 120.4) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 146.75 120.4) (end 147.3 120.4) (width 0.2) (layer "F.Cu") (net 4)) (segment (start 144.9 116.2) (end 145.5 116.2) (width 0.2) (layer "F.Cu") (net 3)) (segment (start 144.1 117) (end 144.9 116.2) (width 0.2) (layer "F.Cu") (net 3)) (segment (start 145.6 116.2) (end 145.5 116.2) (width 0.2) (layer "F.Cu") (net 3)) (segment (start 146.3 116.9) (end 145.6 116.2) (width 0.2) (layer "F.Cu") (net 3)) (segment (start 147.3 116.9) (end 146.3 116.9) (width 0.2) (layer "F.Cu") (net 3)) (segment (start 144.7 126.8) (end 144.6 126.7) (width 0.2) (layer "F.Cu") (net 2)) (segment (start 143.55 126.7) (end 143.5 126.75) (width 0.2) (layer "F.Cu") (net 2)) (segment (start 144.6 126.7) (end 144.1 126.7) (width 0.2) (layer "F.Cu") (net 2)) (segment (start 144.1 126.7) (end 143.55 126.7) (width 0.2) (layer "F.Cu") (net 2)) (segment (start 144.1 127.8) (end 144.7 128.4) (width 0.2) (layer "F.Cu") (net 2)) (segment (start 144.1 126.7) (end 144.1 127.8) (width 0.2) (layer "F.Cu") (net 2)) (segment (start 143.7 131.1) (end 150.7 131.1) (width 0.5) (layer "B.Cu") (net 2)) (segment (start 149.7 130.1) (end 150.7 131.1) (width 0.5) (layer "B.Cu") (net 2)) (segment (start 149.7 128.4) (end 149.7 130.1) (width 0.5) (layer "B.Cu") (net 2)) (segment (start 144.7 130.1) (end 143.7 131.1) (width 0.5) (layer "B.Cu") (net 2)) (segment (start 144.7 128.4) (end 144.7 130.1) (width 0.5) (layer "B.Cu") (net 2)) (segment (start 148.2 131.1) (end 150.7 131.1) (width 0.5) (layer "F.Cu") (net 2)) (segment (start 146.2 131.1) (end 143.7 131.1) (width 0.5) (layer "F.Cu") (net 2)) (segment (start 149.575 124.635) (end 148.6 124.635) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 148.87273 126.7) (end 150.734315 126.7) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 150.734315 126.7) (end 151.3 126.7) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 148.6 124.635) (end 148.40999 124.82501) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 148.40999 124.82501) (end 148.40999 126.23726) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 148.40999 126.23726) (end 148.87273 126.7) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 144.425 124.635) (end 143.535 124.635) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 143.535 124.635) (end 143.3 124.4) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 143.3 123.5) (end 144.29 123.5) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 144.29 123.5) (end 144.425 123.365) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 144.425 124.635) (end 144.425 125.905) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 144.425 123.365) (end 144.425 124.635) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 144.425 122.095) (end 144.425 123.365) (width 0.2) (layer "B.Cu") (net 1)) (segment (start 150.45 126.15) (end 151 126.7) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.8 125.85) (end 150.75 125.85) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.75 125.85) (end 150.45 126.15) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 149.6 125.3) (end 150.45 126.15) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 149.6 125.25) (end 149.6 125.3) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 151 126.7) (end 151.3 126.7) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 156.7 119.8) (end 156.644968 119.8) (width 0.3) (layer "F.Cu") (net 1)) (via (at 156.644968 119.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 156.75 119.85) (end 156.7 119.8) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 156.75 120.4) (end 156.75 119.85) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 156.43123 122.2) (end 156.427624 122.203606) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 156.75 122.2) (end 156.43123 122.2) (width 0.2) (layer "F.Cu") (net 1)) (via (at 156.427624 122.203606) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 138.0473 127) (end 138.0473 127.469726) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 138.0473 125.594726) (end 138.0473 127) (width 0.3) (layer "F.Cu") (net 1)) (via (at 138.0473 127) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 148 108.725) (end 149.375 108.725) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 149.375 108.725) (end 149.4 108.7) (width 0.2) (layer "F.Cu") (net 1)) (via (at 149.4 108.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 149.9 103.765685) (end 149.9 105.1) (width 0.5) (layer "In1.Cu") (net 1)) (segment (start 149.5 102.8) (end 149.5 103.365685) (width 0.5) (layer "In1.Cu") (net 1)) (segment (start 149.5 103.365685) (end 149.9 103.765685) (width 0.5) (layer "In1.Cu") (net 1)) (segment (start 143.4 113.2) (end 144.3 113.2) (width 0.3) (layer "B.Cu") (net 1)) (segment (start 144.3 113.2) (end 145.1 112.4) (width 0.3) (layer "B.Cu") (net 1)) (segment (start 155.18 128.3625) (end 155.18 129.1375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 140.225 106.7) (end 137.4 106.7) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 146.25 114.5) (end 145.75 114.5) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.75 114.5) (end 145.1 113.85) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.1 113.85) (end 145.1 112.965685) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.1 112.965685) (end 145.1 112.4) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.1 112.4) (end 144.4 112.4) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 144.4 112.4) (end 144.1 112.1) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 137.35 117.2) (end 137.35 115.99) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 137.35 115.99) (end 137.72 115.62) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 152.63125 121.08125) (end 152.63125 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 151.34375 121.08125) (end 152.63125 121.08125) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 151.34375 121.08125) (end 151.34375 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.05625 121.08125) (end 151.34375 121.08125) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.05625 119.79375) (end 150.05625 121.08125) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.76875 121.08125) (end 149.38125 121.08125) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 149.38125 121.08125) (end 149.4 121.1) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.76875 121.08125) (end 148.76875 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.76875 119.79375) (end 150.05625 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.05625 119.79375) (end 151.34375 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 152.63125 119.79375) (end 151.34375 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 152.63125 118.50625) (end 152.63125 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 151.34375 118.50625) (end 151.34375 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.05625 118.50625) (end 150.05625 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.76875 118.50625) (end 148.76875 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.0875 117.9) (end 148.1625 117.9) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.1625 117.9) (end 148.76875 118.50625) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 151.34375 118.50625) (end 152.63125 118.50625) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.05625 118.50625) (end 151.34375 118.50625) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.76875 118.50625) (end 150.05625 118.50625) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 152.63125 117.21875) (end 152.63125 118.50625) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 151.34375 117.21875) (end 152.63125 117.21875) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.05625 117.21875) (end 151.34375 117.21875) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.76875 117.21875) (end 150.05625 117.21875) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 141.35 118.3) (end 141.35 119.325) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 141.35 119.325) (end 141.725 119.7) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143.35 122.5) (end 143.35 123.45) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143.35 123.45) (end 143.3 123.5) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 141 122.594726) (end 141 123.3) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 141 123.3) (end 141.1 123.4) (width 0.2) (layer "F.Cu") (net 1)) (via (at 141.1 123.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 156.75 122.2) (end 156.75 122.8) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 156.75 121.6) (end 156.75 122.2) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 154 123.6) (end 154.05 123.6) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 154.05 123.6) (end 154.6 124.15) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 153.4 124.15) (end 153.45 124.15) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 153.45 124.15) (end 154 123.6) (width 0.2) (layer "F.Cu") (net 1)) (via (at 154 123.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 156.75 122.8) (end 156.75 123.9) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 156.75 123.9) (end 156.65 124) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 156.75 120.4) (end 156.75 121.6) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145 122.9) (end 145 123.5) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143.3 123.5) (end 145 123.5) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145 123.5) (end 145 124.1) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143.5 125.65) (end 143.5 124.6) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143.5 124.6) (end 143.3 124.4) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145 124.1) (end 145 125.3) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145 125.3) (end 145.1 125.4) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 146.8 126) (end 145.5 126) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.5 126) (end 145.2 126) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.5 126.7) (end 145.5 126.2) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.5 126.2) (end 145.5 126) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 138.7473 130.094726) (end 137.705274 130.094726) (width 0.3) (layer "F.Cu") (net 1)) (via (at 137.7 130.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 137.705274 130.094726) (end 137.7 130.1) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 141.0973 126.194726) (end 141.0973 125.1027) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 141.0973 125.1027) (end 141.1 125.1) (width 0.3) (layer "F.Cu") (net 1)) (via (at 141.1 125.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 138.7473 130.094726) (end 138.7473 128.219726) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 138.7473 128.219726) (end 138.7723 128.194726) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 138.0473 127.469726) (end 138.7723 128.194726) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 138.65 131.4) (end 138.65 130.192026) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 138.65 130.192026) (end 138.7473 130.094726) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 156.42 128.3625) (end 154.6375 128.3625) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 154.6375 128.3625) (end 154.2 128.8) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 154.2 128.8) (end 156.0825 128.8) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 156.0825 128.8) (end 156.42 129.1375) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 148.5 128.4) (end 148.5 128.875) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 150.269314 129.465001) (end 150.334315 129.4) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 148.5 128.875) (end 149.090001 129.465001) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 149.090001 129.465001) (end 150.269314 129.465001) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 150.334315 129.4) (end 150.9 129.4) (width 0.3) (layer "F.Cu") (net 1)) (segment (start 153.4 131.6) (end 154.55 131.6) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 154.55 131.6) (end 154.65 131.5) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 153.35 130.8) (end 153.35 131.55) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 153.35 131.55) (end 153.4 131.6) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 154.2 126.2) (end 154 126.2) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 154 126.2) (end 153.3 126.9) (width 0.2) (layer "F.Cu") (net 1)) (via (at 154.8 108.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 153.6 108.725) (end 154.775 108.725) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 154.775 108.725) (end 154.8 108.7) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143.85 118.3) (end 143.709978 118.3) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143.709978 118.3) (end 143.4 118.609978) (width 0.2) (layer "F.Cu") (net 1)) (via (at 143.4 118.609978) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 143.340002 121.1) (end 143.475 121.1) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 141.940002 119.7) (end 143.340002 121.1) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 141.725 119.7) (end 141.940002 119.7) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 155.3 128.2425) (end 155.18 128.3625) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 155.3 127.2) (end 155.3 128.2425) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 152.63125 121.78125) (end 152.63125 121.08125) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 152.75 121.9) (end 152.63125 121.78125) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 154.1 121.9) (end 152.75 121.9) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.0875 117.9) (end 148.76875 117.21875) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 147.3 117.9) (end 148.0875 117.9) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.8 121.05) (end 148.76875 121.08125) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.8 120.4) (end 148.8 121.05) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 150.0375 121.1) (end 150.05625 121.08125) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 149.4 121.1) (end 150.0375 121.1) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.76875 120.36875) (end 148.8 120.4) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 148.76875 119.79375) (end 148.76875 120.36875) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 147.3 125.5) (end 146.8 126) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 147.3 125.45) (end 147.3 125.5) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.1 125.9) (end 145.1 125.4) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 145.2 126) (end 145.1 125.9) (width 0.2) (layer "F.Cu") (net 1)) (via (at 138.3 119.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 138.3 119.7) (end 138.3 119.5) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 138 120) (end 138.3 119.7) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 138 120.75) (end 138 120) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 137.95 120.8) (end 138 120.75) (width 0.2) (layer "F.Cu") (net 1)) (via (at 142.030224 115.979101) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 142.579101 115.979101) (end 142.030224 115.979101) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143 116.4) (end 142.579101 115.979101) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 143 117) (end 143 116.4) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 140.65271 119.99729) (end 140.65271 120.20001) (width 0.2) (layer "F.Cu") (net 1)) (via (at 140.65271 120.20001) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1)) (segment (start 141.725 119.7) (end 140.95 119.7) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 140.95 119.7) (end 140.65271 119.99729) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 151.7375 119.4) (end 151.34375 119.79375) (width 0.2) (layer "F.Cu") (net 1)) (segment (start 152 119.4) (end 151.7375 119.4) (width 0.2) (layer "F.Cu") (net 1)) (via (at 149.5 89.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 5B0BB929)) (segment (start 149.5 87.13) (end 149.5 89.4) (width 0.4) (layer "F.Cu") (net 1)) (zone (net 1) (net_name "GND") (layer "In2.Cu") (tstamp 5B07B22A) (hatch edge 0.508) (connect_pads (clearance 0.2)) (min_thickness 0.2) (fill yes (thermal_gap 0.2) (thermal_bridge_width 0.21)) (polygon (pts (xy 152.2 84.8) (xy 152.4 84.9) (xy 152.5 85) (xy 152.6 85.2) (xy 152.7 85.5) (xy 152.7 104) (xy 152.9 104.4) (xy 153.1 104.6) (xy 153.4 104.7) (xy 157.2 104.7) (xy 157.6 104.8) (xy 157.9 105.1) (xy 158 105.4) (xy 158 132.3) (xy 157.9 132.7) (xy 157.6 133) (xy 157.2 133.1) (xy 137.2 133.1) (xy 136.8 133) (xy 136.5 132.7) (xy 136.4 132.3) (xy 136.4 105.5) (xy 136.5 105.1) (xy 136.8 104.8) (xy 137.1 104.7) (xy 140.9 104.7) (xy 141.3 104.6) (xy 141.6 104.3) (xy 141.7 104) (xy 141.7 94.5) (xy 142.4 93.8) (xy 142.4 92.7) (xy 142.2 92.6) (xy 141.7 92.6) (xy 141.7 91.1) (xy 143 89.8) (xy 143 85.4) (xy 143.1 85.1) (xy 143.3 84.9) (xy 143.5 84.8) (xy 143.8 84.7) (xy 151.9 84.7) ) ) (filled_polygon (pts (xy 151.99073 85.019701) (xy 152.084234 85.04666) (xy 152.170723 85.09127) (xy 152.246898 85.151827) (xy 152.309859 85.226026) (xy 152.357213 85.311047) (xy 152.387148 85.403641) (xy 152.400001 85.512782) (xy 152.4 98.885267) (xy 152.4 98.885268) (xy 152.400001 103.914733) (xy 152.401289 103.927808) (xy 152.401254 103.932776) (xy 152.401663 103.936945) (xy 152.417984 104.092222) (xy 152.423453 104.118867) (xy 152.428545 104.145563) (xy 152.429755 104.149569) (xy 152.429756 104.149575) (xy 152.429758 104.149581) (xy 152.475925 104.298723) (xy 152.486471 104.323811) (xy 152.496648 104.349001) (xy 152.498609 104.35269) (xy 152.498613 104.352698) (xy 152.498618 104.352705) (xy 152.572876 104.490042) (xy 152.588088 104.512594) (xy 152.602968 104.535335) (xy 152.605612 104.538576) (xy 152.605616 104.538582) (xy 152.605621 104.538587) (xy 152.705138 104.658884) (xy 152.724464 104.678076) (xy 152.743457 104.697471) (xy 152.746679 104.700136) (xy 152.746683 104.70014) (xy 152.746685 104.700141) (xy 152.867678 104.79882) (xy 152.890302 104.813852) (xy 152.91276 104.829229) (xy 152.916445 104.831221) (xy 153.054303 104.904521) (xy 153.07941 104.91487) (xy 153.104433 104.925595) (xy 153.108431 104.926832) (xy 153.108437 104.926834) (xy 153.257904 104.97196) (xy 153.284571 104.97724) (xy 153.311172 104.982895) (xy 153.315329 104.983331) (xy 153.315339 104.983333) (xy 153.315348 104.983333) (xy 153.470725 104.998568) (xy 153.470727 104.998568) (xy 153.485267 105) (xy 157.18533 105) (xy 157.296836 105.010933) (xy 157.389987 105.039057) (xy 157.475898 105.084737) (xy 157.551302 105.146235) (xy 157.613328 105.221211) (xy 157.659605 105.306799) (xy 157.688379 105.399753) (xy 157.700001 105.510324) (xy 157.700001 118.622184) (xy 157.608017 118.5302) (xy 157.608012 118.530194) (xy 157.497797 118.419979) (xy 157.473099 118.295818) (xy 157.420332 118.168426) (xy 157.343726 118.053776) (xy 157.246224 117.956274) (xy 157.131574 117.879668) (xy 157.004182 117.826901) (xy 156.868944 117.8) (xy 156.731056 117.8) (xy 156.595818 117.826901) (xy 156.468426 117.879668) (xy 156.353776 117.956274) (xy 156.256274 118.053776) (xy 156.179668 118.168426) (xy 156.126901 118.295818) (xy 156.1 118.431056) (xy 156.1 118.568944) (xy 156.126901 118.704182) (xy 156.179668 118.831574) (xy 156.256274 118.946224) (xy 156.353776 119.043726) (xy 156.468426 119.120332) (xy 156.595818 119.173099) (xy 156.719979 119.197797) (xy 156.830194 119.308012) (xy 156.8302 119.308017) (xy 156.934991 119.412808) (xy 156.93499 120.185933) (xy 156.933723 120.1988) (xy 156.927383 120.263171) (xy 156.930044 120.290189) (xy 156.930043 124.445463) (xy 156.831574 124.379668) (xy 156.704182 124.326901) (xy 156.568944 124.3) (xy 156.431056 124.3) (xy 156.295818 124.326901) (xy 156.168426 124.379668) (xy 156.053776 124.456274) (xy 156.012706 124.497344) (xy 155.95633 124.440968) (xy 155.84168 124.364362) (xy 155.714288 124.311595) (xy 155.57905 124.284694) (xy 155.441162 124.284694) (xy 155.305924 124.311595) (xy 155.178532 124.364362) (xy 155.063882 124.440968) (xy 154.96638 124.53847) (xy 154.889774 124.65312) (xy 154.837007 124.780512) (xy 154.810106 124.91575) (xy 154.810106 125.053638) (xy 154.837007 125.188876) (xy 154.889774 125.316268) (xy 154.96638 125.430918) (xy 155.063882 125.52842) (xy 155.178532 125.605026) (xy 155.305924 125.657793) (xy 155.441162 125.684694) (xy 155.57905 125.684694) (xy 155.714288 125.657793) (xy 155.84168 125.605026) (xy 155.95633 125.52842) (xy 155.9974 125.48735) (xy 156.053776 125.543726) (xy 156.168426 125.620332) (xy 156.295818 125.673099) (xy 156.431056 125.7) (xy 156.568944 125.7) (xy 156.704182 125.673099) (xy 156.831574 125.620332) (xy 156.930043 125.554538) (xy 156.930043 127.169957) (xy 154.484575 127.169957) (xy 153.750581 126.435964) (xy 153.820332 126.331574) (xy 153.873099 126.204182) (xy 153.9 126.068944) (xy 153.9 125.931056) (xy 153.873099 125.795818) (xy 153.820332 125.668426) (xy 153.743726 125.553776) (xy 153.646224 125.456274) (xy 153.531574 125.379668) (xy 153.404182 125.326901) (xy 153.268944 125.3) (xy 153.131056 125.3) (xy 152.995818 125.326901) (xy 152.868426 125.379668) (xy 152.753776 125.456274) (xy 152.656274 125.553776) (xy 152.579668 125.668426) (xy 152.526901 125.795818) (xy 152.5 125.931056) (xy 152.5 126.068944) (xy 152.526901 126.204182) (xy 152.579668 126.331574) (xy 152.65 126.436834) (xy 152.65 126.636192) (xy 152.64734 126.6632) (xy 152.65 126.690208) (xy 152.65 126.690217) (xy 152.657958 126.771018) (xy 152.689408 126.874693) (xy 152.740479 126.970242) (xy 152.80921 127.05399) (xy 152.830196 127.071213) (xy 153.848749 128.089767) (xy 153.865967 128.110747) (xy 153.886947 128.127965) (xy 153.886952 128.12797) (xy 153.949714 128.179478) (xy 154.000785 128.206775) (xy 154.045263 128.230549) (xy 154.148938 128.261999) (xy 154.229739 128.269957) (xy 154.229748 128.269957) (xy 154.256756 128.272617) (xy 154.283764 128.269957) (xy 156.930044 128.269957) (xy 156.930043 130.762448) (xy 156.844224 130.726901) (xy 156.708986 130.7) (xy 156.571098 130.7) (xy 156.43586 130.726901) (xy 156.308468 130.779668) (xy 156.193818 130.856274) (xy 156.096316 130.953776) (xy 156.01971 131.068426) (xy 155.966943 131.195818) (xy 155.943278 131.314786) (xy 155.868944 131.3) (xy 155.731056 131.3) (xy 155.595818 131.326901) (xy 155.468426 131.379668) (xy 155.353776 131.456274) (xy 155.256274 131.553776) (xy 155.179668 131.668426) (xy 155.126901 131.795818) (xy 155.1 131.931056) (xy 155.1 131.95) (xy 151.477587 131.95) (xy 151.493718 131.930345) (xy 151.581932 131.765308) (xy 151.636254 131.586232) (xy 151.65 131.446665) (xy 151.65 130.753335) (xy 151.636254 130.613768) (xy 151.581932 130.434692) (xy 151.493718 130.269655) (xy 151.375001 130.124999) (xy 151.230345 130.006282) (xy 151.065307 129.918068) (xy 150.886231 129.863746) (xy 150.7 129.845404) (xy 150.513768 129.863746) (xy 150.334692 129.918068) (xy 150.169655 130.006282) (xy 150.024999 130.124999) (xy 149.906282 130.269655) (xy 149.818068 130.434693) (xy 149.763746 130.613769) (xy 149.75 130.753336) (xy 149.75 131.446665) (xy 149.763746 131.586232) (xy 149.818069 131.765308) (xy 149.906283 131.930345) (xy 149.922414 131.95) (xy 144.477587 131.95) (xy 144.493718 131.930345) (xy 144.581932 131.765308) (xy 144.636254 131.586232) (xy 144.65 131.446665) (xy 144.65 130.753335) (xy 144.636254 130.613768) (xy 144.581932 130.434692) (xy 144.493718 130.269655) (xy 144.375001 130.124999) (xy 144.230345 130.006282) (xy 144.065307 129.918068) (xy 143.886231 129.863746) (xy 143.7 129.845404) (xy 143.513768 129.863746) (xy 143.334692 129.918068) (xy 143.169655 130.006282) (xy 143.024999 130.124999) (xy 142.906282 130.269655) (xy 142.818068 130.434693) (xy 142.763746 130.613769) (xy 142.75 130.753336) (xy 142.75 130.76659) (xy 142.654182 130.726901) (xy 142.518944 130.7) (xy 142.381056 130.7) (xy 142.245818 130.726901) (xy 142.118426 130.779668) (xy 142.003776 130.856274) (xy 141.906274 130.953776) (xy 141.829668 131.068426) (xy 141.777936 131.19332) (xy 141.482966 130.898351) (xy 141.482043 130.88898) (xy 141.450593 130.785305) (xy 141.399522 130.689757) (xy 141.330791 130.606009) (xy 141.309805 130.588786) (xy 140.45 129.728981) (xy 140.45 128.299046) (xy 143.675 128.299046) (xy 143.675 128.500954) (xy 143.71439 128.698982) (xy 143.791656 128.88552) (xy 143.90383 129.0534) (xy 144.0466 129.19617) (xy 144.21448 129.308344) (xy 144.401018 129.38561) (xy 144.599046 129.425) (xy 144.800954 129.425) (xy 144.998982 129.38561) (xy 145.18552 129.308344) (xy 145.3534 129.19617) (xy 145.49617 129.0534) (xy 145.608344 128.88552) (xy 145.68561 128.698982) (xy 145.725 128.500954) (xy 145.725 128.299046) (xy 148.675 128.299046) (xy 148.675 128.500954) (xy 148.71439 128.698982) (xy 148.791656 128.88552) (xy 148.90383 129.0534) (xy 149.0466 129.19617) (xy 149.21448 129.308344) (xy 149.401018 129.38561) (xy 149.599046 129.425) (xy 149.800954 129.425) (xy 149.998982 129.38561) (xy 150.18552 129.308344) (xy 150.3534 129.19617) (xy 150.49617 129.0534) (xy 150.608344 128.88552) (xy 150.68561 128.698982) (xy 150.725 128.500954) (xy 150.725 128.299046) (xy 150.68561 128.101018) (xy 150.608344 127.91448) (xy 150.49617 127.7466) (xy 150.3534 127.60383) (xy 150.18552 127.491656) (xy 149.998982 127.41439) (xy 149.800954 127.375) (xy 149.599046 127.375) (xy 149.401018 127.41439) (xy 149.21448 127.491656) (xy 149.0466 127.60383) (xy 148.90383 127.7466) (xy 148.791656 127.91448) (xy 148.71439 128.101018) (xy 148.675 128.299046) (xy 145.725 128.299046) (xy 145.68561 128.101018) (xy 145.608344 127.91448) (xy 145.49617 127.7466) (xy 145.3534 127.60383) (xy 145.18552 127.491656) (xy 144.998982 127.41439) (xy 144.800954 127.375) (xy 144.599046 127.375) (xy 144.401018 127.41439) (xy 144.21448 127.491656) (xy 144.0466 127.60383) (xy 143.90383 127.7466) (xy 143.791656 127.91448) (xy 143.71439 128.101018) (xy 143.675 128.299046) (xy 140.45 128.299046) (xy 140.45 126.631056) (xy 145.600058 126.631056) (xy 145.600058 126.768944) (xy 145.626959 126.904182) (xy 145.679726 127.031574) (xy 145.756332 127.146224) (xy 145.853834 127.243726) (xy 145.968484 127.320332) (xy 146.095876 127.373099) (xy 146.231114 127.4) (xy 146.369002 127.4) (xy 146.50424 127.373099) (xy 146.631632 127.320332) (xy 146.746282 127.243726) (xy 146.843784 127.146224) (xy 146.850037 127.136866) (xy 146.85629 127.146224) (xy 146.953792 127.243726) (xy 147.068442 127.320332) (xy 147.195834 127.373099) (xy 147.331072 127.4) (xy 147.46896 127.4) (xy 147.604198 127.373099) (xy 147.73159 127.320332) (xy 147.84624 127.243726) (xy 147.943742 127.146224) (xy 148.020348 127.031574) (xy 148.073115 126.904182) (xy 148.100016 126.768944) (xy 148.100016 126.631056) (xy 148.073115 126.495818) (xy 148.020348 126.368426) (xy 147.943742 126.253776) (xy 147.84624 126.156274) (xy 147.73159 126.079668) (xy 147.604198 126.026901) (xy 147.46896 126) (xy 147.331072 126) (xy 147.195834 126.026901) (xy 147.068442 126.079668) (xy 146.953792 126.156274) (xy 146.85629 126.253776) (xy 146.850037 126.263134) (xy 146.843784 126.253776) (xy 146.746282 126.156274) (xy 146.631632 126.079668) (xy 146.50424 126.026901) (xy 146.369002 126) (xy 146.231114 126) (xy 146.095876 126.026901) (xy 145.968484 126.079668) (xy 145.853834 126.156274) (xy 145.756332 126.253776) (xy 145.679726 126.368426) (xy 145.626959 126.495818) (xy 145.600058 126.631056) (xy 140.45 126.631056) (xy 140.45 123.421058) (xy 150.357012 123.421058) (xy 150.357012 123.558946) (xy 150.383913 123.694184) (xy 150.43668 123.821576) (xy 150.513286 123.936226) (xy 150.610788 124.033728) (xy 150.725438 124.110334) (xy 150.85283 124.163101) (xy 150.988068 124.190002) (xy 151.125956 124.190002) (xy 151.261194 124.163101) (xy 151.388586 124.110334) (xy 151.433827 124.080105) (xy 151.440955 124.115937) (xy 151.493722 124.243329) (xy 151.570328 124.357979) (xy 151.66783 124.455481) (xy 151.78248 124.532087) (xy 151.909872 124.584854) (xy 152.04511 124.611755) (xy 152.182998 124.611755) (xy 152.318236 124.584854) (xy 152.445628 124.532087) (xy 152.560278 124.455481) (xy 152.65778 124.357979) (xy 152.734386 124.243329) (xy 152.787153 124.115937) (xy 152.814054 123.980699) (xy 152.814054 123.842811) (xy 152.787153 123.707573) (xy 152.734386 123.580181) (xy 152.65778 123.465531) (xy 152.560278 123.368029) (xy 152.445628 123.291423) (xy 152.318236 123.238656) (xy 152.182998 123.211755) (xy 152.04511 123.211755) (xy 151.909872 123.238656) (xy 151.78248 123.291423) (xy 151.737239 123.321652) (xy 151.730111 123.28582) (xy 151.677344 123.158428) (xy 151.600738 123.043778) (xy 151.503236 122.946276) (xy 151.388586 122.86967) (xy 151.261194 122.816903) (xy 151.125956 122.790002) (xy 150.988068 122.790002) (xy 150.85283 122.816903) (xy 150.725438 122.86967) (xy 150.610788 122.946276) (xy 150.513286 123.043778) (xy 150.43668 123.158428) (xy 150.383913 123.28582) (xy 150.357012 123.421058) (xy 140.45 123.421058) (xy 140.45 122.556058) (xy 153.5 122.556058) (xy 153.5 122.693946) (xy 153.526901 122.829184) (xy 153.579668 122.956576) (xy 153.656274 123.071226) (xy 153.753776 123.168728) (xy 153.868426 123.245334) (xy 153.995818 123.298101) (xy 154.131056 123.325002) (xy 154.268944 123.325002) (xy 154.404182 123.298101) (xy 154.531574 123.245334) (xy 154.646224 123.168728) (xy 154.743726 123.071226) (xy 154.820332 122.956576) (xy 154.873099 122.829184) (xy 154.9 122.693946) (xy 154.9 122.556058) (xy 154.873099 122.42082) (xy 154.820332 122.293428) (xy 154.743726 122.178778) (xy 154.646224 122.081276) (xy 154.531574 122.00467) (xy 154.404182 121.951903) (xy 154.268944 121.925002) (xy 154.131056 121.925002) (xy 153.995818 121.951903) (xy 153.868426 122.00467) (xy 153.753776 122.081276) (xy 153.656274 122.178778) (xy 153.579668 122.293428) (xy 153.526901 122.42082) (xy 153.5 122.556058) (xy 140.45 122.556058) (xy 140.45 122.336834) (xy 140.520332 122.231574) (xy 140.573099 122.104182) (xy 140.6 121.968944) (xy 140.6 121.831056) (xy 140.573099 121.695818) (xy 140.520332 121.568426) (xy 140.468535 121.490906) (xy 140.468535 121.30099) (xy 140.538867 121.19573) (xy 140.591634 121.068338) (xy 140.618535 120.9331) (xy 140.618535 120.795212) (xy 140.591634 120.659974) (xy 140.538867 120.532582) (xy 140.462261 120.417932) (xy 140.364759 120.32043) (xy 140.250109 120.243824) (xy 140.174733 120.212602) (xy 140.744128 119.643207) (xy 144.177814 119.643207) (xy 144.177814 119.781095) (xy 144.204715 119.916333) (xy 144.257482 120.043725) (xy 144.334088 120.158375) (xy 144.43159 120.255877) (xy 144.54624 120.332483) (xy 144.673632 120.38525) (xy 144.80887 120.412151) (xy 144.946758 120.412151) (xy 145.081996 120.38525) (xy 145.209388 120.332483) (xy 145.324038 120.255877) (xy 145.42154 120.158375) (xy 145.498146 120.043725) (xy 145.550913 119.916333) (xy 145.577814 119.781095) (xy 145.577814 119.643207) (xy 145.561 119.558677) (xy 145.595818 119.573099) (xy 145.731056 119.6) (xy 145.868944 119.6) (xy 146.004182 119.573099) (xy 146.131574 119.520332) (xy 146.246224 119.443726) (xy 146.343726 119.346224) (xy 146.420332 119.231574) (xy 146.473099 119.104182) (xy 146.5 118.968944) (xy 146.5 118.831056) (xy 146.473099 118.695818) (xy 146.420332 118.568426) (xy 146.343726 118.453776) (xy 146.246224 118.356274) (xy 146.131574 118.279668) (xy 146.004182 118.226901) (xy 145.868944 118.2) (xy 145.731056 118.2) (xy 145.595818 118.226901) (xy 145.468426 118.279668) (xy 145.353776 118.356274) (xy 145.256274 118.453776) (xy 145.179668 118.568426) (xy 145.126901 118.695818) (xy 145.1 118.831056) (xy 145.1 118.968944) (xy 145.116814 119.053474) (xy 145.081996 119.039052) (xy 144.946758 119.012151) (xy 144.80887 119.012151) (xy 144.673632 119.039052) (xy 144.54624 119.091819) (xy 144.43159 119.168425) (xy 144.334088 119.265927) (xy 144.257482 119.380577) (xy 144.204715 119.507969) (xy 144.177814 119.643207) (xy 140.744128 119.643207) (xy 142.377338 118.009998) (xy 144.51453 118.009998) (xy 144.61979 118.08033) (xy 144.747182 118.133097) (xy 144.88242 118.159998) (xy 145.020308 118.159998) (xy 145.155546 118.133097) (xy 145.282938 118.08033) (xy 145.397588 118.003724) (xy 145.49509 117.906222) (xy 145.571696 117.791572) (xy 145.624463 117.66418) (xy 145.651364 117.528942) (xy 145.651364 117.391054) (xy 145.624463 117.255816) (xy 145.571696 117.128424) (xy 145.501364 117.023164) (xy 145.501364 116.619655) (xy 146.289942 115.831077) (xy 146.52493 115.831077) (xy 146.52493 115.968965) (xy 146.551831 116.104203) (xy 146.604598 116.231595) (xy 146.681204 116.346245) (xy 146.778706 116.443747) (xy 146.893356 116.520353) (xy 147.020748 116.57312) (xy 147.155986 116.600021) (xy 147.293874 116.600021) (xy 147.429112 116.57312) (xy 147.556504 116.520353) (xy 147.671154 116.443747) (xy 147.768656 116.346245) (xy 147.845262 116.231595) (xy 147.898029 116.104203) (xy 147.92493 115.968965) (xy 147.92493 115.831077) (xy 147.898029 115.695839) (xy 147.845262 115.568447) (xy 147.768656 115.453797) (xy 147.671154 115.356295) (xy 147.556504 115.279689) (xy 147.429112 115.226922) (xy 147.293874 115.200021) (xy 147.155986 115.200021) (xy 147.020748 115.226922) (xy 146.893356 115.279689) (xy 146.778706 115.356295) (xy 146.681204 115.453797) (xy 146.604598 115.568447) (xy 146.551831 115.695839) (xy 146.52493 115.831077) (xy 146.289942 115.831077) (xy 147.531018 114.590002) (xy 147.863166 114.590002) (xy 147.968426 114.660334) (xy 148.095818 114.713101) (xy 148.231056 114.740002) (xy 148.368944 114.740002) (xy 148.504182 114.713101) (xy 148.631574 114.660334) (xy 148.675392 114.631056) (xy 149.5 114.631056) (xy 149.5 114.768944) (xy 149.526901 114.904182) (xy 149.579668 115.031574) (xy 149.656274 115.146224) (xy 149.753776 115.243726) (xy 149.868426 115.320332) (xy 149.995818 115.373099) (xy 150.131056 115.4) (xy 150.268944 115.4) (xy 150.404182 115.373099) (xy 150.531574 115.320332) (xy 150.646224 115.243726) (xy 150.743726 115.146224) (xy 150.820332 115.031574) (xy 150.873099 114.904182) (xy 150.9 114.768944) (xy 150.9 114.631056) (xy 150.873099 114.495818) (xy 150.820332 114.368426) (xy 150.743726 114.253776) (xy 150.646224 114.156274) (xy 150.531574 114.079668) (xy 150.404182 114.026901) (xy 150.268944 114) (xy 150.131056 114) (xy 149.995818 114.026901) (xy 149.868426 114.079668) (xy 149.753776 114.156274) (xy 149.656274 114.253776) (xy 149.579668 114.368426) (xy 149.526901 114.495818) (xy 149.5 114.631056) (xy 148.675392 114.631056) (xy 148.746224 114.583728) (xy 148.843726 114.486226) (xy 148.920332 114.371576) (xy 148.973099 114.244184) (xy 149 114.108946) (xy 149 113.971058) (xy 148.973099 113.83582) (xy 148.920332 113.708428) (xy 148.85 113.603168) (xy 148.85 113.531056) (xy 153.3 113.531056) (xy 153.3 113.668944) (xy 153.326901 113.804182) (xy 153.379668 113.931574) (xy 153.456274 114.046224) (xy 153.553776 114.143726) (xy 153.668426 114.220332) (xy 153.795818 114.273099) (xy 153.931056 114.3) (xy 154.068944 114.3) (xy 154.204182 114.273099) (xy 154.331574 114.220332) (xy 154.333153 114.219277) (xy 154.379668 114.331574) (xy 154.456274 114.446224) (xy 154.553776 114.543726) (xy 154.668426 114.620332) (xy 154.795818 114.673099) (xy 154.931056 114.7) (xy 155.068944 114.7) (xy 155.204182 114.673099) (xy 155.331574 114.620332) (xy 155.446224 114.543726) (xy 155.543726 114.446224) (xy 155.620332 114.331574) (xy 155.673099 114.204182) (xy 155.7 114.068944) (xy 155.7 113.931056) (xy 155.673099 113.795818) (xy 155.620332 113.668426) (xy 155.543726 113.553776) (xy 155.446224 113.456274) (xy 155.331574 113.379668) (xy 155.204182 113.326901) (xy 155.068944 113.3) (xy 154.931056 113.3) (xy 154.795818 113.326901) (xy 154.668426 113.379668) (xy 154.666847 113.380723) (xy 154.620332 113.268426) (xy 154.543726 113.153776) (xy 154.446224 113.056274) (xy 154.331574 112.979668) (xy 154.204182 112.926901) (xy 154.068944 112.9) (xy 153.931056 112.9) (xy 153.795818 112.926901) (xy 153.668426 112.979668) (xy 153.553776 113.056274) (xy 153.456274 113.153776) (xy 153.379668 113.268426) (xy 153.326901 113.395818) (xy 153.3 113.531056) (xy 148.85 113.531056) (xy 148.85 111.93302) (xy 148.868426 111.945332) (xy 148.995818 111.998099) (xy 149.131056 112.025) (xy 149.268944 112.025) (xy 149.404182 111.998099) (xy 149.531574 111.945332) (xy 149.646224 111.868726) (xy 149.743726 111.771224) (xy 149.820332 111.656574) (xy 149.830901 111.631056) (xy 155.1 111.631056) (xy 155.1 111.768944) (xy 155.126901 111.904182) (xy 155.179668 112.031574) (xy 155.256274 112.146224) (xy 155.353776 112.243726) (xy 155.468426 112.320332) (xy 155.595818 112.373099) (xy 155.731056 112.4) (xy 155.868944 112.4) (xy 156.004182 112.373099) (xy 156.131574 112.320332) (xy 156.246224 112.243726) (xy 156.3 112.18995) (xy 156.353776 112.243726) (xy 156.468426 112.320332) (xy 156.595818 112.373099) (xy 156.731056 112.4) (xy 156.868944 112.4) (xy 157.004182 112.373099) (xy 157.131574 112.320332) (xy 157.246224 112.243726) (xy 157.343726 112.146224) (xy 157.420332 112.031574) (xy 157.473099 111.904182) (xy 157.5 111.768944) (xy 157.5 111.631056) (xy 157.473099 111.495818) (xy 157.420332 111.368426) (xy 157.343726 111.253776) (xy 157.246224 111.156274) (xy 157.131574 111.079668) (xy 157.004182 111.026901) (xy 156.868944 111) (xy 156.731056 111) (xy 156.595818 111.026901) (xy 156.468426 111.079668) (xy 156.353776 111.156274) (xy 156.3 111.21005) (xy 156.246224 111.156274) (xy 156.131574 111.079668) (xy 156.004182 111.026901) (xy 155.868944 111) (xy 155.731056 111) (xy 155.595818 111.026901) (xy 155.468426 111.079668) (xy 155.353776 111.156274) (xy 155.256274 111.253776) (xy 155.179668 111.368426) (xy 155.126901 111.495818) (xy 155.1 111.631056) (xy 149.830901 111.631056) (xy 149.873099 111.529182) (xy 149.9 111.393944) (xy 149.9 111.256056) (xy 149.873099 111.120818) (xy 149.820332 110.993426) (xy 149.743726 110.878776) (xy 149.646224 110.781274) (xy 149.531574 110.704668) (xy 149.404182 110.651901) (xy 149.268944 110.625) (xy 149.252818 110.625) (xy 149.480021 110.397797) (xy 149.604182 110.373099) (xy 149.731574 110.320332) (xy 149.846224 110.243726) (xy 149.943726 110.146224) (xy 150.020332 110.031574) (xy 150.050549 109.958621) (xy 155.153956 109.958621) (xy 155.153956 110.096509) (xy 155.180857 110.231747) (xy 155.233624 110.359139) (xy 155.31023 110.473789) (xy 155.407732 110.571291) (xy 155.522382 110.647897) (xy 155.649774 110.700664) (xy 155.785012 110.727565) (xy 155.9229 110.727565) (xy 156.058138 110.700664) (xy 156.18553 110.647897) (xy 156.30018 110.571291) (xy 156.397682 110.473789) (xy 156.474288 110.359139) (xy 156.527055 110.231747) (xy 156.553956 110.096509) (xy 156.553956 109.958621) (xy 156.527055 109.823383) (xy 156.474288 109.695991) (xy 156.397682 109.581341) (xy 156.30018 109.483839) (xy 156.18553 109.407233) (xy 156.058138 109.354466) (xy 155.9229 109.327565) (xy 155.785012 109.327565) (xy 155.649774 109.354466) (xy 155.522382 109.407233) (xy 155.407732 109.483839) (xy 155.31023 109.581341) (xy 155.233624 109.695991) (xy 155.180857 109.823383) (xy 155.153956 109.958621) (xy 150.050549 109.958621) (xy 150.073099 109.904182) (xy 150.1 109.768944) (xy 150.1 109.631056) (xy 150.073099 109.495818) (xy 150.020332 109.368426) (xy 149.943726 109.253776) (xy 149.846224 109.156274) (xy 149.731574 109.079668) (xy 149.604182 109.026901) (xy 149.468944 109) (xy 149.331056 109) (xy 149.195818 109.026901) (xy 149.068426 109.079668) (xy 148.953776 109.156274) (xy 148.856274 109.253776) (xy 148.779668 109.368426) (xy 148.726901 109.495818) (xy 148.702203 109.619979) (xy 147.930196 110.391987) (xy 147.90921 110.40921) (xy 147.840479 110.492958) (xy 147.789408 110.588507) (xy 147.757958 110.692182) (xy 147.75 110.772983) (xy 147.75 110.772992) (xy 147.74734 110.8) (xy 147.75 110.827008) (xy 147.750001 113.490002) (xy 147.47592 113.490002) (xy 147.5 113.368944) (xy 147.5 113.231056) (xy 147.473099 113.095818) (xy 147.420332 112.968426) (xy 147.343726 112.853776) (xy 147.246224 112.756274) (xy 147.131574 112.679668) (xy 147.004182 112.626901) (xy 146.868944 112.6) (xy 146.731056 112.6) (xy 146.595818 112.626901) (xy 146.468426 112.679668) (xy 146.353776 112.756274) (xy 146.256274 112.853776) (xy 146.179668 112.968426) (xy 146.126901 113.095818) (xy 146.1 113.231056) (xy 146.1 113.368944) (xy 146.126901 113.504182) (xy 146.179668 113.631574) (xy 146.256274 113.746224) (xy 146.353776 113.843726) (xy 146.468426 113.920332) (xy 146.59332 113.972064) (xy 144.58156 115.983825) (xy 144.560574 116.001048) (xy 144.491843 116.084796) (xy 144.440772 116.180345) (xy 144.409322 116.28402) (xy 144.401364 116.364821) (xy 144.401364 116.36483) (xy 144.398704 116.391838) (xy 144.401364 116.418846) (xy 144.401364 116.909998) (xy 142.176527 116.909998) (xy 142.149519 116.907338) (xy 142.122511 116.909998) (xy 142.122502 116.909998) (xy 142.041701 116.917956) (xy 141.938026 116.949406) (xy 141.842478 117.000477) (xy 141.831617 117.009391) (xy 141.779715 117.051985) (xy 141.77971 117.05199) (xy 141.75873 117.069208) (xy 141.741512 117.090188) (xy 139.148732 119.682969) (xy 139.127746 119.700192) (xy 139.059015 119.78394) (xy 139.007944 119.879489) (xy 138.976494 119.983164) (xy 138.968536 120.063965) (xy 138.968536 120.063974) (xy 138.965876 120.090982) (xy 138.968536 120.11799) (xy 138.968536 120.437149) (xy 138.965876 120.464157) (xy 138.968536 120.491165) (xy 138.968536 120.491175) (xy 138.976494 120.571976) (xy 139.001365 120.653961) (xy 139.007945 120.675651) (xy 139.059015 120.771199) (xy 139.110523 120.833961) (xy 139.110529 120.833967) (xy 139.127747 120.854947) (xy 139.148727 120.872165) (xy 139.220738 120.944177) (xy 139.245436 121.068338) (xy 139.298203 121.19573) (xy 139.368535 121.300991) (xy 139.368536 121.441514) (xy 139.356274 121.453776) (xy 139.279668 121.568426) (xy 139.226901 121.695818) (xy 139.2 121.831056) (xy 139.2 121.968944) (xy 139.226901 122.104182) (xy 139.279668 122.231574) (xy 139.35 122.336834) (xy 139.350001 129.92978) (xy 139.34734 129.956798) (xy 139.357959 130.064616) (xy 139.389409 130.168292) (xy 139.440479 130.26384) (xy 139.491987 130.326602) (xy 139.491993 130.326608) (xy 139.509211 130.347588) (xy 139.530191 130.364806) (xy 139.89332 130.727935) (xy 139.768426 130.779668) (xy 139.653776 130.856274) (xy 139.556274 130.953776) (xy 139.479668 131.068426) (xy 139.426901 131.195818) (xy 139.4 131.331056) (xy 139.4 131.468944) (xy 139.426901 131.604182) (xy 139.479668 131.731574) (xy 139.556274 131.846224) (xy 139.653776 131.943726) (xy 139.768426 132.020332) (xy 139.895818 132.073099) (xy 140.031056 132.1) (xy 140.168944 132.1) (xy 140.304182 132.073099) (xy 140.431574 132.020332) (xy 140.546224 131.943726) (xy 140.643726 131.846224) (xy 140.720332 131.731574) (xy 140.732113 131.703132) (xy 141.82898 132.8) (xy 137.21467 132.8) (xy 137.103164 132.789067) (xy 137.010013 132.760943) (xy 136.924101 132.715262) (xy 136.848697 132.653765) (xy 136.786674 132.578791) (xy 136.740395 132.493202) (xy 136.711621 132.400247) (xy 136.7 132.289685) (xy 136.7 118.241143) (xy 137.082706 118.241143) (xy 137.082706 118.379031) (xy 137.109607 118.514269) (xy 137.162374 118.641661) (xy 137.23898 118.756311) (xy 137.336482 118.853813) (xy 137.451132 118.930419) (xy 137.578524 118.983186) (xy 137.713762 119.010087) (xy 137.85165 119.010087) (xy 137.986888 118.983186) (xy 138.11428 118.930419) (xy 138.22893 118.853813) (xy 138.282722 118.800021) (xy 138.326432 118.843731) (xy 138.441082 118.920337) (xy 138.568474 118.973104) (xy 138.703712 119.000005) (xy 138.8416 119.000005) (xy 138.976838 118.973104) (xy 139.10423 118.920337) (xy 139.21888 118.843731) (xy 139.316382 118.746229) (xy 139.392988 118.631579) (xy 139.445755 118.504187) (xy 139.472656 118.368949) (xy 139.472656 118.231061) (xy 139.445755 118.095823) (xy 139.392988 117.968431) (xy 139.316382 117.853781) (xy 139.21888 117.756279) (xy 139.10423 117.679673) (xy 138.976838 117.626906) (xy 138.8416 117.600005) (xy 138.703712 117.600005) (xy 138.568474 117.626906) (xy 138.441082 117.679673) (xy 138.326432 117.756279) (xy 138.27264 117.810071) (xy 138.22893 117.766361) (xy 138.11428 117.689755) (xy 137.986888 117.636988) (xy 137.85165 117.610087) (xy 137.713762 117.610087) (xy 137.578524 117.636988) (xy 137.451132 117.689755) (xy 137.336482 117.766361) (xy 137.23898 117.863863) (xy 137.162374 117.978513) (xy 137.109607 118.105905) (xy 137.082706 118.241143) (xy 136.7 118.241143) (xy 136.7 114.581152) (xy 140.1 114.581152) (xy 140.1 114.71904) (xy 140.126901 114.854278) (xy 140.179668 114.98167) (xy 140.256274 115.09632) (xy 140.353776 115.193822) (xy 140.468426 115.270428) (xy 140.595818 115.323195) (xy 140.731056 115.350096) (xy 140.868944 115.350096) (xy 141.004182 115.323195) (xy 141.131574 115.270428) (xy 141.246224 115.193822) (xy 141.343726 115.09632) (xy 141.420332 114.98167) (xy 141.473099 114.854278) (xy 141.5 114.71904) (xy 141.5 114.581152) (xy 141.473099 114.445914) (xy 141.420332 114.318522) (xy 141.343726 114.203872) (xy 141.246224 114.10637) (xy 141.131574 114.029764) (xy 141.004182 113.976997) (xy 140.868944 113.950096) (xy 140.731056 113.950096) (xy 140.595818 113.976997) (xy 140.468426 114.029764) (xy 140.353776 114.10637) (xy 140.256274 114.203872) (xy 140.179668 114.318522) (xy 140.126901 114.445914) (xy 140.1 114.581152) (xy 136.7 114.581152) (xy 136.7 111.042686) (xy 141.932434 111.042686) (xy 141.932434 111.180574) (xy 141.959335 111.315812) (xy 142.012102 111.443204) (xy 142.088708 111.557854) (xy 142.18621 111.655356) (xy 142.30086 111.731962) (xy 142.428252 111.784729) (xy 142.56349 111.81163) (xy 142.701378 111.81163) (xy 142.836616 111.784729) (xy 142.964008 111.731962) (xy 143.078658 111.655356) (xy 143.17616 111.557854) (xy 143.252766 111.443204) (xy 143.305533 111.315812) (xy 143.322392 111.231056) (xy 145.8 111.231056) (xy 145.8 111.368944) (xy 145.826901 111.504182) (xy 145.879668 111.631574) (xy 145.956274 111.746224) (xy 146.053776 111.843726) (xy 146.168426 111.920332) (xy 146.295818 111.973099) (xy 146.431056 112) (xy 146.568944 112) (xy 146.704182 111.973099) (xy 146.831574 111.920332) (xy 146.946224 111.843726) (xy 147.043726 111.746224) (xy 147.120332 111.631574) (xy 147.173099 111.504182) (xy 147.2 111.368944) (xy 147.2 111.231056) (xy 147.173099 111.095818) (xy 147.120332 110.968426) (xy 147.043726 110.853776) (xy 146.946224 110.756274) (xy 146.831574 110.679668) (xy 146.704182 110.626901) (xy 146.568944 110.6) (xy 146.431056 110.6) (xy 146.295818 110.626901) (xy 146.168426 110.679668) (xy 146.053776 110.756274) (xy 145.956274 110.853776) (xy 145.879668 110.968426) (xy 145.826901 111.095818) (xy 145.8 111.231056) (xy 143.322392 111.231056) (xy 143.332434 111.180574) (xy 143.332434 111.042686) (xy 143.305533 110.907448) (xy 143.252766 110.780056) (xy 143.17616 110.665406) (xy 143.078658 110.567904) (xy 142.964008 110.491298) (xy 142.836616 110.438531) (xy 142.701378 110.41163) (xy 142.56349 110.41163) (xy 142.428252 110.438531) (xy 142.30086 110.491298) (xy 142.18621 110.567904) (xy 142.088708 110.665406) (xy 142.012102 110.780056) (xy 141.959335 110.907448) (xy 141.932434 111.042686) (xy 136.7 111.042686) (xy 136.7 108.731056) (xy 144.2 108.731056) (xy 144.2 108.868944) (xy 144.226901 109.004182) (xy 144.279668 109.131574) (xy 144.356274 109.246224) (xy 144.453776 109.343726) (xy 144.463166 109.35) (xy 144.453776 109.356274) (xy 144.356274 109.453776) (xy 144.279668 109.568426) (xy 144.226901 109.695818) (xy 144.2 109.831056) (xy 144.2 109.968944) (xy 144.226901 110.104182) (xy 144.279668 110.231574) (xy 144.356274 110.346224) (xy 144.453776 110.443726) (xy 144.568426 110.520332) (xy 144.695818 110.573099) (xy 144.831056 110.6) (xy 144.968944 110.6) (xy 145.104182 110.573099) (xy 145.231574 110.520332) (xy 145.346224 110.443726) (xy 145.443726 110.346224) (xy 145.520332 110.231574) (xy 145.573099 110.104182) (xy 145.6 109.968944) (xy 145.6 109.831056) (xy 145.573099 109.695818) (xy 145.520332 109.568426) (xy 145.443726 109.453776) (xy 145.346224 109.356274) (xy 145.336834 109.35) (xy 145.346224 109.343726) (xy 145.443726 109.246224) (xy 145.520332 109.131574) (xy 145.573099 109.004182) (xy 145.6 108.868944) (xy 145.6 108.731056) (xy 145.573099 108.595818) (xy 145.520332 108.468426) (xy 145.443726 108.353776) (xy 145.346224 108.256274) (xy 145.231574 108.179668) (xy 145.104182 108.126901) (xy 144.968944 108.1) (xy 144.831056 108.1) (xy 144.695818 108.126901) (xy 144.568426 108.179668) (xy 144.453776 108.256274) (xy 144.356274 108.353776) (xy 144.279668 108.468426) (xy 144.226901 108.595818) (xy 144.2 108.731056) (xy 136.7 108.731056) (xy 136.7 106.799876) (xy 144.011709 106.799876) (xy 144.011709 106.937764) (xy 144.03861 107.073002) (xy 144.091377 107.200394) (xy 144.167983 107.315044) (xy 144.265485 107.412546) (xy 144.380135 107.489152) (xy 144.507527 107.541919) (xy 144.642765 107.56882) (xy 144.780653 107.56882) (xy 144.915891 107.541919) (xy 145.043283 107.489152) (xy 145.157933 107.412546) (xy 145.255435 107.315044) (xy 145.332041 107.200394) (xy 145.384808 107.073002) (xy 145.411709 106.937764) (xy 145.411709 106.799876) (xy 145.384808 106.664638) (xy 145.332041 106.537246) (xy 145.327906 106.531056) (xy 155.1 106.531056) (xy 155.1 106.668944) (xy 155.126901 106.804182) (xy 155.179668 106.931574) (xy 155.256274 107.046224) (xy 155.353776 107.143726) (xy 155.468426 107.220332) (xy 155.498719 107.23288) (xy 155.463706 107.256274) (xy 155.366204 107.353776) (xy 155.289598 107.468426) (xy 155.236831 107.595818) (xy 155.20993 107.731056) (xy 155.20993 107.868944) (xy 155.236831 108.004182) (xy 155.289598 108.131574) (xy 155.366204 108.246224) (xy 155.463706 108.343726) (xy 155.578356 108.420332) (xy 155.705748 108.473099) (xy 155.840986 108.5) (xy 155.978874 108.5) (xy 156.114112 108.473099) (xy 156.241504 108.420332) (xy 156.356154 108.343726) (xy 156.453656 108.246224) (xy 156.530262 108.131574) (xy 156.583029 108.004182) (xy 156.60993 107.868944) (xy 156.60993 107.731056) (xy 156.583029 107.595818) (xy 156.530262 107.468426) (xy 156.453656 107.353776) (xy 156.356154 107.256274) (xy 156.241504 107.179668) (xy 156.211211 107.16712) (xy 156.246224 107.143726) (xy 156.3 107.08995) (xy 156.353776 107.143726) (xy 156.468426 107.220332) (xy 156.595818 107.273099) (xy 156.731056 107.3) (xy 156.868944 107.3) (xy 157.004182 107.273099) (xy 157.131574 107.220332) (xy 157.246224 107.143726) (xy 157.343726 107.046224) (xy 157.420332 106.931574) (xy 157.473099 106.804182) (xy 157.5 106.668944) (xy 157.5 106.531056) (xy 157.473099 106.395818) (xy 157.420332 106.268426) (xy 157.343726 106.153776) (xy 157.246224 106.056274) (xy 157.131574 105.979668) (xy 157.004182 105.926901) (xy 156.868944 105.9) (xy 156.731056 105.9) (xy 156.595818 105.926901) (xy 156.468426 105.979668) (xy 156.353776 106.056274) (xy 156.3 106.11005) (xy 156.246224 106.056274) (xy 156.131574 105.979668) (xy 156.004182 105.926901) (xy 155.868944 105.9) (xy 155.731056 105.9) (xy 155.595818 105.926901) (xy 155.468426 105.979668) (xy 155.353776 106.056274) (xy 155.256274 106.153776) (xy 155.179668 106.268426) (xy 155.126901 106.395818) (xy 155.1 106.531056) (xy 145.327906 106.531056) (xy 145.255435 106.422596) (xy 145.157933 106.325094) (xy 145.043283 106.248488) (xy 144.915891 106.195721) (xy 144.780653 106.16882) (xy 144.642765 106.16882) (xy 144.507527 106.195721) (xy 144.380135 106.248488) (xy 144.265485 106.325094) (xy 144.167983 106.422596) (xy 144.091377 106.537246) (xy 144.03861 106.664638) (xy 144.011709 106.799876) (xy 136.7 106.799876) (xy 136.7 105.51467) (xy 136.710933 105.403164) (xy 136.739057 105.310013) (xy 136.784737 105.224102) (xy 136.846235 105.148698) (xy 136.921211 105.086672) (xy 137.006799 105.040395) (xy 137.099753 105.011621) (xy 137.210315 105) (xy 140.914733 105) (xy 140.927817 104.998711) (xy 140.932776 104.998746) (xy 140.936945 104.998337) (xy 141.092222 104.982016) (xy 141.118867 104.976547) (xy 141.145563 104.971455) (xy 141.149569 104.970245) (xy 141.149575 104.970244) (xy 141.149581 104.970242) (xy 141.298723 104.924075) (xy 141.323811 104.913529) (xy 141.349001 104.903352) (xy 141.35269 104.901391) (xy 141.352698 104.901387) (xy 141.352705 104.901382) (xy 141.490042 104.827124) (xy 141.512594 104.811912) (xy 141.535335 104.797032) (xy 141.538576 104.794388) (xy 141.538582 104.794384) (xy 141.538587 104.794379) (xy 141.658884 104.694862) (xy 141.678076 104.675536) (xy 141.697471 104.656543) (xy 141.700136 104.653321) (xy 141.70014 104.653317) (xy 141.700143 104.653313) (xy 141.79882 104.532322) (xy 141.813852 104.509698) (xy 141.829229 104.48724) (xy 141.831221 104.483555) (xy 141.859135 104.431056) (xy 150.7 104.431056) (xy 150.7 104.568944) (xy 150.726901 104.704182) (xy 150.779668 104.831574) (xy 150.856274 104.946224) (xy 150.953776 105.043726) (xy 151.068426 105.120332) (xy 151.195818 105.173099) (xy 151.331056 105.2) (xy 151.468944 105.2) (xy 151.604182 105.173099) (xy 151.731574 105.120332) (xy 151.846224 105.043726) (xy 151.943726 104.946224) (xy 152.020332 104.831574) (xy 152.073099 104.704182) (xy 152.1 104.568944) (xy 152.1 104.431056) (xy 152.073099 104.295818) (xy 152.020332 104.168426) (xy 151.943726 104.053776) (xy 151.846224 103.956274) (xy 151.731574 103.879668) (xy 151.604182 103.826901) (xy 151.468944 103.8) (xy 151.331056 103.8) (xy 151.195818 103.826901) (xy 151.068426 103.879668) (xy 150.953776 103.956274) (xy 150.856274 104.053776) (xy 150.779668 104.168426) (xy 150.726901 104.295818) (xy 150.7 104.431056) (xy 141.859135 104.431056) (xy 141.904521 104.345697) (xy 141.91487 104.32059) (xy 141.925595 104.295567) (xy 141.926833 104.291565) (xy 141.97196 104.142096) (xy 141.97724 104.115429) (xy 141.982895 104.088828) (xy 141.983331 104.084671) (xy 141.983333 104.084661) (xy 141.983333 104.084652) (xy 141.998568 103.929275) (xy 141.998568 103.929273) (xy 142 103.914733) (xy 142 102.731056) (xy 146.6 102.731056) (xy 146.6 102.868944) (xy 146.626901 103.004182) (xy 146.679668 103.131574) (xy 146.756274 103.246224) (xy 146.853776 103.343726) (xy 146.968426 103.420332) (xy 147.095818 103.473099) (xy 147.231056 103.5) (xy 147.368944 103.5) (xy 147.504182 103.473099) (xy 147.631574 103.420332) (xy 147.746224 103.343726) (xy 147.843726 103.246224) (xy 147.920332 103.131574) (xy 147.973099 103.004182) (xy 148 102.868944) (xy 148 102.731056) (xy 147.973099 102.595818) (xy 147.920332 102.468426) (xy 147.843726 102.353776) (xy 147.746224 102.256274) (xy 147.631574 102.179668) (xy 147.504182 102.126901) (xy 147.368944 102.1) (xy 147.231056 102.1) (xy 147.095818 102.126901) (xy 146.968426 102.179668) (xy 146.853776 102.256274) (xy 146.756274 102.353776) (xy 146.679668 102.468426) (xy 146.626901 102.595818) (xy 146.6 102.731056) (xy 142 102.731056) (xy 142 94.624263) (xy 142.601715 94.022549) (xy 142.613158 94.013158) (xy 142.622549 94.001715) (xy 142.650647 93.967478) (xy 142.678503 93.915361) (xy 142.678504 93.91536) (xy 142.695659 93.85881) (xy 142.7 93.814733) (xy 142.7 93.814721) (xy 142.70145 93.800001) (xy 142.7 93.785281) (xy 142.7 92.785267) (xy 142.69958 92.781003) (xy 142.699553 92.780055) (xy 142.699257 92.777726) (xy 142.697117 92.755994) (xy 142.696711 92.746547) (xy 142.696094 92.742403) (xy 142.690081 92.703836) (xy 142.683282 92.677472) (xy 142.676868 92.651085) (xy 142.675459 92.64714) (xy 142.662068 92.610474) (xy 142.650302 92.585983) (xy 142.638859 92.56129) (xy 142.636709 92.557694) (xy 142.616452 92.524329) (xy 142.600154 92.502593) (xy 142.584138 92.480599) (xy 142.581331 92.477489) (xy 142.554979 92.448693) (xy 142.534761 92.430528) (xy 142.514782 92.412068) (xy 142.511429 92.409566) (xy 142.511426 92.409563) (xy 142.511423 92.409561) (xy 142.479982 92.386434) (xy 142.456588 92.372523) (xy 142.433437 92.358315) (xy 142.429662 92.356511) (xy 142.429658 92.356509) (xy 142.429654 92.356508) (xy 142.39432 92.339928) (xy 142.368707 92.330839) (xy 142.343206 92.321386) (xy 142.339147 92.320349) (xy 142.301264 92.310947) (xy 142.274352 92.307002) (xy 142.24751 92.302685) (xy 142.243338 92.302457) (xy 142.243334 92.302456) (xy 142.243328 92.302456) (xy 142.216787 92.301187) (xy 142.204733 92.3) (xy 141.99 92.3) (xy 141.99 91.224263) (xy 143.161717 90.052547) (xy 143.173158 90.043158) (xy 143.182549 90.031715) (xy 143.210647 89.997478) (xy 143.238503 89.945361) (xy 143.238504 89.94536) (xy 143.255659 89.88881) (xy 143.26 89.844733) (xy 143.26 89.844724) (xy 143.26145 89.830001) (xy 143.26 89.815278) (xy 143.26 85.52467) (xy 143.270933 85.413164) (xy 143.299057 85.320013) (xy 143.344737 85.234102) (xy 143.406235 85.158698) (xy 143.481211 85.096672) (xy 143.566799 85.050395) (xy 143.659753 85.021621) (xy 143.770315 85.01) (xy 151.877202 85.01) ) ) ) (zone (net 1) (net_name "GND") (layer "In1.Cu") (tstamp 5B07B227) (hatch edge 0.508) (connect_pads (clearance 0.2)) (min_thickness 0.2) (fill yes (thermal_gap 0.2) (thermal_bridge_width 0.21)) (polygon (pts (xy 152.2 84.8) (xy 152.5 85) (xy 152.7 85.4) (xy 152.7 103.9) (xy 152.8 104.3) (xy 153 104.5) (xy 153.4 104.7) (xy 157.2 104.7) (xy 157.6 104.8) (xy 157.9 105.1) (xy 158 105.4) (xy 158 132.3) (xy 157.9 132.7) (xy 157.6 133) (xy 157.2 133.1) (xy 137.2 133.1) (xy 136.8 133) (xy 136.5 132.7) (xy 136.4 132.3) (xy 136.4 105.5) (xy 136.5 105.1) (xy 136.8 104.8) (xy 137.1 104.7) (xy 140.9 104.7) (xy 141.3 104.6) (xy 141.5 104.4) (xy 141.6 104.2) (xy 141.7 103.9) (xy 141.7 94.5) (xy 142.4 93.8) (xy 142.4 92.8) (xy 142.3 92.6) (xy 141.7 92.6) (xy 141.7 91.1) (xy 143 89.8) (xy 143 85.5) (xy 143.1 85.1) (xy 143.4 84.8) (xy 143.8 84.7) (xy 151.9 84.7) ) ) (filled_polygon (pts (xy 151.99073 85.019701) (xy 152.084234 85.04666) (xy 152.170723 85.09127) (xy 152.246898 85.151827) (xy 152.309859 85.226026) (xy 152.357213 85.311047) (xy 152.387148 85.403641) (xy 152.400001 85.512782) (xy 152.4 98.885267) (xy 152.4 98.885268) (xy 152.400001 103.914733) (xy 152.401289 103.927808) (xy 152.401254 103.932776) (xy 152.401663 103.936945) (xy 152.417984 104.092222) (xy 152.423453 104.118867) (xy 152.428545 104.145563) (xy 152.429755 104.149569) (xy 152.429756 104.149575) (xy 152.429758 104.149581) (xy 152.475925 104.298723) (xy 152.486471 104.323811) (xy 152.496648 104.349001) (xy 152.498609 104.35269) (xy 152.498613 104.352698) (xy 152.498618 104.352705) (xy 152.572876 104.490042) (xy 152.588088 104.512594) (xy 152.602968 104.535335) (xy 152.605612 104.538576) (xy 152.605616 104.538582) (xy 152.605621 104.538587) (xy 152.705138 104.658884) (xy 152.724464 104.678076) (xy 152.743457 104.697471) (xy 152.746679 104.700136) (xy 152.746683 104.70014) (xy 152.746685 104.700141) (xy 152.867678 104.79882) (xy 152.890302 104.813852) (xy 152.91276 104.829229) (xy 152.916445 104.831221) (xy 153.054303 104.904521) (xy 153.07941 104.91487) (xy 153.104433 104.925595) (xy 153.108431 104.926832) (xy 153.108437 104.926834) (xy 153.257904 104.97196) (xy 153.284571 104.97724) (xy 153.311172 104.982895) (xy 153.315329 104.983331) (xy 153.315339 104.983333) (xy 153.315348 104.983333) (xy 153.470725 104.998568) (xy 153.470727 104.998568) (xy 153.485267 105) (xy 157.18533 105) (xy 157.296836 105.010933) (xy 157.389987 105.039057) (xy 157.475898 105.084737) (xy 157.551302 105.146235) (xy 157.613328 105.221211) (xy 157.659605 105.306799) (xy 157.688379 105.399753) (xy 157.700001 105.510324) (xy 157.7 132.285329) (xy 157.689067 132.396836) (xy 157.660943 132.489987) (xy 157.615262 132.575899) (xy 157.553765 132.651303) (xy 157.478791 132.713326) (xy 157.393202 132.759605) (xy 157.300247 132.788379) (xy 157.189685 132.8) (xy 137.21467 132.8) (xy 137.103164 132.789067) (xy 137.010013 132.760943) (xy 136.924101 132.715262) (xy 136.848697 132.653765) (xy 136.786674 132.578791) (xy 136.740395 132.493202) (xy 136.711621 132.400247) (xy 136.7 132.289685) (xy 136.7 131.331056) (xy 139.4 131.331056) (xy 139.4 131.468944) (xy 139.426901 131.604182) (xy 139.479668 131.731574) (xy 139.556274 131.846224) (xy 139.653776 131.943726) (xy 139.768426 132.020332) (xy 139.895818 132.073099) (xy 140.031056 132.1) (xy 140.168944 132.1) (xy 140.304182 132.073099) (xy 140.431574 132.020332) (xy 140.546224 131.943726) (xy 140.643726 131.846224) (xy 140.720332 131.731574) (xy 140.773099 131.604182) (xy 140.8 131.468944) (xy 140.8 131.331056) (xy 141.75 131.331056) (xy 141.75 131.468944) (xy 141.776901 131.604182) (xy 141.829668 131.731574) (xy 141.906274 131.846224) (xy 142.003776 131.943726) (xy 142.118426 132.020332) (xy 142.245818 132.073099) (xy 142.381056 132.1) (xy 142.518944 132.1) (xy 142.654182 132.073099) (xy 142.781574 132.020332) (xy 142.896224 131.943726) (xy 142.90778 131.93217) (xy 143.025 132.075001) (xy 143.169656 132.193718) (xy 143.334693 132.281932) (xy 143.513769 132.336254) (xy 143.7 132.354596) (xy 143.886232 132.336254) (xy 144.065308 132.281932) (xy 144.230345 132.193718) (xy 144.375001 132.075001) (xy 144.493718 131.930345) (xy 144.581932 131.765308) (xy 144.636254 131.586232) (xy 144.65 131.446665) (xy 144.65 130.753336) (xy 149.75 130.753336) (xy 149.75 131.446665) (xy 149.763746 131.586232) (xy 149.818069 131.765308) (xy 149.906283 131.930345) (xy 150.025 132.075001) (xy 150.169656 132.193718) (xy 150.334693 132.281932) (xy 150.513769 132.336254) (xy 150.7 132.354596) (xy 150.886232 132.336254) (xy 151.065308 132.281932) (xy 151.230345 132.193718) (xy 151.375001 132.075001) (xy 151.493134 131.931056) (xy 155.1 131.931056) (xy 155.1 132.068944) (xy 155.126901 132.204182) (xy 155.179668 132.331574) (xy 155.256274 132.446224) (xy 155.353776 132.543726) (xy 155.468426 132.620332) (xy 155.595818 132.673099) (xy 155.731056 132.7) (xy 155.868944 132.7) (xy 156.004182 132.673099) (xy 156.131574 132.620332) (xy 156.246224 132.543726) (xy 156.343726 132.446224) (xy 156.420332 132.331574) (xy 156.473099 132.204182) (xy 156.496764 132.085214) (xy 156.571098 132.1) (xy 156.708986 132.1) (xy 156.844224 132.073099) (xy 156.971616 132.020332) (xy 157.086266 131.943726) (xy 157.183768 131.846224) (xy 157.260374 131.731574) (xy 157.313141 131.604182) (xy 157.340042 131.468944) (xy 157.340042 131.331056) (xy 157.313141 131.195818) (xy 157.260374 131.068426) (xy 157.183768 130.953776) (xy 157.086266 130.856274) (xy 156.971616 130.779668) (xy 156.844224 130.726901) (xy 156.708986 130.7) (xy 156.571098 130.7) (xy 156.43586 130.726901) (xy 156.308468 130.779668) (xy 156.193818 130.856274) (xy 156.096316 130.953776) (xy 156.01971 131.068426) (xy 155.966943 131.195818) (xy 155.943278 131.314786) (xy 155.868944 131.3) (xy 155.731056 131.3) (xy 155.595818 131.326901) (xy 155.468426 131.379668) (xy 155.353776 131.456274) (xy 155.256274 131.553776) (xy 155.179668 131.668426) (xy 155.126901 131.795818) (xy 155.1 131.931056) (xy 151.493134 131.931056) (xy 151.493718 131.930345) (xy 151.581932 131.765308) (xy 151.636254 131.586232) (xy 151.65 131.446665) (xy 151.65 130.753335) (xy 151.636254 130.613768) (xy 151.581932 130.434692) (xy 151.493718 130.269655) (xy 151.375001 130.124999) (xy 151.230345 130.006282) (xy 151.065307 129.918068) (xy 150.886231 129.863746) (xy 150.7 129.845404) (xy 150.513768 129.863746) (xy 150.334692 129.918068) (xy 150.169655 130.006282) (xy 150.024999 130.124999) (xy 149.906282 130.269655) (xy 149.818068 130.434693) (xy 149.763746 130.613769) (xy 149.75 130.753336) (xy 144.65 130.753336) (xy 144.65 130.753335) (xy 144.636254 130.613768) (xy 144.581932 130.434692) (xy 144.493718 130.269655) (xy 144.375001 130.124999) (xy 144.230345 130.006282) (xy 144.065307 129.918068) (xy 143.886231 129.863746) (xy 143.7 129.845404) (xy 143.513768 129.863746) (xy 143.334692 129.918068) (xy 143.169655 130.006282) (xy 143.024999 130.124999) (xy 142.906282 130.269655) (xy 142.818068 130.434693) (xy 142.763746 130.613769) (xy 142.75 130.753336) (xy 142.75 130.76659) (xy 142.654182 130.726901) (xy 142.518944 130.7) (xy 142.381056 130.7) (xy 142.245818 130.726901) (xy 142.118426 130.779668) (xy 142.003776 130.856274) (xy 141.906274 130.953776) (xy 141.829668 131.068426) (xy 141.776901 131.195818) (xy 141.75 131.331056) (xy 140.8 131.331056) (xy 140.773099 131.195818) (xy 140.720332 131.068426) (xy 140.643726 130.953776) (xy 140.546224 130.856274) (xy 140.431574 130.779668) (xy 140.304182 130.726901) (xy 140.168944 130.7) (xy 140.031056 130.7) (xy 139.895818 130.726901) (xy 139.768426 130.779668) (xy 139.653776 130.856274) (xy 139.556274 130.953776) (xy 139.479668 131.068426) (xy 139.426901 131.195818) (xy 139.4 131.331056) (xy 136.7 131.331056) (xy 136.7 128.299046) (xy 143.675 128.299046) (xy 143.675 128.500954) (xy 143.71439 128.698982) (xy 143.791656 128.88552) (xy 143.90383 129.0534) (xy 144.0466 129.19617) (xy 144.21448 129.308344) (xy 144.401018 129.38561) (xy 144.599046 129.425) (xy 144.800954 129.425) (xy 144.998982 129.38561) (xy 145.18552 129.308344) (xy 145.3534 129.19617) (xy 145.49617 129.0534) (xy 145.608344 128.88552) (xy 145.68561 128.698982) (xy 145.725 128.500954) (xy 145.725 128.299046) (xy 148.675 128.299046) (xy 148.675 128.500954) (xy 148.71439 128.698982) (xy 148.791656 128.88552) (xy 148.90383 129.0534) (xy 149.0466 129.19617) (xy 149.21448 129.308344) (xy 149.401018 129.38561) (xy 149.599046 129.425) (xy 149.800954 129.425) (xy 149.998982 129.38561) (xy 150.18552 129.308344) (xy 150.3534 129.19617) (xy 150.49617 129.0534) (xy 150.608344 128.88552) (xy 150.68561 128.698982) (xy 150.725 128.500954) (xy 150.725 128.299046) (xy 150.68561 128.101018) (xy 150.608344 127.91448) (xy 150.49617 127.7466) (xy 150.3534 127.60383) (xy 150.18552 127.491656) (xy 149.998982 127.41439) (xy 149.800954 127.375) (xy 149.599046 127.375) (xy 149.401018 127.41439) (xy 149.21448 127.491656) (xy 149.0466 127.60383) (xy 148.90383 127.7466) (xy 148.791656 127.91448) (xy 148.71439 128.101018) (xy 148.675 128.299046) (xy 145.725 128.299046) (xy 145.68561 128.101018) (xy 145.608344 127.91448) (xy 145.49617 127.7466) (xy 145.3534 127.60383) (xy 145.18552 127.491656) (xy 144.998982 127.41439) (xy 144.800954 127.375) (xy 144.599046 127.375) (xy 144.401018 127.41439) (xy 144.21448 127.491656) (xy 144.0466 127.60383) (xy 143.90383 127.7466) (xy 143.791656 127.91448) (xy 143.71439 128.101018) (xy 143.675 128.299046) (xy 136.7 128.299046) (xy 136.7 126.631056) (xy 145.600058 126.631056) (xy 145.600058 126.768944) (xy 145.626959 126.904182) (xy 145.679726 127.031574) (xy 145.756332 127.146224) (xy 145.853834 127.243726) (xy 145.968484 127.320332) (xy 146.095876 127.373099) (xy 146.231114 127.4) (xy 146.369002 127.4) (xy 146.50424 127.373099) (xy 146.631632 127.320332) (xy 146.746282 127.243726) (xy 146.843784 127.146224) (xy 146.850037 127.136866) (xy 146.85629 127.146224) (xy 146.953792 127.243726) (xy 147.068442 127.320332) (xy 147.195834 127.373099) (xy 147.331072 127.4) (xy 147.46896 127.4) (xy 147.604198 127.373099) (xy 147.73159 127.320332) (xy 147.84624 127.243726) (xy 147.943742 127.146224) (xy 148.020348 127.031574) (xy 148.073115 126.904182) (xy 148.100016 126.768944) (xy 148.100016 126.631056) (xy 148.073115 126.495818) (xy 148.020348 126.368426) (xy 147.943742 126.253776) (xy 147.84624 126.156274) (xy 147.73159 126.079668) (xy 147.604198 126.026901) (xy 147.46896 126) (xy 147.331072 126) (xy 147.195834 126.026901) (xy 147.068442 126.079668) (xy 146.953792 126.156274) (xy 146.85629 126.253776) (xy 146.850037 126.263134) (xy 146.843784 126.253776) (xy 146.746282 126.156274) (xy 146.631632 126.079668) (xy 146.50424 126.026901) (xy 146.369002 126) (xy 146.231114 126) (xy 146.095876 126.026901) (xy 145.968484 126.079668) (xy 145.853834 126.156274) (xy 145.756332 126.253776) (xy 145.679726 126.368426) (xy 145.626959 126.495818) (xy 145.600058 126.631056) (xy 136.7 126.631056) (xy 136.7 125.931056) (xy 152.5 125.931056) (xy 152.5 126.068944) (xy 152.526901 126.204182) (xy 152.579668 126.331574) (xy 152.656274 126.446224) (xy 152.753776 126.543726) (xy 152.868426 126.620332) (xy 152.995818 126.673099) (xy 153.131056 126.7) (xy 153.268944 126.7) (xy 153.404182 126.673099) (xy 153.531574 126.620332) (xy 153.646224 126.543726) (xy 153.743726 126.446224) (xy 153.820332 126.331574) (xy 153.873099 126.204182) (xy 153.9 126.068944) (xy 153.9 125.931056) (xy 153.873099 125.795818) (xy 153.820332 125.668426) (xy 153.743726 125.553776) (xy 153.646224 125.456274) (xy 153.531574 125.379668) (xy 153.404182 125.326901) (xy 153.268944 125.3) (xy 153.131056 125.3) (xy 152.995818 125.326901) (xy 152.868426 125.379668) (xy 152.753776 125.456274) (xy 152.656274 125.553776) (xy 152.579668 125.668426) (xy 152.526901 125.795818) (xy 152.5 125.931056) (xy 136.7 125.931056) (xy 136.7 124.91575) (xy 154.810106 124.91575) (xy 154.810106 125.053638) (xy 154.837007 125.188876) (xy 154.889774 125.316268) (xy 154.96638 125.430918) (xy 155.063882 125.52842) (xy 155.178532 125.605026) (xy 155.305924 125.657793) (xy 155.441162 125.684694) (xy 155.57905 125.684694) (xy 155.714288 125.657793) (xy 155.84168 125.605026) (xy 155.95633 125.52842) (xy 155.9974 125.48735) (xy 156.053776 125.543726) (xy 156.168426 125.620332) (xy 156.295818 125.673099) (xy 156.431056 125.7) (xy 156.568944 125.7) (xy 156.704182 125.673099) (xy 156.831574 125.620332) (xy 156.946224 125.543726) (xy 157.043726 125.446224) (xy 157.120332 125.331574) (xy 157.173099 125.204182) (xy 157.2 125.068944) (xy 157.2 124.931056) (xy 157.173099 124.795818) (xy 157.120332 124.668426) (xy 157.043726 124.553776) (xy 156.946224 124.456274) (xy 156.831574 124.379668) (xy 156.704182 124.326901) (xy 156.568944 124.3) (xy 156.431056 124.3) (xy 156.295818 124.326901) (xy 156.168426 124.379668) (xy 156.053776 124.456274) (xy 156.012706 124.497344) (xy 155.95633 124.440968) (xy 155.84168 124.364362) (xy 155.714288 124.311595) (xy 155.57905 124.284694) (xy 155.441162 124.284694) (xy 155.305924 124.311595) (xy 155.178532 124.364362) (xy 155.063882 124.440968) (xy 154.96638 124.53847) (xy 154.889774 124.65312) (xy 154.837007 124.780512) (xy 154.810106 124.91575) (xy 136.7 124.91575) (xy 136.7 123.421058) (xy 150.357012 123.421058) (xy 150.357012 123.558946) (xy 150.383913 123.694184) (xy 150.43668 123.821576) (xy 150.513286 123.936226) (xy 150.610788 124.033728) (xy 150.725438 124.110334) (xy 150.85283 124.163101) (xy 150.988068 124.190002) (xy 151.125956 124.190002) (xy 151.261194 124.163101) (xy 151.388586 124.110334) (xy 151.433827 124.080105) (xy 151.440955 124.115937) (xy 151.493722 124.243329) (xy 151.570328 124.357979) (xy 151.66783 124.455481) (xy 151.78248 124.532087) (xy 151.909872 124.584854) (xy 152.04511 124.611755) (xy 152.182998 124.611755) (xy 152.318236 124.584854) (xy 152.445628 124.532087) (xy 152.560278 124.455481) (xy 152.65778 124.357979) (xy 152.734386 124.243329) (xy 152.787153 124.115937) (xy 152.814054 123.980699) (xy 152.814054 123.842811) (xy 152.787153 123.707573) (xy 152.734386 123.580181) (xy 152.65778 123.465531) (xy 152.560278 123.368029) (xy 152.445628 123.291423) (xy 152.318236 123.238656) (xy 152.182998 123.211755) (xy 152.04511 123.211755) (xy 151.909872 123.238656) (xy 151.78248 123.291423) (xy 151.737239 123.321652) (xy 151.730111 123.28582) (xy 151.677344 123.158428) (xy 151.600738 123.043778) (xy 151.503236 122.946276) (xy 151.388586 122.86967) (xy 151.261194 122.816903) (xy 151.125956 122.790002) (xy 150.988068 122.790002) (xy 150.85283 122.816903) (xy 150.725438 122.86967) (xy 150.610788 122.946276) (xy 150.513286 123.043778) (xy 150.43668 123.158428) (xy 150.383913 123.28582) (xy 150.357012 123.421058) (xy 136.7 123.421058) (xy 136.7 121.831056) (xy 139.2 121.831056) (xy 139.2 121.968944) (xy 139.226901 122.104182) (xy 139.279668 122.231574) (xy 139.356274 122.346224) (xy 139.453776 122.443726) (xy 139.568426 122.520332) (xy 139.695818 122.573099) (xy 139.831056 122.6) (xy 139.968944 122.6) (xy 140.104182 122.573099) (xy 140.145322 122.556058) (xy 153.5 122.556058) (xy 153.5 122.693946) (xy 153.526901 122.829184) (xy 153.579668 122.956576) (xy 153.656274 123.071226) (xy 153.753776 123.168728) (xy 153.868426 123.245334) (xy 153.995818 123.298101) (xy 154.131056 123.325002) (xy 154.268944 123.325002) (xy 154.404182 123.298101) (xy 154.531574 123.245334) (xy 154.646224 123.168728) (xy 154.743726 123.071226) (xy 154.820332 122.956576) (xy 154.873099 122.829184) (xy 154.9 122.693946) (xy 154.9 122.556058) (xy 154.873099 122.42082) (xy 154.820332 122.293428) (xy 154.743726 122.178778) (xy 154.646224 122.081276) (xy 154.531574 122.00467) (xy 154.404182 121.951903) (xy 154.268944 121.925002) (xy 154.131056 121.925002) (xy 153.995818 121.951903) (xy 153.868426 122.00467) (xy 153.753776 122.081276) (xy 153.656274 122.178778) (xy 153.579668 122.293428) (xy 153.526901 122.42082) (xy 153.5 122.556058) (xy 140.145322 122.556058) (xy 140.231574 122.520332) (xy 140.346224 122.443726) (xy 140.443726 122.346224) (xy 140.520332 122.231574) (xy 140.573099 122.104182) (xy 140.6 121.968944) (xy 140.6 121.831056) (xy 140.573099 121.695818) (xy 140.520332 121.568426) (xy 140.443726 121.453776) (xy 140.381296 121.391346) (xy 140.462261 121.31038) (xy 140.538867 121.19573) (xy 140.591634 121.068338) (xy 140.618535 120.9331) (xy 140.618535 120.795212) (xy 140.591634 120.659974) (xy 140.538867 120.532582) (xy 140.462261 120.417932) (xy 140.364759 120.32043) (xy 140.250109 120.243824) (xy 140.122717 120.191057) (xy 139.987479 120.164156) (xy 139.849591 120.164156) (xy 139.714353 120.191057) (xy 139.586961 120.243824) (xy 139.472311 120.32043) (xy 139.374809 120.417932) (xy 139.298203 120.532582) (xy 139.245436 120.659974) (xy 139.218535 120.795212) (xy 139.218535 120.9331) (xy 139.245436 121.068338) (xy 139.298203 121.19573) (xy 139.374809 121.31038) (xy 139.43724 121.372811) (xy 139.356274 121.453776) (xy 139.279668 121.568426) (xy 139.226901 121.695818) (xy 139.2 121.831056) (xy 136.7 121.831056) (xy 136.7 119.643207) (xy 144.177814 119.643207) (xy 144.177814 119.781095) (xy 144.204715 119.916333) (xy 144.257482 120.043725) (xy 144.334088 120.158375) (xy 144.43159 120.255877) (xy 144.54624 120.332483) (xy 144.673632 120.38525) (xy 144.80887 120.412151) (xy 144.946758 120.412151) (xy 145.081996 120.38525) (xy 145.209388 120.332483) (xy 145.324038 120.255877) (xy 145.42154 120.158375) (xy 145.498146 120.043725) (xy 145.550913 119.916333) (xy 145.577814 119.781095) (xy 145.577814 119.643207) (xy 145.561 119.558677) (xy 145.595818 119.573099) (xy 145.731056 119.6) (xy 145.868944 119.6) (xy 146.004182 119.573099) (xy 146.131574 119.520332) (xy 146.246224 119.443726) (xy 146.343726 119.346224) (xy 146.420332 119.231574) (xy 146.473099 119.104182) (xy 146.5 118.968944) (xy 146.5 118.831056) (xy 146.473099 118.695818) (xy 146.420332 118.568426) (xy 146.343726 118.453776) (xy 146.321006 118.431056) (xy 156.1 118.431056) (xy 156.1 118.568944) (xy 156.126901 118.704182) (xy 156.179668 118.831574) (xy 156.256274 118.946224) (xy 156.353776 119.043726) (xy 156.468426 119.120332) (xy 156.595818 119.173099) (xy 156.731056 119.2) (xy 156.868944 119.2) (xy 157.004182 119.173099) (xy 157.131574 119.120332) (xy 157.246224 119.043726) (xy 157.343726 118.946224) (xy 157.420332 118.831574) (xy 157.473099 118.704182) (xy 157.5 118.568944) (xy 157.5 118.431056) (xy 157.473099 118.295818) (xy 157.420332 118.168426) (xy 157.343726 118.053776) (xy 157.246224 117.956274) (xy 157.131574 117.879668) (xy 157.004182 117.826901) (xy 156.868944 117.8) (xy 156.731056 117.8) (xy 156.595818 117.826901) (xy 156.468426 117.879668) (xy 156.353776 117.956274) (xy 156.256274 118.053776) (xy 156.179668 118.168426) (xy 156.126901 118.295818) (xy 156.1 118.431056) (xy 146.321006 118.431056) (xy 146.246224 118.356274) (xy 146.131574 118.279668) (xy 146.004182 118.226901) (xy 145.868944 118.2) (xy 145.731056 118.2) (xy 145.595818 118.226901) (xy 145.468426 118.279668) (xy 145.353776 118.356274) (xy 145.256274 118.453776) (xy 145.179668 118.568426) (xy 145.126901 118.695818) (xy 145.1 118.831056) (xy 145.1 118.968944) (xy 145.116814 119.053474) (xy 145.081996 119.039052) (xy 144.946758 119.012151) (xy 144.80887 119.012151) (xy 144.673632 119.039052) (xy 144.54624 119.091819) (xy 144.43159 119.168425) (xy 144.334088 119.265927) (xy 144.257482 119.380577) (xy 144.204715 119.507969) (xy 144.177814 119.643207) (xy 136.7 119.643207) (xy 136.7 118.241143) (xy 137.082706 118.241143) (xy 137.082706 118.379031) (xy 137.109607 118.514269) (xy 137.162374 118.641661) (xy 137.23898 118.756311) (xy 137.336482 118.853813) (xy 137.451132 118.930419) (xy 137.578524 118.983186) (xy 137.713762 119.010087) (xy 137.85165 119.010087) (xy 137.986888 118.983186) (xy 138.11428 118.930419) (xy 138.22893 118.853813) (xy 138.282722 118.800021) (xy 138.326432 118.843731) (xy 138.441082 118.920337) (xy 138.568474 118.973104) (xy 138.703712 119.000005) (xy 138.8416 119.000005) (xy 138.976838 118.973104) (xy 139.10423 118.920337) (xy 139.21888 118.843731) (xy 139.316382 118.746229) (xy 139.392988 118.631579) (xy 139.445755 118.504187) (xy 139.472656 118.368949) (xy 139.472656 118.231061) (xy 139.445755 118.095823) (xy 139.392988 117.968431) (xy 139.316382 117.853781) (xy 139.21888 117.756279) (xy 139.10423 117.679673) (xy 138.976838 117.626906) (xy 138.8416 117.600005) (xy 138.703712 117.600005) (xy 138.568474 117.626906) (xy 138.441082 117.679673) (xy 138.326432 117.756279) (xy 138.27264 117.810071) (xy 138.22893 117.766361) (xy 138.11428 117.689755) (xy 137.986888 117.636988) (xy 137.85165 117.610087) (xy 137.713762 117.610087) (xy 137.578524 117.636988) (xy 137.451132 117.689755) (xy 137.336482 117.766361) (xy 137.23898 117.863863) (xy 137.162374 117.978513) (xy 137.109607 118.105905) (xy 137.082706 118.241143) (xy 136.7 118.241143) (xy 136.7 117.391054) (xy 144.251364 117.391054) (xy 144.251364 117.528942) (xy 144.278265 117.66418) (xy 144.331032 117.791572) (xy 144.407638 117.906222) (xy 144.50514 118.003724) (xy 144.61979 118.08033) (xy 144.747182 118.133097) (xy 144.88242 118.159998) (xy 145.020308 118.159998) (xy 145.155546 118.133097) (xy 145.282938 118.08033) (xy 145.397588 118.003724) (xy 145.49509 117.906222) (xy 145.571696 117.791572) (xy 145.624463 117.66418) (xy 145.651364 117.528942) (xy 145.651364 117.391054) (xy 145.624463 117.255816) (xy 145.571696 117.128424) (xy 145.49509 117.013774) (xy 145.397588 116.916272) (xy 145.282938 116.839666) (xy 145.155546 116.786899) (xy 145.020308 116.759998) (xy 144.88242 116.759998) (xy 144.747182 116.786899) (xy 144.61979 116.839666) (xy 144.50514 116.916272) (xy 144.407638 117.013774) (xy 144.331032 117.128424) (xy 144.278265 117.255816) (xy 144.251364 117.391054) (xy 136.7 117.391054) (xy 136.7 115.831077) (xy 146.52493 115.831077) (xy 146.52493 115.968965) (xy 146.551831 116.104203) (xy 146.604598 116.231595) (xy 146.681204 116.346245) (xy 146.778706 116.443747) (xy 146.893356 116.520353) (xy 147.020748 116.57312) (xy 147.155986 116.600021) (xy 147.293874 116.600021) (xy 147.429112 116.57312) (xy 147.556504 116.520353) (xy 147.671154 116.443747) (xy 147.768656 116.346245) (xy 147.845262 116.231595) (xy 147.898029 116.104203) (xy 147.92493 115.968965) (xy 147.92493 115.831077) (xy 147.898029 115.695839) (xy 147.845262 115.568447) (xy 147.768656 115.453797) (xy 147.671154 115.356295) (xy 147.556504 115.279689) (xy 147.429112 115.226922) (xy 147.293874 115.200021) (xy 147.155986 115.200021) (xy 147.020748 115.226922) (xy 146.893356 115.279689) (xy 146.778706 115.356295) (xy 146.681204 115.453797) (xy 146.604598 115.568447) (xy 146.551831 115.695839) (xy 146.52493 115.831077) (xy 136.7 115.831077) (xy 136.7 114.581152) (xy 140.1 114.581152) (xy 140.1 114.71904) (xy 140.126901 114.854278) (xy 140.179668 114.98167) (xy 140.256274 115.09632) (xy 140.353776 115.193822) (xy 140.468426 115.270428) (xy 140.595818 115.323195) (xy 140.731056 115.350096) (xy 140.868944 115.350096) (xy 141.004182 115.323195) (xy 141.131574 115.270428) (xy 141.246224 115.193822) (xy 141.343726 115.09632) (xy 141.420332 114.98167) (xy 141.473099 114.854278) (xy 141.5 114.71904) (xy 141.5 114.581152) (xy 141.473099 114.445914) (xy 141.420332 114.318522) (xy 141.343726 114.203872) (xy 141.246224 114.10637) (xy 141.131574 114.029764) (xy 141.004182 113.976997) (xy 140.868944 113.950096) (xy 140.731056 113.950096) (xy 140.595818 113.976997) (xy 140.468426 114.029764) (xy 140.353776 114.10637) (xy 140.256274 114.203872) (xy 140.179668 114.318522) (xy 140.126901 114.445914) (xy 140.1 114.581152) (xy 136.7 114.581152) (xy 136.7 113.231056) (xy 146.1 113.231056) (xy 146.1 113.368944) (xy 146.126901 113.504182) (xy 146.179668 113.631574) (xy 146.256274 113.746224) (xy 146.353776 113.843726) (xy 146.468426 113.920332) (xy 146.595818 113.973099) (xy 146.731056 114) (xy 146.868944 114) (xy 147.004182 113.973099) (xy 147.009109 113.971058) (xy 147.6 113.971058) (xy 147.6 114.108946) (xy 147.626901 114.244184) (xy 147.679668 114.371576) (xy 147.756274 114.486226) (xy 147.853776 114.583728) (xy 147.968426 114.660334) (xy 148.095818 114.713101) (xy 148.231056 114.740002) (xy 148.368944 114.740002) (xy 148.504182 114.713101) (xy 148.631574 114.660334) (xy 148.675392 114.631056) (xy 149.5 114.631056) (xy 149.5 114.768944) (xy 149.526901 114.904182) (xy 149.579668 115.031574) (xy 149.656274 115.146224) (xy 149.753776 115.243726) (xy 149.868426 115.320332) (xy 149.995818 115.373099) (xy 150.131056 115.4) (xy 150.268944 115.4) (xy 150.404182 115.373099) (xy 150.531574 115.320332) (xy 150.646224 115.243726) (xy 150.743726 115.146224) (xy 150.820332 115.031574) (xy 150.873099 114.904182) (xy 150.9 114.768944) (xy 150.9 114.631056) (xy 150.873099 114.495818) (xy 150.820332 114.368426) (xy 150.743726 114.253776) (xy 150.646224 114.156274) (xy 150.531574 114.079668) (xy 150.404182 114.026901) (xy 150.268944 114) (xy 150.131056 114) (xy 149.995818 114.026901) (xy 149.868426 114.079668) (xy 149.753776 114.156274) (xy 149.656274 114.253776) (xy 149.579668 114.368426) (xy 149.526901 114.495818) (xy 149.5 114.631056) (xy 148.675392 114.631056) (xy 148.746224 114.583728) (xy 148.843726 114.486226) (xy 148.920332 114.371576) (xy 148.973099 114.244184) (xy 149 114.108946) (xy 149 113.971058) (xy 148.973099 113.83582) (xy 148.920332 113.708428) (xy 148.843726 113.593778) (xy 148.781004 113.531056) (xy 153.3 113.531056) (xy 153.3 113.668944) (xy 153.326901 113.804182) (xy 153.379668 113.931574) (xy 153.456274 114.046224) (xy 153.553776 114.143726) (xy 153.668426 114.220332) (xy 153.795818 114.273099) (xy 153.931056 114.3) (xy 154.068944 114.3) (xy 154.204182 114.273099) (xy 154.331574 114.220332) (xy 154.333153 114.219277) (xy 154.379668 114.331574) (xy 154.456274 114.446224) (xy 154.553776 114.543726) (xy 154.668426 114.620332) (xy 154.795818 114.673099) (xy 154.931056 114.7) (xy 155.068944 114.7) (xy 155.204182 114.673099) (xy 155.331574 114.620332) (xy 155.446224 114.543726) (xy 155.543726 114.446224) (xy 155.620332 114.331574) (xy 155.673099 114.204182) (xy 155.7 114.068944) (xy 155.7 113.931056) (xy 155.673099 113.795818) (xy 155.620332 113.668426) (xy 155.543726 113.553776) (xy 155.446224 113.456274) (xy 155.331574 113.379668) (xy 155.204182 113.326901) (xy 155.068944 113.3) (xy 154.931056 113.3) (xy 154.795818 113.326901) (xy 154.668426 113.379668) (xy 154.666847 113.380723) (xy 154.620332 113.268426) (xy 154.543726 113.153776) (xy 154.446224 113.056274) (xy 154.331574 112.979668) (xy 154.204182 112.926901) (xy 154.068944 112.9) (xy 153.931056 112.9) (xy 153.795818 112.926901) (xy 153.668426 112.979668) (xy 153.553776 113.056274) (xy 153.456274 113.153776) (xy 153.379668 113.268426) (xy 153.326901 113.395818) (xy 153.3 113.531056) (xy 148.781004 113.531056) (xy 148.746224 113.496276) (xy 148.631574 113.41967) (xy 148.504182 113.366903) (xy 148.368944 113.340002) (xy 148.231056 113.340002) (xy 148.095818 113.366903) (xy 147.968426 113.41967) (xy 147.853776 113.496276) (xy 147.756274 113.593778) (xy 147.679668 113.708428) (xy 147.626901 113.83582) (xy 147.6 113.971058) (xy 147.009109 113.971058) (xy 147.131574 113.920332) (xy 147.246224 113.843726) (xy 147.343726 113.746224) (xy 147.420332 113.631574) (xy 147.473099 113.504182) (xy 147.5 113.368944) (xy 147.5 113.231056) (xy 147.473099 113.095818) (xy 147.420332 112.968426) (xy 147.343726 112.853776) (xy 147.246224 112.756274) (xy 147.131574 112.679668) (xy 147.004182 112.626901) (xy 146.868944 112.6) (xy 146.731056 112.6) (xy 146.595818 112.626901) (xy 146.468426 112.679668) (xy 146.353776 112.756274) (xy 146.256274 112.853776) (xy 146.179668 112.968426) (xy 146.126901 113.095818) (xy 146.1 113.231056) (xy 136.7 113.231056) (xy 136.7 111.042686) (xy 141.932434 111.042686) (xy 141.932434 111.180574) (xy 141.959335 111.315812) (xy 142.012102 111.443204) (xy 142.088708 111.557854) (xy 142.18621 111.655356) (xy 142.30086 111.731962) (xy 142.428252 111.784729) (xy 142.56349 111.81163) (xy 142.701378 111.81163) (xy 142.836616 111.784729) (xy 142.964008 111.731962) (xy 143.078658 111.655356) (xy 143.17616 111.557854) (xy 143.252766 111.443204) (xy 143.305533 111.315812) (xy 143.322392 111.231056) (xy 145.8 111.231056) (xy 145.8 111.368944) (xy 145.826901 111.504182) (xy 145.879668 111.631574) (xy 145.956274 111.746224) (xy 146.053776 111.843726) (xy 146.168426 111.920332) (xy 146.295818 111.973099) (xy 146.431056 112) (xy 146.568944 112) (xy 146.704182 111.973099) (xy 146.831574 111.920332) (xy 146.946224 111.843726) (xy 147.043726 111.746224) (xy 147.120332 111.631574) (xy 147.173099 111.504182) (xy 147.2 111.368944) (xy 147.2 111.256056) (xy 148.5 111.256056) (xy 148.5 111.393944) (xy 148.526901 111.529182) (xy 148.579668 111.656574) (xy 148.656274 111.771224) (xy 148.753776 111.868726) (xy 148.868426 111.945332) (xy 148.995818 111.998099) (xy 149.131056 112.025) (xy 149.268944 112.025) (xy 149.404182 111.998099) (xy 149.531574 111.945332) (xy 149.646224 111.868726) (xy 149.743726 111.771224) (xy 149.820332 111.656574) (xy 149.830901 111.631056) (xy 155.1 111.631056) (xy 155.1 111.768944) (xy 155.126901 111.904182) (xy 155.179668 112.031574) (xy 155.256274 112.146224) (xy 155.353776 112.243726) (xy 155.468426 112.320332) (xy 155.595818 112.373099) (xy 155.731056 112.4) (xy 155.868944 112.4) (xy 156.004182 112.373099) (xy 156.131574 112.320332) (xy 156.246224 112.243726) (xy 156.3 112.18995) (xy 156.353776 112.243726) (xy 156.468426 112.320332) (xy 156.595818 112.373099) (xy 156.731056 112.4) (xy 156.868944 112.4) (xy 157.004182 112.373099) (xy 157.131574 112.320332) (xy 157.246224 112.243726) (xy 157.343726 112.146224) (xy 157.420332 112.031574) (xy 157.473099 111.904182) (xy 157.5 111.768944) (xy 157.5 111.631056) (xy 157.473099 111.495818) (xy 157.420332 111.368426) (xy 157.343726 111.253776) (xy 157.246224 111.156274) (xy 157.131574 111.079668) (xy 157.004182 111.026901) (xy 156.868944 111) (xy 156.731056 111) (xy 156.595818 111.026901) (xy 156.468426 111.079668) (xy 156.353776 111.156274) (xy 156.3 111.21005) (xy 156.246224 111.156274) (xy 156.131574 111.079668) (xy 156.004182 111.026901) (xy 155.868944 111) (xy 155.731056 111) (xy 155.595818 111.026901) (xy 155.468426 111.079668) (xy 155.353776 111.156274) (xy 155.256274 111.253776) (xy 155.179668 111.368426) (xy 155.126901 111.495818) (xy 155.1 111.631056) (xy 149.830901 111.631056) (xy 149.873099 111.529182) (xy 149.9 111.393944) (xy 149.9 111.256056) (xy 149.873099 111.120818) (xy 149.820332 110.993426) (xy 149.743726 110.878776) (xy 149.646224 110.781274) (xy 149.531574 110.704668) (xy 149.404182 110.651901) (xy 149.268944 110.625) (xy 149.131056 110.625) (xy 148.995818 110.651901) (xy 148.868426 110.704668) (xy 148.753776 110.781274) (xy 148.656274 110.878776) (xy 148.579668 110.993426) (xy 148.526901 111.120818) (xy 148.5 111.256056) (xy 147.2 111.256056) (xy 147.2 111.231056) (xy 147.173099 111.095818) (xy 147.120332 110.968426) (xy 147.043726 110.853776) (xy 146.946224 110.756274) (xy 146.831574 110.679668) (xy 146.704182 110.626901) (xy 146.568944 110.6) (xy 146.431056 110.6) (xy 146.295818 110.626901) (xy 146.168426 110.679668) (xy 146.053776 110.756274) (xy 145.956274 110.853776) (xy 145.879668 110.968426) (xy 145.826901 111.095818) (xy 145.8 111.231056) (xy 143.322392 111.231056) (xy 143.332434 111.180574) (xy 143.332434 111.042686) (xy 143.305533 110.907448) (xy 143.252766 110.780056) (xy 143.17616 110.665406) (xy 143.078658 110.567904) (xy 142.964008 110.491298) (xy 142.836616 110.438531) (xy 142.701378 110.41163) (xy 142.56349 110.41163) (xy 142.428252 110.438531) (xy 142.30086 110.491298) (xy 142.18621 110.567904) (xy 142.088708 110.665406) (xy 142.012102 110.780056) (xy 141.959335 110.907448) (xy 141.932434 111.042686) (xy 136.7 111.042686) (xy 136.7 108.731056) (xy 144.2 108.731056) (xy 144.2 108.868944) (xy 144.226901 109.004182) (xy 144.279668 109.131574) (xy 144.356274 109.246224) (xy 144.453776 109.343726) (xy 144.463166 109.35) (xy 144.453776 109.356274) (xy 144.356274 109.453776) (xy 144.279668 109.568426) (xy 144.226901 109.695818) (xy 144.2 109.831056) (xy 144.2 109.968944) (xy 144.226901 110.104182) (xy 144.279668 110.231574) (xy 144.356274 110.346224) (xy 144.453776 110.443726) (xy 144.568426 110.520332) (xy 144.695818 110.573099) (xy 144.831056 110.6) (xy 144.968944 110.6) (xy 145.104182 110.573099) (xy 145.231574 110.520332) (xy 145.346224 110.443726) (xy 145.443726 110.346224) (xy 145.520332 110.231574) (xy 145.573099 110.104182) (xy 145.6 109.968944) (xy 145.6 109.831056) (xy 145.573099 109.695818) (xy 145.546274 109.631056) (xy 148.7 109.631056) (xy 148.7 109.768944) (xy 148.726901 109.904182) (xy 148.779668 110.031574) (xy 148.856274 110.146224) (xy 148.953776 110.243726) (xy 149.068426 110.320332) (xy 149.195818 110.373099) (xy 149.331056 110.4) (xy 149.468944 110.4) (xy 149.604182 110.373099) (xy 149.731574 110.320332) (xy 149.846224 110.243726) (xy 149.943726 110.146224) (xy 150.020332 110.031574) (xy 150.050549 109.958621) (xy 155.153956 109.958621) (xy 155.153956 110.096509) (xy 155.180857 110.231747) (xy 155.233624 110.359139) (xy 155.31023 110.473789) (xy 155.407732 110.571291) (xy 155.522382 110.647897) (xy 155.649774 110.700664) (xy 155.785012 110.727565) (xy 155.9229 110.727565) (xy 156.058138 110.700664) (xy 156.18553 110.647897) (xy 156.30018 110.571291) (xy 156.397682 110.473789) (xy 156.474288 110.359139) (xy 156.527055 110.231747) (xy 156.553956 110.096509) (xy 156.553956 109.958621) (xy 156.527055 109.823383) (xy 156.474288 109.695991) (xy 156.397682 109.581341) (xy 156.30018 109.483839) (xy 156.18553 109.407233) (xy 156.058138 109.354466) (xy 155.9229 109.327565) (xy 155.785012 109.327565) (xy 155.649774 109.354466) (xy 155.522382 109.407233) (xy 155.407732 109.483839) (xy 155.31023 109.581341) (xy 155.233624 109.695991) (xy 155.180857 109.823383) (xy 155.153956 109.958621) (xy 150.050549 109.958621) (xy 150.073099 109.904182) (xy 150.1 109.768944) (xy 150.1 109.631056) (xy 150.073099 109.495818) (xy 150.020332 109.368426) (xy 149.943726 109.253776) (xy 149.846224 109.156274) (xy 149.731574 109.079668) (xy 149.604182 109.026901) (xy 149.468944 109) (xy 149.331056 109) (xy 149.195818 109.026901) (xy 149.068426 109.079668) (xy 148.953776 109.156274) (xy 148.856274 109.253776) (xy 148.779668 109.368426) (xy 148.726901 109.495818) (xy 148.7 109.631056) (xy 145.546274 109.631056) (xy 145.520332 109.568426) (xy 145.443726 109.453776) (xy 145.346224 109.356274) (xy 145.336834 109.35) (xy 145.346224 109.343726) (xy 145.443726 109.246224) (xy 145.520332 109.131574) (xy 145.573099 109.004182) (xy 145.6 108.868944) (xy 145.6 108.731056) (xy 145.573099 108.595818) (xy 145.520332 108.468426) (xy 145.443726 108.353776) (xy 145.346224 108.256274) (xy 145.231574 108.179668) (xy 145.104182 108.126901) (xy 144.968944 108.1) (xy 144.831056 108.1) (xy 144.695818 108.126901) (xy 144.568426 108.179668) (xy 144.453776 108.256274) (xy 144.356274 108.353776) (xy 144.279668 108.468426) (xy 144.226901 108.595818) (xy 144.2 108.731056) (xy 136.7 108.731056) (xy 136.7 106.799876) (xy 144.011709 106.799876) (xy 144.011709 106.937764) (xy 144.03861 107.073002) (xy 144.091377 107.200394) (xy 144.167983 107.315044) (xy 144.265485 107.412546) (xy 144.380135 107.489152) (xy 144.507527 107.541919) (xy 144.642765 107.56882) (xy 144.780653 107.56882) (xy 144.915891 107.541919) (xy 145.043283 107.489152) (xy 145.157933 107.412546) (xy 145.255435 107.315044) (xy 145.332041 107.200394) (xy 145.384808 107.073002) (xy 145.411709 106.937764) (xy 145.411709 106.799876) (xy 145.384808 106.664638) (xy 145.332041 106.537246) (xy 145.327906 106.531056) (xy 155.1 106.531056) (xy 155.1 106.668944) (xy 155.126901 106.804182) (xy 155.179668 106.931574) (xy 155.256274 107.046224) (xy 155.353776 107.143726) (xy 155.468426 107.220332) (xy 155.498719 107.23288) (xy 155.463706 107.256274) (xy 155.366204 107.353776) (xy 155.289598 107.468426) (xy 155.236831 107.595818) (xy 155.20993 107.731056) (xy 155.20993 107.868944) (xy 155.236831 108.004182) (xy 155.289598 108.131574) (xy 155.366204 108.246224) (xy 155.463706 108.343726) (xy 155.578356 108.420332) (xy 155.705748 108.473099) (xy 155.840986 108.5) (xy 155.978874 108.5) (xy 156.114112 108.473099) (xy 156.241504 108.420332) (xy 156.356154 108.343726) (xy 156.453656 108.246224) (xy 156.530262 108.131574) (xy 156.583029 108.004182) (xy 156.60993 107.868944) (xy 156.60993 107.731056) (xy 156.583029 107.595818) (xy 156.530262 107.468426) (xy 156.453656 107.353776) (xy 156.356154 107.256274) (xy 156.241504 107.179668) (xy 156.211211 107.16712) (xy 156.246224 107.143726) (xy 156.3 107.08995) (xy 156.353776 107.143726) (xy 156.468426 107.220332) (xy 156.595818 107.273099) (xy 156.731056 107.3) (xy 156.868944 107.3) (xy 157.004182 107.273099) (xy 157.131574 107.220332) (xy 157.246224 107.143726) (xy 157.343726 107.046224) (xy 157.420332 106.931574) (xy 157.473099 106.804182) (xy 157.5 106.668944) (xy 157.5 106.531056) (xy 157.473099 106.395818) (xy 157.420332 106.268426) (xy 157.343726 106.153776) (xy 157.246224 106.056274) (xy 157.131574 105.979668) (xy 157.004182 105.926901) (xy 156.868944 105.9) (xy 156.731056 105.9) (xy 156.595818 105.926901) (xy 156.468426 105.979668) (xy 156.353776 106.056274) (xy 156.3 106.11005) (xy 156.246224 106.056274) (xy 156.131574 105.979668) (xy 156.004182 105.926901) (xy 155.868944 105.9) (xy 155.731056 105.9) (xy 155.595818 105.926901) (xy 155.468426 105.979668) (xy 155.353776 106.056274) (xy 155.256274 106.153776) (xy 155.179668 106.268426) (xy 155.126901 106.395818) (xy 155.1 106.531056) (xy 145.327906 106.531056) (xy 145.255435 106.422596) (xy 145.157933 106.325094) (xy 145.043283 106.248488) (xy 144.915891 106.195721) (xy 144.780653 106.16882) (xy 144.642765 106.16882) (xy 144.507527 106.195721) (xy 144.380135 106.248488) (xy 144.265485 106.325094) (xy 144.167983 106.422596) (xy 144.091377 106.537246) (xy 144.03861 106.664638) (xy 144.011709 106.799876) (xy 136.7 106.799876) (xy 136.7 105.51467) (xy 136.710933 105.403164) (xy 136.739057 105.310013) (xy 136.784737 105.224102) (xy 136.846235 105.148698) (xy 136.921211 105.086672) (xy 137.006799 105.040395) (xy 137.099753 105.011621) (xy 137.210315 105) (xy 140.914733 105) (xy 140.927817 104.998711) (xy 140.932776 104.998746) (xy 140.936945 104.998337) (xy 141.092222 104.982016) (xy 141.118867 104.976547) (xy 141.145563 104.971455) (xy 141.149569 104.970245) (xy 141.149575 104.970244) (xy 141.149581 104.970242) (xy 141.298723 104.924075) (xy 141.323811 104.913529) (xy 141.349001 104.903352) (xy 141.35269 104.901391) (xy 141.352698 104.901387) (xy 141.352705 104.901382) (xy 141.490042 104.827124) (xy 141.512594 104.811912) (xy 141.535335 104.797032) (xy 141.538576 104.794388) (xy 141.538582 104.794384) (xy 141.538587 104.794379) (xy 141.658884 104.694862) (xy 141.678076 104.675536) (xy 141.697471 104.656543) (xy 141.700136 104.653321) (xy 141.70014 104.653317) (xy 141.700143 104.653313) (xy 141.79882 104.532322) (xy 141.813852 104.509698) (xy 141.829229 104.48724) (xy 141.831221 104.483555) (xy 141.859135 104.431056) (xy 150.7 104.431056) (xy 150.7 104.568944) (xy 150.726901 104.704182) (xy 150.779668 104.831574) (xy 150.856274 104.946224) (xy 150.953776 105.043726) (xy 151.068426 105.120332) (xy 151.195818 105.173099) (xy 151.331056 105.2) (xy 151.468944 105.2) (xy 151.604182 105.173099) (xy 151.731574 105.120332) (xy 151.846224 105.043726) (xy 151.943726 104.946224) (xy 152.020332 104.831574) (xy 152.073099 104.704182) (xy 152.1 104.568944) (xy 152.1 104.431056) (xy 152.073099 104.295818) (xy 152.020332 104.168426) (xy 151.943726 104.053776) (xy 151.846224 103.956274) (xy 151.731574 103.879668) (xy 151.604182 103.826901) (xy 151.468944 103.8) (xy 151.331056 103.8) (xy 151.195818 103.826901) (xy 151.068426 103.879668) (xy 150.953776 103.956274) (xy 150.856274 104.053776) (xy 150.779668 104.168426) (xy 150.726901 104.295818) (xy 150.7 104.431056) (xy 141.859135 104.431056) (xy 141.904521 104.345697) (xy 141.91487 104.32059) (xy 141.925595 104.295567) (xy 141.926833 104.291565) (xy 141.97196 104.142096) (xy 141.97724 104.115429) (xy 141.982895 104.088828) (xy 141.983331 104.084671) (xy 141.983333 104.084661) (xy 141.983333 104.084652) (xy 141.998568 103.929275) (xy 141.998568 103.929273) (xy 142 103.914733) (xy 142 102.731056) (xy 146.6 102.731056) (xy 146.6 102.868944) (xy 146.626901 103.004182) (xy 146.679668 103.131574) (xy 146.756274 103.246224) (xy 146.853776 103.343726) (xy 146.968426 103.420332) (xy 147.095818 103.473099) (xy 147.231056 103.5) (xy 147.368944 103.5) (xy 147.504182 103.473099) (xy 147.631574 103.420332) (xy 147.746224 103.343726) (xy 147.843726 103.246224) (xy 147.920332 103.131574) (xy 147.973099 103.004182) (xy 148 102.868944) (xy 148 102.731056) (xy 147.973099 102.595818) (xy 147.920332 102.468426) (xy 147.843726 102.353776) (xy 147.746224 102.256274) (xy 147.631574 102.179668) (xy 147.504182 102.126901) (xy 147.368944 102.1) (xy 147.231056 102.1) (xy 147.095818 102.126901) (xy 146.968426 102.179668) (xy 146.853776 102.256274) (xy 146.756274 102.353776) (xy 146.679668 102.468426) (xy 146.626901 102.595818) (xy 146.6 102.731056) (xy 142 102.731056) (xy 142 94.624263) (xy 142.601715 94.022549) (xy 142.613158 94.013158) (xy 142.622549 94.001715) (xy 142.650647 93.967478) (xy 142.678503 93.915361) (xy 142.678504 93.91536) (xy 142.695659 93.85881) (xy 142.7 93.814733) (xy 142.7 93.814721) (xy 142.70145 93.800001) (xy 142.7 93.785281) (xy 142.7 92.785267) (xy 142.69958 92.781003) (xy 142.699553 92.780055) (xy 142.699257 92.777726) (xy 142.697117 92.755994) (xy 142.696711 92.746547) (xy 142.696094 92.742403) (xy 142.690081 92.703836) (xy 142.683282 92.677472) (xy 142.676868 92.651085) (xy 142.675459 92.64714) (xy 142.662068 92.610474) (xy 142.650302 92.585983) (xy 142.638859 92.56129) (xy 142.636709 92.557694) (xy 142.616452 92.524329) (xy 142.600154 92.502593) (xy 142.584138 92.480599) (xy 142.581331 92.477489) (xy 142.554979 92.448693) (xy 142.534761 92.430528) (xy 142.514782 92.412068) (xy 142.511429 92.409566) (xy 142.511426 92.409563) (xy 142.511423 92.409561) (xy 142.479982 92.386434) (xy 142.456588 92.372523) (xy 142.433437 92.358315) (xy 142.429662 92.356511) (xy 142.429658 92.356509) (xy 142.429654 92.356508) (xy 142.39432 92.339928) (xy 142.368707 92.330839) (xy 142.343206 92.321386) (xy 142.339147 92.320349) (xy 142.301264 92.310947) (xy 142.274352 92.307002) (xy 142.24751 92.302685) (xy 142.243338 92.302457) (xy 142.243334 92.302456) (xy 142.243328 92.302456) (xy 142.216787 92.301187) (xy 142.204733 92.3) (xy 141.99 92.3) (xy 141.99 91.224263) (xy 143.161717 90.052547) (xy 143.173158 90.043158) (xy 143.182549 90.031715) (xy 143.210647 89.997478) (xy 143.238503 89.945361) (xy 143.238504 89.94536) (xy 143.255659 89.88881) (xy 143.26 89.844733) (xy 143.26 89.844724) (xy 143.26145 89.830001) (xy 143.26 89.815278) (xy 143.26 85.52467) (xy 143.270933 85.413164) (xy 143.299057 85.320013) (xy 143.344737 85.234102) (xy 143.406235 85.158698) (xy 143.481211 85.096672) (xy 143.566799 85.050395) (xy 143.659753 85.021621) (xy 143.770315 85.01) (xy 151.877202 85.01) ) ) ) ) sd-mux-ctrl-0.0.4/doc/hardware/SDWire/SDWire.lib000077500000000000000000000305401506653766500212460ustar00rootroot00000000000000EESchema-LIBRARY Version 2.4 #encoding utf-8 # # +3V3 # DEF +3V3 #PWR 0 0 Y Y 1 F P F0 "#PWR" 0 -150 50 H I C CNN F1 "+3V3" 0 140 50 H V C CNN F2 "" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN ALIAS +3.3V DRAW P 2 0 1 0 -30 50 0 100 N P 2 0 1 0 0 0 0 100 N P 2 0 1 0 0 100 30 50 N X +3V3 1 0 0 0 U 50 50 1 1 W N ENDDRAW ENDDEF # # 2N7002 # DEF 2N7002 Q 0 0 Y Y 1 F N F0 "Q" 200 75 50 H V L CNN F1 "2N7002" 200 0 50 H V L CNN F2 "TO_SOT_Packages_SMD:SOT-23" 200 -75 50 H I L CIN F3 "" 0 0 50 H I L CNN $FPLIST SOT-23* $ENDFPLIST DRAW C 50 0 111 0 1 10 N C 100 -50 5 0 1 0 N C 100 50 5 0 1 0 N P 2 0 1 20 25 -40 25 -65 N P 2 0 1 20 25 15 25 -15 N P 2 0 1 20 25 65 25 40 N P 2 0 1 0 120 15 115 10 N P 2 0 1 0 120 15 140 15 N P 2 0 1 0 140 15 145 20 N P 3 0 1 10 0 60 0 -60 0 -60 N P 4 0 1 0 30 -50 100 -50 100 -100 100 -100 N P 4 0 1 0 30 50 100 50 100 100 100 100 N P 4 0 1 0 100 50 130 50 130 -50 100 -50 N P 4 0 1 0 130 15 120 -10 140 -10 130 15 F P 5 0 1 0 30 0 50 0 100 0 100 -50 100 -50 N P 6 0 1 0 35 0 75 15 75 -15 35 0 40 0 40 0 F X G 1 -200 -50 200 R 50 50 1 1 P X S 2 100 -200 100 U 50 50 1 1 P X D 3 100 200 100 D 50 50 1 1 P ENDDRAW ENDDEF # # 4pinCrystal # DEF 4pinCrystal Y 0 40 N N 1 F N F0 "Y" 0 150 50 H V C CNN F1 "4pinCrystal" 200 -100 50 H V C CNN F2 "" 0 0 50 H V C CNN F3 "" 0 0 50 H V C CNN $FPLIST Crystal* $ENDFPLIST DRAW S -45 100 45 -100 0 1 12 N P 2 0 1 0 -100 0 -75 0 N P 2 0 1 20 -75 -50 -75 50 N P 2 0 1 20 75 -50 75 50 N P 2 0 1 0 100 0 75 0 N X 1 1 -150 0 50 R 50 50 1 1 P X 2 2 0 -150 50 U 50 50 1 1 P X 3 3 150 0 50 L 50 50 1 1 P X 4 4 0 150 50 D 50 50 1 1 P ENDDRAW ENDDEF # # 74AHC1G14 # DEF 74AHC1G14 U 0 30 Y Y 1 F N F0 "U" 145 115 50 H V C CNN F1 "74AHC1G14" 200 -100 50 H V C CNN F2 "" 95 -135 50 H I C CNN F3 "" 145 115 50 H I C CNN DRAW P 4 0 0 0 -150 150 -150 -150 150 0 -150 150 N X GND 3 -50 -200 100 U 40 20 0 0 W X VCC 5 -50 200 100 D 40 20 0 0 W X ~ 2 -450 0 300 R 50 50 1 1 I X ~ 4 450 0 300 L 50 50 1 1 O I X ~ 2 -450 0 300 R 50 50 1 2 I I X ~ 4 450 0 300 L 50 50 1 2 O ENDDRAW ENDDEF # # BSS138 # DEF BSS138 Q 0 0 Y Y 1 F N F0 "Q" 200 75 50 H V L CNN F1 "BSS138" 200 0 50 H V L CNN F2 "TO_SOT_Packages_SMD:SOT-23" 200 -75 50 H I L CIN F3 "" 0 0 50 H I L CNN ALIAS 2N70021 $FPLIST SOT-23* $ENDFPLIST DRAW C 50 0 111 0 1 10 N C 100 -50 5 0 1 0 N C 100 50 5 0 1 0 N P 2 0 1 20 25 -40 25 -65 N P 2 0 1 20 25 15 25 -15 N P 2 0 1 20 25 65 25 40 N P 2 0 1 0 120 15 115 10 N P 2 0 1 0 120 15 140 15 N P 2 0 1 0 140 15 145 20 N P 3 0 1 10 0 60 0 -60 0 -60 N P 4 0 1 0 30 -50 100 -50 100 -100 100 -100 N P 4 0 1 0 30 50 100 50 100 100 100 100 N P 4 0 1 0 100 50 130 50 130 -50 100 -50 N P 4 0 1 0 130 15 120 -10 140 -10 130 15 F P 5 0 1 0 30 0 50 0 100 0 100 -50 100 -50 N P 6 0 1 0 35 0 75 15 75 -15 35 0 40 0 40 0 F X G 1 -200 -50 200 R 50 50 1 1 P X S 2 100 -200 100 U 50 50 1 1 P X D 3 100 200 100 D 50 50 1 1 P ENDDRAW ENDDEF # # C # DEF C C 0 10 N Y 1 F N F0 "C" 25 100 50 H V L CNN F1 "C" 25 -100 50 H V L CNN F2 "" 38 -150 50 H I C CNN F3 "" 0 0 50 H I C CNN $FPLIST C_* $ENDFPLIST DRAW P 2 0 1 20 -80 -30 80 -30 N P 2 0 1 20 -80 30 80 30 N X ~ 1 0 150 110 D 50 50 1 1 P X ~ 2 0 -150 110 U 50 50 1 1 P ENDDRAW ENDDEF # # CP # DEF CP C 0 10 N Y 1 F N F0 "C" 25 100 50 H V L CNN F1 "CP" 25 -100 50 H V L CNN F2 "" 38 -150 50 H I C CNN F3 "" 0 0 50 H I C CNN $FPLIST CP_* $ENDFPLIST DRAW S -90 20 -90 40 0 1 0 N S -90 20 90 20 0 1 0 N S 90 -20 -90 -40 0 1 0 F S 90 40 -90 40 0 1 0 N S 90 40 90 20 0 1 0 N P 2 0 1 0 -70 90 -30 90 N P 2 0 1 0 -50 110 -50 70 N X ~ 1 0 150 110 D 50 50 1 1 P X ~ 2 0 -150 110 U 50 50 1 1 P ENDDRAW ENDDEF # # FT200XD # DEF FT200XD U 0 40 Y Y 1 F N F0 "U" -550 500 50 H V L CNN F1 "FT200XD" 300 500 50 H V L CNN F2 "DFN-10" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN $FPLIST DFN* $ENDFPLIST DRAW S -550 450 550 -450 0 1 10 f X USBDM 1 -700 100 150 R 50 50 1 1 I X USBDP 10 -700 0 150 R 50 50 1 1 I X GND 11 100 -600 150 U 50 50 1 1 W X ~RESET 2 -700 -300 150 R 50 50 1 1 I X 3V3OUT 3 -700 300 150 R 50 50 1 1 w X VCC 4 -100 600 150 D 50 50 1 1 W X CBUS0 5 700 0 150 L 50 50 1 1 B X SCL 6 700 300 150 L 50 50 1 1 I X VCCIO 7 100 600 150 D 50 50 1 1 W X SDA 8 700 200 150 L 50 50 1 1 B X GND 9 -100 -600 150 U 50 50 1 1 W ENDDRAW ENDDEF # # Ferrite_Bead_Small # DEF Ferrite_Bead_Small L 0 0 N Y 1 F N F0 "L" 75 50 50 H V L CNN F1 "Ferrite_Bead_Small" 75 -50 50 H V L CNN F2 "" -70 0 50 V I C CNN F3 "" 0 0 50 H I C CNN $FPLIST Inductor_* L_* *Ferrite* $ENDFPLIST DRAW P 2 0 1 0 0 -50 0 -31 N P 2 0 1 0 0 35 0 51 N P 5 0 1 0 -72 11 -44 59 72 -8 44 -56 -72 11 N X ~ 1 0 100 50 D 50 50 1 1 P X ~ 2 0 -100 50 U 50 50 1 1 P ENDDRAW ENDDEF # # GND # DEF GND #PWR 0 0 Y Y 1 F P F0 "#PWR" 0 -250 50 H I C CNN F1 "GND" 0 -150 50 H V C CNN F2 "" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN DRAW P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N X GND 1 0 0 0 D 50 50 1 1 W N ENDDRAW ENDDEF # # LED_ALT # DEF LED_ALT D 0 40 Y N 1 F N F0 "D" 0 100 50 H V C CNN F1 "LED_ALT" 0 -100 50 H V C CNN F2 "" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN $FPLIST LED* $ENDFPLIST DRAW P 2 0 1 8 -50 -50 -50 50 N P 2 0 1 0 -50 0 50 0 N P 4 0 1 8 50 -50 50 50 -50 0 50 -50 F P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N X K 1 -150 0 100 R 50 50 1 1 P X A 2 150 0 100 L 50 50 1 1 P ENDDRAW ENDDEF # # MMBT4403LT1 # DEF MMBT4403LT1 Q 0 0 Y N 1 F N F0 "Q" 200 75 50 H V L CNN F1 "MMBT4403LT1" 200 0 50 H V L CNN F2 "TO_SOT_Packages_SMD:SOT-23" 200 -75 50 H I L CIN F3 "" 0 0 50 H I L CNN $FPLIST SOT?323* $ENDFPLIST DRAW C 50 0 111 0 1 10 N P 2 0 1 0 25 25 100 100 N P 3 0 1 0 25 -25 100 -100 100 -100 N P 3 0 1 20 25 75 25 -75 25 -75 N P 5 0 1 0 90 -70 70 -90 50 -50 90 -70 90 -70 F X B 1 -200 0 225 R 50 50 1 1 I X E 2 100 -200 100 U 50 50 1 1 P X C 3 100 200 100 D 50 50 1 1 P ENDDRAW ENDDEF # # Q_PMOS_GSD # DEF Q_PMOS_GSD Q 0 0 Y N 1 F N F0 "Q" 200 50 50 H V L CNN F1 "Q_PMOS_GSD" 200 -50 50 H V L CNN F2 "" 200 100 50 H I C CNN F3 "" 0 0 50 H I C CNN DRAW C 65 0 111 0 1 10 N C 100 -70 11 0 1 0 F C 100 70 11 0 1 0 F P 2 0 1 0 30 -70 100 -70 N P 2 0 1 10 30 -50 30 -90 N P 2 0 1 0 30 0 100 0 N P 2 0 1 10 30 20 30 -20 N P 2 0 1 0 30 70 100 70 N P 2 0 1 10 30 90 30 50 N P 2 0 1 0 100 -70 100 -100 N P 2 0 1 0 100 -70 100 0 N P 2 0 1 0 100 100 100 70 N P 3 0 1 10 10 75 10 -75 10 -75 N P 4 0 1 0 90 0 50 -15 50 15 90 0 F P 4 0 1 0 100 -70 130 -70 130 70 100 70 N P 4 0 1 0 110 -20 115 -15 145 -15 150 -10 N P 4 0 1 0 130 -15 115 10 145 10 130 -15 N X G 1 -200 0 210 R 50 50 1 1 I X S 2 100 -200 100 U 50 50 1 1 P X D 3 100 200 100 D 50 50 1 1 P ENDDRAW ENDDEF # # R # DEF R R 0 0 N Y 1 F N F0 "R" 80 0 50 V V C CNN F1 "R" 0 0 50 V V C CNN F2 "" -70 0 50 V I C CNN F3 "" 0 0 50 H I C CNN $FPLIST R_* R_* $ENDFPLIST DRAW S -40 -100 40 100 0 1 10 N X ~ 1 0 150 50 D 50 50 1 1 P X ~ 2 0 -150 50 U 50 50 1 1 P ENDDRAW ENDDEF # # SPX3819M5 # DEF SPX3819M5 U 0 30 Y Y 1 F N F0 "U" 0 300 50 H V C CNN F1 "SPX3819M5" 0 200 50 H V C CNN F2 "SOT23-5" 0 100 50 H V C CNN F3 "" 0 0 50 H V C CNN ALIAS LD1117S33CTR DRAW S -250 -150 250 150 0 1 10 f X VI 1 -400 50 150 R 50 50 1 1 W X GND 2 0 -250 100 U 50 50 1 1 W X EN 3 -400 -50 150 R 50 50 1 1 I X BYP 4 400 -50 150 L 50 50 1 1 P X VO 5 400 50 150 L 50 50 1 1 w ENDDRAW ENDDEF # # TS3A27518E # DEF TS3A27518E U 0 40 Y Y 1 F N F0 "U" -250 1150 60 H V C CNN F1 "TS3A27518E" 0 -1150 60 H V C CNN F2 "" 300 -300 60 H V C CNN F3 "" 300 -300 60 H V C CNN DRAW S -300 1100 300 -1100 0 1 0 f X NC2 1 -600 700 300 R 50 50 1 1 B X COM5 10 600 -200 300 L 50 50 1 1 B X NO1 11 -600 900 300 R 50 50 1 1 B X COM6 12 600 -500 300 L 50 50 1 1 B X NO2 13 -600 600 300 R 50 50 1 1 B X IN2 14 -600 -900 300 R 50 50 1 1 I X NO3 15 -600 300 300 R 50 50 1 1 B X NO6 16 -600 -600 300 R 50 50 1 1 B X NO4 17 -600 0 300 R 50 50 1 1 B X NO5 18 -600 -300 300 R 50 50 1 1 B X NC5 19 -600 -200 300 R 50 50 1 1 B X NC1 2 -600 1000 300 R 50 50 1 1 B X EN 20 -600 -1000 300 R 50 50 1 1 I I X NC4 21 -600 100 300 R 50 50 1 1 B X NC6 22 -600 -500 300 R 50 50 1 1 B X NC3 23 -600 400 300 R 50 50 1 1 B X IN1 24 -600 -800 300 R 50 50 1 1 B X N.C. 3 600 -1000 300 L 50 50 1 1 N N X COM1 4 600 1000 300 L 50 50 1 1 B X GND 5 600 -900 300 L 50 50 1 1 P X COM2 6 600 700 300 L 50 50 1 1 B X COM3 7 600 400 300 L 50 50 1 1 B X V+ 8 600 -800 300 L 50 50 1 1 P X COM4 9 600 100 300 L 50 50 1 1 B ENDDRAW ENDDEF # # USB2640 # DEF USB2640 U 0 40 Y Y 2 L N F0 "U" -550 1700 50 H V C CNN F1 "USB2640" -450 1600 50 H V C CNN F2 "" 1950 100 50 H V C CNN F3 "" 1950 100 50 H V C CNN $FPLIST *QFN*48* $ENDFPLIST DRAW T 0 150 400 60 0 1 0 Card~reader Normal 0 C C T 0 -250 -1100 60 0 1 0 EEPROM Normal 0 C C T 0 150 1200 60 0 1 0 USB Normal 0 C C T 0 0 900 60 0 2 0 Misc. Normal 0 C C T 0 0 50 60 0 2 0 Power Normal 0 C C S 1000 -1650 -650 1250 1 1 0 f S -650 950 650 -1000 2 1 0 f P 2 1 0 12 -650 450 1000 450 N P 3 1 0 12 200 -1650 200 -1050 -650 -1050 N P 2 2 1 12 -650 100 650 100 N X USBDN_DM2 1 1150 900 150 L 50 50 1 1 B X SPI_DO/GPIO5/SDA 10 -800 -1350 150 R 50 50 1 1 O X SPI_DI 11 -800 -1450 150 R 50 50 1 1 I X xD_D4/GPIO6/SD_WP/MS_SCLK 13 1150 -150 150 L 50 50 1 1 B X GPIO15/~SD_nCD 14 1150 -1550 150 L 50 50 1 1 B X xD_D3/SD_D1/MS_D5 17 1150 -50 150 L 50 50 1 1 B X xD_D2/SD_D0/MS_D4 18 1150 50 150 L 50 50 1 1 B X xD_D1/SD_D7/MS_D6 19 1150 150 150 L 50 50 1 1 B X USBDN_DP2 2 1150 1000 150 L 50 50 1 1 B X xD_D0/SD_D6/MS_D7 20 1150 250 150 L 50 50 1 1 B X ~xD_WP~/SD_CLK/MS_BS 21 1150 -1000 150 L 50 50 1 1 B X ~xD_WE 22 1150 -900 150 L 50 50 1 1 B X xD_ALE/SD_D5/MS_D1 23 1150 -600 150 L 50 50 1 1 B X xD_CLE/SD_CMD/MS_D0 24 1150 -700 150 L 50 50 1 1 B X ~xD_CE 26 1150 -1100 150 L 50 50 1 1 B X ~xD_RE 27 1150 -800 150 L 50 50 1 1 B X ~xD_B/R 28 1150 -1250 150 L 50 50 1 1 B X GPIO14/~xD_CD 29 1150 -1450 150 L 50 50 1 1 B X USBDN_DM3 3 1150 550 150 L 50 50 1 1 B X xD_D7/SD_D4/MS_D2 30 1150 -450 150 L 50 50 1 1 B X GPIO12/MS_INS 31 1150 -1350 150 L 50 50 1 1 B X xD_D6/SD_D3/MS_D3 32 1150 -350 150 L 50 50 1 1 B X xD_D5/SD_D2 33 1150 -250 150 L 50 50 1 1 B X VBUS_DET 39 -800 1100 150 R 50 50 1 1 W X USBDN_DP3 4 1150 650 150 L 50 50 1 1 B X USBUP_DP 42 -800 850 150 R 50 50 1 1 B X USBUP_DM 43 -800 750 150 R 50 50 1 1 B X PRTCTL2 6 1150 1100 150 L 50 50 1 1 B X PRTCTL3 7 1150 750 150 L 50 50 1 1 B X SPI_CE_EN 8 -800 -1550 150 R 50 50 1 1 O X SPI_CLK/GPIO4/SCL 9 -800 -1250 150 R 50 50 1 1 I X VDD33 12 800 -600 150 L 50 50 2 1 W X VDD18 15 -800 -450 150 R 50 50 2 1 w X VDD33 16 800 -700 150 L 50 50 2 1 W X VDD33 25 800 -800 150 L 50 50 2 1 W X VDD33 34 800 -900 150 L 50 50 2 1 W X GPIO10/CARD_PWR 35 800 750 150 L 50 50 2 1 B X GPIO2/RXD 36 800 500 150 L 50 50 2 1 B X GPIO1/LED1/TXD 37 800 600 150 L 50 50 2 1 B X ~RESET 38 -800 750 150 R 50 50 2 1 I I X TEST 40 -800 600 150 R 50 50 2 1 I X VDDA33 41 800 -200 150 L 50 50 2 1 W X XTAL2 44 -800 350 150 R 50 50 2 1 I X XTAL1/CLKIN 45 -800 450 150 R 50 50 2 1 I X VDDPLL18 46 -800 -100 150 R 50 50 2 1 P X RBIAS 47 -800 200 150 R 50 50 2 1 P X VDDA33 48 800 -300 150 L 50 50 2 1 W X VSS 49 -800 -900 150 R 50 50 2 1 W X VDDA33 5 800 -100 150 L 50 50 2 1 W ENDDRAW ENDDEF # # USB_OTG_MICRO_USB # DEF USB_OTG_MICRO_USB P 0 40 Y Y 1 F N F0 "P" 325 -125 50 H V C CNN F1 "USB_OTG_MICRO_USB" 0 200 50 H V C CNN F2 "" -50 -100 50 V V C CNN F3 "" -50 -100 50 V V C CNN $FPLIST USB* $ENDFPLIST DRAW S -250 -150 250 150 0 1 0 N S -205 -150 -195 -120 0 1 0 N S -105 -150 -95 -120 0 1 0 N S -5 -150 5 -120 0 1 0 N S 95 -150 105 -120 0 1 0 N S 195 -150 205 -120 0 1 0 N X VCC 1 -200 -300 150 U 50 50 1 1 w X D- 2 -100 -300 150 U 50 50 1 1 P X D+ 3 0 -300 150 U 50 50 1 1 P X ID 4 100 -300 150 U 50 50 1 1 W X GND 5 200 -300 150 U 50 50 1 1 W X shield 6 400 100 150 L 50 50 1 1 P ENDDRAW ENDDEF # # USDCARD # DEF USDCARD J 0 40 Y Y 1 F N F0 "J" -150 600 60 H V C CNN F1 "USDCARD" 0 -550 60 H V C CNN F2 "" 0 0 60 H V C CNN F3 "" 0 0 60 H V C CNN DRAW S -200 550 450 -500 0 0 0 f X DAT2 1 -500 -200 300 R 50 50 1 1 I X CD/DAT3/CS 2 -500 300 300 R 50 50 1 1 I X CMD/MOSI 3 -500 200 300 R 50 50 1 1 I X VDD 4 -500 450 300 R 50 50 1 1 I X CLK 5 -500 0 300 R 50 50 1 1 I X GND 6 -500 -400 300 R 50 50 1 1 I X DAT0/MISO 7 -500 100 300 R 50 50 1 1 I X DAT1 8 -500 -100 300 R 50 50 1 1 I ENDDRAW ENDDEF # # usd-plug # DEF usd-plug J 0 40 N Y 1 F N F0 "J" 0 300 60 H V C CNN F1 "usd-plug" 150 -650 60 H V C CNN F2 "" 0 0 60 H V C CNN F3 "" 0 0 60 H V C CNN DRAW S 0 200 300 -600 0 1 0 f X 1 1 -200 150 200 R 50 50 1 1 I X 2 2 -200 50 200 R 50 50 1 1 I X 3 3 -200 -50 200 R 50 50 1 1 I X 4 4 -200 -150 200 R 50 50 1 1 I X 5 5 -200 -250 200 R 50 50 1 1 I X 6 6 -200 -350 200 R 50 50 1 1 I X 7 7 -200 -450 200 R 50 50 1 1 I X 8 8 -200 -550 200 R 50 50 1 1 I ENDDRAW ENDDEF # #End Library sd-mux-ctrl-0.0.4/doc/hardware/SDWire/SDWire.pro000077500000000000000000000017621506653766500213040ustar00rootroot00000000000000update=Thu 05 Sep 2019 09:41:36 AM CEST version=1 last_client=kicad [pcbnew] version=1 LastNetListRead= UseCmpFile=1 PadDrill=0.600000000000 PadDrillOvalY=0.600000000000 PadSizeH=1.500000000000 PadSizeV=1.500000000000 PcbTextSizeV=1.500000000000 PcbTextSizeH=1.500000000000 PcbTextThickness=0.300000000000 ModuleTextSizeV=1.000000000000 ModuleTextSizeH=1.000000000000 ModuleTextSizeThickness=0.150000000000 SolderMaskClearance=0.000000000000 SolderMaskMinWidth=0.000000000000 DrawSegmentWidth=0.200000000000 BoardOutlineThickness=0.100000000000 ModuleOutlineThickness=0.150000000000 [cvpcb] version=1 NetIExt=net [general] version=1 [eeschema] version=1 LibDir= [schematic_editor] version=1 PageLayoutDescrFile= PlotDirectoryName=doc/ SubpartIdSeparator=0 SubpartFirstId=65 NetFmtName= SpiceAjustPassiveValues=0 LabSize=60 ERC_WriteFile=0 ERC_TestSimilarLabels=1 ERC_CheckUniqueGlobalLabels=1 ERC_CheckBusDriverConflicts=1 ERC_CheckBusEntryConflicts=1 ERC_CheckBusToBusConflicts=1 ERC_CheckBusToNetConflicts=1 sd-mux-ctrl-0.0.4/doc/hardware/SDWire/SDWire.sch000066400000000000000000001764241506653766500212660ustar00rootroot00000000000000EESchema Schematic File Version 5 LIBS:SDWire-cache EELAYER 29 0 EELAYER END $Descr A3 16535 11693 encoding utf-8 Sheet 1 1 Title "MuxPi" Date "2019-05-12" Rev "1.4" Comp "SRPOL" Comment1 "Author: Adam Malinowski " Comment2 "Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved" Comment3 "" Comment4 "" $EndDescr Wire Wire Line 2750 1250 3450 1250 $Comp L SDWire:CP C10 U 1 1 5880004B P 3900 1450 F 0 "C10" H 3950 1550 50 0000 L CNN F 1 "10uF/10V" H 3950 1350 50 0000 L CNN F 2 "Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow" H 3938 1300 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/0ff508dea7a8224c6fb12ae10be076aa/KEM_T2005_T491.pdf" H 3900 1450 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/t491a106m016at/kondensatory-tantalowe-smd/kemet/" H 3900 1450 60 0001 C CNN "Shop link" F 5 "T491A106M016AT" H 3900 1450 60 0001 C CNN "Symbol" F 6 "0.32167" H 3900 1450 60 0001 C CNN "Price" 1 3900 1450 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR01 U 1 1 58800052 P 3900 1650 F 0 "#PWR01" H 3900 1400 50 0001 C CNN F 1 "GND" H 3900 1500 50 0000 C CNN F 2 "" H 3900 1650 60 0000 C CNN F 3 "" H 3900 1650 60 0000 C CNN 1 3900 1650 1 0 0 -1 $EndComp Wire Wire Line 3900 1600 3900 1650 Wire Wire Line 3900 1300 3900 1250 Connection ~ 3900 1250 $Comp L SDWire:GND #PWR02 U 1 1 58800063 P 3450 1650 F 0 "#PWR02" H 3450 1400 50 0001 C CNN F 1 "GND" H 3450 1500 50 0000 C CNN F 2 "" H 3450 1650 60 0000 C CNN F 3 "" H 3450 1650 60 0000 C CNN 1 3450 1650 1 0 0 -1 $EndComp Wire Wire Line 3450 1600 3450 1650 Wire Wire Line 3450 1300 3450 1250 Connection ~ 3450 1250 Wire Wire Line 5050 1250 5400 1250 Wire Wire Line 5850 1100 5850 1250 $Comp L SDWire:+3V3 #PWR03 U 1 1 58800078 P 5850 1100 F 0 "#PWR03" H 5850 950 50 0001 C CNN F 1 "+3V3" H 5865 1273 50 0000 C CNN F 2 "" H 5850 1100 50 0000 C CNN F 3 "" H 5850 1100 50 0000 C CNN 1 5850 1100 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR04 U 1 1 5880007E P 5850 1650 F 0 "#PWR04" H 5850 1400 50 0001 C CNN F 1 "GND" H 5850 1500 50 0000 C CNN F 2 "" H 5850 1650 60 0000 C CNN F 3 "" H 5850 1650 60 0000 C CNN 1 5850 1650 1 0 0 -1 $EndComp Wire Wire Line 5850 1600 5850 1650 $Comp L SDWire:GND #PWR05 U 1 1 58800085 P 5400 1650 F 0 "#PWR05" H 5400 1400 50 0001 C CNN F 1 "GND" H 5400 1500 50 0000 C CNN F 2 "" H 5400 1650 60 0000 C CNN F 3 "" H 5400 1650 60 0000 C CNN 1 5400 1650 1 0 0 -1 $EndComp Wire Wire Line 5400 1600 5400 1650 Wire Wire Line 5400 1300 5400 1250 Connection ~ 5400 1250 Connection ~ 5850 1250 $Comp L SDWire:GND #PWR06 U 1 1 5880008F P 4650 1650 F 0 "#PWR06" H 4650 1400 50 0001 C CNN F 1 "GND" H 4650 1500 50 0000 C CNN F 2 "" H 4650 1650 60 0000 C CNN F 3 "" H 4650 1650 60 0000 C CNN 1 4650 1650 1 0 0 -1 $EndComp Wire Wire Line 4650 1550 4650 1650 $Comp L SDWire:TS3A27518E U5 U 1 1 58802A33 P 12100 5600 F 0 "U5" H 11850 6750 60 0000 C CNN F 1 "TS3A27518EPWR" H 12100 4450 60 0000 C CNN F 2 "mux-footprints:TSSOP-24" H 12400 5300 60 0001 C CNN F 3 "http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf" H 12400 5300 60 0001 C CNN F 4 "http://pl.farnell.com/texas-instruments/ts3a27518epwr/ic-6bit-1-of-2-mux-demux-24tssop/dp/1735605" H 12100 5600 60 0001 C CNN "Shop link" F 5 "10.7" H 12100 5600 60 0001 C CNN "Price" F 6 "TS3A27518EPWR" H 12100 5600 60 0001 C CNN "Symbol" 1 12100 5600 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR07 U 1 1 58802A3A P 13400 5400 F 0 "#PWR07" H 13400 5150 50 0001 C CNN F 1 "GND" H 13400 5250 50 0000 C CNN F 2 "" H 13400 5400 60 0000 C CNN F 3 "" H 13400 5400 60 0000 C CNN 1 13400 5400 -1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR08 U 1 1 58802A40 P 12800 6600 F 0 "#PWR08" H 12800 6350 50 0001 C CNN F 1 "GND" H 12800 6450 50 0000 C CNN F 2 "" H 12800 6600 60 0000 C CNN F 3 "" H 12800 6600 60 0000 C CNN 1 12800 6600 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR09 U 1 1 58802A50 P 11400 6700 F 0 "#PWR09" H 11400 6450 50 0001 C CNN F 1 "GND" H 11400 6550 50 0000 C CNN F 2 "" H 11400 6700 60 0000 C CNN F 3 "" H 11400 6700 60 0000 C CNN 1 11400 6700 -1 0 0 -1 $EndComp Text Label 10800 4900 0 60 ~ 0 DAT3_DUT Text Label 10800 5800 0 60 ~ 0 CMD_DUT Text Label 10800 5200 0 60 ~ 0 DAT0_DUT Text Label 10800 5500 0 60 ~ 0 CLK_DUT Text Label 10800 6100 0 60 ~ 0 DAT1_DUT Text Label 10800 4600 0 60 ~ 0 DAT2_DUT Text Label 10800 6400 0 60 ~ 0 SOCKET_SEL Text Label 6800 6400 2 60 ~ 0 DAT2_DUT Text Label 6800 6500 2 60 ~ 0 DAT3_DUT Text Label 6800 6600 2 60 ~ 0 CMD_DUT Text Label 6800 6700 2 60 ~ 0 VDD_DUT Text Label 6800 6800 2 60 ~ 0 CLK_DUT $Comp L SDWire:GND #PWR011 U 1 1 58802A6E P 6200 7150 F 0 "#PWR011" H 6200 6900 50 0001 C CNN F 1 "GND" H 6200 7000 50 0000 C CNN F 2 "" H 6200 7150 60 0000 C CNN F 3 "" H 6200 7150 60 0000 C CNN 1 6200 7150 1 0 0 -1 $EndComp Text Label 6800 7000 2 60 ~ 0 DAT0_DUT Text Label 6800 7100 2 60 ~ 0 DAT1_DUT $Comp L SDWire:+3V3 #PWR012 U 1 1 58802A83 P 12800 6300 F 0 "#PWR012" H 12800 6150 50 0001 C CNN F 1 "+3V3" H 12800 6440 50 0000 C CNN F 2 "" H 12800 6300 60 0000 C CNN F 3 "" H 12800 6300 60 0000 C CNN 1 12800 6300 1 0 0 -1 $EndComp $Comp L SDWire:USDCARD J2 U 1 1 58802A8A P 13950 4900 F 0 "J2" H 13800 5500 60 0000 C CNN F 1 "uSD Socket" H 13950 4350 60 0000 C CNN F 2 "mux-footprints:usd-attend" H 13950 4200 60 0001 C CNN F 3 "http://www.tme.eu/pl/Document/d9baf2fd66256bac7b840e9a66d44492/112K-TBA0-RA1.pdf" H 13950 4900 60 0001 C CNN F 4 "http://www.tme.eu/pl/details/112k-tba0-ra1/zlacza-do-kart/attend/" H 13950 4900 60 0001 C CNN "Shop link" F 5 "3.11" H 13950 4900 60 0001 C CNN "Price" F 6 "112K-TBA0-RA1" H 13950 4900 60 0001 C CNN "Symbol" 1 13950 4900 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR017 U 1 1 58802AAB P 14200 6700 F 0 "#PWR017" H 14200 6450 50 0001 C CNN F 1 "GND" H 14200 6550 50 0000 C CNN F 2 "" H 14200 6700 60 0000 C CNN F 3 "" H 14200 6700 60 0000 C CNN 1 14200 6700 1 0 0 -1 $EndComp $Comp L SDWire:+3V3 #PWR018 U 1 1 58802AB1 P 14200 6250 F 0 "#PWR018" H 14200 6100 50 0001 C CNN F 1 "+3V3" H 14200 6390 50 0000 C CNN F 2 "" H 14200 6250 60 0000 C CNN F 3 "" H 14200 6250 60 0000 C CNN 1 14200 6250 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR019 U 1 1 58802ABF P 14550 6700 F 0 "#PWR019" H 14550 6450 50 0001 C CNN F 1 "GND" H 14550 6550 50 0000 C CNN F 2 "" H 14550 6700 60 0000 C CNN F 3 "" H 14550 6700 60 0000 C CNN 1 14550 6700 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR020 U 1 1 58802AC5 P 14900 6700 F 0 "#PWR020" H 14900 6450 50 0001 C CNN F 1 "GND" H 14900 6550 50 0000 C CNN F 2 "" H 14900 6700 60 0000 C CNN F 3 "" H 14900 6700 60 0000 C CNN 1 14900 6700 1 0 0 -1 $EndComp Text Label 14550 6200 0 60 ~ 0 USD_VDD Wire Wire Line 12800 5100 13450 5100 Wire Wire Line 13450 5300 13400 5300 Wire Wire Line 12700 6500 12800 6500 Wire Wire Line 12800 6500 12800 6600 Wire Wire Line 12700 6400 12800 6400 Wire Wire Line 12800 6400 12800 6300 Wire Wire Line 13350 4450 13450 4450 Wire Wire Line 11400 6500 11500 6500 Connection ~ 11400 6400 Wire Wire Line 11500 6600 11400 6600 Wire Wire Line 11400 6600 11400 6700 Wire Wire Line 11500 6100 10800 6100 Wire Wire Line 11500 6200 10800 6200 Wire Wire Line 11500 5200 10800 5200 Wire Wire Line 11500 5300 10800 5300 Wire Wire Line 11500 5500 10800 5500 Wire Wire Line 11500 5600 10800 5600 Wire Wire Line 11500 5800 10800 5800 Wire Wire Line 11500 5900 10800 5900 Wire Wire Line 11500 4900 10800 4900 Wire Wire Line 11500 5000 10800 5000 Wire Wire Line 11500 4600 10800 4600 Wire Wire Line 11500 4700 10800 4700 Wire Wire Line 6800 6400 6150 6400 Wire Wire Line 6150 6600 6800 6600 Wire Wire Line 6150 6800 6800 6800 Wire Wire Line 6150 7000 6800 7000 Wire Wire Line 6150 6700 6800 6700 Wire Wire Line 6150 6500 6800 6500 Wire Wire Line 6150 7100 6800 7100 Wire Wire Line 10800 6400 11400 6400 Wire Wire Line 13300 5000 13450 5000 Wire Wire Line 12900 4600 13450 4600 Wire Wire Line 12700 5500 13200 5500 Wire Wire Line 13450 4900 13200 4900 Wire Wire Line 11400 6500 11400 6400 Wire Wire Line 13350 2700 13350 4450 Wire Wire Line 13400 5300 13400 5400 Wire Wire Line 14200 6250 14200 6350 Wire Wire Line 14200 6650 14200 6700 Wire Wire Line 14550 6650 14550 6700 Wire Wire Line 14900 6650 14900 6700 Wire Wire Line 14550 6200 14550 6300 Wire Wire Line 14550 6300 14900 6300 Wire Wire Line 14900 6300 14900 6350 Connection ~ 14550 6300 Wire Wire Line 13300 5000 13300 6100 Wire Wire Line 13300 6100 12700 6100 Wire Wire Line 12700 4600 12800 4600 Wire Wire Line 12800 4600 12800 5100 Wire Wire Line 12900 4600 12900 4900 Wire Wire Line 12900 4900 12700 4900 Wire Wire Line 13200 4900 13200 5500 Wire Wire Line 13450 4700 13000 4700 Wire Wire Line 13000 4700 13000 5800 $Comp L SDWire:USB2640 U1 U 1 1 58804558 P 5550 3950 F 0 "U1" H 5725 5365 50 0000 C CNN F 1 "USB2640-HZH-02" H 5725 5274 50 0000 C CNN F 2 "mux-footprints:QFN-48-1EP_7x7mm_Pitch0.5mm" H 7500 4050 50 0001 C CNN F 3 "http://www.farnell.com/datasheets/2138035.pdf?_ga=1.187806955.291132730.1474618953" H 7500 4050 50 0001 C CNN F 4 "http://pl.farnell.com/microchip/usb2640-hzh-02/ic-usb-2-flash-media-cntrl-48vqfn/dp/2292611" H 5550 3950 60 0001 C CNN "Shop link" F 5 "14.71" H 5550 3950 60 0001 C CNN "Price" F 6 "USB2640-HZH-02" H 5550 3950 60 0001 C CNN "Symbol" 1 5550 3950 1 0 0 -1 $EndComp $Comp L SDWire:USB2640 U1 U 2 1 58804560 P 4200 9300 F 0 "U1" H 4200 10415 50 0000 C CNN F 1 "USB2640-HZH-02" H 4200 10324 50 0000 C CNN F 2 "mux-footprints:QFN-48-1EP_7x7mm_Pitch0.5mm" H 6150 9400 50 0001 C CNN F 3 "http://www.farnell.com/datasheets/2138035.pdf?_ga=1.187806955.291132730.1474618953" H 6150 9400 50 0001 C CNN F 4 "http://pl.farnell.com/microchip/usb2640-hzh-02/ic-usb-2-flash-media-cntrl-48vqfn/dp/2292611" H 4200 9300 60 0001 C CNN "Shop link" F 5 "14.71" H 4200 9300 60 0001 C CNN "Price" F 6 "USB2640-HZH-02" H 4200 9300 60 0001 C CNN "Symbol" 2 4200 9300 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR021 U 1 1 58804567 P 2250 10250 F 0 "#PWR021" H 2250 10000 50 0001 C CNN F 1 "GND" H 2250 10100 50 0000 C CNN F 2 "" H 2250 10250 60 0000 C CNN F 3 "" H 2250 10250 60 0000 C CNN 1 2250 10250 -1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR022 U 1 1 58804575 P 6550 10650 F 0 "#PWR022" H 6550 10400 50 0001 C CNN F 1 "GND" H 6550 10500 50 0000 C CNN F 2 "" H 6550 10650 60 0000 C CNN F 3 "" H 6550 10650 60 0000 C CNN 1 6550 10650 -1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR023 U 1 1 5880457B P 6250 9900 F 0 "#PWR023" H 6250 9650 50 0001 C CNN F 1 "GND" H 6250 9750 50 0000 C CNN F 2 "" H 6250 9900 60 0000 C CNN F 3 "" H 6250 9900 60 0000 C CNN 1 6250 9900 -1 0 0 -1 $EndComp Text Label 7300 3050 2 60 ~ 0 USB_B- Text Label 7300 2950 2 60 ~ 0 USB_B+ NoConn ~ 4750 5400 NoConn ~ 4750 5500 $Comp L SDWire:+3V3 #PWR024 U 1 1 58804587 P 1950 6950 F 0 "#PWR024" H 1950 6800 50 0001 C CNN F 1 "+3V3" H 1965 7123 50 0000 C CNN F 2 "" H 1950 6950 50 0000 C CNN F 3 "" H 1950 6950 50 0000 C CNN 1 1950 6950 1 0 0 -1 $EndComp $Comp L SDWire:R R4 U 1 1 5880458E P 3200 9100 F 0 "R4" V 3100 9050 50 0000 C CNN F 1 "12k 1%" V 3300 9100 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 3130 9100 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 3200 9100 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040212k0fktdbc/rezystory-smd-0402/vishay/" V 3200 9100 60 0001 C CNN "Shop link" F 5 "CRCW040212K0FKTDBC" V 3200 9100 60 0001 C CNN "Symbol" F 6 "0.02447" V 3200 9100 60 0001 C CNN "Price" 1 3200 9100 0 1 1 0 $EndComp $Comp L SDWire:GND #PWR025 U 1 1 58804595 P 3000 9150 F 0 "#PWR025" H 3000 8900 50 0001 C CNN F 1 "GND" H 3000 9000 50 0000 C CNN F 2 "" H 3000 9150 60 0000 C CNN F 3 "" H 3000 9150 60 0000 C CNN 1 3000 9150 -1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR026 U 1 1 588045A3 P 1750 9200 F 0 "#PWR026" H 1750 8950 50 0001 C CNN F 1 "GND" H 1750 9050 50 0000 C CNN F 2 "" H 1750 9200 60 0000 C CNN F 3 "" H 1750 9200 60 0000 C CNN 1 1750 9200 1 0 0 -1 $EndComp $Comp L SDWire:C C3 U 1 1 588045AA P 2000 8650 F 0 "C3" V 1850 8600 50 0000 L CNN F 1 "33p/50V" V 2150 8500 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 2038 8500 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/e3e731e59cc68b1ab6d46b158bb05733/MURATA_GRM.pdf" H 2000 8650 60 0001 C CNN F 4 "http://www.tme.eu/pl/details/grm1555c1h330ja01d/kondensatory-mlcc-smd-0402/murata/" V 2000 8650 60 0001 C CNN "Shop link" F 5 "GRM1555C1H330JA01D" V 2000 8650 60 0001 C CNN "Symbol" F 6 "0.01687" V 2000 8650 60 0001 C CNN "Price" 1 2000 8650 0 1 1 0 $EndComp $Comp L SDWire:+3V3 #PWR027 U 1 1 588045B1 P 6550 10100 F 0 "#PWR027" H 6550 9950 50 0001 C CNN F 1 "+3V3" H 6565 10273 50 0000 C CNN F 2 "" H 6550 10100 50 0000 C CNN F 3 "" H 6550 10100 50 0000 C CNN 1 6550 10100 1 0 0 -1 $EndComp $Comp L SDWire:Ferrite_Bead_Small L3 U 1 1 588045B8 P 6250 9250 F 0 "L3" H 6350 9296 50 0000 L CNN F 1 "BLM15PD121SN1D" H 6350 9205 50 0000 L CNN F 2 "Resistors_SMD:R_0402" H 6350 9159 50 0001 L CNN F 3 "" H 6350 9159 50 0001 L CNN F 4 "http://www.tme.eu/pl/details/blm15pd121sn1d/ferryty-koraliki/murata/" H 6250 9250 60 0001 C CNN "Shop link" F 5 "0.04825" H 6250 9250 60 0001 C CNN "Price" F 6 "BLM15PD121SN1D" H 6250 9250 60 0001 C CNN "Symbol" 1 6250 9250 1 0 0 -1 $EndComp $Comp L SDWire:+3V3 #PWR028 U 1 1 588045BF P 6250 9100 F 0 "#PWR028" H 6250 8950 50 0001 C CNN F 1 "+3V3" H 6265 9273 50 0000 C CNN F 2 "" H 6250 9100 50 0000 C CNN F 3 "" H 6250 9100 50 0000 C CNN 1 6250 9100 1 0 0 -1 $EndComp $Comp L SDWire:R R5 U 1 1 588045C7 P 5900 8700 F 0 "R5" V 6000 8700 50 0000 L CNN F 1 "330R" V 6000 8450 50 0000 L CNN F 2 "Resistors_SMD:R_0402" V 5830 8700 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 5900 8700 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw0402330rfktdbc/rezystory-smd-0402/vishay/" V 5900 8700 60 0001 C CNN "Shop link" F 5 "CRCW0402330RFKTDBC" V 5900 8700 60 0001 C CNN "Symbol" F 6 "0.02447" V 5900 8700 60 0001 C CNN "Price" 1 5900 8700 0 -1 -1 0 $EndComp NoConn ~ 5000 8800 $Comp L SDWire:GND #PWR029 U 1 1 588045CF P 6150 8700 F 0 "#PWR029" H 6150 8450 50 0001 C CNN F 1 "GND" H 6150 8550 50 0000 C CNN F 2 "" H 6150 8700 60 0000 C CNN F 3 "" H 6150 8700 60 0000 C CNN 1 6150 8700 0 -1 1 0 $EndComp Wire Wire Line 2250 10200 2600 10200 Wire Wire Line 2900 9750 2900 9800 Wire Wire Line 3250 9750 3250 9800 Connection ~ 3250 9750 Wire Wire Line 2900 10100 2900 10200 Wire Wire Line 3250 10100 3250 10200 Connection ~ 3250 10200 Connection ~ 2900 10200 Wire Wire Line 2250 10100 2250 10200 Wire Wire Line 2600 10100 2600 10200 Connection ~ 2600 10200 Connection ~ 2250 10200 Wire Wire Line 2250 9800 2250 9400 Wire Wire Line 2250 9400 2600 9400 Wire Wire Line 2600 9800 2600 9400 Connection ~ 2600 9400 Wire Wire Line 2900 9750 3250 9750 Wire Wire Line 5000 10200 5050 10200 Wire Wire Line 5050 9900 5050 10000 Wire Wire Line 5050 9900 5000 9900 Wire Wire Line 5000 10000 5050 10000 Connection ~ 5050 10000 Wire Wire Line 5000 10100 5050 10100 Connection ~ 5050 10100 Wire Wire Line 5050 9600 5000 9600 Wire Wire Line 5050 9400 5050 9500 Wire Wire Line 5000 9400 5050 9400 Wire Wire Line 5000 9500 5050 9500 Connection ~ 5050 9500 Wire Wire Line 6250 9350 6250 9400 Connection ~ 5050 9400 Wire Wire Line 5950 9500 5950 9400 Connection ~ 5950 9400 Wire Wire Line 5650 9500 5650 9400 Connection ~ 5650 9400 Wire Wire Line 5350 9500 5350 9400 Connection ~ 5350 9400 Wire Wire Line 5350 9800 5350 9850 Wire Wire Line 5350 9850 5650 9850 Wire Wire Line 6250 9800 6250 9850 Wire Wire Line 5950 9800 5950 9850 Connection ~ 5950 9850 Wire Wire Line 5650 9800 5650 9850 Connection ~ 5650 9850 Wire Wire Line 6250 10200 6250 10250 Connection ~ 5050 10200 Wire Wire Line 5950 10250 5950 10200 Connection ~ 5950 10200 Wire Wire Line 5350 10250 5350 10200 Connection ~ 5350 10200 Wire Wire Line 6550 10100 6550 10200 Connection ~ 6250 10200 Wire Wire Line 5350 10550 5350 10600 Wire Wire Line 5350 10600 5950 10600 Wire Wire Line 6550 10550 6550 10600 Wire Wire Line 6250 10550 6250 10600 Connection ~ 6250 10600 Wire Wire Line 5950 10550 5950 10600 Connection ~ 5950 10600 Connection ~ 6550 10600 Connection ~ 6250 9850 Wire Wire Line 6700 2950 7500 2950 Wire Wire Line 6700 3050 7500 3050 Wire Wire Line 4250 3100 4750 3100 Wire Wire Line 4250 3200 4750 3200 Wire Wire Line 3000 8700 3400 8700 Wire Wire Line 1950 7300 1950 7350 Wire Wire Line 1950 7800 1950 7700 Wire Wire Line 1950 7350 2500 7350 Connection ~ 1950 7350 Wire Wire Line 3350 9100 3400 9100 Wire Wire Line 3050 9100 3000 9100 Wire Wire Line 3000 8700 3000 9100 Wire Wire Line 1750 9150 1850 9150 Wire Wire Line 1750 8650 1850 8650 Wire Wire Line 2150 8650 2250 8650 Wire Wire Line 2150 9150 2250 9150 Wire Wire Line 2600 8750 2600 8650 Connection ~ 2600 8650 Wire Wire Line 2600 9050 2600 9150 Connection ~ 2600 9150 Wire Wire Line 3400 8850 2850 8850 Wire Wire Line 2850 8850 2850 8650 Wire Wire Line 3400 8950 2850 8950 Wire Wire Line 2850 8950 2850 9150 Connection ~ 1750 9150 Connection ~ 3000 9100 Wire Wire Line 1950 6950 1950 7000 Wire Wire Line 3000 8550 3400 8550 Connection ~ 6550 10200 Connection ~ 6250 9400 Wire Wire Line 6250 9150 6250 9100 Wire Wire Line 5000 8550 5200 8550 Wire Wire Line 5400 8550 6450 8550 Wire Wire Line 5000 8700 5300 8700 Wire Wire Line 5650 8700 5700 8700 Wire Wire Line 6150 8700 6050 8700 $Comp L SDWire:+3V3 #PWR030 U 1 1 58804660 P 4700 2650 F 0 "#PWR030" H 4700 2500 50 0001 C CNN F 1 "+3V3" H 4715 2823 50 0000 C CNN F 2 "" H 4700 2650 50 0000 C CNN F 3 "" H 4700 2650 50 0000 C CNN 1 4700 2650 1 0 0 -1 $EndComp Wire Wire Line 4700 2650 4700 2850 Wire Wire Line 4700 2850 4750 2850 NoConn ~ 6700 2850 NoConn ~ 6700 3200 Wire Wire Line 7600 4000 6700 4000 Wire Wire Line 7600 3900 6700 3900 Wire Wire Line 7600 4950 6700 4950 Wire Wire Line 7600 4650 6700 4650 Wire Wire Line 7600 4300 6700 4300 Wire Wire Line 7600 4200 6700 4200 $Comp L SDWire:GND #PWR031 U 1 1 58804670 P 6800 5600 F 0 "#PWR031" H 6800 5350 50 0001 C CNN F 1 "GND" H 6800 5450 50 0000 C CNN F 2 "" H 6800 5600 60 0000 C CNN F 3 "" H 6800 5600 60 0000 C CNN 1 6800 5600 -1 0 0 -1 $EndComp Wire Wire Line 6800 5600 6800 4100 Wire Wire Line 6800 4100 6700 4100 Wire Wire Line 6700 5500 7600 5500 NoConn ~ 6700 3700 NoConn ~ 6700 3800 NoConn ~ 6700 4400 NoConn ~ 6700 4550 NoConn ~ 6700 4750 NoConn ~ 6700 4850 NoConn ~ 6700 5050 NoConn ~ 6700 5200 NoConn ~ 6700 5300 NoConn ~ 6700 5400 $Comp L SDWire:LED_ALT D1 U 1 1 5880468B P 5500 8700 F 0 "D1" H 5538 8582 50 0000 R CNN F 1 "OSB50402C1E" H 5850 8800 50 0000 R CNN F 2 "LEDs:LED_0402" H 5500 8700 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/e7968ac30ed464eff9ee981ed51f3040/OSXX0402C1E.pdf" H 5500 8700 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/osb50402c1e/diody-led-smd-kolorowe/optosupply/" V 5500 8700 60 0001 C CNN "Shop link" F 5 "OSB50402C1E" H 5500 8700 60 0001 C CNN "Symbol" F 6 "0.3351" H 5500 8700 60 0001 C CNN "Price" 1 5500 8700 -1 0 0 1 $EndComp $Comp L SDWire:C C5 U 1 1 588046FB P 2250 9950 F 0 "C5" H 2250 10050 50 0000 L CNN F 1 "1uF/16V" V 2100 9800 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 2288 9800 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 2250 9950 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05a105kp5nnnc/kondensatory-mlcc-smd-0402/samsung/" H 2250 9950 60 0001 C CNN "Shop link" F 5 "CL05A105KP5NNNC" H 2250 9950 60 0001 C CNN "Symbol" F 6 "0.01307" H 2250 9950 60 0001 C CNN "Price" 1 2250 9950 1 0 0 -1 $EndComp $Comp L SDWire:R R3 U 1 1 5880470B P 2250 8900 F 0 "R3" H 2150 8950 50 0000 C CNN F 1 "1M" H 2150 9050 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 2180 8900 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 2250 8900 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw04021m00jntdbc/rezystory-smd-0402/vishay/" V 2250 8900 60 0001 C CNN "Shop link" F 5 "CRCW04021M00JNTDBC" H 2250 8900 60 0001 C CNN "Symbol" F 6 "0.01897" H 2250 8900 60 0001 C CNN "Price" 1 2250 8900 -1 0 0 1 $EndComp Wire Wire Line 2250 8750 2250 8650 Connection ~ 2250 8650 Wire Wire Line 2250 9050 2250 9150 Connection ~ 2250 9150 Text Label 7600 3900 2 60 ~ 0 DAT0_TS Text Label 7600 4000 2 60 ~ 0 DAT1_TS Text Label 7600 4200 2 60 ~ 0 DAT2_TS Text Label 7600 4300 2 60 ~ 0 DAT3_TS Text Label 7600 4650 2 60 ~ 0 CMD_TS Text Label 7600 4950 2 60 ~ 0 CLK_TS Text Label 7600 5500 2 60 ~ 0 ~CD_TS NoConn ~ 6700 3300 NoConn ~ 6700 3400 Text Label 10800 6200 0 60 ~ 0 DAT1_TS Text Label 10800 5300 0 60 ~ 0 DAT0_TS Text Label 10800 5600 0 60 ~ 0 CLK_TS Text Label 10800 5900 0 60 ~ 0 CMD_TS Text Label 10800 5000 0 60 ~ 0 DAT3_TS Text Label 10800 4700 0 60 ~ 0 DAT2_TS Text Label 6450 8550 2 60 ~ 0 VDD_TS $Comp L SDWire:usd-plug J1 U 1 1 5881C318 P 5950 6550 F 0 "J1" H 6278 6403 60 0000 L CNN F 1 "usd-plug" H 6278 6297 60 0000 L CNN F 2 "connectors:usd" H 5950 6550 60 0001 C CNN F 3 "" H 5950 6550 60 0000 C CNN 1 5950 6550 -1 0 0 -1 $EndComp Wire Wire Line 6150 6900 6200 6900 Wire Wire Line 6200 6900 6200 7150 $Comp L SDWire:USB_OTG_MICRO_USB P1 U 1 1 588237A0 P 2000 2850 F 0 "P1" V 1666 2774 50 0000 C CNN F 1 "USB_OTG_MICRO_USB" V 1666 2774 50 0001 C CNN F 2 "mux-footprints:micro_sub_molex" V 1666 2774 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/b7989e722b05f5084c507fb3ad8f02cb/MX-105017-0001.pdf" V 1666 2774 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/mx-105017-0001/zlacza-usb-i-ieee1394/molex/1050170001/" V 2000 2850 60 0001 C CNN "Shop link" F 5 "1050170001" V 2000 2850 60 0001 C CNN "Symbol" F 6 "1.44" V 2000 2850 60 0001 C CNN "Price" 1 2000 2850 0 -1 1 0 $EndComp Text Label 1450 1250 0 60 ~ 0 VDD Wire Wire Line 2800 2650 2300 2650 Text Label 2800 2650 2 60 ~ 0 VDD $Comp L SDWire:GND #PWR032 U 1 1 588263FD P 2350 3100 F 0 "#PWR032" H 2350 2850 50 0001 C CNN F 1 "GND" H 2350 2950 50 0000 C CNN F 2 "" H 2350 3100 60 0000 C CNN F 3 "" H 2350 3100 60 0000 C CNN 1 2350 3100 -1 0 0 -1 $EndComp Wire Wire Line 2300 3050 2350 3050 Wire Wire Line 2350 3050 2350 3100 $Comp L SDWire:GND #PWR033 U 1 1 58826C23 P 1900 3850 F 0 "#PWR033" H 1900 3600 50 0001 C CNN F 1 "GND" H 1900 3700 50 0000 C CNN F 2 "" H 1900 3850 60 0000 C CNN F 3 "" H 1900 3850 60 0000 C CNN 1 1900 3850 -1 0 0 -1 $EndComp $Comp L SDWire:R R2 U 1 1 58827C67 P 2100 3550 F 0 "R2" H 2200 3700 50 0000 C CNN F 1 "10K" V 2200 3550 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 2030 3550 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 2100 3550 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040210k0jntdbc/rezystory-smd-0402/vishay/" V 2100 3550 60 0001 C CNN "Shop link" F 5 "CRCW040210K0JNTDBC" H 2100 3550 60 0001 C CNN "Symbol" F 6 "0.01897" H 2100 3550 60 0001 C CNN "Price" 1 2100 3550 1 0 0 -1 $EndComp Wire Wire Line 1700 3400 1700 3350 Wire Wire Line 1700 3350 1900 3350 Wire Wire Line 2100 3350 2100 3400 Wire Wire Line 1700 3700 1700 3750 Wire Wire Line 1700 3750 1900 3750 Wire Wire Line 2100 3750 2100 3700 Wire Wire Line 1900 3250 1900 3350 Connection ~ 1900 3350 Wire Wire Line 1900 3750 1900 3850 Connection ~ 1900 3750 Text Label 4250 3100 0 60 ~ 0 USB_UP+ Text Label 4250 3200 0 60 ~ 0 USB_UP- Wire Wire Line 2800 2850 2300 2850 Wire Wire Line 2800 2750 2300 2750 Text Label 2800 2850 2 60 ~ 0 USB_UP+ Text Label 2800 2750 2 60 ~ 0 USB_UP- NoConn ~ 2300 2950 $Comp L SDWire:Ferrite_Bead_Small L2 U 1 1 5882DB0D P 5300 8550 F 0 "L2" V 5150 8350 50 0000 L CNN F 1 "BLM15PD121SN1D" V 5150 8550 50 0000 L CNN F 2 "Resistors_SMD:R_0402" H 5400 8459 50 0001 L CNN F 3 "" H 5400 8459 50 0001 L CNN F 4 "http://www.tme.eu/pl/details/blm15pd121sn1d/ferryty-koraliki/murata/" H 5300 8550 60 0001 C CNN "Shop link" F 5 "0.04825" H 5300 8550 60 0001 C CNN "Price" F 6 "BLM15PD121SN1D" V 5300 8550 60 0001 C CNN "Symbol" 1 5300 8550 0 1 1 0 $EndComp $Comp L SDWire:Ferrite_Bead_Small L1 U 1 1 5882E1A4 P 2650 1250 F 0 "L1" V 2450 1200 50 0000 L CNN F 1 "BLM15PD121SN1D" V 2550 900 50 0000 L CNN F 2 "Resistors_SMD:R_0402" H 2750 1159 50 0001 L CNN F 3 "" H 2750 1159 50 0001 L CNN F 4 "http://www.tme.eu/pl/details/blm15pd121sn1d/ferryty-koraliki/murata/" H 2650 1250 60 0001 C CNN "Shop link" F 5 "0.04825" H 2650 1250 60 0001 C CNN "Price" F 6 "BLM15PD121SN1D" V 2650 1250 60 0001 C CNN "Symbol" 1 2650 1250 0 1 1 0 $EndComp Wire Wire Line 1450 1250 1850 1250 $Comp L SDWire:FT200XD U3 U 1 1 58838D1F P 9900 8250 F 0 "U3" H 10350 8850 50 0000 C CNN F 1 "FT200XD" H 10300 8750 50 0000 C CNN F 2 "mux-footprints:DFN-10-1EP_3x3mm_Pitch0.5mm" H 9900 8936 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/8125c2e118ba8e97fd6be18cfe334069/DS_FT200XD.pdf" H 9900 8250 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/ft200xd-t/uklady-scalone-interfejs-usb/ftdi/" H 9900 8250 60 0001 C CNN "Shop link" F 5 "FT200XD-T" H 9900 8250 60 0001 C CNN "Symbol" F 6 "8.17" H 9900 8250 60 0001 C CNN "Price" 1 9900 8250 1 0 0 -1 $EndComp NoConn ~ 10600 7950 NoConn ~ 10600 8050 Wire Wire Line 1750 8650 1750 9150 $Comp L SDWire:GND #PWR034 U 1 1 5883C4C9 P 1950 7800 F 0 "#PWR034" H 1950 7550 50 0001 C CNN F 1 "GND" H 1950 7650 50 0000 C CNN F 2 "" H 1950 7800 60 0000 C CNN F 3 "" H 1950 7800 60 0000 C CNN 1 1950 7800 1 0 0 -1 $EndComp Text Label 2500 7350 2 60 ~ 0 ~RESET $Comp L SDWire:R R1 U 1 1 5883DA8A P 1950 7150 F 0 "R1" H 2050 7300 50 0000 C CNN F 1 "10K" V 2050 7150 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 1880 7150 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 1950 7150 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040210k0jntdbc/rezystory-smd-0402/vishay/" V 1950 7150 60 0001 C CNN "Shop link" F 5 "CRCW040210K0JNTDBC" H 1950 7150 60 0001 C CNN "Symbol" F 6 "0.01897" H 1950 7150 60 0001 C CNN "Price" 1 1950 7150 1 0 0 -1 $EndComp Text Label 3000 8550 0 60 ~ 0 ~RESET $Comp L SDWire:GND #PWR035 U 1 1 58841ADA P 9900 8950 F 0 "#PWR035" H 9900 8700 50 0001 C CNN F 1 "GND" H 9900 8800 50 0000 C CNN F 2 "" H 9900 8950 60 0000 C CNN F 3 "" H 9900 8950 60 0000 C CNN 1 9900 8950 1 0 0 -1 $EndComp Wire Wire Line 9800 8850 9800 8900 Wire Wire Line 9800 8900 9900 8900 Wire Wire Line 10000 8900 10000 8850 Wire Wire Line 9900 8950 9900 8900 Connection ~ 9900 8900 $Comp L SDWire:R R6 U 1 1 58842CE3 P 8500 8050 F 0 "R6" V 8400 8200 50 0000 C CNN F 1 "27R" V 8400 8000 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 8430 8050 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 8500 8050 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040227r0fktdbc/rezystory-smd-0402/vishay/" V 8500 8050 60 0001 C CNN "Shop link" F 5 "CRCW040227R0FKTDBC" H 8500 8050 60 0001 C CNN "Symbol" F 6 "0.02447" H 8500 8050 60 0001 C CNN "Price" 1 8500 8050 0 1 1 0 $EndComp Wire Wire Line 8650 8050 9000 8050 Wire Wire Line 9000 8050 9000 8150 Wire Wire Line 9000 8150 9200 8150 $Comp L SDWire:R R7 U 1 1 58843EA0 P 8500 8350 F 0 "R7" V 8400 8500 50 0000 C CNN F 1 "27R" V 8400 8300 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 8430 8350 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 8500 8350 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040227r0fktdbc/rezystory-smd-0402/vishay/" V 8500 8350 60 0001 C CNN "Shop link" F 5 "CRCW040227R0FKTDBC" H 8500 8350 60 0001 C CNN "Symbol" F 6 "0.02447" H 8500 8350 60 0001 C CNN "Price" 1 8500 8350 0 1 1 0 $EndComp Wire Wire Line 8650 8350 9000 8350 Wire Wire Line 9000 8350 9000 8250 Wire Wire Line 9000 8250 9200 8250 Text Label 7000 8050 0 60 ~ 0 USB_B- Text Label 7000 8350 0 60 ~ 0 USB_B+ Wire Wire Line 7000 8350 8100 8350 Wire Wire Line 7000 8050 7650 8050 $Comp L SDWire:+3V3 #PWR036 U 1 1 588468A0 P 9150 7550 F 0 "#PWR036" H 9150 7400 50 0001 C CNN F 1 "+3V3" H 9165 7723 50 0000 C CNN F 2 "" H 9150 7550 50 0000 C CNN F 3 "" H 9150 7550 50 0000 C CNN 1 9150 7550 1 0 0 -1 $EndComp Wire Wire Line 9800 7600 9800 7650 Wire Wire Line 10000 7600 10000 7650 Wire Wire Line 9150 7600 9800 7600 Wire Wire Line 9150 7550 9150 7600 Wire Wire Line 9150 7950 9200 7950 $Comp L SDWire:C C23 U 1 1 588480F0 P 8100 8550 F 0 "C23" H 7950 8700 50 0000 L CNN F 1 "47pF" V 8250 8400 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 8138 8400 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/e3e731e59cc68b1ab6d46b158bb05733/MURATA_GRM.pdf" H 8100 8550 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/grm1555c1h470ja01d/kondensatory-mlcc-smd-0402/murata/" H 8100 8550 60 0001 C CNN "Shop link" F 5 "GRM1555C1H470JA01D" H 8100 8550 60 0001 C CNN "Symbol" F 6 "0.01687" H 8100 8550 60 0001 C CNN "Price" 1 8100 8550 1 0 0 -1 $EndComp $Comp L SDWire:C C22 U 1 1 58848C61 P 7650 8550 F 0 "C22" H 7500 8700 50 0000 L CNN F 1 "47pF" V 7800 8400 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 7688 8400 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/e3e731e59cc68b1ab6d46b158bb05733/MURATA_GRM.pdf" H 7650 8550 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/grm1555c1h470ja01d/kondensatory-mlcc-smd-0402/murata/" H 7650 8550 60 0001 C CNN "Shop link" F 5 "GRM1555C1H470JA01D" H 7650 8550 60 0001 C CNN "Symbol" F 6 "0.01687" H 7650 8550 60 0001 C CNN "Price" 1 7650 8550 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR037 U 1 1 58848D2C P 7650 8800 F 0 "#PWR037" H 7650 8550 50 0001 C CNN F 1 "GND" H 7650 8650 50 0000 C CNN F 2 "" H 7650 8800 60 0000 C CNN F 3 "" H 7650 8800 60 0000 C CNN 1 7650 8800 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR038 U 1 1 58848DD9 P 8100 8800 F 0 "#PWR038" H 8100 8550 50 0001 C CNN F 1 "GND" H 8100 8650 50 0000 C CNN F 2 "" H 8100 8800 60 0000 C CNN F 3 "" H 8100 8800 60 0000 C CNN 1 8100 8800 1 0 0 -1 $EndComp Wire Wire Line 8100 8800 8100 8700 Wire Wire Line 8100 8400 8100 8350 Connection ~ 8100 8350 Wire Wire Line 7650 8400 7650 8050 Connection ~ 7650 8050 Wire Wire Line 7650 8800 7650 8700 $Comp L SDWire:C C24 U 1 1 58849A1D P 9150 8900 F 0 "C24" H 9000 9050 50 0000 L CNN F 1 "100nF/16V" V 9300 8700 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 9188 8750 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 9150 8900 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 9150 8900 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 9150 8900 60 0001 C CNN "Symbol" F 6 "0.00573" H 9150 8900 60 0001 C CNN "Price" 1 9150 8900 1 0 0 -1 $EndComp Connection ~ 9150 7950 $Comp L SDWire:GND #PWR039 U 1 1 5884B952 P 9150 9100 F 0 "#PWR039" H 9150 8850 50 0001 C CNN F 1 "GND" H 9150 8950 50 0000 C CNN F 2 "" H 9150 9100 60 0000 C CNN F 3 "" H 9150 9100 60 0000 C CNN 1 9150 9100 1 0 0 -1 $EndComp Wire Wire Line 9150 9100 9150 9050 Connection ~ 9150 7600 Connection ~ 9800 7600 Text Label 11200 8250 2 60 ~ 0 SOCKET_SEL Wire Wire Line 11200 8250 10600 8250 $Comp L SDWire:C C9 U 1 1 5885ABB2 P 3450 1450 F 0 "C9" H 3300 1600 50 0000 L CNN F 1 "100nF/16V" H 3250 1750 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 3488 1300 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 3450 1450 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 3450 1450 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 3450 1450 60 0001 C CNN "Symbol" F 6 "0.00573" H 3450 1450 60 0001 C CNN "Price" 1 3450 1450 1 0 0 -1 $EndComp $Comp L SDWire:C C11 U 1 1 5885B52B P 5400 1450 F 0 "C11" H 5250 1600 50 0000 L CNN F 1 "100nF/16V" H 5200 1750 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 5438 1300 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 5400 1450 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 5400 1450 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 5400 1450 60 0001 C CNN "Symbol" F 6 "0.00573" H 5400 1450 60 0001 C CNN "Price" 1 5400 1450 1 0 0 -1 $EndComp $Comp L SDWire:C C1 U 1 1 5885D1FA P 1700 3550 F 0 "C1" H 1700 3650 50 0000 L CNN F 1 "100nF/16V" V 1550 3350 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 1738 3400 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 1700 3550 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 1700 3550 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 1700 3550 60 0001 C CNN "Symbol" F 6 "0.00573" H 1700 3550 60 0001 C CNN "Price" 1 1700 3550 1 0 0 -1 $EndComp $Comp L SDWire:CP C14 U 1 1 588602ED P 5850 1450 F 0 "C14" H 5900 1550 50 0000 L CNN F 1 "10uF/10V" H 5900 1350 50 0000 L CNN F 2 "Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow" H 5888 1300 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/0ff508dea7a8224c6fb12ae10be076aa/KEM_T2005_T491.pdf" H 5850 1450 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/t491a106m016at/kondensatory-tantalowe-smd/kemet/" H 5850 1450 60 0001 C CNN "Shop link" F 5 "T491A106M016AT" H 5850 1450 60 0001 C CNN "Symbol" F 6 "0.32167" H 5850 1450 60 0001 C CNN "Price" 1 5850 1450 1 0 0 -1 $EndComp $Comp L SDWire:C C2 U 1 1 58861E57 P 1950 7550 F 0 "C2" H 1950 7650 50 0000 L CNN F 1 "100nF/16V" V 1800 7350 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 1988 7400 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 1950 7550 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 1950 7550 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 1950 7550 60 0001 C CNN "Symbol" F 6 "0.00573" H 1950 7550 60 0001 C CNN "Price" 1 1950 7550 1 0 0 -1 $EndComp $Comp L SDWire:C C4 U 1 1 58863FB9 P 2000 9150 F 0 "C4" V 1850 9100 50 0000 L CNN F 1 "33p/50V" V 2150 9000 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 2038 9000 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/e3e731e59cc68b1ab6d46b158bb05733/MURATA_GRM.pdf" H 2000 9150 60 0001 C CNN F 4 "http://www.tme.eu/pl/details/grm1555c1h330ja01d/kondensatory-mlcc-smd-0402/murata/" V 2000 9150 60 0001 C CNN "Shop link" F 5 "GRM1555C1H330JA01D" V 2000 9150 60 0001 C CNN "Symbol" F 6 "0.01687" V 2000 9150 60 0001 C CNN "Price" 1 2000 9150 0 1 1 0 $EndComp $Comp L SDWire:C C19 U 1 1 5886BBE1 P 6250 9650 F 0 "C19" H 6100 9750 50 0000 L CNN F 1 "1uF/16V" V 6400 9500 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 6288 9500 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 6250 9650 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05a105kp5nnnc/kondensatory-mlcc-smd-0402/samsung/" H 6250 9650 60 0001 C CNN "Shop link" F 5 "CL05A105KP5NNNC" H 6250 9650 60 0001 C CNN "Symbol" F 6 "0.01307" H 6250 9650 60 0001 C CNN "Price" 1 6250 9650 1 0 0 -1 $EndComp $Comp L SDWire:C C21 U 1 1 5886BCF7 P 6550 10400 F 0 "C21" H 6400 10500 50 0000 L CNN F 1 "1uF/16V" V 6700 10250 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 6588 10250 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 6550 10400 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05a105kp5nnnc/kondensatory-mlcc-smd-0402/samsung/" H 6550 10400 60 0001 C CNN "Shop link" F 5 "CL05A105KP5NNNC" H 6550 10400 60 0001 C CNN "Symbol" F 6 "0.01307" H 6550 10400 60 0001 C CNN "Price" 1 6550 10400 1 0 0 -1 $EndComp $Comp L SDWire:C C6 U 1 1 5886C222 P 2600 9950 F 0 "C6" H 2600 10050 50 0000 L CNN F 1 "100nF/16V" H 2400 9600 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 2638 9800 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 2600 9950 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 2600 9950 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 2600 9950 60 0001 C CNN "Symbol" F 6 "0.00573" H 2600 9950 60 0001 C CNN "Price" 1 2600 9950 1 0 0 -1 $EndComp $Comp L SDWire:C C7 U 1 1 5886D25C P 2900 9950 F 0 "C7" H 2900 10050 50 0000 L CNN F 1 "1uF/16V" H 2750 10250 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 2938 9800 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 2900 9950 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05a105kp5nnnc/kondensatory-mlcc-smd-0402/samsung/" H 2900 9950 60 0001 C CNN "Shop link" F 5 "CL05A105KP5NNNC" H 2900 9950 60 0001 C CNN "Symbol" F 6 "0.01307" H 2900 9950 60 0001 C CNN "Price" 1 2900 9950 1 0 0 -1 $EndComp $Comp L SDWire:C C8 U 1 1 5886D400 P 3250 9950 F 0 "C8" H 3250 10050 50 0000 L CNN F 1 "100nF/16V" H 3050 9600 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 3288 9800 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 3250 9950 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 3250 9950 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 3250 9950 60 0001 C CNN "Symbol" F 6 "0.00573" H 3250 9950 60 0001 C CNN "Price" 1 3250 9950 1 0 0 -1 $EndComp $Comp L SDWire:C C15 U 1 1 5886F88D P 5650 9650 F 0 "C15" H 5650 9750 50 0000 L CNN F 1 "100nF/16V" H 5450 9350 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 5688 9500 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 5650 9650 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 5650 9650 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 5650 9650 60 0001 C CNN "Symbol" F 6 "0.00573" H 5650 9650 60 0001 C CNN "Price" 1 5650 9650 1 0 0 -1 $EndComp $Comp L SDWire:C C12 U 1 1 5886F9B8 P 5350 9650 F 0 "C12" H 5350 9750 50 0000 L CNN F 1 "100nF/16V" H 5150 10000 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 5388 9500 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 5350 9650 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 5350 9650 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 5350 9650 60 0001 C CNN "Symbol" F 6 "0.00573" H 5350 9650 60 0001 C CNN "Price" 1 5350 9650 1 0 0 -1 $EndComp $Comp L SDWire:C C17 U 1 1 5886FB2E P 5950 9650 F 0 "C17" H 5950 9750 50 0000 L CNN F 1 "100nF/16V" H 5750 10000 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 5988 9500 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 5950 9650 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 5950 9650 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 5950 9650 60 0001 C CNN "Symbol" F 6 "0.00573" H 5950 9650 60 0001 C CNN "Price" 1 5950 9650 1 0 0 -1 $EndComp $Comp L SDWire:C C13 U 1 1 58871AD4 P 5350 10400 F 0 "C13" H 5350 10500 50 0000 L CNN F 1 "100nF/16V" H 5150 10700 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 5388 10250 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 5350 10400 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 5350 10400 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 5350 10400 60 0001 C CNN "Symbol" F 6 "0.00573" H 5350 10400 60 0001 C CNN "Price" 1 5350 10400 1 0 0 -1 $EndComp $Comp L SDWire:C C18 U 1 1 58871C5A P 5950 10400 F 0 "C18" H 5950 10500 50 0000 L CNN F 1 "100nF/16V" H 5750 10700 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 5988 10250 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 5950 10400 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 5950 10400 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 5950 10400 60 0001 C CNN "Symbol" F 6 "0.00573" H 5950 10400 60 0001 C CNN "Price" 1 5950 10400 1 0 0 -1 $EndComp $Comp L SDWire:C C20 U 1 1 58871DF9 P 6250 10400 F 0 "C20" H 6250 10500 50 0000 L CNN F 1 "100nF/16V" H 6050 10100 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 6288 10250 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 6250 10400 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 6250 10400 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 6250 10400 60 0001 C CNN "Symbol" F 6 "0.00573" H 6250 10400 60 0001 C CNN "Price" 1 6250 10400 1 0 0 -1 $EndComp $Comp L SDWire:C C26 U 1 1 58877E23 P 14550 6500 F 0 "C26" H 14400 6650 50 0000 L CNN F 1 "100nF/16V" V 14700 6250 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 14588 6350 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 14550 6500 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 14550 6500 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 14550 6500 60 0001 C CNN "Symbol" F 6 "0.00573" H 14550 6500 60 0001 C CNN "Price" 1 14550 6500 1 0 0 -1 $EndComp $Comp L SDWire:C C25 U 1 1 5887802E P 14200 6500 F 0 "C25" H 14050 6650 50 0000 L CNN F 1 "100nF/16V" V 14350 6250 50 0000 L CNN F 2 "Capacitors_SMD:C_0402" H 14238 6350 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/4a42202b32dab16128fe107dd69598cc/samsung-chip-cap.pdf" H 14200 6500 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/cl05b104ko5nnnd/kondensatory-mlcc-smd-0402/samsung/" H 14200 6500 60 0001 C CNN "Shop link" F 5 "CL05B104KO5NNND" H 14200 6500 60 0001 C CNN "Symbol" F 6 "0.00573" H 14200 6500 60 0001 C CNN "Price" 1 14200 6500 1 0 0 -1 $EndComp $Comp L SDWire:CP C27 U 1 1 588786DB P 14900 6500 F 0 "C27" H 14950 6600 50 0000 L CNN F 1 "10uF/10V" H 14950 6400 50 0000 L CNN F 2 "Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow" H 14938 6350 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/0ff508dea7a8224c6fb12ae10be076aa/KEM_T2005_T491.pdf" H 14900 6500 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/t491a106m016at/kondensatory-tantalowe-smd/kemet/" H 14900 6500 60 0001 C CNN "Shop link" F 5 "T491A106M016AT" H 14900 6500 60 0001 C CNN "Symbol" F 6 "0.32167" H 14900 6500 60 0001 C CNN "Price" 1 14900 6500 1 0 0 -1 $EndComp $Comp L SDWire:4pinCrystal Y1 U 1 1 5887FAFB P 2600 8900 F 0 "Y1" V 2450 8800 50 0000 L CNN F 1 "24MHz" V 2250 8800 50 0000 L CNN F 2 "mux-footprints:Crystal_SMD_2520-4pin_2.5x2.0mm" H 2791 8809 50 0001 L CNN F 3 "http://www.tme.eu/pl/Document/43d4b8b2418f10b1847f5f6593a9a63f/cfpx-218.pdf" H 2791 8809 50 0001 L CNN F 4 "http://www.tme.eu/pl/details/24.00m-cfpx218/rezonatory-kwarcowe-smd/iqd-frequency-products/lfxtal053106bulk/" H 2600 8900 60 0001 C CNN "Shop link" F 5 "LFXTAL053106BULK" H 2600 8900 60 0001 C CNN "Symbol" F 6 "3.17805" H 2600 8900 60 0001 C CNN "Price" 1 2600 8900 0 1 1 0 $EndComp $Comp L SDWire:GND #PWR040 U 1 1 58880AB3 P 2450 9200 F 0 "#PWR040" H 2450 8950 50 0001 C CNN F 1 "GND" H 2450 9050 50 0000 C CNN F 2 "" H 2450 9200 60 0000 C CNN F 3 "" H 2450 9200 60 0000 C CNN 1 2450 9200 1 0 0 -1 $EndComp Wire Wire Line 2450 8900 2450 9200 $Comp L SDWire:GND #PWR041 U 1 1 58880CAC P 2750 9200 F 0 "#PWR041" H 2750 8950 50 0001 C CNN F 1 "GND" H 2750 9050 50 0000 C CNN F 2 "" H 2750 9200 60 0000 C CNN F 3 "" H 2750 9200 60 0000 C CNN 1 2750 9200 1 0 0 -1 $EndComp Wire Wire Line 2750 8900 2750 9200 $Comp L SDWire:SPX3819M5 U2 U 1 1 5881E410 P 4650 1300 F 0 "U2" H 4650 1617 50 0000 C CNN F 1 "SPX3819M5" H 4650 1526 50 0000 C CNN F 2 "TO_SOT_Packages_SMD:SOT-23-5" H 4650 1526 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/16637f822e97fb29c08daa0179c3e821/SPX3819-DTE.pdf" H 4650 1526 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/spx3819m5-l-3-3_tr/stabilizatory-napiecia-nieregulowane-ldo/exar/" H 4650 1300 60 0001 C CNN "Shop link" F 5 "2.34" H 4650 1300 60 0001 C CNN "Price" F 6 "SPX3819M5-L-3-3/TR" H 4650 1300 60 0001 C CNN "Symbol" 1 4650 1300 1 0 0 -1 $EndComp NoConn ~ 5050 1350 Wire Wire Line 4250 1350 4200 1350 Wire Wire Line 4200 1350 4200 1250 Connection ~ 4200 1250 Wire Wire Line 13000 5800 12700 5800 Wire Wire Line 13450 4800 13100 4800 Wire Wire Line 13100 4800 13100 5200 Wire Wire Line 13100 5200 12700 5200 $Comp L SDWire:LED_ALT D3 U 1 1 5883505B P 15100 3550 F 0 "D3" H 15138 3432 50 0000 R CNN F 1 "BLUE" H 15550 3600 50 0000 R CNN F 2 "LEDs:LED_0402" H 15100 3550 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/1af677b42c0c7d60f99d6fa71eb6bc05/KPG-1005PBC-TT-5MAV(Ver.1B).pdf" H 15100 3550 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/kpg-1005pbc-tt/diody-led-smd-kolorowe/kingbright-electronic/kpg-1005pbc-tt-5mav/" V 15100 3550 60 0001 C CNN "Shop link" F 5 "KPG-1005PBC-TT-5MAV" H 15100 3550 60 0001 C CNN "Symbol" F 6 "0.6482" H 15100 3550 60 0001 C CNN "Price" 1 15100 3550 1 0 0 -1 $EndComp $Comp L SDWire:LED_ALT D2 U 1 1 588377EF P 2250 1450 F 0 "D2" V 2350 1350 50 0000 R CNN F 1 "RED" V 2250 1350 50 0000 R CNN F 2 "LEDs:LED_0402" H 2250 1450 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/7f7572d59cd98b61c96b6e010860b26c/KPG-1005SURC-TT(Ver.1A).pdf" H 2250 1450 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/kpg-1005surc-tt/diody-led-smd-kolorowe/kingbright-electronic/" V 2250 1450 60 0001 C CNN "Shop link" F 5 "KPG-1005SURC-TT" H 2250 1450 60 0001 C CNN "Symbol" F 6 "0.3819" H 2250 1450 60 0001 C CNN "Price" 1 2250 1450 0 -1 -1 0 $EndComp $Comp L SDWire:R R11 U 1 1 588381DA P 2050 1850 F 0 "R11" H 2100 1900 50 0000 L CNN F 1 "1K" H 2100 1800 50 0000 L CNN F 2 "Resistors_SMD:R_0402" V 1980 1850 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/1a2bc76e2be68b3b1670068306778ce6/rc0402yageo.pdf" H 2050 1850 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/rc0402fr-071k/rezystory-smd-0402/yageo/" V 2050 1850 60 0001 C CNN "Shop link" F 5 "RC0402FR-071K" H 2050 1850 60 0001 C CNN "Symbol" F 6 "0.02375" H 2050 1850 60 0001 C CNN "Price" 1 2050 1850 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR042 U 1 1 58838797 P 2050 2050 F 0 "#PWR042" H 2050 1800 50 0001 C CNN F 1 "GND" H 2050 1900 50 0000 C CNN F 2 "" H 2050 2050 60 0000 C CNN F 3 "" H 2050 2050 60 0000 C CNN 1 2050 2050 1 0 0 -1 $EndComp Wire Wire Line 2050 2000 2050 2050 Wire Wire Line 2050 1650 2050 1700 Wire Wire Line 2250 1300 2250 1250 Connection ~ 2250 1250 $Comp L SDWire:LED_ALT D4 U 1 1 5883DBC6 P 15100 2500 F 0 "D4" H 15138 2382 50 0000 R CNN F 1 "GREEN" H 15600 2550 50 0000 R CNN F 2 "LEDs:LED_0402" H 15100 2500 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/a570188e37a4e1932c6f215ea3ff9ddc/KPG-1005VGC-TT-5MAV(Ver.1B).pdf" H 15100 2500 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/kpg-1005vgc-tt/diody-led-smd-kolorowe/kingbright-electronic/kpg-1005vgc-tt-5mav/" V 15100 2500 60 0001 C CNN "Shop link" F 5 "KPG-1005VGC-TT-5MAV" H 15100 2500 60 0001 C CNN "Symbol" F 6 "0.7558" H 15100 2500 60 0001 C CNN "Price" 1 15100 2500 1 0 0 -1 $EndComp $Comp L SDWire:R R12 U 1 1 58841418 P 14700 3550 F 0 "R12" V 14600 3550 50 0000 C CNN F 1 "1K" V 14800 3550 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 14630 3550 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/1a2bc76e2be68b3b1670068306778ce6/rc0402yageo.pdf" H 14700 3550 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/rc0402fr-071k/rezystory-smd-0402/yageo/" V 14700 3550 60 0001 C CNN "Shop link" F 5 "RC0402FR-071K" H 14700 3550 60 0001 C CNN "Symbol" F 6 "0.02375" H 14700 3550 60 0001 C CNN "Price" 1 14700 3550 0 1 1 0 $EndComp Wire Wire Line 14850 3550 14900 3550 $Comp L SDWire:R R13 U 1 1 58842A16 P 14700 2500 F 0 "R13" V 14600 2500 50 0000 C CNN F 1 "1K" V 14800 2500 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 14630 2500 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/1a2bc76e2be68b3b1670068306778ce6/rc0402yageo.pdf" H 14700 2500 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/rc0402fr-071k/rezystory-smd-0402/yageo/" V 14700 2500 60 0001 C CNN "Shop link" F 5 "RC0402FR-071K" H 14700 2500 60 0001 C CNN "Symbol" F 6 "0.02375" H 14700 2500 60 0001 C CNN "Price" 1 14700 2500 0 1 1 0 $EndComp Wire Wire Line 14850 2500 14900 2500 Wire Wire Line 15350 2500 15250 2500 Wire Wire Line 15350 2500 15350 3550 Wire Wire Line 15250 3550 15350 3550 Connection ~ 15350 3550 $Comp L SDWire:+3V3 #PWR043 U 1 1 58843207 P 15350 2050 F 0 "#PWR043" H 15350 1900 50 0001 C CNN F 1 "+3V3" H 15350 2190 50 0000 C CNN F 2 "" H 15350 2050 60 0000 C CNN F 3 "" H 15350 2050 60 0000 C CNN 1 15350 2050 1 0 0 -1 $EndComp $Comp L SDWire:LED_ALT D7 U 1 1 58844702 P 15100 3800 F 0 "D7" H 15138 3682 50 0000 R CNN F 1 "BLUE" H 15550 3850 50 0000 R CNN F 2 "LEDs:LED_0402" H 15100 3800 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/1af677b42c0c7d60f99d6fa71eb6bc05/KPG-1005PBC-TT-5MAV(Ver.1B).pdf" H 15100 3800 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/kpg-1005pbc-tt/diody-led-smd-kolorowe/kingbright-electronic/kpg-1005pbc-tt-5mav/" V 15100 3800 60 0001 C CNN "Shop link" F 5 "KPG-1005PBC-TT-5MAV" H 15100 3800 60 0001 C CNN "Symbol" F 6 "0.6482" H 15100 3800 60 0001 C CNN "Price" 1 15100 3800 1 0 0 -1 $EndComp Wire Wire Line 15250 3800 15350 3800 Wire Wire Line 14950 3800 14900 3800 Wire Wire Line 14900 3800 14900 3550 Connection ~ 14900 3550 $Comp L SDWire:LED_ALT D8 U 1 1 588469C5 P 15100 2250 F 0 "D8" H 15138 2132 50 0000 R CNN F 1 "GREEN" H 15600 2300 50 0000 R CNN F 2 "LEDs:LED_0402" H 15100 2250 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/a570188e37a4e1932c6f215ea3ff9ddc/KPG-1005VGC-TT-5MAV(Ver.1B).pdf" H 15100 2250 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/kpg-1005vgc-tt/diody-led-smd-kolorowe/kingbright-electronic/kpg-1005vgc-tt-5mav/" V 15100 2250 60 0001 C CNN "Shop link" F 5 "KPG-1005VGC-TT-5MAV" H 15100 2250 60 0001 C CNN "Symbol" F 6 "0.7558" H 15100 2250 60 0001 C CNN "Price" 1 15100 2250 1 0 0 -1 $EndComp Wire Wire Line 14950 2250 14900 2250 Wire Wire Line 14900 2250 14900 2500 Connection ~ 14900 2500 Wire Wire Line 15250 2250 15350 2250 $Comp L SDWire:LED_ALT D6 U 1 1 58849DC5 P 5500 9000 F 0 "D6" H 5538 8882 50 0000 R CNN F 1 "OSB50402C1E" H 5850 9100 50 0000 R CNN F 2 "LEDs:LED_0402" H 5500 9000 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/e7968ac30ed464eff9ee981ed51f3040/OSXX0402C1E.pdf" H 5500 9000 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/osb50402c1e/diody-led-smd-kolorowe/optosupply/" V 5500 9000 60 0001 C CNN "Shop link" F 5 "OSB50402C1E" H 5500 9000 60 0001 C CNN "Symbol" F 6 "0.3351" H 5500 9000 60 0001 C CNN "Price" 1 5500 9000 -1 0 0 1 $EndComp Wire Wire Line 5650 9000 5700 9000 Wire Wire Line 5700 9000 5700 8700 Connection ~ 5700 8700 Wire Wire Line 5350 9000 5300 9000 Wire Wire Line 5300 9000 5300 8700 Connection ~ 5300 8700 $Comp L SDWire:LED_ALT D5 U 1 1 5884B908 P 1850 1450 F 0 "D5" V 1950 1700 50 0000 R CNN F 1 "RED" V 1850 1700 50 0000 R CNN F 2 "LEDs:LED_0402" H 1850 1450 50 0001 C CNN F 3 "http://www.tme.eu/pl/Document/7f7572d59cd98b61c96b6e010860b26c/KPG-1005SURC-TT(Ver.1A).pdf" H 1850 1450 50 0001 C CNN F 4 "http://www.tme.eu/pl/details/kpg-1005surc-tt/diody-led-smd-kolorowe/kingbright-electronic/" V 1850 1450 60 0001 C CNN "Shop link" F 5 "KPG-1005SURC-TT" H 1850 1450 60 0001 C CNN "Symbol" F 6 "0.3819" H 1850 1450 60 0001 C CNN "Price" 1 1850 1450 0 -1 -1 0 $EndComp Wire Wire Line 1850 1300 1850 1250 Connection ~ 1850 1250 Wire Wire Line 1850 1600 1850 1650 Wire Wire Line 1850 1650 2050 1650 Wire Wire Line 2250 1650 2250 1600 Connection ~ 2050 1650 Wire Wire Line 9200 8550 9150 8550 Connection ~ 9150 8550 Wire Wire Line 3900 1250 4200 1250 Wire Wire Line 3450 1250 3900 1250 Wire Wire Line 5400 1250 5850 1250 Wire Wire Line 5850 1250 5850 1300 Wire Wire Line 11400 6400 11500 6400 Wire Wire Line 14550 6300 14550 6350 Wire Wire Line 3250 9750 3400 9750 Wire Wire Line 3250 10200 3400 10200 Wire Wire Line 2900 10200 3250 10200 Wire Wire Line 2600 10200 2900 10200 Wire Wire Line 2250 10200 2250 10250 Wire Wire Line 2600 9400 3400 9400 Wire Wire Line 5050 10000 5050 10100 Wire Wire Line 5050 10100 5050 10200 Wire Wire Line 5050 9500 5050 9600 Wire Wire Line 5050 9400 5350 9400 Wire Wire Line 5950 9400 6250 9400 Wire Wire Line 5650 9400 5950 9400 Wire Wire Line 5350 9400 5650 9400 Wire Wire Line 5950 9850 6250 9850 Wire Wire Line 5650 9850 5950 9850 Wire Wire Line 5050 10200 5350 10200 Wire Wire Line 5950 10200 6250 10200 Wire Wire Line 5350 10200 5950 10200 Wire Wire Line 6250 10200 6550 10200 Wire Wire Line 6250 10600 6550 10600 Wire Wire Line 5950 10600 6250 10600 Wire Wire Line 6550 10600 6550 10650 Wire Wire Line 6250 9850 6250 9900 Wire Wire Line 1950 7350 1950 7400 Wire Wire Line 2600 8650 2850 8650 Wire Wire Line 2600 9150 2850 9150 Wire Wire Line 1750 9150 1750 9200 Wire Wire Line 3000 9100 3000 9150 Wire Wire Line 6550 10200 6550 10250 Wire Wire Line 6250 9400 6250 9500 Wire Wire Line 2250 8650 2600 8650 Wire Wire Line 2250 9150 2600 9150 Wire Wire Line 1900 3350 2100 3350 Wire Wire Line 1900 3750 2100 3750 Wire Wire Line 9900 8900 10000 8900 Wire Wire Line 8100 8350 8350 8350 Wire Wire Line 7650 8050 8350 8050 Wire Wire Line 9150 7950 9150 8550 Wire Wire Line 9150 7600 9150 7950 Wire Wire Line 9800 7600 10000 7600 Wire Wire Line 4200 1250 4250 1250 Wire Wire Line 2250 1250 2550 1250 Wire Wire Line 15350 3550 15350 3800 Wire Wire Line 14900 3550 14950 3550 Wire Wire Line 14900 2500 14950 2500 Wire Wire Line 15350 2250 15350 2500 Wire Wire Line 5700 8700 5750 8700 Wire Wire Line 5300 8700 5350 8700 Wire Wire Line 1850 1250 2250 1250 Wire Wire Line 2050 1650 2250 1650 Wire Wire Line 9150 8550 9150 8750 $Comp L SDWire:MMBT4403LT1 Q3 U 1 1 5A69265B P 12450 2250 F 0 "Q3" V 12778 2250 50 0000 C CNN F 1 "MMBT4403LT1" V 12687 2250 50 0000 C CNN F 2 "TO_SOT_Packages_SMD:SOT-23" H 12650 2175 50 0001 L CIN F 3 "https://www.tme.eu/pl/Document/b8fb0b2a2196eb2b0100116bda4d5a47/mmbt4403.pdf" H 12450 2250 50 0001 L CNN F 4 "https://www.tme.eu/pl/details/mmbt4403lt1g/tranzystory-pnp-smd/on-semiconductor/" V 12450 2250 50 0001 C CNN "Shop link" F 5 "ON SEMICONDUCTOR" V 12450 2250 50 0001 C CNN "Manufacturer" F 6 "MMBT4403LT1G" V 12450 2250 50 0001 C CNN "Symbol" 1 12450 2250 0 1 -1 0 $EndComp $Comp L SDWire:MMBT4403LT1 Q4 U 1 1 5A8F3224 P 12450 3300 F 0 "Q4" V 12778 3300 50 0000 C CNN F 1 "MMBT4403LT1" V 12687 3300 50 0000 C CNN F 2 "TO_SOT_Packages_SMD:SOT-23" H 12650 3225 50 0001 L CIN F 3 "https://www.tme.eu/pl/Document/b8fb0b2a2196eb2b0100116bda4d5a47/mmbt4403.pdf" H 12450 3300 50 0001 L CNN F 4 "https://www.tme.eu/pl/details/mmbt4403lt1g/tranzystory-pnp-smd/on-semiconductor/" V 12450 3300 50 0001 C CNN "Shop link" F 5 "ON SEMICONDUCTOR" V 12450 3300 50 0001 C CNN "Manufacturer" F 6 "MMBT4403LT1G" V 12450 3300 50 0001 C CNN "Symbol" 1 12450 3300 0 1 -1 0 $EndComp Wire Wire Line 11400 3200 12250 3200 Wire Wire Line 11400 2150 12250 2150 Text Label 11600 2850 2 60 ~ 0 ~CD_TS $Comp L SDWire:R R10 U 1 1 58832FB0 P 11650 3550 F 0 "R10" V 11550 3550 50 0000 C CNN F 1 "10K" V 11750 3550 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 11580 3550 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 11650 3550 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040210k0jntdbc/rezystory-smd-0402/vishay/" V 11650 3550 60 0001 C CNN "Shop link" F 5 "CRCW040210K0JNTDBC" H 11650 3550 60 0001 C CNN "Symbol" F 6 "0.01897" H 11650 3550 60 0001 C CNN "Price" 1 11650 3550 0 1 1 0 $EndComp $Comp L SDWire:R R9 U 1 1 58831BBA P 11650 2500 F 0 "R9" V 11550 2500 50 0000 C CNN F 1 "10K" V 11750 2500 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 11580 2500 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 11650 2500 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040210k0jntdbc/rezystory-smd-0402/vishay/" V 11650 2500 60 0001 C CNN "Shop link" F 5 "CRCW040210K0JNTDBC" H 11650 2500 60 0001 C CNN "Symbol" F 6 "0.01897" H 11650 2500 60 0001 C CNN "Price" 1 11650 2500 0 1 1 0 $EndComp Text Label 8910 2850 0 60 ~ 0 SOCKET_SEL Wire Wire Line 9660 3900 9660 2850 Text Label 9700 2150 0 60 ~ 0 VDD_TS Wire Wire Line 12450 3550 12450 3500 Wire Wire Line 12850 3200 12650 3200 Wire Wire Line 12450 2500 12450 2450 Wire Wire Line 8910 2850 9660 2850 Wire Wire Line 11400 3550 11400 3200 Wire Wire Line 11500 3550 11400 3550 Wire Wire Line 11400 2500 11400 2150 Wire Wire Line 11500 2500 11400 2500 Wire Wire Line 10360 2600 10360 2650 Wire Wire Line 10360 3050 10360 3100 Connection ~ 11400 3200 Wire Wire Line 11050 3200 11400 3200 Connection ~ 11400 2150 Wire Wire Line 9700 2150 11400 2150 Wire Wire Line 12650 2150 12850 2150 $Comp L SDWire:+3V3 #PWR013 U 1 1 58802A92 P 10360 2600 F 0 "#PWR013" H 10360 2450 50 0001 C CNN F 1 "+3V3" H 10360 2740 50 0000 C CNN F 2 "" H 10360 2600 60 0000 C CNN F 3 "" H 10360 2600 60 0000 C CNN 1 10360 2600 1 0 0 -1 $EndComp Text Label 12900 2700 0 60 ~ 0 USD_VDD $Comp L SDWire:GND #PWR010 U 1 1 58802A56 P 10360 3100 F 0 "#PWR010" H 10360 2850 50 0001 C CNN F 1 "GND" H 10360 2950 50 0000 C CNN F 2 "" H 10360 3100 60 0000 C CNN F 3 "" H 10360 3100 60 0000 C CNN 1 10360 3100 -1 0 0 -1 $EndComp Text Notes 8750 3010 0 60 ~ 0 0 - DUT, 1 - TS Text Label 11100 3200 0 60 ~ 0 VDD_DUT $Comp L SDWire:74AHC1G14 U4 U 1 1 58802A47 P 10410 2850 F 0 "U4" H 10555 2965 40 0000 C CNN F 1 "MC74HC1G04DTT1G" H 10710 2700 40 0000 C CNN F 2 "TO_SOT_Packages_SMD:SOT-23-5" H 10505 2715 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/0bd9f377abd5f258bb30856efe9f427e/mc74hc1g04.pdf" H 10555 2965 60 0001 C CNN F 4 "http://www.tme.eu/pl/details/mc74hc1g04dtt1g/bramki-inwertery/on-semiconductor/" H 10410 2850 60 0001 C CNN "Shop link" F 5 "MC74HC1G04DTT1G" H 10410 2850 60 0001 C CNN "Symbol" F 6 "0.4371" H 10410 2850 60 0001 C CNN "Price" 1 10410 2850 1 0 0 -1 $EndComp Wire Wire Line 12850 2700 12850 3200 Wire Wire Line 12850 2150 12850 2700 Connection ~ 12850 2700 Wire Wire Line 12850 2700 13350 2700 Wire Wire Line 11800 2500 12450 2500 Wire Wire Line 12450 2850 12450 2500 Connection ~ 12450 2500 $Comp L SDWire:R R15 U 1 1 5ABE2A60 P 11950 3900 F 0 "R15" V 11850 3900 50 0000 C CNN F 1 "1K" V 12050 3900 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 11880 3900 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/1a2bc76e2be68b3b1670068306778ce6/rc0402yageo.pdf" H 11950 3900 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/rc0402fr-071k/rezystory-smd-0402/yageo/" V 11950 3900 60 0001 C CNN "Shop link" F 5 "RC0402FR-071K" H 11950 3900 60 0001 C CNN "Symbol" F 6 "0.02375" H 11950 3900 60 0001 C CNN "Price" 1 11950 3900 0 1 1 0 $EndComp Wire Wire Line 11800 3550 12450 3550 Wire Wire Line 12100 3900 12450 3900 Wire Wire Line 12450 3900 12450 3550 Connection ~ 12450 3550 $Comp L SDWire:R R14 U 1 1 5AC1EF51 P 11950 2850 F 0 "R14" V 11850 2850 50 0000 C CNN F 1 "1K" V 12050 2850 50 0000 C CNN F 2 "Resistors_SMD:R_0402" V 11880 2850 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/1a2bc76e2be68b3b1670068306778ce6/rc0402yageo.pdf" H 11950 2850 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/rc0402fr-071k/rezystory-smd-0402/yageo/" V 11950 2850 60 0001 C CNN "Shop link" F 5 "RC0402FR-071K" H 11950 2850 60 0001 C CNN "Symbol" F 6 "0.02375" H 11950 2850 60 0001 C CNN "Price" 1 11950 2850 0 1 1 0 $EndComp Wire Wire Line 12100 2850 12450 2850 Connection ~ 15350 2500 Wire Wire Line 15350 2050 15350 2250 Connection ~ 15350 2250 Wire Wire Line 14550 2500 13950 2500 Wire Wire Line 14550 3550 13950 3550 Text Label 13950 2500 0 60 ~ 0 SOCKET_SEL Text Label 13950 3550 0 60 ~ 0 ~CD_TS Wire Wire Line 9660 2850 9960 2850 Connection ~ 9660 2850 Wire Wire Line 9660 3900 11800 3900 Wire Wire Line 10860 2850 11800 2850 $Comp L MuxPi:AT24CS02-SSHM U6 U 1 1 5CD3BDFB P 3800 5150 F 0 "U6" H 3300 5531 50 0000 C CNN F 1 "AT24CS02-SSHM" H 3400 5440 50 0000 C CNN F 2 "Package_SO:SO-8_3.9x4.9mm_P1.27mm" H 3800 5150 50 0001 C CIN F 3 "" H 3800 5150 50 0001 C CNN 1 3800 5150 1 0 0 -1 $EndComp $Comp L SDWire:GND #PWR015 U 1 1 5CD3DAB0 P 3800 5650 F 0 "#PWR015" H 3800 5400 50 0001 C CNN F 1 "GND" H 3800 5500 50 0000 C CNN F 2 "" H 3800 5650 60 0000 C CNN F 3 "" H 3800 5650 60 0000 C CNN 1 3800 5650 -1 0 0 -1 $EndComp Wire Wire Line 3800 4800 3800 4550 Wire Wire Line 3800 5550 3800 5600 Wire Wire Line 4200 5200 4450 5200 Wire Wire Line 4200 5050 4250 5050 Wire Wire Line 4550 5050 4550 5300 Wire Wire Line 4550 5300 4750 5300 Wire Wire Line 3800 5600 3300 5600 Wire Wire Line 3300 5600 3300 5350 Wire Wire Line 3300 5000 3400 5000 Connection ~ 3800 5600 Wire Wire Line 3800 5600 3800 5650 Wire Wire Line 3400 5100 3300 5100 Connection ~ 3300 5100 Wire Wire Line 3300 5100 3300 5000 Wire Wire Line 3400 5200 3300 5200 Connection ~ 3300 5200 Wire Wire Line 3300 5200 3300 5100 Wire Wire Line 3400 5350 3300 5350 Connection ~ 3300 5350 Wire Wire Line 3300 5350 3300 5200 $Comp L SDWire:R R16 U 1 1 5CD42A3D P 4450 4800 F 0 "R16" H 4550 4950 50 0000 C CNN F 1 "10K" V 4550 4800 50 0000 C CNN F 2 "Resistor_SMD:R_0402_1005Metric" V 4380 4800 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 4450 4800 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040210k0jntdbc/rezystory-smd-0402/vishay/" V 4450 4800 60 0001 C CNN "Shop link" F 5 "CRCW040210K0JNTDBC" H 4450 4800 60 0001 C CNN "Symbol" F 6 "0.01897" H 4450 4800 60 0001 C CNN "Price" 1 4450 4800 1 0 0 -1 $EndComp $Comp L SDWire:R R8 U 1 1 5CD42F84 P 4250 4800 F 0 "R8" H 4350 4950 50 0000 C CNN F 1 "10K" V 4350 4800 50 0000 C CNN F 2 "Resistor_SMD:R_0402_1005Metric" V 4180 4800 30 0001 C CNN F 3 "http://www.tme.eu/pl/Document/f9483914239ddfe8619d910f45cc0572/crcw0402_dbc.pdf" H 4250 4800 30 0001 C CNN F 4 "http://www.tme.eu/pl/details/crcw040210k0jntdbc/rezystory-smd-0402/vishay/" V 4250 4800 60 0001 C CNN "Shop link" F 5 "CRCW040210K0JNTDBC" H 4250 4800 60 0001 C CNN "Symbol" F 6 "0.01897" H 4250 4800 60 0001 C CNN "Price" 1 4250 4800 1 0 0 -1 $EndComp $Comp L SDWire:+3V3 #PWR014 U 1 1 5CD3D659 P 3800 4500 F 0 "#PWR014" H 3800 4350 50 0001 C CNN F 1 "+3V3" H 3815 4673 50 0000 C CNN F 2 "" H 3800 4500 50 0000 C CNN F 3 "" H 3800 4500 50 0000 C CNN 1 3800 4500 1 0 0 -1 $EndComp Wire Wire Line 4450 4650 4450 4550 Wire Wire Line 4450 4550 4250 4550 Connection ~ 3800 4550 Wire Wire Line 3800 4550 3800 4500 Wire Wire Line 4250 4650 4250 4550 Connection ~ 4250 4550 Wire Wire Line 4250 4550 3800 4550 Wire Wire Line 4250 4950 4250 5050 Connection ~ 4250 5050 Wire Wire Line 4250 5050 4550 5050 Wire Wire Line 4450 4950 4450 5200 Connection ~ 4450 5200 Wire Wire Line 4450 5200 4750 5200 $EndSCHEMATC sd-mux-ctrl-0.0.4/doc/hardware/SDWire/sym-lib-table000077500000000000000000000003111506653766500217760ustar00rootroot00000000000000(sym_lib_table (lib (name SDWire-rescue)(type Legacy)(uri ${KIPRJMOD}/SDWire-rescue.lib)(options "")(descr "")) (lib (name SDWire)(type Legacy)(uri ${KIPRJMOD}/SDWire.lib)(options "")(descr "")) ) sd-mux-ctrl-0.0.4/doc/hardware/fabrication/000077500000000000000000000000001506653766500205405ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/hardware/fabrication/SDWire-assembly-v1.3.zip000077500000000000000000006352751506653766500247500ustar00rootroot00000000000000PKQLSDWire-assembly-v1.3/PKNL+sF SDWire-assembly-v1.3/BOM.csvWr}+x9UT ~@Ip-pMwI'$K`.Z޽68Y8N8ӦѭkvMky]8cnJ+glh;CI7Ŕ|t4׍TIk id/+F=OlN~+q&:ܖ8ڻAEk\4u&jt ;1 ` \;l9b)מbB<^氕}?;%_8SU2pI9v 5DZ]|@AϡFH%Ahӗ)^b'gK&0fmxhQià@ hgtХpA2|ۡ>!ߤh/bfF ot'/phԺKYdGT-Piu-(V@wY[:EZ Z۝FMb_oؙ-qG+dvv$| 9gdu*VaqM&7mzNDx]ӭB{դNe2ĵu2YJY$9%O9Tp)v` AшZsמ3{N&!etuCC'*W+)%XAAU lG}$/"\O%5'UxD =WS$['UST:DG-:F9ʅԽpÜb{q1udu'K|+Nܞ9jMR-֒GL[}jj<"Ow++F06+f&ތdSlb)(<۷\8KNgd:q`Eh .݀=/!__~!oN̎(]BCi 쨷y6|F T$t׈!S3f#G<D9Ff̺K0^#6d)znjuD{o˳ (˳P^+-J@}6%S4XQlC&y&̞yZYú{06M1$$7!2U,sș_U?a{^[ ǰMU"9Jk-K@uS]}˺W4f|w,݃C?֍ i%>Rx9(܈/paYQloӋ"e=J"7+yߟj"\HӁ2k0x# 47p S;"z"^d]J˴ikɫRd:<諍y{'xx.:0L36vc!J7s$$Y2}ʿfh#N).  ߅uWؙO?ǣn>;®x&}w]0 |z( >t-&]KY -3 J^Vo)I|zuXlC)s{\MW O>.UNVM/ؖ[BċbnuɏU1Ol-. `{4fn yhrRV.Y cK:U5xf;FvNLp̡( tխL?EM' :mZOS#P_xPtprv5TX?N֊}!<ly|.}qr[S Y"j[3Kw|R3-؁&=ޗ3F-SmJ)[We6lf= N ^-eCIԶ䬩CSLM3=jkԖ E FmMCD~LqBYRKJ&0:!8U>p.ϝT6Y'r4bm&cZglU ͡M-9qFj[n% $w.fMWW٩V|5':{4L22Ҟ}Y$CG$UZLGW w)/sWsvaRMm`^T\:j*U_/ +x)I=C'WqʃW<蚸 i/[[k.O%RG봃e*3vSJmRa*EbU t HGr ? g+ 2!6dp_HGo$\+aH}pc$VF"I J687 fX #}H 8 VdzRI8tn9 Ji@՟<+27OKJf9ZpnFgR?P4h(G?~"1_,&5,EJ㥯? j|o܂8~wFHƞשraSpَjaf .'ljEpcl4Ġ(f^.Z;f9[=aoc0/ Si Cz\\ A%xzH={'3XVDĿPK|PL pP 'SDWire-assembly-v1.3/SDWire-B.SilkS.pdfy<ǣ:u'eKa,f3c1v͘[w2طVc cMdIHI%,{QNӽ׽1>}~~Mq 4DS!(0<| {vhsJP3\=vҼ}$QI#݈@ ݎ@1';(׈G ZɺRvsiq`^RΏD9tꗨUߢÞj|U[y8rdvשYJ~by_/'KM=܁w;yݗ/&'y{CgK-=-9Td2a7lRVT$(|*R800-RR5Nof7Z$7OlMׄS|KArжefqR j&_8l]X/'en!YoVʶ!gi}"kKO?*W9[{`ЬOO|FB$l.7|Y&?S D:>pO }{K3`#1#Q<{7-|kă%MMamԣ=E}atINIA 3. ;)L䱁.;䛲,,֍1Hyεtvڥ+}穤-tv>EܠДaZrMbrw~L86<${jP7KR٪:-`<Z̚1[ sxb[,>ޘn2lϾF8e7S =PkέU܃{.p}ni~4-Ve`vݭ;s17?NRJfwW/tgW)bH]2Idkƺ I2c)k ^PDHx_pn&^F Śߡ$~FNjEZ7ݪ]\OYHAs^zLܒ ڳ[FTbSnыWdV!%񛤻FMIiF#u݂z]2EnD gxpm󤧠EWc e5OtMr2B:<͋{n`-nUo^(!*ʒңա\=2< ǖ* c K7"F-v-WŽ]<*zV7 v$C9LƲF;|O|5Py"J'9nC3B]qO} ̲T.Jd%؄K{hK|9C]%ߛ^qҲ2h5",5~CGuˤnR7?R{5#xۑN9q>Y S5ćuI3 `+ yX_ȑ+<.%YLaNfw gz>؊VP?^dvp z), =##j!A9:hj$;z:^ Bɥ? HwaSn_~ύ>"}:Bb\mZgי13(tX|-*f"q!#PĬAsu4`]!r'ÛvIP~Z1<"3+1w?چs-uOp~j); ntZ/y}4S/* ]8'tZW=|lx"֫c} eh.uH=dWi4jΥ8]P%Ә*3^^߽@v8bnQ oaݺ>xV׈R<MXO2H~>y>_W$F ;CQB`a x'ħ#,Fd8w O"\`9lf5rǺ}1xAnɼzfRi,#p&@` 0^O6%y_fRX`x/d<)DOb{|MdFU47sэ,+%nG FEeQF9C_$OmŠ'EݔlnC @/(+j[gDe.~'@6_¿kZLMUxIĦ1覼8h# Z0xY&X[3GqxDSGTji~Dק1&% ^?L] McxC>/sydx`:!O}'mt31xLmy e^8@B\F/ CἿ O#aH-7H-o& 8 C`Cji}7L < DZ8{`L[н+[y Ppm/PKNLuhs*SDWire-assembly-v1.3/SDWire-bottom-pos.csv}A 0A!vcNj dS,]V;bf{+ jEҴ{P @Ga 1]8kӱ62c[ma12Zev=N(LԑKz܀?ʽgTh@Y#ty>PKwPLvt%SDWire-assembly-v1.3/SDWire-F.Fab.pdfXgXSYa " 0 z"0 JQzQ2R&HS)A E:|qf<{׻yD5OBD^$e"=.2LjcϼcPt92ēW y}39ȀO=Pc!aᴴ䩡^# yF 1X\[ 2Clj.O>OQ0"氯VŌl(M6Cj>JT.fx*H818?̜xUy5fA P,>@Lhw(nÇgQj.*yHS@ ްzXmNSwFtσw19"`{Qmq1{hgn%vAKGxgI:F_KuơrZ8FngFMR[l?\ؗ%11fh֜zTQZHv!EK*9#2;Ш*cx,Uhl kk'UxxUc3zfj;E.aoqȌSXtjhVJ eҠ Q5szuJuՠma:9}KǨgQ#NvWIϫBS{5|o-ú(~7$K~[pHI@5sH.KQWbyCgXQ{W+vKbB'r4uMPi#_\n(y+ ѫtsx>֯`zw}ZO v>#{Q٧S=K%Z-if xw侒a j_ɱ ZvaĘsw<'Mv4BQӜ ݪe %Z 4nj//6PU vTdhfsX=ƎNi\(u,yldLj%lqI@8+*NZԘ5ީ#^m+O۶W[^2p$iUMʼsqx{gሤYG 8(afzRJ[űADJM,)7nM¦"xt"Z зomU]<aeP"DpDml+Ż'ۚ&&--_2R kS&Rݧ~gSo"Cy'aݍ1be5._H#v8*sn Rcf{0Ht}nP0TpM^B~ZXf}nKGW;N7@O!"ǰr90۝.Pҥce܍27뇬"HM)Ӂ3V), yՔ*IQb2+[o'7xKz}RW9QS[Ż(yYm9qtKW:Ȩsr8Oq7\Be8$܇,bxZݑVe՞R\>%la 1^i5g3s%iְ{iEߖ9(J{{W6}!۫Gh!;%NrگIn Q:Bz7ub =ګMNJXǒƄR o6|Pqs6\Qݝ}v''kZ%&PlmRnzXxv%R!۫ގ T'8^b<ͱ3XCh44Ry3rl1Y¡4JA1S/it.Kz\~6[]A vxy=Ʉy)^g =>}Q07s%3o<){n0m]JXAQ BRYwװs,('T[= )t?1*RT9r].HV쬝t Oh/ xy~W,bMy?u\f5(>~4i ?1IO'-XB"1}p[V_F)B Ilw>ӹݷ .|4Z`$&WIs="D4h ?kCoʼ>_[OjaWQl(>%tJch:3<(t|؞\'1MA|o-A#F$xVmwkplGĞ=sT.ZR`1s5&^p7>tā~ͤ|P \Jq=ӑ^+IR)/խWpwKgdm-*7VRs{.ؽWdH~s4Ăy\K})/m7$؏Qv~oL/~:$>/CB/>?bvw_bTzo#n9f[ZO1b:j nf6XԐR#:t,1 _$VvĢ~/ ^ ֔FjvݸC8.,Nҫe,kΛ !2jO]-쾁Wo/߾]'e71ziF[oBL%ۢ -QP͗kj*Bi )496&P _0iF9kk]J=\YH~M&+3o/8`{m<&w!=ձJ¾Oտx]@QG 85itvJm05J٠ qz#I?1ٿ9hăn}d8/# 05@`5 @u0}5~/ac#5zPV@ @' ZG$ j0͘%Gr? 2ў~P 0$?"ˁ|a[# @0njn?;i#, /28')ĶϤrڢ*uj=!L''OnK戀-y}Ϯ?2Q}&T)& R0yI94LRRZFOXCPˊcX>v8}vwg49_s@X dJK ~m-|A-(eB_/ˢ'f%87̔U\/1 /ќl#V,5q*d CO!Q톷 A?n Ԅ>fW /z\#p8m(hD`0d?mPl_DDX e3OHb㙔\h(ڭ",>RdE8 Ջ=, I$CP<~&`Эn4#`KDO'v?{Jvϝ!'d1Sj!^kK ֢/KlaCJ)DAjˠ5Vr G~dMh#᝵$nSa]E XmCw UHCH1C}Q64wAm:UiRe_{`b]^T,6WxR>TwkxtĚ$n^)YObY$/ ӅS;.4Te6Fխm:-*i5+G #boNY83-"kz3Ϥd;G |1YOM诚Òs~SxԚjor!u->EȺ{"tҩ?4{nr;y ]NcX*}fؿPIz0-m.6-x![7/:ЦOo4IvK$9RMHP\[yNr+dTr<γ!QxX=_gMQJŅ; E؊G@]C}$%hFbu2yzΦ gN|ޤ 0}zqlՃP WG5LH7fՓsyiI=QˢR=`-BCƜt%LYх{I%xu<g_79)]{_v0a;ϾQqS@j҄\.ȆLq`[׻yNO:bխv5腦n[\pDtݼ|Žm )a8tcˆU♰(?b;U,𮟌ࠈv6̊`T *{9/Jk[N^g|EvL2e>8.OMoJ>م1 Hyokgb;pЍ03^uꑕ lTV zdwtRxxۜ)}Sx@^ɫї O*{znv)kn -´FvNHQcKiY==8u D4|w-9UGFCLodh n D>*F H`JPI5%0M7MX"K0T,t>13JW;;# \n B/gAmF1^ jlSQ+ q46h/HT( y6ZjuՎ(:L}D}$9蓈D!Sv%2aBPDzX滛H92Hl%>y*BJ2m~JVoJ^*1k:C\^3Qhd2\#z6V ʹ&w=dSVTt2 ݃(&wkFpዕHTex@¥YF[* xۄA`Λ +.*ml|=M]q#MO|DZ_ |l52~1ձT ,e@ʎb*:^ɏ^XtcGyY:;?Ul4?$=\f̰5Q)\/hn}\-2\yF% )! ;2kJϟUZ6Z5Go_9.aa'A#:=C-2Osq8Og,/ԎH8۹AE8+0%[*Ěh~ߦ.4r h_\=xq{e{G6R[/ swֵz5+WK7>^ޞmdTc YF8 I%dSQ]uk`bEA(Yb~{ޱy5 3h0>LKӇ7տT(ofhp Ysvs r ,kNkq͌/iNlN\v ?#?. ~FIHX?]E"zgGIC6kR Bs=ZeVZi)vmlii+X?}Xf.c5Қ(UN,Gg@4h?#E~&/?!^5\Hr0;%Cy,=9ֺg^w޷,s[gtxdV1l F<&_3=gmzmò(i_:meJYZZ]Fm TJdO.wM&ܹ7Mݡ:k*хR%OرՕ| cl$" ׿XT~B: ƿj(s^nZzk^,?j,Z)v:adm2$Sƍ@Lvva_)ek!g'.+ 5?X7|ިϬ,e141wK촅O% 1YeK 7_ F~U,Mb.7Dl lo34zݤi3@'4 ŰΘ&,H)HM}Ue`{]f*mKf.m-9[hh'.jEf#ߥ)ݬ*T,:QN>3[i[/,`З8D'ulrPШܸ(.uak'|;d9Oap"o2|w%2 u!-$d8&c X:CI<:STͅԫr 0ָMrкH(Gf qݰ,zv(E:$^i|zE_Ŗ]֯5] $ĠBY)3-.S!KV[Fo 5P_OX֊%ՄZ}8`25<9L:r@x܅ gM`x0 42=y*N^=Û;Ւ6Ԃ'h5^{.JW]@*W|65J8nԖ_"[|̀yb፟^m-yRJ_Hbઔz$0rV*Ztcg.ᯐ-jz'mŶfX[nlif2K#khB&I9%3[lL2%S5#0-\#@м w[4f**>`m}YT5&"ͯN^[:x:ae*ovq$z ľzHB~CRUSLh̚P+4? U2F,n,rchZhQ -KdMMv,IN)shܕն/3CB#ⅶuD|8%9 uZʳ05b|MTE8&WK:PuJA',f0MLZA^5EiU%ݣY2Z' F|-tI#E8 F.yR2?ڥx>zZI2k%wfg:E3m&)*qBVL8vyk"3pepszKO 's '8a[&N#.Ynj#aو8s9[`ڷ.ުduT -\*zxͩLYl)X!RxʖO֙"K}wrބߕy y l`Yޓ_k{cbHp\y06ߋD)Q9 l /yO ŢԛNc9jVMǦAX6Ho8pۓM*IӚ',n+1=ohBMRcee҂I|RotTE|OҭV"E %3PmQ2[ggej 1t6y1]9I&?:WRd''P~joXlN0 }gP-N;t\gD.-~Ǫ"L#Mk͖ǡ$c =v%PcTg4RFLuĢ0nba)[mDu;iۛ̚= H *i{tǓӀo?%{CZw[Aiyu5k7%V\kϖ(|a}TL `pt:]BAX\" Pb6y}bĽwNTgw\)}uF3\M$L-7T`e%UXpmpu!lLU4=1xOb[TVL0$.NL?fY"bGأqV7ɡ1c֚>byPm >Nމk!A0TB~guvY HXʻ7RWRJɑn;YAAD}Wٷ)=Hq~\Im܆qs/y5Lx WgP Eop,GMp0j 8l*-=+H/&ѣ7Fr&Fh\7$dL+ׁaj/juAI_~`-ui% !m9Un;6, N &P^T7/|Zۇ) xkwݳ(N 87F@]Sɦ6_nhw(}[v@nP߅w޷NR3-ʖ  ą[KS; 9 ; ~X.OSR /޽f}d5JSfX /)tEc /pM־kkzȷ. $ٗ .-[80Y\UD 9ì-h4$i7vIsԲlCD C*wg?% mOyxԵ;%9 wCU&6 J=,{K$g#jǒ3s>(W ?X5˰G7?T|-uwb=qx/?v{pE.qaU ib̨ yM0G\i@c}nfò?5AcLs-"ü2{D:NZAs12s ZNepw`YYcь_~fQ5^QgE1ӵɴYLbBA^hw?+G̒F OH9Ur:]ުtT=˟d,[wIց 7'@Uv_H~`VaNT-K|xҀ *m?']UY2BP!ql?e@Oo2, CҵB^/%= b>Sya_4J/^Ri;[$ "Qnl4]g#M8SG,7k"+*1 2FoBvRC[1D~`xgc^SҏZzOvܷԛP#ُQl۠lwLa$Hכy6G@ H?1SXx)@>XKxk{b*W92c #.V'z~oh:"v5aa䋴T=fD Ӆm]4G̝aU@h? 3Z=u0딻utȩ ^3: WhYv ,+B?n1mVΔtl^dXSdpLW6ݎw1`왭${ي|PHZ]yMib4WpԜbsT@ ~#th̟/0Wр;V/Yp?]Y`Ԇ[O޻et6kLOMKa ~/CO@*kFxe-z+qnv7B톴꨿.$r;Q`\kеZ9Aߋ,8Z{?_,$:kJÑs7G͇{u'ZSiB[{d P={!aߪ~ k2>d: mi4cXQnfyf e`@^+uN;>=zV!OXEᔀӢe9Ir[%i)5~%iw{5R k_i%o֜G''L% NhQXQ@lB#N>q?>fQA<_h(DT:ЯE0}ohyVbM-q<ꗭ&Eޕ@MӾL_,8꘏ϋ/T{~b>p%i! ޳*ITė`PFbit(*FX9Zэsa,'Mx`ݮ#P"ȖJ e':zKY~|tP;+6cPڗ%7VtzAA_=jw03a<-K⚇,n H:`I80E͆tqvUtNsSwF  &UXԴ8eOmFâoݪcUBk&u.T9[`j}(H|"hMk9c{Sݑ_Om^m۸)߹9on0Hkh{& mϏ⡮G1Gm trij@\g:#^HB ώ&@3f|d'?˭$[a'&3?fSxo.wm\ڗ=]$GSBWӟ!o4 1ǬiE<5~rzj Fn'*ÐWyѐW%bGKJ:ʀcSZ'x&.}-Et=pHi۬.8$'A~?"?~I~ ᷁r'"0Pa$g:UDg&lXٸI6v ıIͼ~ }GfGcܰN+yϓ[*PA3ryTP#;6f[ A$Y'`Hj.Y%ޢN=ejn ]/Cerln6@/|.C,y.hQ-RrO@oz^3g4P6bʐFIKܠh*K#(}?$.wi36y'3m"q/{WVճRʴQսٞl(޳z8`UOA *oMgz3 S]P N&rD]n6`L宩S*%@Π蘯8*vY!u\L•ʡ5!Nm:ƹB/Q{(5ڟyGGkofa[wwh(w {=c539Fjah{ *tUQ9n2Wݬe|WG|vmzmE$K}l|Q)ߨ/򜮲ٵ{6"i wD|ia[<>'߈_0 y q @i&[wtjyMKAn ]2FPCsfD5bmcȥzeנh?Nuj~ u :̣_ƅzƂmz܃oڒr(2em2,(6rܟ/!xBLb,?=y $vYtu$ l^m nPAd;Q%˝S*Kpy,rJnf!E_Yiʹ;@|QE@ldn<4!d("|2L(szҪUg@y>1(:,:d+,%X=#50=dE:ՠ) Oѣ=uVOaTn=ھ"V!G}1j3E}[[)!JD^h۫Qs49DLHwYFM&Aɮ;[&xBn:tk8 \{5ڌ1nC!mb|b<%&|/I҄H'ͨRcX$=S% IWT{%u] B@Eqo]T9䜄ͣ&&*>,?W>g!ԾXj)h]xgzxo0S5 kPH{eu8SɺU˥`lp;ʄT?{U1W d:Y=x.ߒ8nlo)t}L艠U3d;,o7{ Zbj#sI]s./tR>\_ 3o\0==f1]Ty$KVb4h(fq%nWX0N ㉟jҲ+3{~(^rndnMѸ*TzZmcYX:(?BL?'r,0y>Rtᢙ0H>wPJgIPZƅ{8rseqxUպ_Lܼi//f%c"C8bVAъ;,m,;Q$0E(OrK@0<!nHdrin=K]zkm23e2+QfFR{n돔W3d'Xv#s"Si:)_d |46Q },$AyGB3mhVwebX.[=+{]R^fCB|2F>WRE7ˌ~m #[qr`_ڶ\IU Vcm75?$coZ$}9ZlϾԜF7 ޓ>;'RLJ6b_mk E!/ڿo0%s{}^} Ȧf=TaDlsE¦Օ"mvlye_T}%gcC6Nv<)/<1/l5f)NEP^7UPHa]%P Ԩ5ÿb_[;XWntӠpV`o'.J F⇍DAeިoIfRߐnCOtBJo!]>eMiXAĜ{Sƣ&;r{3{[A+"Uiud#1%c"vs$ <)l~z5*]jxlTALZ8}!oYe?uv؞_n_M"6%y;A!E>ˇ`tEj#jAs&#:<д{Dfv$J$4S qUxTij[\4{8~o2H\x*rJ~\*#ӵ%Йn`q:)0>zI⢰M̟?Ӱ4;Xhr>L5أSSZRK 0+]Ku7iw?4>,.n~NAáxkb {$4u7 wv-fA984!.H]_ޥ a){t119D x A>C;;F?=)8 N$ozw˟G GSo$ko3[8tT3:8B/R0[E:ArB5ߟO"@𿩅3箓9G8+ӷx ܩ]qiR"ZKSYIT9ԗ)G-:AXu /G<"HpD "PV ,=M1҅UqŐ҆I1љP۳58zar:=@M9dvXzZ}`@h*KC[ab*;O5&HSltڿDىM`6)y6^p*Q~%خg]",} 4'| o XȖoIs⼜dR鿭nnsެVhkwlvZAea"0l2, dgZ|ɧlB\dlI[fYg}>طY5؏y}< g:h֩{kH3yrLY>4H0Og[!+9ts 'm} %Q R}HQ_D]:+}"1|.^  .>]w'ww`]Z]5U>{j* )&Vfn̼{622{#+4 ;MM ?] @ԑ ecl*ajlobJmV03w cw} -{FfWamm*0#&-`edY1:cQpI|IgUSDVH:p dM [=I|&V|>!t+h!knGE |8gx/ &~Fg׻섦TR~]/ x53R9Y)}wdM5b  q4=^يng@8Y6T~[]'u&_lL[ 2C Qmf/E@Шxȍ ŽȾQt(MTD&zP/2ٶ>sM ;% ME{WUhg1JKؘ]DM IZ&9C P&ۚ'=־zc~˙U\̳Pwp|a7;Յ#p@HBApTP{&` ?"C2aN'|}'V; (m8+$7F OΧrbD, .'cs  z?9ʨfp &Z3 QMV,68 Q{*q1X<bߡ`}}ZrT-<(Y lj yGw 26t&1O{!XZ(EXX|,Xܿ cbZ%'m+EdUQH@& MsVER,՘BRG,>I_u6Op&7aaVњ l42+uMaRͲ"/""SN.K.jL8phȯ~H=5rnأbNnZ lC[eeO3mi/ް`1JMɌ˙|y7_+Nğo5sjǍCQzƋMY 9]^\o==U=CE"F*`ħؘFkO3120f'ӱ=lxϴ[5±P1*-OeZ 7Nؙ 4,dYut/ :Y/#Qm2=x]v痺{/>ʧGy__}ދj:lr}hhhSsu zȒ.*1':a7GQ^`c~+wKg߻<5~⴮9060 c\nٯ12`YȸlrQ`s/Eִq,MJ豥m%_Qsd9f4-]*\\uhwNT8 ?jL.(a_ @XYv>>O 4Ƃ ~L/X|>5=s^~$4KnUs0پ7U1?|8- w|__OqQ2Ȕ ,  Ot^֕ Gn2l+$eFT[@ ~i8 Z.k~o ¯W~-Ooo{J~W~123{I{o/oo~o–+o oD 74/W[5#ɿ^+ߞn~'(_[eW_F:n;G^d^㿸!}{3vxДqq{zOtP@/*v IHcc־a-B,˾CEBY*>)##hHNbjPkN%5ftiO ]B!w[1~-Vl˂=! Ij ɶ\WԎVMAiLWw:chj=j5{88h_>]7<-u7wUs/ڒǿ(c9p8rrhewֶ31Zgl5g&1Ŝts>j}t$y\گMVڛ6ygx-Y!p jEղo?(1lc xY:Ơ7*lGU)P4O. !.*Kq ÜbR7qH^O9 bK۔Zrc5Kti&}M㗔/&'Β6QDLU?V*w2^þ+pొ]l ENͧFFByFo|ݷ Q|)gv\ft:vb~%v+:uߩ&i9U4[cV4jkQ+~De+[q𷦊/f{~b+VDeC j'K) h2{c% _>Mm6e\牍0&U_6Rnpˀ*mz#Ɂg Oӂ{%GSE7v:16j绀 C QϥvCMb!=ºd.f ;S2ڈg1Dvoʏg0[͐cΦz3c`\F߄Q̙$i*3p˷U=8zAd(w< 0yMS{QP2@#"+hڱ w0("I UG7~#;M%l(TםyjEMD2~YnMԭhWV_[tlШl6ƯpCn4:v\9YQ&M?pL̲#z67-1Op [~:ub=^Bzy0UG:I8>I}r{{xTzF|T(6tҭ{=^N)gE!6*4\?ğo4u!Lo9vGe@W^vkctWG^iӞj-6K jryi憛2|_YWЫs[ GۡaaDWi`2ļD=>I7J@N1OTR+<[9CD^59O"f /j{L<4!3674ɴ:TVSߝ0{|VbʯڬAGle4pL1R\2vjpĬ7|*rqR#J]0CUFvJz LOizږ*S{,;q-5̗H[98SH<#J2%==GY2LM2jc{2SD8r<ˍ3Yy̧-뽙rGeݨYS/\*z N ֭:.3y}a5ƭ3CC<{NеoA1^:hs6pİ!@Jųe%B/{¿m :rGƍ[-=3]]H L]PNk@Cum" m<6 Ep3t%Df 8DH-ލ Ou̯ioZЭF>9S@ $rз+)vzzHh<`wAydJB/4EbY 0+MV[wk"XIC%Lyxz7*6Irؐ:3}'7G$V ,G X!񠼳sKF0jHŰ/fǙn*l^OqSWB}p6)/f+H JKMbQIe_ęVK</pНsXKWg#]\(r9g ׳捊2yg%O"{VSƲ@pc.b?Uj_ȓl.6Ԇz]ÕP`RO PhBV@pܖkGB9^@3q豇}nϡd~GŚ(bFTl8 Aq8ߓO>adJ%^/A >xf_iu1WHl>V>LD- }W8׿p:ڟ[VE RK,bgFqIQ+^&M"eo䘝WO>TgdLW_RHF1e71TE& }H!Q|hiGÊEy ,_@:Oߌ5>S[7o`<%V $9DCG;AFkwfq#7EWRBs&Ng/>cp:0 hG㓎- ("DPi) H+ ^ĩ+lehÏm>L֏3x 0kD:PFF|)?gV~{Xx\pqF( +wU3h@L7k.\AٶH/փ?Nb%u!*)BßGCX txOvZ it2#txnѧ t=WG޳ZLwnøUmIɉMo526k=ܫvr.D5w4;V,h20oqT [NqV>:dadMAv[/eK`POR'(ʶ[f_A[Ց +xD}-]cPM>d2ؒ! <3ႶQoWc^>Y:hh*çT_So);.ƾȋP2F(qƨ͐\)uyOw8S\ G;[ఉ!gT*tPx0cZ,\g@ 0R|M]Eȁ@z㎒9@PʗlD;Nc|2j\ 7%y%@X\ϔ5Gb_P/0!~F!Ĕ3|ĘQ$uG o{e.E* .9>\siw_pMm"*њɢSF;P񪲑?UTp…x[uD1bgy;W;d臒J2k?5X}(KF_#Ts{ _DmWbZs^^k/]7l9 >P":9i@ Sx0{)F& 2(JREu",9*,|oNrV^IuP53FC"Gt?*Y5jGACKU+ &=@AAӅ=XAX}~"=w7w|O?U?TS]?y?7Hy: !Lc 2:bEbRntPnw4ns^.]~ǘ[Pjj R *Dŏ%vSċQXPmR1? xFDBG>DCKAA'GSGT};4pR%JX4l>upb2Z CjxR08iPgCTՍ Bz b9=w`c]l>O:3m%V6Yk\9'eAz6R ގ Dzc%YxR\CqSr-܂r]"E,'GN/& b&uhJ{QKuO M8,+Aiꀦ^JO4*Du5Ok}En=G{o=\ei>\?7{IтJm؋#/.",DҊm̑jH5|+N/dYA:T)&^F8x*h8[PvyGK*m@%+\QD@/M Q> PNԕٳ5b{k .U7vAT:G7h+̳VPjYUٸyGz KE"- "򤍣o-zqҫEz Kɑh^NT1@?ٕvvGA1Ί+Q gUSX=x+O#ŔF*ǕCNiKeԪ 8_.kLxL E!Oe"m}5{-m;[\nM_CI^ykjBJ&0-W_ҡĞ3 ,(7&ޡ(\ y<2Aw|+F^A38EHd@dlɠX~-In( ,5]iy `4]C[riW<8f>ME'pQ|\fQdzc_}׉z\|`2&dd1'Q3{h]XZU. JqeP(ѽK҃|D9Oa_ibm]C*rdRH0m Z 5a R53k OPeV?#h'+Ӟmð]WAH'OSDRc+qlULU: ~Qg^SطI֠5I_ah7G1rF\`03Ì2|1A#Aڷf({p(p šn v:2ghA跴Ƴ"kwۖf\q[M擈y*~VN+Ce"x.܆FO]msQb1z⏊{$٢L*gp։7x(MHP;sK'Dk+;QEGC5{w6wFKe.h:Y2c dMGR`9lL8[2᳸9Ƌup)Y`7 lE#] F/i@p5/#N-k]X[|^;~[ژ0dgڅy ~z͐Y_۸l̀4KYκg"B(2A'̀m΃[Ǵh?%恧*tC6pJ7O}88U0x?gPFGo5PЍ, ;^vmXvQs줚u(tVd nM:n#u;`$f,|&ѫϽE:)6jW^@sXݩ CWfO-, bY7j|UQ# AyρZL^DKSM =Щ{/ηB1΋n"HF xU ~g(P ΜÊ*5~X51zar[5U1?1K]M^sn>kd_|s$Q8bP?E5;`ʅl_&i + ]&-Bc]خJ7/6E}n{v-b.1,yBgtz +bgis>ZwnO9v}7dvqR綜1~jt*Wh#1ODACN8W,\L_ԥAeiOI9#߃z:@[a8a}X\}Y' Ajj51 1EY _[¤o5'Ъ+Z?D]j`/̓@Dx ^mKl,&EUiXxW2lE5Ҧ[j"=/ :!y78o 6M8 U({ F0$wh :d J4$Ma_? !$SQzsdal5}{opsCjֶ_j8btߠZ4B - Jh nhBKhDImԻ:ZopϑP?YzhlK1k([7.'1Ox5^Nݢ~SA,FrD櫿eT&h}1Jc'UmwA +_έaFmdve1ą*>o 3$?DuT-/cwy_?Y9/V; tǷ>U9O'!(+Lwa_I?"*=LvPT)OW@*a b ^Ӵ'|Z>I !sW8CPPz*8}Nf|-lUW]Rvd&.&DV\8_%O7sGwKk״XbtmWԧ緪uHF[_aHi+ϢG&<hl0G??";)/6sTV7·Ke`$`J=+ߊkdar_*С4J3{c)[h М 5"hr5 f:fu>fźKc`ЧUg( āΠ2LH]FKCBiîJx<׋/Tͦl5n9;FZbҏ$Ӥ jE6S 4OERj'TP=TL|':?$>p&+ Ù!|r)T#Y1A f}EIy]@\s1`S(4ؚn7c~zZ{)XC`@b_ՏLӘÑ 4F Ez9K8;EZ#/8zPcLEޡo%6ȴxFNbYgG0g {Nn3}BW8Es1N~߷(yQuPNb xXkN7/d<"O0*~!vvS)|)Y1\{C K*g45Z44.6訬v8NԻ.ՐK 0ݜC@}W;>ЅR\w Q~1GyOKwu[SV].䮒,?Zm>"i Ƹ~]vp?n#GҋwLxry81m7o@=ZEDUl:IbEqWu A46lg"Ua;56ccr(k"F(OR8FU? cxbTuWPeCgc$JE UE[Ӕ(:B+// >s_*f[G94J6A5cp7K̡aN!0$WVeB5hjv{rt]jѤbI4:YsׄfIM<Ğ~5!$F7Bk[J}J}eĭ~|*Cn^Ӓ;$u'ߩ0 ɂ(:F'gdeG:wq|RvmEpCN|'#18onLf\c :`$"ƀ̸6FW ;iNU21v Hȡu cܨa6yosX~Rނ1N Mut$Ro%Yʎ/Fgغb被de/mZ|1U(*8%܀>hejrp2k /f{`Y/W 2pu\ vݺv0dz P%gII{HA !/GC]mS8 6#t|GM2iJ젲NU)c{}]둾J5[ o='Q2{U%+ȭe5 WFdק =1%58.C&+bʤZ=3 $ ق˨ K3N^YJXr5\?pҬuV͉Bn!"^w5-t~=Ec,({8 })X< 6@Džk`ڸ( Βօ+ϗfL!,K\1I圪ݮ qptamt]w ݊wwwwyqw~6sg{<M)g3l!Xv;8'bϊxai.A05화Pb-d/1_ժswo:V)ۚJukvSt}:Qyp} Ls ƶYt-[ RJp )^!v}A6 iw/%n&W%)=4ZIP)&|aEz ;KP쇍i$['<:G ͧ)unbܸuKI"D~#l mc ­/]Ί"N)MLʅ8ehJwaBʖ>#I&HjJۏq4%9Ipv1*nmqqwvFrͿI4+Eϙu@r2Rq9Ox TiHbswl>xsI}=HOy,Ay~(h Cj=:f+KR1Gަ+[ S4K#ic '5"471!OJ6GBwӏOehw(zHLssmA)i:șܺR:r: ;_1=Yf1ͱ=$H2S~bEغ,܅xU /Zv$]u1@qDYR#W< c.>GwZ"/!jrN$`BSϾ:AG7 F嫃`C H`lL7,i0`>on(3FG>EqG!QG38`сf'`I*wƱLI'v^(BCDa lTvf\T=-;]&G2CVcTVe\|L-o^oYp(J\ֱ/[M)ϔ}H: 1Hܡ!zj0Uzp 9~RdᲟ&%81&o;gX0]HG qy;.:-ҋK0(  }Ĝ'#VSy[Eruq1I{~y!|[><>zc3E5A,֬AnB` !I?RqvbI\ -eGFO;>zQGåNOiz,WRoՅ&& `$ ~^)nT NDxiZ=P$jbwldG87 )&&.2"(5y*l1"wfX()sWv E5ߪ'21ĭ6P^-_NATbxGANz82An[ҁ *gFE2*j~10sg7\dԏjm:EC<_;^`JXpbKQ%2NO6AXD}AC}&*ǧx\*RB,Hi:>4ބg8lms%9x|me'3egŧ%.]3f-\2!u4Mc,O}n@0WTFii3Eg^|lsFjSҦɰ8%w+ô'-ѨD Ł`@! 5$"&<8Sn"B`6+kEm[E:,)tYTG#vˆp36kLj6)N/ V|0"~1$ (b}3#LS堏ơ.}" UӑVa{֡.{Qk6O 7eE{kl\'ZU`IĨ ~: Z=R)cڀqs&vOEqШ0gf?#@[˧2pCTg>&$bOvu7[t֑_q.^UCwC;ޠ`ȹπhS4ď}J_VgX~" 2$ڥ!zu:+H ~?jh%Ui!9e3a;%beVGeIRsLR/$fsEwqKZ- a]k&%Ρ*A\٥ި>4]meGTSo>7L_ZCb+B3N}̓! !zVkk_ ,Y`LtB_+$?x:5zi*B@cAǴظCV=kZ=&%s&]c1{ D+lvhvi:O <~ ?A@ ae LgFXQL$*tP}y4T{HvYBN\ &/6T.OuH{m:Zyc9j`y2 2[{9&W:i| >l!2vN1F{RHA&|{\ '.% ie ɸ}rhr{ ~~ _@A-ǑV F6["}nǾDn`#嬨@~m+xPi }  Ds a?ѿ}5yA9 @;i{[kM</ \ IТ4A렩!ΡDoy"׹ ,`L҃jj8 Y+JC/t#.N=۠}j_/{FÖB$iBdAi(B}:~SϜj)U *j%&YG7_)6l*[[qqBc'hvzn?ʌuǴpLh:O(UO jx*JU(iZYc: * /Ц`.dbP˚526rx¨a ω4tҝ\H6 ] ~KˇMuX>+# r`: G#⢤ ~ Do)mc&4 |.{gb|Kҕ*5n]מ/~VDyt̕85/&s">L_-j~.f_z,\9zI-)2ə^WJNRWӄ*P˩F-tWfCmPcE_nvJH&#^\~'VªL3m,_453s3F6WQ#aN5>󠮯+ʑ*M@@z!" v' '9|3T@Hh59cBx z<)~I-ۘ3&w WHr=\l/+P1ɟmU!^KU _D{7HI-)^l(ƷLc,/A,AK6'r@YjuaF¡ MY,s;O6B+M!K>4L\6?8ψlkdvV<)W40ꦯSX0`gɸZɻh`#?f1>VX¤]qI F[< m2n< /m[P.]!a)b,)ϓK((tāR._я{t!4RMO0 53Wqlȵx錎w< mFr/lcْBlW!(*:6Wp)oܝ\ pj?@e+ }- ! 8- ,b:9Wg,*sH),O2U3FxÁT5zslǐfMo"i̔5}:!^tpH <kZ'/msPI)ǻZ9/XB^rX$Q};HU T{*ʄT2uKEJc$8˩/=1Ϸ/[;PWl* tTЊEK*" 1ڇ'L= )N5╌Tk!b&_ tE>3ȷb:H}*Od/$2J h&J.")F8Q}E8=Q} #xFЄ4`y/bgtc0 i}bL *NR5JXYL8}֊٧+̒@2=@->gVJPS&u @96ɂ.( dr"/7 =N}aB8oDq4!~X(e0ᴥȇӥϚԓϚq(*6)xNΥ67eu&O#Ƽԕk2^Ş#2`q>9}NJY=av 7'< <\߄WqLVkGّCrV ǣۖO(o׬AH * 8>pRu]ݍquTEaSo[omDSXIIaO_. Mږ\*p$27mDE9fZfs*LZ9p|AǏ5˺q+ < <ˀzq=D.K^k;CjT8x)}D+=$Ϝ e=/ծ_dڷKk/||;rZKű4l>~2W*K=Mp9'1$J+6R|O=S]o[L>z Bޗn7{6+eDGV_#h/wnDB#ylWvE>_ `L |+WXլ֡Ww(DƘty~㭍al hϯ[ $oSx&xe8 OuED޲0Լ`96%#y@r'.<IˬU|x A8Z~ha|p|Ymwixom>tcPGZmQbX[+FCNв+)]0Lh>-{hk R8' q 0Y:e^מ^ i*n) `U8KV|+QuQ.FȋJ$>/tǴ#Dy}ϥ3܂ Ƽ%.;eU9EuL:<19vf<$aϰWuO'v+]$#`:6:3:+&0hAYu PS&T; UhGNv!yr yrK5})JZBf0T& K"յ8!Pa+! Cnd;tX0 نzv_gPE&vNOM{dfTTeלgSsᲣeHDE쪼b\+ƪ8A[~nb{'1܈yp#,[0j=Xgcakxqø\Е`(DZ ,5sj.S%C.si{%WeyMO3 mSӘ~Vb=vip,\T\ ,}ErVG,qJVck|T, &#C'xE+{{*wK߄7n_}Io ՙ,[@ fbrbNo r_f \ 5߶i֨vGU]f>^umhXĵHTxT40sa|QK/TK'igQQ?m%}EpJm{V'z:OFغUfuKh/i38"xp!zNʼnN~4ќV1rҖXU^XOm}xi.z}SE}o^gBaN/ + liJq5+'UaӛDNl!Uf0ZʝӤJGċ0bKZ{H(')PDRۈFv@䳳t f~m v\F6C~sv>Au ]RRg e{VRMX:mM=L <{؇}L"۪DLԛ6l]%U#(\p!j Yq) cmkHP=CM'Bzk늯FkqO- #z׾'u07g}\V̥ۛ!H)fE Z|uS+/=H%iLh;==2qRCՍk[ [Άo-u3ͨ8er{49^0y7sx>ua {cB1Lh'o uǪЉfCap!˛L&߉XsDCM&ݎ(0DΆקݢJfv~竕SH57e+ >DYˋ!Z<(l؏aBok܌&2 z%&뀚-pߩzpgFN >Y"${Pkz2c7T gq34M̌5K97QftY3?HIJ*Jr$ ?y[kt)~OG}yq}/:$k_q%bo@}8MSMg8{s+?|mؓ7-%眙Jgj.S-bSG7G?_'կp'?vy޹Ɔ)VV>Bg-zy';մto>%ǑFWN_JXVGsLO q}>b?e⭪ f=?y)s6, wPKfl6s~| ȳ`!%޸̥Z_S2OFdu x żTJwlD^};q?tomJ0s~WG#H ZvuW:\ڑ\-` ;X%Uzp: =A*s.&"y`oAጵ}USgj s}퍘\ g~d Eo~ƨ6̵fMgha/% GN^K bJJ5*:MY{Yt-֚|cw_dWfxRRFlmM+n Pd3Km7"y}"Pp^q[ƦVnfmeg)I ..k,r[ʯ\&\,Z${OyRܫ xQZJ'i4# MTbH ߷ FK ?;BP"2ƳϹ6(OY"AqqN <i:Q]F>Afx *jayve|9zHxN)嗣p%TܟDޓ$nE1]R,K zب']L;J~k|p=HI' bm!$'Yfu&q2 3ŋn!΁zen7cS@I!%/HW~'6*ĺ 7XjG";_rK b9H%n$q<'jXD%a4,lBC\ >EZef_.fP%˘xX/ʆhj!@3@.sԧ}EM}uHzZ03zoי'B6@Jͯ3<^P&Zp,$Nς|#jUXBf> >^; _jWs:”p655Z?,`^aڳ Y]zk:^F\zKI&3C/k|\ 1 - ZaC-Z%Xsm:ʈFCj3UV&`I)%=gpL觕N٠PNINo>=6Q-GjlTª}HhXR[Q&[`ΝmxҒ]MDGk Y[,6/r>m%ߘ,v+'d͏fxGЈOâP3/O!~[+I Q2jd-si>xE7ži@1v65S.ZSؔsS~\7֎Of+ G͛0:ҐP[%jE4\ QxDۥtgwIb.ŝ.BNI lGXM˕P}P>mZpFQi=ϼb6qÃK9wqدNv.Ks{>lH,uĽASı/قڷ\w½ݘg<$H?:P` (8ԭQ!"XQ{jaX`cyCW(?_J >NQ`,>ہ}=eGXt?Q2TynKIAliNBİg()A[ITPo.NpiE2Vo r) DP.X9Ll-,o /tA։5E3f1if2/o^6< ݢj\?Uړ [%/syWdZi߱͒@zakVԞ|^>_18]9 2ˤtƆZ4sy샇[D:%Sa䮯.f)s`^kǤg_y}m7%M >4/(X}U X9m_ s4*áL^+>Q ,:;@/BOa "kVfml51w#HYjg_| HAÀ$6ϙ#y|P:hx<-ZC 3?Y -N}u{!n(@3L"9 ϯl]Ҍb0bBmxa/F tHɏ%h Lp)"@\E j8bD\`]P[o{]1I&1{ [v5GK0αZID决.fQY_\>4o:=xN/ gFn'^9 )caO.#%` L.`x+rH[u)[4N]n[˕~|}¬dvs*_aZ㿍O?ChNt5Lv' 7YHOUz(io 5rUmZ_R/Z oMS /a~a0|c8٢G)&?٢:wu |!\g<";*~0dNcWBLֹ%kebf0%FTaF5G.qC7u)FS*`Z E'~GR5t ׀Y &q1fUt+ΐiл-ȻPTU"Z}zP n[٥ #TE:ѬEdL PץTE FwR"̴7ivqäh< jRW8 ,cmybb%imMj52A^EK@azMNMyxj ~ eN;pznA¦@M6@a82VD6 ߺ/R8T(g _1$E/9!@"*1uJUOʤ!)_"q^|@$Вi{(,70Ѣx TT;O!aԙ6-_^hI.mީ대3dx$~+O IUs9#_F-(W7~N&|Ih0PXrsр0zz7lls,|RЦAvS֓ tRJqT)kA ڴ)ڙ_Lif^3ZqԮ1d#tEq?vu2] i}V@[:iYhbFiZS(?.zG[K\-Y"jg<5!Z?ɣ6ل8 CK8ۑ2FhuL˿^De w7вL#c}? Կ싾@č#I"%,A},A0gHm!*FwWaPQ -2e'߭^0$ q$ (/Cw;>CC&5ѷ)3ا'' Jk5'aDН$╺$hELN_ƗΕן㺧 ;.3;s&j߸?lP[mW׵0YE*FWpfѽ /#R&gujŞ@>M',$.N+"(3Z)fU #Y puH,TO^xS+Sqs^,:NFq-Lz9Tükbt(uٻ=STT}YUaUvsӎl3xow" 1Ve tH21>(4t#/aqGŕW2t!<Lњ.z3aYL1,ss`-Y8hHlOo>nSݒQS\_ 3—}.Lv5 ݉HI~ج9IM?io A3/TXfC3*9àcٗKmYKiyxV$m<;iُ6-`I^3z6WYI6ꏱ3۸VPtDM99`B:Cʨ{ٲJ~`ⒶNP) \ϰ*`Qu@xJ S/@iBv"@YX0AY2et ۞ƀ!ZEzbVJb!HI kMK`\F#uH;Jîv_0%bMiOZOȀfV(+.)=黒N1'}Z@z9$YyCˡ>8i]H6 >Iz 낣^8: 6Q|O8kK ~-p._>u2DID$m(D,qGk+m2@ft|ڸ\>:M`W|i;ή17~摂j]Y1eimBe>&fu(?h~luZu~0R#$45iA\t͍i?>-ѭ!1:#_?| Պ+QuA*P2p}3Mdx邮GJ)7KR$x:EAHW[olҥ:QJSfȔ) nar 89)B)=sRlj.w|4 kdS)ϒڳӋ9ApǔvAuw./wĻ ,zkhm]]YOꚰ9D! z֖aH,ʐ3P>UB*C7V!ު+8Jh]0x>T-pMZ݁leU/#_U^Wrݵ}`=,rs%mu2ZwZ V Tgu7cT'STuW`B.#3i;Ř;G޺P Od/ ZھF0 VƱ!O<V/0s׸lXۭXNZK(] k $'S!🨱tu+GN3 5WMkӘwA~?A1a`,:ڔ-yQU wFuf׍ ۩zEu;%5=>#b?Cݮ?QY\z YzAߩy~i'WdD7PUnDG]Ik3514e/B(L<%68kRm 8U䵭M+P`vp9-}Һnc73W qMmgzW߂#1dYg)aB'͐$dJJS*gMMNl~P*2m5m{2al~%ifW+2; B&9W4~U')#=jv|!AVpݼm_y[$6`߰hq[ &T$y_@\K9:$c3  蘃L^!l841yc_ey< \?`9-gۊ!fk(-`gɕ, uWmۏwZL'C>6M>cO燾H1Jr]R sE?2;xKE,Ay_ft?*ߢUG%%SIJNXQǞxT+͞8K±< e^h׍$Rd6p:n£<0{S,r.r[SP џR qDnasS(@1+")1Gs-uo=k 8Z <)ݜEjh:\qOOu  B+@~ ~}KՇMӲ>dG)ni{Yv!ـ]0VBnHQ<72@At)D>73tD]R`F+167Pם_hN /!@Yg`}O޷ P?ZX#$ժWږgfo,]_Ъ#Ad`MI=}&%2l>&~=N2Rp&stYT@uq޻`tF6NF(OU8/,u;/_ȝŒX?7'ȜJ:d&ZX &U)!QZ{?Bxw|v,y=wehgUWMx PTkfVyf \݅S=mKQHnTf%މM1 '9Jd!C:B4w 5}Oϟ_@GKaONKZzo4Qi,ϪVw$ǖ=7 j$bMh&!,f]Yا+$SL%HZy[[trsA%cj?՘we(k`5V/E&+= yvZA1Ow>g;OٛMfH-vCj2VCk_2oO]"%ӡY *8x[+3ګށ'^GV "ޡ^ߐ)Q|`e7@DJ(>_-CrDSv~ 6em {Wxva/fߺرT-6vdm ?>&ߡsJߵ{k-Ӯ#;EUЛuOc0&rכt|5@-3Pswİ%~Sչ"cG%2x<JTXNh)ק@j'ևCi3/QMi:Y tƜPM:Iq+F1>Pe-0#!t7t7w͉o!eձ9];k]MF 8Owu.m_onƭDv nK7Ӷ?/<S9Hpe zN1bx=v?|+FTE3y*Ga~BW2CKTW%XGWw:/''%)ܞv#v+y᳘3> dސwAO@ O?K[.K/F5M2(%{Ւ5S_s ^_$ pƌ,XY\&Qs"5b@Njz"ԵJJ+_X hx?ܨa¥\E:2A7"X; U{cvjC"@X ^*)"#3vk+[ > }Fi(9Si"F{]-k[A*3vKRʸn7Gh,/o~dO,&o|-ؑ0e|xMunb2SHh~bav ]ȣ (=Y['HqPSf?~]4h|cZ\*w`ֱ45Y֮Lt%ќ2Y#OzBJK`be*Z|/6ma׃_jb꫟{=]mPl"%*L:`xxaޖ?& V:/ ȝ+ֻ)V n`~"5Y.@KP5nj s 4+ 47'j lxMxQy;S~xrIR LPUB`g&WAmݟ H$ R ^2Uoںvxy;cq ZL@euf< {GX >g5rAզxtf~T}eVӾ{wO K IZSqGO;f\+{TP[NԖ2l[{eeVekԒ,>_'bF8wWS}n(Ie,R?`C4r6}1 F.P@PH.b0c!nkԻs]ᾮV@Wg@`uF.z|U"~oW-8&߭ B`1ibi=ĥίΒcݳr<#-ؚۭF9=\8EoACn8.Oɂ@Mϭ,USJo$]j!!Ө[ZZ9,[5=\$Pf俭x ViL/$?¬^nYB:T_e^Zxv\% `z]*ڢ,1j|=mB9x ԇu!ǥYVZo 4G❪%gW9`;'82Y+"QtYS7#*'?` s;G[\䬽57U p|Y_v¯e`c~ꞅ1B-U^?|)RR H IBC?H$Bvk!0OD䁾]@Dm%FQ;GJ*%Gz96MtSP]LjK l#.[|g b`**l1MYx"dFF-z1S*^&@ǃYa|Ko(Hs P`!,MX c/wI'o(C),h# w۳Z_vg |fNUlLR#7 "}<p?LrlR@8>atIr?q*GCU)T;H mK:gk~98Ej7pj5? ]zT+vXՙsߍ C#!@bt$߯瑔"Y7o+m2g%!_$>ډp =X8|r$WZ!K#tRT'5i'Ӏ]ט~YOa%xsD#yGαa֦;3@^g CY+O`m"ȦNj{OܛT T4 FY\H=S/~9ܔ]&mg*8,l6*\,B?Ь x\)p<Ǣb˲"qbY0bs+Ġ)R| jlhQ5Y (|sjVwV̷(Vܱ,gLCoD?EqXvqߛ堭*tz!< mn{zCZx7&  1ޞ0&2_lEsJ(x}f5==c}֣ |& @neN|),卶n|k@Q$r%zEL+a 3%rL{˔NF9 Pd LF/,(.ratixgLP'PǶo-njemF;-?+m1Ȥ݊LE~ q!V$7BxC^mOJ̖S*-1cޏ*B͋ZGӔƙ7 !Ő@:8Ei&*UmGR/"/ Z哈/V*|hcٻM@6ʮf\ՆjL{ףYs!]#pb~IqO͞uJ*P/*opJ^nȖ窵|5pC :4q /mBAӍ][ T%N]5s_M|n2e ̤x%d 5.4d N :ef &CVac,?) 1Gƽ_`h⽏~zkÓ{QfkxF [i_e>yC:Bf>µ+#k0i-p_|N/b񞺨x!׺w(N39]ò%rn%6v=>YW$."lˤ0j/, {v0,we)P&W܌sρMWBk"1몳넦oغR*EF`O.r?;uFNjR(Yl4+d ,BJ2e4>_{iA_$K.*Kf uX%. ;rquBi9 M]Mz3U#˩J`L),܇P;un=^Pb"T, nJ /.\?2hKY3CWD1>y{:~$4z]MtLzn%[Gy3Qу_WVgQh蘍ٮz@Uqv59\WޙiDk&w !b݄2jYgg %=@.ޑfbr!C*ՏxB"[:IW/bR}~_6lhI6N\;0 ?AWmҗI%7D,% &*؄9RZCl~N(w(΋K+3ϏМ  )=O^[)gƋLLJ:%8HLoo'$'3<nLOX+4!͉4BK؉Q;|vpqr$ywvEbNj&9l8*22 ʞ<4(5/j!LѴ-x'Udh]R}UvE/R&l _LK.X.|X+d%# z!]-feMAaۉVl(ln!z}?0)W]0f8 3Oc*ӬioOQ@̙r,OrNM0E9?xy6t&<5%F;} |\;^I)i/)AepVpuqCx9ՁN΍J9O pɠ .E7u!֒@B)uA~UПo~w^AIJ {K'[PmWTy4QDA׷, Fiٓk]Ü `B>|:S4EXP J eٳbfAJچ~,V$WBD |<6_AP/IbIMCxa-)t΃iUۚ %|><ląBC _tB4{6.oʉ6'Z4F\FȔoqЂNAy nwEL Y쓌c3*IB+FsuL^ KQx<0s~þ+9&PSkL J }yފƨ{`cGAm#Zhuk . Cu5}B> YLickEyo?STkcSch"^^8מn@&:Q+y;}sl.}_f^ m‚H QI(ȳZ/dcp!^:e"ѬW*ܿK88=Eڴ;&@mTpޏې&{%ZG HVu1A!M#mZFx_zEQ;ٳڕLq0ٵ%?}?-vI|y- ႓4h\qu`1f8, x}0uL/U@\j|gEL  h9Yh/^T,븽Zė2vA矝%͋86B(Jː:,X<=,pw}=ymM73g!ad}@#\a M󨏑1KD ,Uӟm2$յuAuܯ ҘJw*mӑ2{ӂȴW 0i쁅\GWtab/fQ"cׂŃBw#J7. Znɏ"o:b j2OW詩ujS.d>eC07&&I =?4uȕ.IU"~)lnza0 Jɔ#"n4o f~Y]=Qawgo,xktߩ"\a ?7}"4^쉠S>=L 6u؋Q]3[^}!y@jP܅tԛCpA&Bq~LΕ2`#/;~ [l#`rkf>`ic{ڿq|;bx)+)Cٔt]EUk{+fQF阤{ otpv$ f$ jݣ?NV8!ݲyɮEʌ\~4N>4 Vϣ΃k5*![qZkwEob3CV27و~bNJyO/V-~O]Da7d1ρ$YjH9)7ü~ySdLeIEnEm#R͙~Mcx 5h􇫀VjTH.qɈ:$IW=Gy1ޖ|cc T9!'9yd[R^;?`^mAZrOc6@/`yvs =Ma!WEq6 #ZAOv1TG\r}?KwE; D-DУ3ۭʽ72 0o4S8&=Y$QH@p' o5_6RZG8ɟR<_/j^~1A'eWeMS#0V`NOˀQ?FucTK*SO/<yI7䞦#rwPc0: ) 8*,R'([k8lp;"y<_PQ%>\7n솓i~liP&ނhb\!.O9ٰ0-$=WǿtW R tE!'NdIL+b772e{M`М&1jȂX XoJ @7 m n4R/Tv%7gNUd9O pʝm*t=YGM4h;ΰHڇK Fyh.2_A^]Ʈ } 7BjvY:%>1%8ۅd)@ia,?6AerDc>NZ<'\IQ*NHY;z)m_[+Q#SH1Yl*A0 k&Gvg%''ի+!P0;2h~ƢG~jgb\8*pq=WYufY^cWLOMK?=Tfk=De~y|wDP @иr^QmNMՔ0IPO/sV^F[(wau|Ea\Z9&;lHG|xB Ie5dZa'f{_WMD, (wm3c-o2L{/SF`axCE5ZA;霡v?ƙ&5apy9ny=m|Q؃K:P3JvX+S~F&Șx]s^$)?Orf#KyC~gZ=+}j֢] N;U{{D@un_2k[v]<6ԾC䒫I{d;VUaμ4XGsǮL S=~]$ǼE' " E56u3oyL(!GJnexXEyUOXyl-Jaw1 7լxCbg9+ 7L4z' Fpǽ164fˣ9إbxgO#R=:^&qw#NcV*,*ƦLGhRT nźqSe夐<#Mj;WLܲŬ2mGlʏAKVb (+*yC^MHP ,3}QxqQO`Rb. :M*|)Y7&֚'=\-2V2rKSK.QMIA37tld7;a'䗸 )2" @g#^Ih_ݭ967&9ZRa5?]%ˎ[wu4FZ}v򣫬y>*=1M~lYէ_<Ꮪ%-ZY`Ix9@ wgO!wRn+|dYghm!78Gq@k7||rGAc赨.-BɄ ldxDƨCQm@/>}JKf9y'$xk 9^L8H8-PR@55II<PJ@`s:N~ኽ:&F?02F >SpL"%pWo l{H~-7?P׸ήMb=i¥,R<&>xD[ X"=881omA[ňP*4@W=B3 rV+vv\ϲ( "Н1ϡ[d;o"d!:gU8֢2~d 3ߨqCW5~Ӄ! -twFFKZr!R"H h&#~?_M XUdkf@xTLNضp@NNtRù1.,xv=Nݐ8+XgDEdbNN~֎#faIC"Vnу?Yj?4Z0vT]P@P)??h6_ `a?(x Me;0>AH/;AoBIW|xJ 5 A ^T`oV\5n +1V-h5&,J7:7M|'ʼA!$~?3?7%UlChHDt1F[oA]8a )0"tSn`*]3RZ. aD+\$&X7ibMC0LpC9ECY.FP]> vr41ɺ޿8<3R"up0d\ Jj䏭 n t@qqp,6%;U5)8C׭sk"&ؑdTߢ>ՖYH_Z=>?&l,![_#-F`:$\<*U_./G(B$2;2@ 7$w_e1~j7Pi<1[0*}I\v~1A$?nD&lie/8@fAbNӦ):ҊrA{ɞ-"ڌ"wTnRү $v ˞j/)$^n+b1£N\qT P(Iځ`݊&(#K|< A̶~@yˬ׏Ir42>:8` A=yK4 -`;$p C_?H I</DC ǸL=)-)Z};㒟)b^0ۺq#3FCRvP]']6HRlR#Rd'ikh>3R S(n+zl]Po=T#|fxG-)z=.C;1nRȋ W:!BsRfs=B.}b/=W&ht%3lE[:UŻ j=߃1 :=|AUXXܣoE &eF_ 7bi VY<ʻ/3:ر735}PxN.nr [@ٯX{P0@)\WzI:1tS! W<%' t7l1P+{Ք et8$@. C-/Ń# B, S9Ѧ넹|ƧLo9,(o1Z}Ys%ሦ JVWO#6[F>fb/F~P>֧v}ha/F o'` /m&mqۜjV} r|-,H0b YG02lfw˶~)F0 k<)NNo)f/2exYfi{q-9!⺜:|sXq G(k/Z>%3'XO8 }_tv\ \.+X.+6W'Ɇ YhjY3U`?J[?UBX31C.Teڄ/k%S%=Kc^c?$n &ɩCU~5R;j\ƶE$tcLr$Dv2?5t!*Vg@/+<@嗄OvĈ`bm )e1l,8^Mu}q8-|ll遌d%x7ֻ_ݕ[f6~4^TSzGV<'$O,Lg UW,> fb0ɻJjgwQk D5QjaL y; GM_5]a/}$߳|)Y$8}EWhQ"w~idW\)>y蜂3S?&߂]Wv?.Bs|>Vs4i_Wu}h 8/·װ[ '`/{?45%_aN@ˬ ҫNW$Qj c3pɉluHM~JG&O a%hwzZQ, %#V鎀)l9]}9 @R!1l%R=-',=6t(CZЏD!yeL?镆 NfJ ՁiKhMÕ[ j8;kDV=35Qar[dTTFLSi&mo+R\n9ׅffYULTGDdV e#ȷGF9\uak[:f3{b鎐&fH;{F\SG m&&7?uڬT~mxyQ)D&1oՄ.'B+3; Yzm391xzeuUn_u4#pG2sIBdU/=7S=:"ieĕ1PGx Ď E /Ӿ1Q?wX"BSXWMsJIDQOb=&,CriRj+Si|<'}*Ra+.s ;䪻'jtOo&x=7uHl)Caq2xS󪬥ضae M.0&({j^,"Y&[5nn؟k}ˇ7ߟ}3l헅uW^Q]QJ9>#B\ 0uN84ndY1߰zU.@Cؐ}H]sٯ>]g] mk]^FbH]vavQlj6*FR?gdy9$3چ}zȾuf Uݴ7+Gb΄32ɬn \_/0ZӓFvd YN6PJZ LhlI(Y\.\CfD|e[T˯"nԮa.[=t$Y%Kzp o~+37ݪ?E! 2`Q 2tP ^ɐ¬O­lca3åT 2il&9FLSll8}הXGGСvV$榊I`NSENɈwZhN9l¸mYj}gG@9C7&5BEP>x܁ɴfAҭ_GDwH._A@27)X5a LzN6X8#na΄.~s6npohу]Hρ^Fu, < -4:,]R$zhɃF-OoD(UxCoM4㌇}^ 'Zĸv\'Ĵ󺩦 &{IՌO_IF/qZm5Q%PRDj+ ,fqHs?p1n ZqD ( Ab#m8h%ogF́SݍB:صD3,FYRc ڭ fa٭Y5"Z{nun^ w"Z1*aBH@nuRGT *}- M]?j1\q~oAx{TfD3SM ou1# 8?Kм[,a;v[[q&hTVAu砮RW1QA)j'[F^6Gp'9󛍽l3Om; imө@H}nUY`OBnͱo=ݓTϙ5xX٢Ө{ź8e~U%CcBiZl ?l},T3]":OCQF<9O. +9556HҢ1صQ\EۗYЦhRG&s6ԦܙL2r=TL"f--e!im:q3p\ "F/yk}0d _t;t~&;QevG^>CHcD&+Lݡܓj"-979P=d14MeQi(I45ߪ$Z5.b <,hfN  ;*HJ@ 2 zaՇN<8y#vC.uwMZ41]O04p Pdq&bXúB܎pS|:2q*( (+z%\E, re<1I8Fֆ-TajKaψre΂~UD+)8@+ɹž7JX^:7Hr9-n ufE, <*J2Ú:Hdt?(/6 C^'o0IV-odOI( tk:D @_kalvEU11V4zI*3O-@ugkg θjO2VF^ dLGV,]L܏KZ1';$=[,T;1dU-3Gyt>g6bXd :WQl^Ai:{_f{s v޷jS©&uIu ux1F&h:굕 ݎT!S )ё>mR PmW؏rJ&ЉYVZ3{4C|g.:n82 #|GPr@MĨ"9㻐")qU4R&,6aT%Ƨ" [Bd.ٺ^DKĞ3@wV'L '!pE6twfosu&|2@]y3YtCrrA]*ӡiS4o{ M  (mgg5QCG+WZ6!r8?z~a}WXm:QE68فgMT(p~^Α3q7`^u#c+,w'ѪDD{h.[ +tBC7պ3|%iN*vs?0 91$RIl xu~)L9֑497u'acj wSZiM$|]BeĨ.[MT`߽o3D֓3]1Pܦ6t8sE/'e:L.UJ' ]cqRUi, Q ]ye+(zEu~l/fD|pF~NQ|iUh_G_Kp$?#WW(#pW/paT{(%1JNE?ǔů\N5S lQB 9EF~;g?@c i|Bw^?c>(,$'߶T.Q~[C(G/$CAP._ |Ggښ`׼͝Ai6AYrGt:#"q9n9;a(hFAf+Q A~Au:ܲºhغƠ{гQ{y6"r,8®Yn!^pՎeމG Ʒs`4*'tDa$hY=qR $˯e\bL/AFaS5F+!Y$p4L) 뢎FwVux̻)z/랥.IJI.Ryw@qрg1c54 J\qտ00DzpM6$}kqdଅb=U# VmݮpfiOi/mC%n~vz^4Ԡ>%Rn<Ӂ=`@Aq|G2wsckn) 8\m=` F*֐#\t`|E';67#aĴ:6eʱ_0RLilz sA|?A7>xcQG)j)oVugG̠{RԴMM?xkʛ?AYmLJ3T`*p:q +=7=]Ft^И%NWBc\FHQIx~G%%B.xodV?XDG/ .dv孡<];b؛}fr/テ,G~+{Q,](PZ@MZaܡ ikZLjcԠ&>_,# AGbz; y(=w)Sf^103EEL0V>f Labj(ܡI2Z6RhIgeN2')j9q7LG[Z,ثMS;cz#@k%'ePWA X}-G/I5mYiG=30[C6l+x:Yu0~E5f030k4BRC+g^}bfU+^m_fs2WW1qˑ ٱeQ1=EKrI׹( pޣz񈨅>R^ϙEꬺx4'}ASiۜ|>`H:l8y1y IW  !b~6)SLڿo>|O_u7?,N3>I<0l?ΑwPHv^ ~L_$%MqdNkoY@c[[i@B#VT2+U|Hv(Վvpݶ҅Y`m콀frtK{0^HkkBZ70 --*k|yYT?lt APP~eFw=/qXX'iyͥmT=7&@}r"!2/'ҁ@vK"N/H82nv;%!^vS+݀$lK>41ԭy%`aB!88WOjt/ܙe_ǎk >E(ęox;k~ 5HK=EPq )\ )*f(Epm0bALo1*+a:~R8mdUWIOzt_{lDM^w`,^I2ݱedKJ*60s-汔YmF '{MgŞpNS^_(Ϗa;Ԯw+ĒՓdYRK !nc\l=C_S'g_/`U,{[ P4R9b 9@͓!?.$  + %E52U_(kWm<}F]|p_"[ɒc5cKڏ12G+! :D9 j*kc7_>2)#=兌yP`]gIAܠg Yb86<\Ո(ڊqzLP([;Zl91 Ԏ5|®=y(t%?j ۿ8:6s᝘}0~RxZW& FRT+iq"Ua$Y+l];8_y";%M 於:ex bZؼ]EOڋ  aK<\(j$Y+PKQ/zOI DNPY`'Je / 0ky,8OaID56Og6 M葙?0;JBk^HXVYE=ǠK^߫M:\듷nLGjgO:,׈oj~SMPOR}nvUƄ)I0ݛ8h}9"FVUڤTOrRd`mj[̋֝F3ŧ7Iu}:pK+1=3蠽 VE"^9ǣKsV K⹸ޙ{ɸ5bV"sd/wf4mj^| b ֮+ 2% rrSzPaש$ck. 3%RtֽicRܬMgi X/E\}2_'VA7.su6._'+3C12.W44U^A)ܝw5.PwEܔ׵OV\xcoW^ J /giZʰ*ES5 [{(z+rbq)uzry{*TIpVBv8f#?G [S } m7żs8[Eq#_1gpecr=(4zW xNVI! $[q#$P $JX:8HqH+0w?o]i@GGzԹ`]`Y5[,W kG*Dʺ4w~۲7-I lTGz%M]Ж9iCp;OfRj2)6209Vn:QOzR~YFnG$f@1쪉9!@jL3Y'M@f(DeSfzҗeLj|}c4ʐ LDL]l3_.vN !sad[Ӈ⫗u~Hi^Hښxd.Bz}DCN4;;ߟ^Cn/?H5Cꕹ=f#2RF$;ف'I *of#pl Fp3]TsiQi_~.fY 6:~nV-+gR!y1(gE7h({"o$x#j-@=@sӲ U/DL _R Go)FV\EDtu98D,{b e~K,GUoְ6׿QMgZ"oi})JAV be u戜ènq'k}AaWm{ '|ˑ/ 1K?_.X⏧ M`2WĎ Sݤ8G+ 0[{sܭr֕{ADUҳgqM4]>f kߕ^y%UBW h߶YQ#n|?SxIn[x;0 F=lnLZ+q;JF$6Vb κ%/]ڻϋdVֽ&G&\krP|IKޫ;V>iBZ_HŬAD7*OhtL[5= Ey E|%~P]+C:3Op]ͣթWY[e#젳ns c}Lv#S'/Hr#e)vŜ/۝u/N_קABf(ݿ=X{,f^e(:檕D7 (8FHCn]nfLgwVg6Ӓ|^(r]/Zub,ˠN<ȮG*԰Ņr] |6!uיLuV;), {ʿ\m[VCԡ#ȥO)A}6o;ia2) f 'a2 )X}jL\ˬMPj|.1 g4ͦ.c5?o~ȌTS}oVb"i-ӜPj3X:6tzr\Dv*8K>Nkr/O? >HE'V@( cHfw>ȟAH*kA8V|Q>Id͔W$BcSIntݱAtu>Vs^;ÆRVKQD44{Xt޼]aZR0ji_(uȀoοQ{_~ɞL_|864īp!DsA$8ZlÆdm"PSmm滠rovoTVo -^[d'Xgi=GD22=nttKy,~fz7/昹sD2dְ>ƄK}6(wQפٜOqfZyᛱvnﺺ;H J?vZsեKכ[k nf!_w{aw7iY)LRΘ.npu͖壜S|[i{z}0ficZm3,4LLZlCġUBuݵl W0Tl;{HˊcٹYm2qnQgij|fꨝSr{T#A)|1dXd\lT?* /\,>~;$;?aݻ)HfUZ*'Z WrRQ$5VΞ>mRB[ a ߽t]@괆TB| EX86JXXéfÄ7N"ٿ]5v-Xs>K󔎳{mHA)(,DEHacOaQO&cVͥj`RrkXD3/ j.&uXX2l@\<EP?2V&5MӲ%jXWlW[u" S&U!Tm&x/W[75c7'kOTB(G¨LC?QJԬԦf#ʦuPD`ţb¼oz} z~c Eߡ8x`9n)헓¯aƳ@JX N@xS85~+, )&H/V{)wt]s_}sby,(P&Ƒy!In-utS8y6!VVt쥺+ _1]mTLDh ?!vjt17Fz`6FJa|$nzڱ)kY}ʊVdَ63G>t+-e Uh*GAѮ}Ԉ[+-)ƠI✔hFUT5>8<4#Vcdr;w >^lݔ+YfLH;6K4[QO- +Zf6F ]) 3o_Ϳ|{C yFb{}gr_Y w! >_Pc{?WZj| &s[ѮոS7OU%!O+=ف v -9Y 3r)&`C1%X/&ؒRQ:o+'<'`e$4e{ kajn(vuc#&-d(gSa{qpj|ݎ=?m"k8`"sYAcq1}oC,MGHEXxRbFv<;LXuؗ@`Cf~#vErhD`knG|?B{Y[\4I8eZ (ɜ'g"xI]=)(ݑկF2k<ԐҷP5_M*(pܪu#⥁⹲~,6'w$<=#ׯoroz<@/f}̥ٸ!w\u!9l3Z =$zi[>@ eFH::ea 7Wb+e3p7p|mvGs0ѵ/wO[Hǽz"E`sN~;lN^f}^hoZH֮YHdYq~ڞ3XJ-LՈ(ROwK|OTYZP+y'nK-THS^5w\E,Jn1?8[Gh 1t)FΎs_⒧b80cJFOcbxrFbb\,3y'k[6PH)cSzQ_Ho $&&~ҩtU@FQgGgZZ|D)74VX$K avڷWǑϤ֛g UC5~: y7z[ujpЮx=M8?Gn^I#-laYRO 9Ϣw#1 lONcm J\MS:Db%WF#lVU\\96P8$Z`#Pؤӗ݇Q=>:jA7 d:8g7n*j Nj\O]7\'.Gk&pC敻_Ben2 ]eƅ[WRB&mɷ%ݞ$Iw{=( Ke0+PVW-' sr; =2ǝlߣ<"1hJ>v/ܣUÀEm#>VquD9WjƆ렚SRtCeoqU(Dr&/xEϼ.Ȃ>}l|"E1%Tv E& AM+^9-pttFf$ [%pcvo8e 7~B92ƚ((̝.ܾFoٍ\68"pCȴ5%mY~b"@hP&Vs· }-FP+nfϲDxJ3׻t>C{ۘ.i?X$ȡEi{, Ue<>׵'z!u)صY7EY>FHˀ/w3===ᚠD,1iR^9y xkFROgp‹=9tW#zf01h~GyRIc߇3mϧwIa>Tdd/)afR4dt6Ϭ3eT3lTgOE|%,4 ;bh3EI[[pemKk4My:Չ Bdl<:ٱ8nw-13*r;*:̲ܘ}xǻ"SN(7ΈMl'-ZNEdUo&0;5>dᘜ\gDjnHT9b9+X\_ӊzU{^X[gEvlH iuRٽL_eP ?.q6wUwk-6˝p3QN^Q uSRgujP>}O_9Mݭ{a;{نd7`1 }?%(bb f殙/aH:ߍ(Ln!D\"84 `ySQu^Iy }d %iZXu 2M^@DjB|חր rK)q~ρ!lakm̧&sǗ9/t&{ n,H`sڽ5tqMߟN--!2tLbt"%R ]c.iPbFRk{=~srjVgЀ'>!?~D,G۬+<]7*KڎùiZ8gp_KE!-4PF ؇8y`¥K2,Y&e6yM&K*]e[/d͚u\O O ;_Ria쏜j1t wpf_>Z(}7's/ڰ 3V2V{Wh]`3Eg^JI$=s,$*}/6VDy ř2XJtl%e6mތq?7_ڏJ@t}nM`&M j$rzWH9Z@VьaA%-S1r(2!;j]_Y(fѬ`ab΋f_nhUT5GJ%ХEry#c1eȔDS9gsn|?{_ )41ޕ׏DQ1Jw{3j/}Qu++ZN>GgK?B1݁ T(p< _۞eeZ>Y+OX_#ѳJ:V̽UB|zUw;B;cͧcbc [QB: -X>u!2/P'cP"2 ES ~X~x 0ĞR,Y"jǼ.VȠmUg/SbRtYز?7;(|`žs*U(w $8EMܴSɚ1/>?*۸/FaQ= XWs3e2d9ǝ&mE@b(V]?^fSw ]@@/9ET:Id?tP~5&4Z+2Ra~h]e%w-Pl|yBkMbR/0[F٫3(N)"V@ ć>E; S覝VOcl%rXPKؠPly" K; D+!fDo}s4ܼB,%`YƁ q$`T/59T Z$|*s? aWuPmqّķD[@[ }^OW;{b\Kcm a^2obӢ-n&7*֪\꠮ɒĻSD x ƜO} wfwIc`bI (4;]E3s4SUςXI4$1BƔrKᱼI%3jz-皪MvZ{rxs땲/Y=h@5E1{BgmBM:)B}m 8E ʛJk]x kna(MB+h?#T"<2мU TvXD^K+meܖ6"!clJ%2F|C)XNy;Aw iHcyQ>]33s/+HDۢ'D𘫕,X4m\@zNmK&q_SyfA޴i姇oC[/934QPs( HFBHdf]'Af`p-((*3ٶ B[r]`Z+#NVDX!yWdtjP~ld\~X! ӟ#TDIVZ/9!㦺P5P|W/BmeQ%)bT 91͔x)AdA ԈG jIl=Z+0_C"$w {ϸ2{>FnL69,mAFvZ P1c2 GL ?RF#S8BH [Ν7 wX 7]MV^p5X ɜݥ,Q6GXi,RĩDh|~SM=j7IzlqF)9ި£@ϙ m@\$sJ8@9fc C7ݫ //8wf-2v<] KƩ'xIduEHqYXG(}OIGxT5w}GҪk`W-{"ml Mݷ тx)YY7>;wvNl9z_U¡oEZ~t|v>Oj޸pz3;k 4'tJ溊*#JW̿@,}Q|_q7#R(#(}%Ss߳5OFNԱaV@Pu] W Z7EAn)voBlʓtR@Lۺmv$0kkDz`UY,^ ݭAH? @(ڱ,~|Vf 7@yn]\Y^n{HUUtv$YίO[(κn2cGduXhCeo(PY 6Dt!ocqvTC6g|9k{b !nk.ŽW4Bfb1+9@/Slߋk {೵~}ןe—beʍ4or#.ޜ8WUn[]Z/r90A,I %-_<~_?W|kH45>0U[֪=ӆvLơAy^>\B 3PO)Yyb@_;a|][=Iڏ'7q"5d[&Q L{X是ޕYbhPyF#u0/BtoMptL*U\axJ ĥ/:˱FOpyOyʸ"/id:m3zx®v|fWTr(?#&UI͵))df/ Pi#C8$K! br&JO"K 3,  2WP>X:5ixS_&R' tR2"ݪ[b _z9Դ: DOt1Lt"gIXLRM,$lcD[!BJ$o#3*|Y`9zqI ϲ=|MBżK:p\[˂uPqV5q49 Ռ kb85ecGH@晁,a!|46"nNŖwT-nHZ6wm ~qdlS;{IX f#[5ʫ Xn*eJ6'>I_ I1:g>sq+/*i3Klעż+5#z@hd4.Œ&s!n3Y|712=g3|3`۷,2K>6+y%7sTqk,x05/o@i-`N}ӊ;&zN J7ަV:l_n1xQ` 8wu\:crdzfk>h/7 lJYT/EkVC|בGW&\l?PJV~ek)疺evgnX8d}`I8q7 o,P W5tR/~!Mn@;u 6D<$#ȴNLbmM/&9F)Lj*}*/3jV+0ݘ-%ƅ#-8Lϯ/Y{S=0 Ѓn'f.#O~fC0LMcVItQ%"ݩZ.O"?+7.BaB59/w Q;|;}h)"K<~3&FHpbtk&6)r_2!>ٹhWj_*C,+ϋlr(~KcmF#Rü|X}r^C[,V圯C: RA -54)@Wg&T5w kۏ.bYs}6 `25>?}0],n!u[)e%R'(\hqrTLl=DA$h^Niz)hJn&eǩ(_PD4X.+: ]M8PK-әߢ~ g%Tzh(PJJshZ2+Y<>|ylk~Cfl+Z`2[ 18ݢof˵=b5psD V{ a 96ˣ&q RXg)u"C,(/~Ҫ-s?3ٰ)V̌@DXrft;&"wb#q PUpT*8>Tpd^eٶO`Q1XS%t?46ђ]= un@"IW4>6xd''&B$8X b52؇3ij|TWy-"hAf^b  [^ ( si]ZL.0-cb{y\dWYy3A=CM0ş+ŶSdo j|֤h\[ق"*ܯҳݦGR9FE[cx͹58/H3L( :U kK:^s;CZ԰a~S!b{p:3’i[hw⌜bGD>bnm7Ņ?כެVEuER|>10C-Fǵfbq*G9?ܡsj 7RH,XxMZf3 g1i_>bo7S s B7Mz-P򣤢y kѭU5] v\ 2)b;?g1<ĐV6%Y%?MDzrj4dZN D4fxߏn2lPp)w_±[]JR@EنKЏ Yzy|6ݥH\K-3$]J2 pΐ5=6S @+ `i6|Jݲrz%guGh|o0?oDƙ i"[3uT(+Ewef cdc:i+8&<ڨ闊/Md* tny[#V!clOTţ\I/2>p&[ơ[wtOK' ~/jܤoD=2NfryQE +NG+g`0kWWF Ejsodxދ`{Y4rj(dޱPZ_}zck7aFmNU.oUn^={.,+k6LJdne8^dzڐ0X%d2y"qXc;P/Ni*ow+bX:=ϲ*pM"?Jg:ɥJ-4 !/zD-2b޳(JSKzXM5depLpz[ q( xdf/u\^wGܷe_g y8܇Q[4Ƕ>g~zd5WRpf]9Օ{1nDhwcŪ0ce{\@d3=о;>K:[ݡ;Q0kZ"]IϿgl~*4a?9%3 `Sv`}Z K {"sKx߆se;3ٞq=sǶEJO7䦕,4%o#TD(1Gv̺3GB4MMR˿.yrײ)4m 8t5Y]븑"W IO#\|%7r 9BmpiT81"amVqһKGO|t-a>1T>l8f_R4A/\zI-/;gP:(4JqhƢ4vFY]X0t14V 9K™@͛sп=L KPU,P?J!hbW/&Ob匟JJ"brpP !tT_ kPK&~Vk  [L)v"izz5 @N{AǂU: (n5T~c"ajrO \qik(qhI*tKű { |@ <&q/IU #x:Lp,)亐+cwߜؾ`*mާHT 987ogW-!ws9.VjUh+:yN2@! MH4 a0lGz5ip?7XrV .z+8,aY}:ΛS0+tB{O)鸰[Y[8{\ȇ,.\Xؖ:6JךY-!`1U̧-})BTX)r}w8 䭹_u9S1mFBϞ47.wFSe j)?n]H~PǨL71RGWo,0-WaLU,j nvYI.=7c^5&o®n螴!`,ocP/.g9y|@B>?KX4nװ9[}uAe8%4$)# 'KSIk|ٻl-{3\21:)1f]{ʂLKWSs=&dpMe*ϑ|"]ێ_r{H5ea_!h +6/D=ӭޗh(N*˥a'p.W`K3ވ|V 7!&vcc@9lbevkiɫեqFhQ[@S&6Dqj?vde{Jqki0dA3nV*l03g Jo|x[^`YEs5M[|vWX N5t <7R'&z{*\]GgQ]eVlrd mHׄ6BL?8Bo{orNoLȒ4żoXdپZn,x6ep9>->Â#7k?[%ޝ8~TwjYklv+Y~H|ITt|V}}p$adɟ /Q~ʪ2c_ i~1a~a?67"q7qh:n~_l tUL 6.U`#B\W_ّ-gXtϺ @y'D l c3}ſ[ܭzf+ϑj@<8-|Hy% ,eP:Fq}o9zlTRLwqƶ3j\2^.UWYV2m~e@+SnvJ-_\m ݐ@> lH%%GMv w/zt\D93i2MZkK(-lz(Ҽi Ĝ>`U#vXχq?g߉JWH*SwUeUtc/&pvY pIJ!Hr dUKpvyEޢ`.֣f]7SVNF(`"-7Vݠ87[yMli~Nv2WW;XX dSfےg4/ܟTMG먃t_o]rpok} Yr1NFԒЖf~/|HosOf%D5 [ԪxrM`PH?\+_^#" :ݧrh ORH5iqMrB'lٛ׼b?O/%,k]Kt‡f,^~X0Af!V 8{B2-9#J[VԂW)Nk;D@:7j/0/K'$𱯚o/lAq4m&WWM= CQ:jf,dq46`,uλwP VG3n[<뀑mc'W4NWI}/C<ōUM,xEaXg=xi W"mTjSgҎ,u?G ~$jeԛ<@רLZ`&76 Ƥ,.|VTPlN稡IJ w:͵C9[Fm^R#kk}^P]s= ّYϐYa ;GăLedcXs* K䞬&Nw+}N|0=)-/y0s>6yZ֧rW2_.cYӢQI.ɷZ/^AorDrRo1+:O<%3ؔ&R*ܹ%WN+&Wήkq.KC' ]njF=/] up*{gkq>%@&;zp,¥S"+NH^|ko,4p} j`O_5OR7PD0Ƨ:Xwzwa?Jߕq^ Ю Tz14<LrrAI:RǪT-ɪॻh售ƉH% /ה >+~vrDDϩgWd7۷jRђ=l;u(͸=qOoKzwVb 8?p,VmkϢ h)7xTP_koXt[,u-7uۍeWwP?2$m-37#܉C%+ 9p iX\rCUr f ~S)A_sK߅tը.! +Ʃv4uu6^2I5=3lwp]է]Fư,Z~$ WG&֙!#By>[/V7O4T9LkKدKŷulmHMn[WNLN# LC2a/0$svZ?& NTjc*32~DYe6 VYk dߚ]Ij5?J[v:c)- |!@˥q?k1}; +ycP?9I8+WfzZQuM3b<1\`Los(c*@۞}%N>~x % > sܦy.U "/@{Nrxv%sDn: 9 dA䷌UjsdX/"TG}}kV-jIxϓ5zN T<5kJ> 3rZij_ AV1_~Oy;rS1hD.k1Uu:)M'")kǿ^=oiMTh;Vl8@4L\l^J,{UMT^hL9B/Wf{|&V +.Bge2! %Z8B3RG423u}ni |(\pUʇ}a_|@LWH >H6h a Y0~CHÛB-q cCo?3O%tV],nSVc-[t3r./pͩ-|W4Kҳ76 3,?"~sFM2N/ZO4;l{Ỳ;sYLr_273y{.-cXn7+K<wFBm6:Jv<pCL7f|,\='0 ᰯl_QnUtyK˼9l#fud[t[%۫RHx^N`N;{[B\!Ԏ\H(AL~]6Jj+ڜ[n62%ZZ3N{zߥ5tr$?ur9.@Z('llb_-3Gqo?NؐU~^L"2r,I6b ;.D&t ޘђ_^qrIErĔ7Y1TYZ@.8Uo"HQˏ̺<,N>u$L;Xq9?`N͍O*P5VC _^!/4N|*On }i^(^Uԙ@45-#1e(|jY$_3[pO^o'r-+y nT7V;͸ɺz$wjG{+k`ؚ ) Ȋc z~{|mVi1?C#pt`eV`Kw5g B ^Xp+=quCTu01 ς(+Ie7cH~L ~"|,Fd]bXpjPlI--ۢjjiAܧm)^3eNzz:_);ƨbJQ^k c46e7敘"zY궊A*LG" lbX݃RW3=IQXE7!|7帻DPbp`ڦO]\G(X>Z~ XIX8<iU*c-/g~w GQ2 pE/wX "R{DkьpG;j'7(apXRD r[ 7K2U&;8H>,o8;Wx8X$5 ?Sli)=cZqҞ@Hh%oV\`ɸ(i6~e$+8=tJVZz ZaؑDlβX'Zm nWH("hgi_ang%gu'}썷X s(||>;ƥp;H;WlF5A,ɰH? 3C8u-6xv+oKkhfDӖ *8_<F >Pd><>+(ȓxn1+_ZU G/q;Qm]g]@vx/$hsUӲ7L;jӄg]y܏. ruLtHy' E?"Y @#9-&|]e31FȻ8*A=#$p]cd0귛O)p8z,z}CT u݈Kݤ*Nr$fkoQ urY=;5ުKAyW3g*Ω|vmTtHml7&ZdzVW\ׁ4*1Ϯe!GW&%)JEAuz/2g[<7ܔmQkrdR+tO6gOdG-}O3#0Bs#'0<=iKM#|cul;^x6) >so&P[Gvr>Nȝ̒ܦԭbjֿ- =&wkb㷐p kCC_R_E7s#2Hĩ|ʷt_xꁯɞ9t@t d`;F'<չ6koqT޽jub]q<2}&"8' |LP%b}GN9{N˞js;ZA/+fV#j }sHK @6x St2FSvAX+ɾ܂}Qd`Ja B>E̥~zc6j;|kwHAfU~gx % 7]0kC1xVyR/?>,xl0b|yA-?.?rb8?D!bsYL91 g7í'[S(PE0o`xk+Zbvh|Hv 3 >L½E9KOW*t5U!Q (ma^?s'cP ap:Q+LKM[!H?1mDjո ծsU$YsZdRG}"Ai~;!}$Z, rFRc~vGY *¢81eHn So[u1lC#:f|j^\mgLep @/ˁܞVzSV(LG_pNN hG=?u͚ 嘭x^%$U!dThD3e̷3U|uOqfgV1IK6= U4K889sY^.Gw=`Mc*&"c^>֊'W79]s@d76ml۶&ɶ6slvsS&ތ~;8=P'YbJL >!܏~~j>B}]wݮ؊ơsH@I%jw\nZfM1j?lӑg1xcZ-BEV&@7΂(!8e}7U];`AxKN?\M\F Bߛ܉~*sJm?*cPq;xEW;q!;-#x&%X[;dAa@ǭV!`3bcXp}!EYjp!!iJN`#&/B"t%#Fy!DgѽيP},u].Z__v@<*<ȤUMpǦjhWPbCZS@[J:P9TrpU;խ!o"gORz-= Bh-߸4&풧ևxGuVvYPEe-N"Vj)hxzUR/QI*p(/ 7ox@ґ)th6B^F ; 1fF""srI bYn)∏>1JHz-s)l'̼dI~͵WǫRk0wr/x"| T*cKPb՟b&m)duYT=n Y(۽֦1<TӐA8 g!6)6D39kmу }]<,kkV`oe𪩕 N5E^9 QfJЁJNqnEtj2R;""ѸbΤ}7j~ Ӌ< sHr18^Dvb C3=$dj4!^"g8 ^52C\ZP;~8_zuo̮w6K(}cKl.j2=uY3x.34f>=zNӏ{2vlM,4E}{&i B=h.ÃLж/T230RlCoP)O@ᨺOaZHek$A>DO<:m_oS *>{EԪBU {]gOv/؝{9+K˜~On)75; \2ߟD| *.rkMߩf:X>1֖wۯYoF漿$В|k<-y Yٱ̒~XrXz>#"Svں|߳(.;q%WnV]D> =x1[PPstt.Kf}FPR2sg\\e^&ؚ$k$s\q7;htJ8s:ls]ҫv >Q8 'qX.x9%ևyVNhݧBIn !q]c=%wޠ( ]53d$1BX;+QKVeMmi_<كZAw0PZ&# .zw 4*yDP [>Ib5W|bjd\nTPL? leByF'lo^P.|@: m1ZCB(7Blh>'-^2Nfb䋉Yh OZl |&ST[YdN^j+p4!i{@r֠sXFT*B{n_5YZʪ %|!}](1ĿG%4J ѳ/"14N֋9lbd/1c`|+UI(XND̲:WNxZ;vög6%_Ja{;?!6(֖6jwHBC!‰#%KI]M%42Í]:-)0|eK z\R6boe2/x30Ǿ[Xn.}ud2.!h/%~Y߾5-ڢY-+^^ |؆[g 2ӹ~5dd A:Tn%D xYd儬fc FyJOLK1CMeAصd^GN1H_" 98?xvLmQc. 3vxŷDPBwCZu`6ǏÕ\AXԲ ٰ*2l}5?|Q|Mai|m=]{p"fSZzeɯZ6p9#2&Kۿ,8 ?{ܣ"(A[3b5)@s%Yv5Y{Ɲ_4uZa^pa bW Tmep!ԹԌJ:Ϟ"ԡ8I;Vݐ~:#W+aun4^ꍶf@EդjGc=l9\LתN9Bџl-,0߯x8#r&GM&g{ vնq闡4*ݼ7k YJ,\D<ŘBpQR ەQ>/1PI jIѶLz[fjvL 5Dok M"'n4eݢI)M`86]g0jI11[b0}YA3YfT5: 0hO3ibt'J%[缉0qmSi^ I3s+ οU̻kIu]+ ϡ'o&{ "6a)pb"hԛsAތs5kh+<ͱ"$5z2Tk=Α p ?nLKRT'E$̃ 2myh4M+:}cf#AJ{bgG'(7Yht:׌㯌s|7k-xRd: :8JB2^䌬$iSmI#lhU5 bd(_\q|5ӉaGUe@Aqb8_]F}hWG 'j)l:[$lbeSu~;6/py5RlRgȰ`.@+Kb)`0#v=?3AWHR>HƠ[JTˠ7itS&WV  ub\?ap?EEܞ'B]yW;FrF ]kfF㪲'mAO&`N"E(JTDŽF-}9\ E'F,k4B{%Fn#sbon7HIo}c'ڸxuϦ%c2o; mppH"D^Gʽr#y ]lkT51ԪsLW^z:z`o*:`9}J Ֆ0)%agB~ [@`ol;z9KF&[f}:<2|mE+*꺐fYdǂ\xhO 0w͸UԌ3qbҡ)6a|ҫ[b$pyb^88h6HE2\&>`Kc]ܗr&X穱t}w*,.n&<~ >CyLM3.OZJ.곀;(Eh!i1cbHžAs1>ˠ.r8% >B(|I5 aݦBS\Ծ0Q7 SЈnP}ItX H}ؙU L',a='&6 GԞP?1$|X7oMb&+r_ipmEH#AAo$WVfoK^P;K6/I(jQx]`NfRUÂ^ĵmf=+˺BrQ;8뎈r\ˠ$-)BNZfY~zfVe9=ٚ1`BL%gE{<9 .074qO;i/rT`${RϞg?Ƭ_'} X2?;tCy~ ͔U@9yCĮ-I>1?B!NVe1B#ټK#brbh>; %sw&fɇqa]٧7K^2,G`ʷ6S[!*B B۾s.^ d"ztEhkA`s(o"*=I}ư֙1~?}gQ!sN 뇲"z"NͲ8Γ`*i2P6yYQ\?!`b?B_$ݶ/^dB(]OT \TTfiжJXu.\ǭEYx@.,M^찍 DhIgg)| zy*BlTl0NMp({)5#A#ж.0#ˤt4[v(G S_+"qd+%btJvf]Q2ߠm׽:cOH4WrauM<\Png* o۔iڪ億 MËY *we27E6Tѧ/NǺWGNHmFf[Ns7;zY6~Zӵ~7ja˹ MDH>!!FmVL4w/LN|ąJiUs-3ȑėh}cv?Fxq}GM-2B&\r[7Jgfw~Mx|nbjqnޑP(+RO<]st#֋M8zN(-F7{ *藫g#(s>+vCtp;.Au'٘4xBWhi&Rϐ$oW_׼PUb5@p2ex_(&oP ;+jΙOQԐ"Fcӧx1A/DR @kqBۮ:ZK^@wߗz4֦>D W#}$ɺLI'L/al3Z];Ԏ*CeaTmqEɾ3hT5G sNV nSvͬ>*Lx2b7d>hbt}OH-8dxy[EOh?E1Xi O;4.>b$;t7WD] @퀽9|cÂ_}'m.} B,ųڱȘ|R^J^btٜ$?!x[2>0%y_İ ejTJ-yB'TV] ኿J5H Nni+kOxJTS2aWXm˾kQІ^(Q 'j(~&frz&g|y|lC7+~t96Jˆؤ`5fzq y:O2Qz*q*-4)٤!r]E*Jr7+<q6 %UQa^ĖDvHLR-x(hrj%9At!WHP w4LC?#ET"tگ78-FӲ4$`qY(|;B5U#bjdŭPw  ђZ=oFN"{@x4_O#+_a"=Ăk9Nlb̩ec$!cI,H2_$Kf1[nQPfOZY[,ss0z;B" JCvaVN$L^'!<&I g$V^h@ϓUCYSՉжebX59PSix2ΡDLL3ql6 bS)` `{H9caV <441=|P$ Axz}XǃPgf 4 `y&Yّ 4˃_`e|NϫvDjw~Q &_Έβ yxIvzAhgt@8䬣AL!*"_ZMn$c:6hBCrEǏjjb!ꖪ I=5 Ғ>_cU>|N<<\[&888LT|kaXIʾQvc$:6$32M#y3t*e4t)qElC %!5E V]lcIh/Cn9#3i-g|Om'$6WJpMNéw%ټ_V5Xcw~o 36_MF>-4ϾW?2>D tO]%3영 J$: y-"T֕=)ur' _}+٦Y%4oZ1D LK>S\=ʪgk{~mxG11 iEWXN?}sxf Txn6,#)!| C'-6Y<XbPoC6m"i -x}[[o[vҥwA!IzLZ<Ũ{+Y|SX5ކSb3^[tZ,"L? 8=qKA+9êF\Q1h>EnԭԔq}卣gG@"(c[%v)ZdmsZ\| 78?-sv~.G]FWcQJJyx2@wG7>~fR%g}.ϾD]O @czxShhW4 IeXiJUk;|I%i35nQ!ʫ}Ůh rr7YTMN -]6D2;' ŏDžCUYsVϦ9u>L(KW fEC 9YHN>.#}}/t&I0m(?F;ϒwjɜc@8r굇ݰ$q$){ Kn 4S&.DZk6x`'k>:A^z/ |&z{:8;s;vp%3VF64L4&c="nfJ6HcCj>䉹 Yૈ'쩷?uGhO'o%>v:CIuwEz_LQc4!|$*(HbYx >nBI iB 7!lCy˷Ht]|)UƑND #u~qrC *wؒpv^!jj6"h9 4#3ϐ'GtO&0EXZy&?󕹆7.VڸTs,uq** J2 *v L@fCuy}\.엻o3 vT. ~4Ceݥz-hӢq߭H)^'Gt{Ww F55h7〱۰Zss?o]LLrǣA"6!%hiRvRک{ 1᳻Yfkaˍ`gOϫsq \alz%`5q6-?3bA%k`&1C ߖ Z{έen%y.}N\(gҎ_aFFUJjuQDݷLoB b,Ȇ0ht[N_T=8ZYAgcӲU/S&W1d7j;{juݙͫgLE^i&A1Gv Sk{ٌI 꺕xXTRK9hج*o-y6Cm$'A>1aj/j?~Ϸzď؛dVГevuk e!Z>㩅)|ᶁM4j^Ƞ_+0? m46o2=c)f]XTY/8D9 ɐB8FYVP TB_cSZxistԔ:7#zkxUc陧..,zt}L.,Ze 8v67@r,R(sD[oK{"K\9 w?gB˜[ū畗dNhud܃U\ ]Dm*_Js*k㭒lVHHQ T1(TS]{GT/<;۝t*M_YuJdNw7Gbe}ȓM~- hY֩/cɶ.:bVHs^V4eR (Ige]?joqY&/S7[Si脵%W߻4 ӿ1x3'ex~,>A=2e޻T ݊NPQ@œkJ'>V2Δ֯$G9soTvzzr4X${%F#8gi),-FZ &?9%|w[YI<Ӏ*A+/:36btٱنZk1Һz>Iߘ5Y*C`;{zD{One+{*U`jm:Nvgy?W3jn?eg@Rͭv^7Ɍ.#`$m¨7LOXv)%E+rzb9<^Q0Y;![w=^Fi7u$ Vr~ !( @iZrTM5"J2Xck #_`__ K z +@hݫ`q=LV,)di:5bX2)œڊ$% Vh1i+l /*VWFzn{X`2D7V}eC lxN#J4T/끕6޲z@`%7wl[ZHwOT,*s !jگZxyu4SdW̍gk!Gfy1q߸C/羕r;y;I} :Zؔ`\lѭՈamiR6qZ%DPDߞ݆j"q,9E4|ejhVU?1fwE>ڤnmPu7CZuM]^ߵeOI$8&t6,?S?rh/mژ7AoC!?E{kCozZ ,n =q }RS',ǩ_<ҠPCFäLWӸ-ژwUʵ II_+IíǵMX)95V m2ߖ *fdU%Jqp&:T yVB繳$ю"Cs Q/k|!QEPK9\pslŰo`SXڦn?SN &B2Q-6j,wJb8|r8 (]qҤ=*Zz[JRz2eю 'A.9uLz'゚i.;W[-EQ%.β!V"74[m>345d] ^x-㊆~Mّuqwxi^JA}{o#bufߦǎZUiRv<?^޾xz!'bX'fY%Xː(OH$(1HȪ@ R D LjzKڡ(RssQm"@M7Y"r[ΝUb_K&5(- }̌+7ol1JQ\X Zo'ףrm'R9h!m q%(yaCi4&DOr|vj=ןXnjAs¤5ilVe pYȍ^g[Er*6 U,µh֯A6 2#n 9??[mwOr Mk-jW<0SzĨ:ʦZs ~sr">-l-'Q2}kԸ++sA^ؙ/ITb D vT{!S ؈d5dd=Bj2$!EkP ˉf_ӸR\A7a;*R r~<n|CZ{ iWź| ?K`Pǻq]/5 C7OEbƐjJa؄ LiJPT \-LוàOh;wpL[2_[>òņWg=0#\M1Ŝkx Xms_4 sEvTo{9zRS@K5gv~JGUULYFHBdQ j\?$~5?FGI_/Jxu7% @i/]*]H:Jt"܇٪3Gjfa*;TPaH&MnFD&9Bƈn) )n=}<9qus47gMe6t0>\3!9eǭx u#4gDZ Xw_^GbV A "uF -Ēm?#z)rOl9C^ sz^m+Q /g1jߌqRbx/ܰy1Z^6(mtN㙊*O[s逍}'Ge$s孕ҫFZ|;|S5~!bpgL|(T8'y}0v C|zk"a+"bI40^jG$>9iaRzRisP*UߩeP31IM ~37O0Ry{khcH2"S(XPX1RHm_*;Xg׵jwKvLgAdU5K뭠ZMRc N"s( QfJuv!U0t jVE]QhOcA6.v5c39)} 39S$pN* S9{\qji~jRx׵f'}9RnԆL{ɿ˷!.&5o^R.?;ͮ AvmPݴ= -epZX;(4Wmtg߇y fLyR7%x=?d׺ml|N]y:{(=,"mF-{m%͋o72gpgkKjkgWRĀ]kfR~sCq eT$5.2q!n J^G AL;bC >UMT?Bqd:.7)ʽ<7A8)53Q`kDPY9#W{ c֭1"wCƈGb%x}泱  $225f u[DfS/Ym/2iט\M`%V>'(vMGOd2Dt_q,uF8ƉFn!]Mh* aߥ)rl>xJ3)!G.H)*QѺZto`ѡ}1^ mU {۽Ɵ6"?Bs- {=),lPb1;7؇<>,KivwnP*%#+"~ #`УtAU22_P*l]nGL2l*l Q]–!H5SuJQy`24H_c2gS $ץ)_$=I+aiQx0.Z|>>!rTSlN@?ZadxO0/f/Uw WIwaJ4x)c4qESZwR;)lwvwmWMvⲾ{X)$@0{zaSH񊜃Ռ*nH=+&]Ff>"HƨQ܂kRlTO57A^)K& 9Y d K@<+j4t28/&xzBWg;s.e渋.<^~D[J*1E"f=a[ۻĤ!懅?%y -Zrpo_ ׂ1E{5DC?pfJYTފE8<ҭVȢ YԶ|Aw(w  $Sa\s([`,Y)F6>FFRG)^0i5F(^I~ӡڬ'5/ T]xIy|fκ{RufU0cQu@%I _{w)fdK4]dm@k5yB_Ud+-8iNoMh8} ґM#Z~S*>oj^sP % l߸[bZ;ÕOwK|צP{ ElЉJpCpdG{kIʢ[<1'[zgMɶI=w= m j./E6hm=jm]}cϿQqT~\UNwiXt51<\ ^u .jWd+P-ݘ@ca9#z-ZW{ٲ>gSM)EQ+j '.`5㼪<\>y+i7,e]Gnh^Jqk4D~=܂_CCq{.E-ԏe $_suupNs_#'99f$MSiuW̎Oeq8RśE*8[_`GѡXGE_Z~y D EuN?@M;:&4p[1^ )=) #{XGQG?v,LA{f_,e(FHH2KS32VsT6;?=P㵄IN6M~Gu? y\I>Ƌޙڈ HqD%Q"%p_吠E$?~#ɧ8Z>7N0D',N? Kz1-f@`oHZ&cZljLlȬ44Dp\sД;Wmɂ7U΂ fh"g2„ZiK*aP5 e K?}y&kZLx`6QO$t!w>i'⦅ˤIQ vnLmpӮF[42I۔y8ҞHޥ q3|[O/?oʈI9%!p¶%*$fgsNf6ág(+%f~Q"<+jģm5tSjԲیu\e*#xTY=(rj h41`cӮGrK-Eņ1VKIn^W5D0NYGD1#qf7uFAD:"Y6Fjkotchj7, :,bIfiMe活jt08_k2ߴZ YG,SoLջx E4SY;,LA!1aZ"ڤ#M:>b"pChB/:3kO9ZGiƌ* /J\)::xw4R|Rp+E4_)B.y&'[hTSs7L#AY}%*hz@hNGW\~D@B d1idi27o#k4x\lq{"yW|f=r7{ipG.ڐdzӆ@:S]Ga=g&_^M7c 2^+vrf}/>@]ksOBb=3隌d'c!XN;SݿrZ)#N Z,Vw<-c>;ĸ! ωHܧd&oD 'K$F)Dg啖m0BVY*aYxRmݟ&k)C+4VD/ԋC[nڏ(YB ޡ It^_~qY35Lg~<2"{I@UMTWRMGELKmyB,,U` I:^T֏CDhjQfZPwWYK0d"s d023hLhՋU/ d9i0jWcÄS~#u+`9 42>f;`^TBAw"plg+03eWy#q <dHWub-* 31sMbۛ;YC1XMasMVQaR?i$jܝɺpQLϏM,;MfBY%%z@~`|abs?xc.aם/J25r"[\np$:0Lj&)({?Na6p~Ŀ k):6n3 17Dp3y}3l a2~sbũ,u#3.g ZFˁ.y#W$ܓT7IX& F)X.kס:FDkճIGMK6K[CkVafպ7ֻd)Lp¨\@K0-B\op~[oLp@,?DzGDCavQx8H^_!~Q:S]ooJ>E+PިCߪL prܽo1_%΋)ƵBcOWz+jV8\^8kSUa}xLtLD^ӊ;o^=m˩--WcqbEis{Jp7F7`ڝQ%5d-lJ*`]ZE1fvY/>NoG.7e7`&I"`/*EmuEPŴJDz dK\TxM/Mc J"e|JIT^hx C'fe;-C8&+ c]c[~mEI.^o|*`(h$~?CC΂FE5#mp(M3(Q˥Ψ"8R%kIT謐ЂNbEXu ,V57^-6v G\?!bɈ\a@VY==/YL?OlS!Jơ݉;ljX"үo{xR*Ax~{%/P]IQ"5vl9#=(0 zc%fJ?XND3"rtcߜCtz($)5c4n2**qD-4 ܳy{ 8$,TnRYORH b_BwdH%12΋n$ԍ1hOޓl,+Z={]cS)Dc+>tLNJ+)>v$SD\NIds8Шc'KV{B678z{j~226`>]ϲ92i@s/U"#hycUhIOlWyMyD+h2eOђb1=Ց{Dn6}W쉶yxgnna5V\'4s 'Ut@u*a\d_7W3ăO'xrJ;_{|ɁYLhP~p?_O=g;PìcO! t넆 ɔ[ߨ8%9}3(:2^\^5@Y$R4U@g'_JHPhu'rZ YaKMp"n6M=8" VDZH,Qwh2o{{+'/ċ{xN"|8 X櫨EJmkV$c K\/p}0ш?\]d?rY܄;"G>P#5W?^ #k| h'%67r4_% =#xHxHٚs3} >|[Ü UeחC&=u/ S-1R>j{b"Y /tyMԏhRaʚBɰImyQk [o؆ݷLZ|k Yz/Z ZQ!2=$بajgߑPg/*2QkB*޴K"خ y|mȚ˪ KT;H &U "R鷅#t?0<yiod.Jpۢ3C$Ms9;9ek&9K!.g^.9#iV#Jٮ)̶Mj)oo >bm Q`mJLZ@BBNt(D'I:8/S/Ja .5[u<ќQVKFP>s$.P)0+k f w)Ƈ9p_Y5`=gsď`tc8_V:{<5RTZR*oUز\c}1j4tW:&U7"iEAEw 9ZJ(+%%=H_FȆȶ)G%i4~tc15)c$A3/3*+Wj;wr:>5;rig׺ʗ?A{3i 4KjPQ:q"΢@w+ѾKL(O-Id9u|/Vw4ƯI՚d@ǮcVN-e KnU)=εc{kĮ $319d2 Lć͇>/Nnی=(7[d^~{{fȊ@/aсΗrQiqY{s2 ٖD" mW01DhYwmԘ-YWۊ>2q1ݮVU:x17ZcU2eKԅ@(CW'nZM뒞q㋋/&(m^\LΨshxVѹij2]ry_֓'[WɬyJo.ֻ94fŽ}=OݦsPm&)L _pXva(Uwl~M̈́Ӽ{G&l1cFyh'lAu 1~GKPadWn5U҇%maq C֖&29f^2L_\7ƲnɅ{FNVmc3ATP":~~7o\.CS;sz<3RMМѭEBٵ߼tg5˔K^l6'o;$mH cSc%i&WcnDP'V=R;j +fj1L59 0|" |e9$Ʈ`_!U@+}d!8_ޕg+Ԁ ޹پhI4$gbԼrPz[TV]/VlZ]}5/⢎H_r R=$J3H9Cn;%y[hz ػmA?'<)'qz`+Ղ9LDYHf)IrmnVsuj}!hЯzlI¦!fY9Nk.0zg:81jߣj8A׭qjlwJl'qBɣKb18+HHI/anשlPܛMwwۘQ΢7=WCm̢}hh_yB[W|%[d=lVM%Oua{gJ:KODk(Roq];۱ 5iZJ95&:eز̳.X%Gj3M1G$VM=4FH0qo"h;Yuj:~EJjW~rS0G p#Z;ݞVV"#&)2͌B dԭ;x,Of7 j+U"L.;˝XS2bC~-a锩3.D ,;/P@f-3*lQu?!u| [N T L~1w^vWu~DI` Eu#4iU-¹d6h=>7xbeI!y筂2bp%( 0n{6ӰBli(͌3 &f "*\[\@`-ucő/+Q' ƕvV"!,>61NW+_ɏ3%Yp+=w/ZNU D!]#D~rvTsmx¨i 5: ]A?@WtaX˰+M $kiجS+hϝr[y X5Ų5tt}Cz O3}%MP|fRLRf]/^ݏQZqF:S\(kX7wիYٮD}D:1Eb-]]R{F/b҆竰N xӫ7[M5G~nPT'4&3i8p7bs f|q4$ITFv|jؿWPpH^w/Xl{?=xKp:u -blnVM7MZJOWfmm-gÒ{t P O$j,SmS"['ݥm]M$ץpaBLjjʦ͑ hQIWTe,E5v+s*w,×~ ewP=b<~Lrj6llH/O|X_yYKn֪mEa\јJB"[d+te<tXa݅~B̢/M)ݣ٦Xݮ-}m}?+/3Al.Z`Ry˯ RK_O= d?bAXxbFAOϚ{~Kh{!@5$U1i1l1Yl&#xj&cxʂմ$MSlD\'q^ǥSJHNLM:0;K271ˉ~vV d?C] YV #5@sz=0ٟ0d~N *b3M2^2q]iafuۛ_1pFHI,<4t"BML~m})d/6-(a\eUJd''5U'o^^RgK_6 |asPP89bIrO$_!pʲNccs|UT!l@P#`3ء{[S =3+sbKIE3[_|Oey#A@h.Z2Y:6ܖPCXA3y x)O|?&^ɫ̝_OVSvXmYFMO6=K. ?C0|a*n [xRj472da% })]TEb3j ,T4(=>7M*~wiqfNViq[pI$5;/ ` `9s=qP7*~|[xW}J})2*3%PkUqTƶHܦ> E֫B1'mւl3(dO.+40U^ɐTQEmMmI|<|MxDM?+JC9pv6 Өȑ/f,G׫z(ykQ,_ 9!OWE:.q l~],_@TvͶDW9,QXQ`.2mc+ =׆6TA"(E珂յ\s"\ -}<V~4%lW  ā} VSɝ]xw"؊grxc93\bdg+h6?k0%B(M_5R9BKQyΠ {>oCX.1`cm)x y;b&V k$]2~B,ԙ&P)}SU?d:TuEθ |Xm~vxȟKϖJIyf fѤnd<ی àò$&uINqLw`A}tz!bͻMq|/-F=b5 3\>:lk*?E ־k<\hH%Y or5A4}@wZ+S%e`9.x6M{C_E(u6\ ;<WasͲBŐ N:R*3;~_ .CGpMM;I9ny?=s'v m}GF0v:„F=ZL Iq}u\tIy}ّ&dyPe3F8? >#^ͥ 6S+5/9pUiAo/S Rh,~(AX!_> 8Zⓦu6t`I(𚠆dD~[m!5/c͍Ծ'G28A3rYIzOwJm@յcm_c}i?mA2y]MzDFj9xbjmtXD4J3 'OOՍu"/?HC""qХ{'>װya¾^(th:c'6gGW>λ֡Ds. !K-AHa4߯Spy53ɵN^u7vH%~ߞt}P%>6ȄDCqM>K|gXu2=tD)Bs u*?["nxCKHz>+zws8LOӭBȻ%39]ʋnz)_[+lƍq&[eBzm鼤A<x0̚}oft8Kk[E-x?.;3vJA60(޼gyb7<9Y*,b}$GK|)x1vCn%"rR{u |&x)AR#<6iͿGS'qJww{nJ*bc%,Y\-}Y-g3Max08Xʃ "}c^tҍ$Aip!nue~wG%qE;idYҧHxjύ{bgl6-r2M!Ѩpj`@ޱCE)ZKzZ4SJo^a-Lr{60<S뺅u̺12=^#ؚ-9(~od@* "4Ho֦zjPжhKS6j"hT)ZЛ,+,-Co˻_u ΕʞxBϖ:Ku솠D/r Wߜ0Ap4+=ƸVRlr] 5 ,~j2\f/:S߈=UmjU#:99iTb9WA4mo8Lk+*?Kct$JdSFEChyՖ\䬊qWWC|ckUU}+R|q&֏TO]n,(>%}IV֧:NP:1pCrAJذ-d" oKKaN2- f%8G{IT~#L)6qY_(/]U:oTک@*C}3_fS}v\62y~0ȕT1q\ϫ n,{Q}#n9?l|] oc,|id)&S X#i|0rVۃ?c0&R:Ag#3ܬ),\k\tLȤtG"=vK+g%~c:NEib/`Ev&VuG 2X %7sV#R\G#j AQLȬTw`J% dܺIED~)Og|OZ1uƇBXx@A|nfថ6=Dh=ʵc6K3}Y_YUu=>gdou>/¯Qs}FB~#J;K%i|Ġ]\tF#"K y^m>~h=jKvJp6\#JZHN)e&+U?;@fۨ^4Pׯ@{{5x|²Dz?f%`BE'rGͭXރYO7EX,O&1M9 ]gc-Y_Jn耿 Me8-o1"Uc cBONF"6]`s؇~W~ԗ4}v|2husw>ъؗDytl%]nS>A/b8 {6߫3IiᏽW/n;߲%DkR<*`Oa VtTKv&6Anvp5QrUV /[+UU=tEv?=DEMYW ߱/Is}!9gO߮:w远PG2V1deoRYϩx2Fbb'|gGhkU4|d0 }—4MِH)X ҇D.ץ8XgK6`Y/~Sl(oH)}[/oیΚn7H xIE - W$)8' {OcU*ʙD).FL]msW99sҮ9oͿ~[`[]έҫe= ?$r"_x"6r9"ѳaaY|j-Raкo"kӉlԼb6u): ZVIEʹ;3_;(A/u?jFHzRjiSǑh/k%șswĈVYeL9GzA>j!inrlc>?S~/Կ$=͡N-~& {>Vp|9DkGK՞5;19orfE'Ney,hܛ*c aOV_}&gQϢ5vbeV)WC,7/0v@_] f8%&.wsJ'/{&T%K)V;q(jЄ)ab!<.SQhr HARhYak Ko eذRHGY&*$|R,=Lw>(u N(ox'>/+0`saжyTvK]"|VVTr; 6x*Aӿ1Ph6U(ٙ zԟa枮r] !iXmWȫv)aNOܜzjZjO,ja%uc#2> z? ~geY|&kJ8}bLiwsjb#5cR‍A/1 DSSޛΧ{h3m<1\PqHwK0md\*湖!gO/O;cx=g;p lIiLoekGOkSX7O)P/tq&=ę}۶l1ȳ[J@OqI==%otJ%EE׽iz5Dw%udĩ],~RvشzUY;sߖgC䤥<¼!'jUB_Jk;34[g^ӴJ &QzOKi/~dA,2߿MO2=?}">Tͫ0R [s`֥vM g1pVa_,oݍ>u n YEŏԾX24 9Ż|$8lLfZyw-8;6Ц\ 9r:La<$ΜGw ~́]F )ڵ (=LzdIL:XHy/8XfUe6=#$·I9ۻ+́^u@A!Ji2ԎAvrv3Xcn+k&-]I=G5' .weD߇m $ȐbIteCz2ErЖG.CHBNYhVp!E<5 /2{>V~77FF:o-˾PB;)f!Ʊ S`! q (^Bz3흧}oFBkM?veb%uʝ&VV(|9JxǤzxsRx^?1!9V\۴55s7IѢ'R1~QEϷECZ>sDߧ1C[iҖJ譢b ߂j#gU2쳰>+=1Y]-Pn)_W(-o~Bg`Gǭo L<:ry;Tc(x{?~mTͭ%bD!fS!RTGϗؒuq?W@V??i ַ*L/!C4 ~Y>]o|S$xoQ^,Y_jdlMh},oˢ؄7aȫBV^C-m$jTitB7x|E׀lOY.Ҫ %%w}l{S.W #/&ۓQVN jKS28O:gTI%5i_~^0 Pì=ڏnnRi\+(k{UѶ'tnU0,\ZwHh c<b! `0ԏLF%Hp{#ză'z?M%^)HX4'^"S]ꧮ=5ˤG2no"7"*FܩxR qazj m]Q=l| BQlqeI@% %Pi%L8 -{aPc+ urLA?47]O?k< ;R`u*0QBFLѲX~}5Q7߇Oup$~hқr_׌,W}KpnzEQ ^bq?q ?7\EDO#+M_^;6ʷ,]uw95B d aڇ@ "fdSap68W_Ό 3l,H*:}>^lj}(/#mT!lti$J93x-+ۡwD'*Ei&œ` {1+];(ҷ d|ɒ؊UO %z6>ip]A 5J 4+._je$}nBP2EˉI F>J{f*/]8>^jT"T *9$$=+;[[n*fI1'0Rs]C ()G&R;OY&i+ntQgem;h!?FȜɎ 째hYWd-LRG;Knr ¨)zS $hgwv^?,ZrS jۮ]tV/ޢpg' 'r\IQG_64ն5%r=gI x ? 4{>C+ٵ [X~ʄ "$ I?HuΑ{<^<UV6/3~Bpꬃ"&ݮ.`R0:ږ<>K#e96 OUUMD;dRtds WtHKє`cǘ@N &n[iwW{ѷ v0 D zHZxLՐ@&L{Ong,i+H,[K>Y.qxOfQ`؏PnS8O+A8f=3IYh9~Wϝuw6v,H#!>ۘm'@esy2(gСBp2n-.wmS,ͻeOCg龧*bGoOe T`mogjwL<3a%YM? TE);R#xjs^G7-\T6LݐU.Sщ9)=`&AK,oJ >ISx6)8EY>q_JrI]W,y4rw ׹g"Xnה|K^/:NUD[K 1gfXH!Ws\9Zw4MG̶lU-+p˄a=z% gکPbow$H }K+q=Ef en,Q@8#a+&k-虐kjB~DD1B`j"XGP(6ꈠ^O(TW`g&2>-kC.ʑ 1GU?eEW ;1OJZQ3,yJGAfi K}U+8UTջO(Cu_I 4 M )UEG[0\Opua\~ՓN-fN-gsaҚl=Px,DW@ۺ#XEd*n~|oI@E2'eۯP릔6mՀ1&w~w{:ǥ=p$^)zLXjE(sc=urY{jKx 埈GS,s\7\=S>tQtR*g/j`?`_ RyS9s0Fʯ71`$&RPܬo PUv(V.bc^|Gyr09CKmm) OkdY皯"mU. o˔{(/!n|JfjK`& .~҂'*.HQ8Tޝ{(-'רï 1.5(%L؝] # CQ~Ffj)W xaԬoPiڴvxjvDw.r&דm$dL? J#"*)/l9)odFc|*.j3_ɁY n#x9G3z [DLDCa |[6tg{=J&ۢv!*ݮQMh?+#NG3C+@}Z^cyKp)~)U ך{wCcX0E5eg`W׈6NK)Oȑ5 zttkOUBG9l!!#uu Q?s`>ȡ>ܪ[ B+(kϡBP :Ҩ8F6"sSho 6f&.bf>jw,Iã[8IߔDp䁼zcW? .EGAj׉kU2:6#5oTU >2{?YVV Z1j LvxC pkvm Ul\aI(2 <:XLT\IWRyO%=^uf=CD.{'TؽT@*ۚ mOfŎz࿵\Hbm-\oNsbOatlr{qszLlZ>U_@{KnJ8$XRwpyiM3AB=2܈Vxc@8nh57F\X Gl//vf];yڞ5vR֘&5U_VmJV"?<*̓O;GꥬO]_1Hkh ]>l~.Yi8Rњst1Ny^3] bywQW-tNW֙0Y3yMc갦Js~l$kJaVT15"SrFS-z,o{`"-'1wzl(,27ߔPe pHH~lTrnhU-ʻ8! Xe>k=-x:35Ͽ2-ђ`a].Ƽ) 7氌ѥT=ҌsC|G^nŮ:imkWkBsP[:64^B{>B[IՑՉpsiu!3V Itt t ?rYs!{߻s@gS~!A`!b:ҟ e7] 7e35Ư8:PjtO$@X8pK[.ۣ%C`(o+c|v ̗7'i\ 0ZZ~?.w6[hOw#@8'X44~!1*i$ӧ :On# yuI',u=K kav=X-&j]-uLlL΄q5'-1 {扩'p[1[CЁA薥zWq(/Gaf&[qQGB'{χ󦛇N4TT2Hv?U|RcL Sߕxֽ 'IDy&"ȟ^7%jY6)l1 T[#L˨&+x歳!vo$jf:+Q&[zlM!NLhy׍o/rE Y8bu` tnAz[KŗgvDm/ۙH c2y7A״|>-E..7-!V,X4TY$%⇵NpPd[V$]N 9"%Pcݦ<8m8H1SA `sL His\>9sjQihy F:5uXIS~Ab=#уL+}-K5[ľ-Q/6n/NNGyIƍM\o:BVOYսx?TnXIkɊ;e03eEɩc_=}AJh8k8lⳝtwz'˨wEv@PTjtPJU]u`6S@3PH&*y-YBHHc{";%Kzo>\rA<;fW#2h&0r룃'o$KZ=@RʭON!"4%Z%`oilIKv3k\Ln m.w3f_fft,#ZY fu b2Q2*m/kcϪ?\ XD:TPǖyVRتW_)Ѱƞx*蘘-?N;BQ¹Ew0Ӥr{B!uZTM lG2(wyQ*N]! ?@v& ~ؗqlFugR}m˝3u4V쌴H5: gJ`({I1Qqϣ_ ZƮq zB3$9; غ|Gt0? xnBZiRq5 "D_=_z|O,^E 6!^ `"q<{^_A꺆f ~3ߏl3A>|J5)x=J-#& ްǺcxTT 9>xsaj/#)GM?mz`hBă0Og#;GN ~#C}O~N5yw7l՞O$#6 k1?uCU?*/XG)/y粭׸CY¾UuިfXAF2v #B (et;j c'Kd8g~_x ޵v_؝`b"&(5ri ?VF!c d.0lYngqFg\@?MK8Gf &@̡˅X3%2IbRUgK)ֆmJ3e+B03fv8\8' g\Gͥ.DI PyFgbjqQLȥ̕vj3l)ETf}WdGH:qOz\cl3,!kIwʾ)gO#C*JGW*v? ĘB}c S2٥?X&u ϸx6f%gN-b >QKM@$ZXPc]Q=Z19\{sǦ"_+j(OCDxsfdE a/"/7L*z87^vl3Mu}@7PJQa`pK/AӬX$W(_y,QϓӮw rɨ }|Y:ޠṶͶ@PПAͪya';r:S%*V%$yDx u{Ԫ\(NƷ%=p8m8=ǚrGL>z;,M᷷)6 v"y]gy$u @i]"(y6}{hqzO oP")q䌠J.CQ+!;d[V*5f+9NN_SEO6,kU3bXP l>unU{ԟi1x>uSP Ԁ?UWW Nf1%2xsJ+i̥>A7J@(&& '10]h: ;>TO7/&Tw! %##my*8esXSaœt,4S!jw!!uGxaBo>wT,{vSd7_ոIp8ʴ,5+1aړ1DK ^\VrK=&N޻ʊ`G趛D^Z_›'q^"jU>RRWTNL[SbjA0!tNj%r3}x 68UD," !K %9=R؝ʒR jw!A*}ǵS ~a`*XKZoW<1-%CִVHɕ0&Ci"|HbXܛ 8n@J& ܽF2%IHеV+5V8XΈHLD>o_E^pNg6t7Ǯ6뫵%aKr7-Jx.<} v nN1H5DSl:(bUyzu}0E]uګ`[!A_aBo;i nWlKGSa\gS twES;Ooܸv:ulT A]|N~gnl~Y- yq$:0.3vY/`o/7 'C&1#fD݈Qn'C\Ϥ2,/G١2l6%QZ\cKl6:]H&ke: nߋ{;7P._8ׅ=D߽}`'x{3|-)F~n=?C&KP7ʰ:[C\`֣@{ G=Z.S)lIqajo엪gL ?$yullTfq5d s@f,pfbH"<{!s&btP$!'InS{(y~HM-Kuy1D&Towrguu; rɛJ&H5DP;Fh%zUM.! }W˶)cBg݌Q8m)q4:ʻn\m./@Pym.?dgU z;BGmL2C Nj 7g>< /PS5Q!}bLx/sLNK]Tėdݳ6rVOTh!ݨ^^4tz-=^ܚ٥AT^娻Sm«o)2:Д//KQ𿵋>7vfm]Bk 5ZJKX}F"P| jnTG}Q"Y8~md B\%/$Eӌn S e挀 C&K׿.ztS?eإ8w#&Q3 ќ:f+m#j>UTp^|lULcQFJ̓Pz?^7w/v57eBɞP'sqJywS{k(X}Vi=l* rQ{\*%neg7Q )ltKrNןU*H^W]w:}晝4(v3F;CӒGHJ"}F, NryݔeT)к }ǩ.VH֮ZZޥbK Y{Yu;7p-Laģf»}>Wnu0^m Y=# >EJN^7f}g21~E W&Si5cRvy.t &ea>[ct rNÝ [#1j;`5tn`䒝X~넏f;ԵD݅ wUi2!IaFrls؉`=H_݄I~ \&3r;}!N.UGڕx@296gewlmqJ( ʐw?f#X'ns_%['έd~S\-zS8!ۥS~),*t&߄sE.rg=HV U ɜ3zϱwUFUDE)45evhyt{6b0}J1:E]F%ut۩(I|6{s8`|a;&Zia"+4!D5}2Rk'ʡ{i/]5aM7aMx~j`X9䁀@`BV0>cG{ C6)䲹J!uorGHl`׸䑡 ^bWrԃVѵɂ [Yr_Ʒ3dMWi'L!w_!#gU:[clWo*Af_&dȜTԾJ{16|XccBu]1dU,0 27؀667FuQt#%PIJg;hX|J7pMNS%uV9W~Ru;"i, &r)%hX` :I5fWW:1۝gX#cf#UM-P7&~ᆺ<)p i3s҂6r'NA|UqS*8bH5xȌq$}Ǎ8o6"7)*ϗ^1eq ʺ]vȥ]^'LHjw>wP{PeB~KQĂώ8:e4͜AǿAdP *UB{F(b7&.Nw(dz yMz^kWYt/I^~rnI*q dx/Ynj푙kfnpߤ tk ΈIՉG{1;T2JWN d9_k/jHx0IL(@c(l@8Bx>6yCQ PĢgeq3JJ? v\oh5K|sE.,qbi0w夔ZL׭6$.L3c -NȀK4t /p46X\E~'3fr%d=T!xؽD^ZtK[/M("L !.f8.~ J1ImMf9d vu)JU'(#-F2Ta}@^Xo={~E?>PHy՘*n$>^ֈy$j<B@u߇K%%Kc"& ˕17mꠓϡpc+Y wꕲOy `EQH= Ţ>x>W\ey7btFfW;Z?0rm f\bʻ0cʑ1iȎ:"!#1b>$:dkˇ&'Wy+Su]S4&mK5Wň{^ZLoPh4Wu=BbB nG aޜl%̲bAhu'<31poۤskIJrsG0PY;)fa |aazl6ꐁ,C uc bwO4v)C| N:Lo 0W%@V0͵ҭ2M9@lm?;aDw,3:Ǽo je%텏\7\X=Zlp_yIoױwcn>LF#՟]z|˿jBt4 ; 7UWܳNX8} d_@AiVy|C@R<\#ҡ{/~`1[òT~H ;"ыW}:]Q)ߡA\y!VzIYNG zc߇5:k!X) к-ekNgfAQ(U'J~/e=5[ۭ dgBU8bE4/X|IVRHYN~?r@:VsT>)׾*)PcUpk$TSiS ಢW&p";rNX3xE*U_^0Ws>;9EƜTdW˾̳yZkQ@y$lZDvt:]?{ igko>Omܥ* 0GHJAHLcF#DZ@1o'Е0TcX Pu f;ꗻţbp#3{ %J|DWp3FzԷl~A?sk6kn">{5i?ONL.,M%%>"R n"\76 l$q6m EpΗ#׉2)~|dw3Nǀ`7ipּrL!.oEGY r.5D^tNSΪq%_MZUb9P*9O[ʸXD{ /t^%HtqBMirڭLKmAEcEdJJCĎlC{cZrS8j`u'hdxJkK/O 5ysy@ʮ3ְ2CEm] OŵV9­knAAôY}f^=Oʉ,A!2lFDBoBQrUC &n0fsOu? A!=? ?E^ٔZƿD'5kvQ;]feaE9v 6ͫ_twc ʪ/Xaz+RQ_YYBFA=T4jv=b PO~;ID'3:3 ҳ;W*O~f`cg߄KK%sK6 XeimQ6!w@XM\1.QeJ̓zzA=]ay5a  _. )>=U Hٓ#~#r_5,]$Ψ!#]i7*,p5m:*u-=fOI_Y3;#BcZ'Ѐ+µ+XO!Wy#z 9t'dҲa}G#3f _|y5UW RǍXk*ouE VR1*$V * *VL^M^V(`©!C.XY!QTM442Wei([I P`̄d(P+bPlɼy8, qmNQAjq~*` :Z_EUcưt-5lL/:>ZwRހ!F>k&TkRLLȀ\q9uȡTy!nFJm~c4>#EovI21ļ;p .:]*B!䱓Id=S5L77~UiʪM>evGG vYSo$&VK&J)LNN)o{͏\TUmk@?,Ĭ *RMQ|bq[OA^RĢ)BP {î"IA2WnwoklsWILWжYG9k 䠁a@5q6ù6 k QL♣6SJGq[0Ik@)_'FuJR՝'ҺoX(.58I,|̻Q*T='W.J "-F[@KzQ߱.RhZgNaaNoiZ#bϙ`"+[o"JWz#.q?Gcq08F$La"p}6=-t$̤L#$,d;Q<-#rV=_9zoGAG`^y"RKFeիzV,WYWCM͢dNȈO,&(Vs^em+{`t?s5vRkFdXems53 j eKv-?T6y!r6,c,iv]Q/R_jYxcV6U4oѪ|"vsPlS4BEfl7LjAAM&r;<421PxYx^< 8m׫fqz_fVnspWK.y|t󨼯g$p,@X<Z՜ Zg:DOa.,/IYgaejl8]f{sH|H !Opy{+珰54\9@aF"[Xf#~[ap82|`Z{f7aIu+cnr͘54}ɤ2 N%*5"c g3DA)C[`Sy?Ò/0p(rk)(ȤxiimOpi4sDyyQmz4a'_|Q"pͩ"Y!t; Yd̖`Єt WlEXI%[fVY$O#[k(٢_¾ыa&ho!4L{L~ן9ڥn]~. fOJvӦކ4 >΁ƴM=ByJ|qē*OukMsl(PٟGɞrG,qV:aXJw5DV䭑Z*\4A]Մ&/%,9cqKv17Ǻfށ='y1tS2 B09_֫jՉ^?~J{3ۉO GH́yws36M | m`go'd\tx>YƎ筼n54M*\QKgӿv O;4#Nm}"a E5KossiݺBDEvboOLjA33j xL5q%:qd/蚖m?#Χ9o35i:no% KE˂Nn<68xE>T^+㷹 ^YwQtbB].2[ ̌NjK6aَCo6joIdi|o;mߠIsMOs,Ű1v*+z-%\^7J\I=#RLjwrW8p=R^?tF>6nsED2ῖ5)Rt&h=Zn/YȨ+vεL z/{H].Ou?3O4+sHHP bP~p$|=2b Qb&vm[hʑ"fYX: =/dPaO|1qcy݃]iWɐ3f;~Ri!(7Xo g:o a[cY0`ǫÜ(#97OG/9Z򠙷` %╯YJ(0h3JD[ZO|*L<؎ZŞHA :ElhP^JeT?z(VQTULB̻y`7ה46sCD4 KB?<iaߚ6n?BtNuj%HMt(z1S \[7q3G&wVnw4vߚ`geuż|IMm趤LS$VwX@-R[>zN}in/ۤ~Ͽ[RM/شH$ia_0Zхۘ9h%yv6c*zrFÎVᥴpc_M.ǣ@Uou_F#w+@Y `l~G 厼\N&;wwyd(FڃNر[T@H8sL)]`W<2,sdm][0'PQ4TG9DFf?]|j5ʸsadszc*s.:$\8}U^'ĸyDK\Pye iOu35+PdFncrNI1\j֤f.^655Oiy"CNuj_^aemi |ZY&\DƩS~FՅ{ kBkro7@ >ruPk?+̙=֮7vM"_BFUjG4/3Ș5sH!? mⰴ?Op5=V~f)m\ CL*CIXyL]zG6z_0?w.^;sd_:y7aQ͞8ŵ\*m#ëk \KǞX1K77%p1 dQ;\u 00w-,햦儸bKWUnhn]},NjANKJze_@UPʣ%C59Fi18cq _F77V׷m+5'gmKIGrcds[Mcۧ&ց)d6'g8Tj!:ȻD7#-3np};Gދz7$JRD)/MZgn7a7bwWG vXv6vܪ CB,K EBnI:^%4V ز۝ZZp{3VH>i|_B ƒײa;+W,n&SbU *^ޯK vgSխf~T|;>P`OQwP/ѿJN{Qlt0w=Y%Jd΀Uɺ wsפ62]*uJLpt b6U'@}@w'!3qH;Z6#¢|TDZ7aμo %qО2u?d5ЈQǨ޵/#+v,ZMˈ?{ C+1F4gإ2ony9 m,ݣyUƤV+ E{Tm ꝄTz )fͰ"J\铉{ 6vBTk_)ceM踟O=1 ;w5Er 1=c < r( Z"XuBS(aDՆYC{ .)'JOOX JW{>S/kJ$d4 ؍A7w#0M^6;> VF.5[:iBH#j=92@4Z`5޺/]a\;2֍cC@Oh1sˏ&/&_dҸaLQMU9ڄq(#|)=(3rszNJ_@w : {r LZ3ACL*5*â1jmᕱ!NԌN֮ML=Ev ȉ.ׄ0#e0:P̃DgcSaR9)YxRK6%T`ozX3oS0RuE$ AT|%Ds;%NtWFaYځ!27ҔX-0Q{bӃς[BYӜR~ DPiC2y(I]AH鏿NCO^Y[YM!QLlȬ248FP:bku'9 lƶ,#=_B>%JKY6֢y.J. +lj{(|WxP1:[kIY wOIUZs]&8R6hƿ{&L| fϕ븦 sQ{BL3A<2fzX#c#5ZJMGroyة2[V`y|也bǥbqpb߃٫r=q"Z mPQެ~I˪A$hJU`AdX{8V끅l16OJz4)R)xJŕ$%;6{["#/jPCᦞ~Td$95iBV/*GU@Pdgg잴‘r|2L]l <* DxXoրM;Uʟ?y$"|^qBSyh@h{Z >VNj:Jyyd YĂSl)uLҸZ3r|19?1:"6[=򧸋.ׇ?>>Mۑ93{.`/ѾFꍿtw3wO;o{dŞk\uc䮁'hB7cؽè}2=,9CD\JQi_⬋!ȱfb J=JDgo HM5{tC.@D&1 kC-6 aDiYJJh0E p$QL,ƃ?_ej-]"B|oIP]7[U2\OM_}®fUvV:N cєN+umi-DTf؇zp 1TkbS0 x&smJ oK۟F7fo3J Tju=HiX9~R9;WD-g珌\G>n(0$E?udHvơI,ataa RkO4.2q=I}䋥Ͳ7鼓tjrjձ7c\y!Obke}'?e*1B"Y+ۀS_& w~O)7?uH 5Iu2 Y( :I٬0x>_&'mE$1pY&zjAEiSCZb!e˙1X17b[SϢxc33VRʟUޏ8é\Vk# nWca8#^[T&Zjqwsy5%OLyG;mtr r#zLAEYi!_j.]`2oX(~)﹕`?TfYn7Az^fW_YݼdϋH.%\evNLRyn&LwV/k"w)lgZ/Ǐ*C5-|Fܳ&L3ՂdK?[ܕu6cQ/5_]E!r*K#lDA4X\x+AhS,#J֍zk0ꍴ>ܘ<b+e|`}˜NqWCaҽdRϕ*JRkVn⍾s}E %:QAAFcw3`d0|Qؕe˘G9aqk/X\p$W?iwi Ȓ];^6"Gj6cF4}'m5_VNky=n:ȢlFW+ u=BJ Dũĝ7$As\i%skxT3$;XoJT` rʊW'85K|%!}sߢF$dzvb d^~nLU=-]w'3Sb1rFX68:MiEý%/&dSg;<̒7sa1ÝSAk_F{oB')*Q ="E?*0kWhc4UyY7>u1]~݊c6{^xywjIsYF=aoe|g~wx Ue;+>^{GH1F9A|U8]i^Yn{B7&pM[;> oğ'ֱcٓ/ЖH`J~W B5h* 'g`nR@ ݮ>HnOµǒ֝W8y}=Ҭ@ <\mt"NkV~.7Sul.`{I ;ݾ&̗'h}Wͧ4O$+?x*y}_ƾxو}`XE#A8}Ҷ<ϑ䚺;lEaMe  30v Ob. ޔ,R a83%f t 0ԢZNpF'e )HxF;:  y4`,Ev0 ~}IGFJ7JOcR)5?[K߶ܷU,+g(\w;faY.l_| )B~T|]MxIe3-X{8aHţiW5#DrCq䄱6:/]f{{}x2)E(amNP,{"1g1B?ݾW}1hyq)Vh u }R|E&PqhůOg«3wDQ4_F>r^)$6XM`Vxtp/iR'b0A.d.}}BruE!k$+DAW4i^dTj n tj3MaEL8Whq}WQ+)Z}A G}b>Ifޚ[hV3oԜY1/B&fm^"sCP|NN O5ę4䬾ھ+a`7{ n~c3PiMbLEp[?2*igq.];n%wwweX4OO9UUU5g7ӟǠP-4TxHME'K|+eU:>F-5(>p]H6};750-;P{A5\Bߧ 0oUV_@ubX-=)5Ѳ!*>Iy[Udkv6bIJ^EfkUh,=1ckAXLWC<W'_RXC\?h0Nm cєXus ɆCr+[зQ5`KilDWS¿?u-(y}掣0lϽ'׈]__Vğ-9ВX~kB)I6 '7 (G0i5DgO~JX Ea ̢(|9n|hGŽ`"eP'*oӥ4S. kꎀif<+0y\QFToBlC1kTWR8 /Oō΢'8D˶xRʫF޺Q]c^2GM?FWz_04ż$"`?L/5+7o3T$d>+Rl-]y=RBbwOk5/ǓNpݐMk@sdtܐ!$_}kc) ↄ?l]֨4i0+lm(ydI"Nh&IVM}sMmJ[5:ynW׷ti1,_NH[|Yh_- =>P(S8cݚLhI@^rDg ,Hc8g$WEaN_,Y&3'mDaJTY2)]PHX}.­k(;2(U>Xf9U%Ae=ͪ>(@(L J(ԓDXf [5"/%;#XoL 9HÔnE;1c 9gevߔ>M vlj$~|ݗBD}.*{=GDue8Tʒ184ۘ&803:Γ~+#tp/ @`ڮ]HxH[sqInPA S6kAx+kg뙯hк_d\F~v) ?~Z}wD|mg<ʼywogr焖)jOZ 4gIB[e#pX2@+S#?hWFtH[}B3C_(Cx\c!W`#md,G ,ZC_d Y%ra{OՋNޚu- L/V뱧EDxiP '2Jʒ/p6&loh2MHe3 ڕ6Nok+~~mdM|+sѷZH-L?&B(/O_ꮼ'(,@lN^? W/ 0fO炃Z]ZjZFǞO VАX%>=@E=[DZAՅ'w(zT':3:;3>?3!Z˟SVTbwk /&J5!#]6z꾸D`]{k.uprQTJ2OW9Fr-ЧᳲO>Cv=ȇK&s.:dW^JGr :y@g m4ES(9v0WJ9i`X\|]SyEKѶ%e"pԏjgm?Q̀}جՄuW:HȨs3rU`(G"i^+̥l1 $4rf2 _=ʀHY՟S5Ig߇aBM;^ F!>yK><&==i8qO`0cy|` "9" BA WgR23@=enka]I?xcu-Fut@p` 6Hdh.O&RwPL&SW-/TVl/^(Uq6,Zbﱅl)E}KxoIoD1TvEEEڸom $b gro5p/jCÞBRc4|!\X0RmX|Wް)Bzd#/Q(+q+RoJۊ$;NdWdT㓈m2+f͵F&I@Z1[\&f\*v?oe^ &v~װOIxR' X; H=3RfP(~&_ I˃3d۱8_٧jD26])$u@k R1NعW٧޵7v  \鄖_At=5q Pa #F[[G?An8sLwz,Vl3qJԗ1x`j#i ),X]$_5{ȦC<,BM̋[kEż$LXb1,Mt]Pbc"~![3I, /VlDbfN6VN6Zܙh.:>3s\&4 2L!W/Iڌw~@ԥh]PReě)d_ďF&92kz^w&ݡ"ﯗ @IP{Ӝ)68uEpLC&}szf^}Rm,SHd<\>~W$+כ65R2eR8eY6PyJW>fYJ֔P~Muthjnp[_)v;7O>N!5r qk'"\mvO!RigS11"O}M#fYK9n&1;&V T7SEQ$ ,̩0X`CH5Z ?H])ON8@G㤵">t.N&xyZqp?&A0e;>Fn+sĮHf alsF>` kϻp\omR7JϷ8k?2+0 |6sO&Y%!p+>28ݦ27zLt{ɹ&]82ocŌƅU\ ^fقrIAR O: Kg%a8J*ZG% XKC)?}Z8u:kݏ`Ju[hcj , I DeRE5djk .pDg)ZG'_x[^q?b~r٘0-$8LVdrVsrlaϊq}gd+oeH̦=j\JD{Ф@t~bKTlID{sn~A+*oF7H0n94Oǥ#^?Hwޢ"m,aGHyYc [tDtX 3ɨ ۵cBot'.ۑaU q(;A)ڢ.VX6ZCX8|/LB |WF{晑[4/ ZY: ;PH-_[|S)bmv`6($ygR|?+z`P'+lk[R/wRwo@vWPS?c#S}o~%׏oZ)G0aض}2 vvZ9NWݦ.H!v_]?RvJgo@=Ź:DJua&%V{Q e,I{ߤf_9H '0ɫ}cOzoD 䅵seiwrU+ C8/āTX[jsvs(] ņì4_F2j/m@ՙdj'|]HX~7f!R53=-I~N yc{wvȹ=ձz e2P m&b`5$Q8Ohlgz24_3 (Ku4 RxJ V$B}bءB(U&wI]Rʊ.R>6)~ ī_l|Wo折9T4j ]:|J;CJk/aHL7y;ΏIuq{*%!W/LM-oR6#hM/-xQїD[>o 3+o'lp=4iLҘPNlc ɂD J3Nr m|ƀOlց"HVƢH'7Rs6F=ԕKeAh  t#zlVk=~kI5+dB=p;Cm`O2] ǢCxtwݟ܇?9wLG:^v^>h UȦ<'SЯa"kRcl Mxs2[]b.xxXݚ0ky}A+P]W$j.AVa q"#xuuI;-V.] JW8 U] ?W-|ʧpr20h19@RC1j(, Kaf#1>->g{r 5uF;hGu~\} ,@[Te0ay~.4!D%qC<ȍy2#cè;Jx*QKc:M>c'Y*vҽ=G#؟YZPqyp:nT % D09Ar$TAa }#|=ۃPIeϒ4' 5(hWb?:ksk_%+jsiY o#ɵ3[eVVk#h()IPi2=7wŸO^_eǻe-I2960+Z7? ߯!hq8J~D@? {Km3|#%_O_[âW 3/VcmO x v!,Nb'sRrp=B$g -?.?6̍ϙdpH&7AO?Rr~[ , p*Q$i42X˓9S^7s7\0emy0P٢)~*NZ 2>cC\}޳0<37x7wxBJUE]J/j= ptx_61$a _7`pُl]n?t%^!`^!zN▓uElчzD:whݳ:bTۼg5Ӧ="4ܒVJ$)qL(yh\EP)X՚]!,6#wv|v73BMb/s҅Ed L7ASk&cÛ ?bV?CRL<+(w_8s?pIx4їC[c??FS8hkFGej?Q[eUٴ"@yOئޞ3ID8Aּi${_!{:);CD~̉kmX[VHjsNM:+WwWx滰5{\.OM6<P/3XhGj]Һ3_$/Pi.E"H6"\ѰUl^4id4yTeS/A,$(H ܞg= Hi58-QY0~UM3ҟ,/SX"&9oښYn${,~IOh6Z?VjyDSſw-3XƗ:\Ln3aS[5XorjU|gJK4?e`mٌ?4yNﱿ %յiV RюۈmH "<2_.r=KV ˠŔGǧlɆ' E ?-cQhsmiY1e'Ja:??VrC}5κ_r- 'oU0dOyv$ZXqk[~(E5/@NnZ?{Rz21%^F:4"eBI*r l<]zh9I&DNd`#ӽ3Q-(v"֗xNzC=7/_CQ+]Ao(g4קK4mxٮ9EJJV1bdݳFv ޲bz #su:_과Q9 5Phڎك /'`n[_>Uځ=O*~NZKk[qDw4Ӿ~'6K_d-IFۙeqA§˵K+&mܐOiss}cN^ gΣ59[u}c/^- Vf]<ZMW|]L 3?j:IS"M .v7 x_9V.IJPd7 ?r?+=mU;-=?9Γ"D>ݵ*r/E9B? N,(2S?*kEOQB-Q5e*9Ovw?DbnfͺU}U{XɞM[C=cvpi5Y$3)k2qn@qނR/.GHRrJ,> BF/؍cOzW]Sv.ss5`ܫj~[Mllx q&%[kd"_:Dv^ ~Jxs(&|P8(uo^AX=nz)v[f1'h&,^U ڭIFHRv=k[y?Տ^AoDS/$@ꄬҝhe#= FcS.Gv.\f}X8mn3mEz:G)oZ˨]oD/2JJWqZ=/Duoՙ.*q!(#Wt`:ՁVb,T {x{YcUIԯZ{h*-"qNթ;}Ux]SPmYm a~s^ku߫{QQS"'dl3 XD @ZrKB:+KD^93] [Teh?^ԭ8Fa GȾo!gƎ9gF:@;Y\࿹FmՈ̞%kR7=i]gd9 lꗽhpsZ P$(LHAIj=>7PzN3Ez\M.{>RqB`ky^ev΀8GpT5n]җj}åZ m>2Oj὜N)<5f捖Q̉r+2${5bTX !طpY&*g#?5!Xחyzŧ5;RHka/c]qDy m^~z+Դ_-ˮwKpFX8M7t&|Ok Aw ܥPHa+%L_v@(/ɨ:}#hm4e9^usffٔڋd!o*݄ y7ґ #:[c1eIS4iQ4^Z֟.L􊥘a'$`u*.?p4]4NrTFvdRpܴjsO#*=TW{>]! [Rs}V/aB+ۉ<=>-tz7m*~c2sCdb5õ͓g'1ӳ= H|EEB uGQ7heοhx TN jA=Y7#%cD $2t"d2t3^3w2cW2vLBi.lh8#MW}c/TAk&YVp2QAmUFԒ>lK zɊ ]*刳[  Ũl⥇KuW5 Tmh%V%a/jG^JPa_2R'WE>sߎYt~HDP\"qBHɵrߚjB=T m#<\1a^ Pub˃FD@;/ o3M>f0DBPi5;o,8t5@h;Uէ\*i(E cFfF +QT!H\"[8n^̌qT88@CU`[\LKGwKW0ʣZ4f{M}2^{ZL@B"y}kr'M Rڶö1ξN |ٞ 6 QeP ˂0JI>! 80V) y2,# d)P}u3^ [VєmnqrnQ/-Qۢb x/nY:Vr7g$0!59W4kačcVGp[*oFaF J ~U Dsi2QWj"Zs. tȣb(Zfjc L]Eތs|oêǢk=i<PO:*/J>ѪffS+[m\$?N$5רKrvo_zA?w$ޏ| hWχ&[^n2}?ȧkmv`J. ?8P UYO ɽ&3,"wMyc^υ=9˶;ۤ$6(ubс{nsMov\փ}>$WW-y &i` S[B9oaθ;#=d4]er99qO4/&ك'ڟނ{m3Tj)+=k)Ӧҥ̰ 3-ض&>9NrZ*Uqѝ<,a 4o{KYᙒQIOkkjzzGh~#%E|BtR$;]/[1x1l2sOA"7v_2zm%\hotnLJC9?a![&'[zKXf^q p\vAg)+YARdGbɯcnq+6}ḭ]E>vHUEfk K1+lJ@<8j;_sxkɷ"LHT\rxW {ңP;ky v8NA^ѯZ5NQ<?!%mb2۬<`}Iby* Uz*@7f=/ ';đʊ`bLM #NbO>K '>,pH,KՈ pزB#BkL ?]/Æ[p:%P咖_0U YH>Ba&_x9||,\!^~@+(غ,V,L= )%LBy3 R%8n áQtuzN PO@024LRpe$bCZ_Q3iyS2L13h]BXҤTD86;Z@Ɖ"u+_ $ IH 橸X-nVNvYjP0Kn”sTZ<\gYT{(O~& DN{U)IhꔩesaP!\o)/RVo&f<8vuJtaKXlT<@B$*F܂DFa2Ǟ%d'&of yK!e Mg^,n@p Bdnĸ*=\eh а8+ VC׫ג1E-x/c}&ح&?(tڌ2)Hr'#: hu + QЃ$611I61DPK,?$B +w2 y}ph 3KTMpLq b/iQ$^3|k4誗 e5j@F4di%dDZ|lǕTZݎ,-T 2Dl_N'~uqyl;$$= OM ng=d TrTuu]00O-!&0cPŬtJyCa?orrupqQriYKQEMr; EIn* ŷN*bm\,_zHIcPn`nNTGAEZQjnKJI3Y󬵞}߿ nj8}'>\59{mp_>Oȃ.7LKQqhwnaLsG5.@0 ØX3x#z0o~YOʢN|,ň+@ rCpb4ojEsCnxtv 0rj;e^KYE"&\, emp`-xqiH3/}!Q1| 0z-qB ^-[-\Rp=K!;=yq,'ؚ"#L6s3ϤUqHmҋ׏ #\OOn[׍Ǫ_K`?pi}Ѡv,&&Z۽mލDdB`[TCI?_a~h]ZR[:`ex۰h]MU"QeBys˙;ANU7ʚ<ј+XEk 9yobJv5KTo9й0 3d>mw]3et@kL&^#^u],N|YEq՘ʮ+qr9 EscC9kȶν%ϴ"R5bڽ{y!//m R;+HS-Ée澐(-SRHdwD(5J$K 0dNe4IYQfݳ d~ hOkI|Ͳ=RoS2b+UT/MPҩ']_PK pI'[p`8Zy'*yԂK⌺K̺vXot# ͞B.mI':fa%9Oy \#\EV7 : RO|X{E4MmWyס  &BN3;q5Jv/ѕw!BWم <>ՆW@Ϋ-`ɯ%ؖ oZտU=I #k^/qS>Eg .clާTߓ%}+s иBݦ5X OI2&^̖zA5*ja؟58_vZ!M#A< ZsIT3sI|9P_ndS5 hF`iT lOՀ9. {+'{tu9yCZ7\Wl]5=d9'I o[ل_ST b!et|bB6!&uZ&^T>MBtDq\ĠgP#[k pa^;$noW*ősr g; %yBWfT^4;uY݈œP9fR6!;s,r+h 7'de2XS3ؐng"`b@RyqVth^\_!厶_ltr˳)*o 4 8~@[d^Rw_ruPɛl~BiI=.&40=c_ \Ht 8쿇="! nbh艗9M3Qq4Ļ$P{[G:^<9c'2g(5̺1oւ=:BLon>OK6m8twr$>ސN`̽[rrq.&SE׷Wͣ`Ld63p$=Gj<7)5bT2pϏ)9MlTi ęFmގss$$ p-vET"HA[߱y4TP(ف%4GA0e11,EPTkc-EЉhXπV0i5t* W>+ QIe-#+S~ʩ8ra&ݬoa Jߪ#\4]oPGƴ,"?|Z0Xzy~wZ@`Ԕ6J56J6,pb$ 8_S6Ma7Ҟ?<wdXQUSYJ'餎eQb`&Vs,Z-2Y4r2$5򾱹I WCWJBz1Lף~sieC~eջ Ksf/ 1+ W ͛&g _ $  X48;Ժ:`&TSσ YsKԋ]m`/GZJo4zIaårc%TY1~7.\ 4p`{S0{oX*K %PHa_ޤ848l%d8d ;S gJq%>7u_ 5I9+JyF@]U1o7CM\D-Ҋ-MdFFԋYe,ӲGcvi?Iѓ!%7Gᬒ ݯfV=:21iU+SCNv St9/PҦP.4[~Jv{0 bmm6O>M淯YAlУa;A7#i#Y1'5G I+{`=*x B7Ф]4l0qSUp)•mdJ($vZodQBB;g: 3bgtY@n~ZELR'ڞ|m$ nRϿC,)I~;Q6#n_<{֟Ihit}/݅w7,U\f>1 nfj{tɰ չ;Ĺ0,T!Gkzd2q"Df򏊜3>6"z=I!^C$]mLW{ ?mxC]+~ blƔzfgdmFh}Mb1&gTȫݭX0Z \385(un\K˨9ZqAFǸs@ԡ Z@%M-c|呚FmyڹXleXeЧwE9hȖO=Cm2'ю:[{6>Wz&Gfl&`{g<8Sfe͆E rőt))ےOFsU&dBB*gۻs z& 0`qVT~!<]):+)jPYVv=O͵;ڏWMJ(ioyP*fl3~M2=)> yb͇y*âN4qfL{s(M{ ^#x2;c%1zvUG~ LP0Jl !'/D*ݯ&V^ _|'RְK^,x6`J:8N}1\\%2AP 1]l@Z:f?SʐRH`Z*%):r4eDzorXQoedghHb?;uh8#$ЅOi}(aM 2t3DXa #` `!9Wk]J!wvJ\{kI",5Ob9ɀS\ݒzA=]" 6hcQUQU"n]s2 R%~Hwi0ム[~ Z[ Y`E:7>EucG:C-BSZsm=&1d'Moh6wXC2]z#Gm&̒yt%maJGI>mlTFIrW 1s:9CߑIy@zT>c /{݄Uƪi &#L}d~d_ʶ8+ikK\ nz SK QJϻvS]Lf)b] 4*Q]82úN P|{uxO(ZPuw`,&ٻ]]b'yg_] Bv#).^g=U,٠e4[ʹ񡅋r1ծRFi3Wؽw{#5/oeQQ@-bv/ԗ|I7i >}ܓaPP/Xg4L]ωmmY_I 25;nc6J$tю:箣 ^|:P;%ul d|OoDRo!VfLzn}WhݍUP_xi'${D{66d"E]tx;vsRuR1w[8^&m[|I8]*h[ӐIqtKKESQ6U;FzY88{A+Ώrz eV7$K6a#ۃ6T_4yZP1P"3=/+SrsssuE8.!Mo*a, .a/7?tD)U{=Wsoi=;`%:^"aB4~-@͆QyOT<=hOSkEt*K$Is1g7(QRKvw,e4BG(dɕ&LΖ\'o/%Abr@ccɞ@\S׋8vI*&Rj[)өu}|uK/F_o?rIF_"{cIRj4Up`Ϟ}2J,m$6*|gOv 2u2IH;h*O酜S9^XZVa{!G+ 醉9cwdĴ&BrR/q'<[/2f gq?a`)Smd >XcCyփ; Q?/x&j/qN[rEnހG3Mk/uKּ'#~t璱5X\p(3IMDonSKO=ع We/^kV ](H& =O'kR$K==m)f=Mk'5I|6'o˙؏[T{UnX|I*_s|"g;}% B`S#%+k]GsV\v67Kx`߰n|q,,7_IiYƐG[/*0I?Q}5*\ky$G^,T-Bhv3;4rxBs"ebXrDqx`.aɽ $ J_ŇSz̈쾷t5-nq&PsT]YK 竼 8sM 6J9y*dP3ebՖNT+M"di>:JOsɿV:hBTR,R;9~)%6#ANMBO'!#~+4MMx흜2NfX& ako( o8^C%5Nӫl=ҭ$|:Y1 mu({g_GC.46) }lڅ})2^"KU j)砖¯܁w?ãmabXadO͖ZK'Ƀr'zU+r0E`=%_Q\q_3J$0dO>nϪr҄LYάyRe3eZ;8 B" X8LR )gjFE p <^^a =NPvt緆 ,XS^jb'6ټvP2Ϧ^wn3Ueޢ$ &]p0=09C)+I_l&?RMjcuQ[Vf싸 (D-$>@φA0}Yi>iKp}{\9XH7"|1_! XQ~%?Rwtvg&[ujâz4ktp2s[PL!8gl(Cy)1 _}{ٚs-ߩS90 hs[iik1??S_W99Ր6I!ew||=H&X?c-;z2J:m_hi{{ (j>2v-uf>NSm[9cΙpuߩ*@^ح!Kz6 z㎸{JuRL-”3XqAXGciMn[C_(we>f/FkD-)(ڜQ~${,}ol) MbRWc=W^ "NqkMj| /B@U&?LK|{cd#,iy:W`˕ QJhL%ꀚ1>cJ!QR ?b3bb1rQ dM7`6tj kP%N*Qٟɾ~Ub1꿬>R&oSayi,ɳCEAG/*9f+߷`j_5Sjv2gQbxDb:n4 @w:Q.ٔБH,=MPuO%BHt+pLAާ0fwR ovN8}Y߄Ž3(zyVzZ?Q]NbDb75.a\ّzE7Xɺb^_;ش_>3 _fxMV$Il0r"2#Bm%r ]6g[D^>7=?+h7atg^4xp_NbN$"Fa'smU_;J5Y1# pY)3W1l[;_h?4XdF6SȅOF8GQKay",;X3z:,OR<5c bv'#7+9qm 9rQʑ1}Qu}p`L&S 0pmiH}Ÿ34gٚ5 O\;Z!r)bE BE (ճ|m+Xއ)(hE{c'JW m>~[lKR1lhŐ\mK DqOƚ_yHj_ |4GWA0>^/8#,q~/Wpע^Oe8X>!J^cٞ0ZyXW= qY5̾2W Dn=iAxD$b 9k2?=OJDҀK`Sꋂ5oZEvXCuR^Ж 'vT=drhh //kXrđe!;.Y`[yȈ: YX#ܺ1 Ӹ [j%6xU٘m, !/9bIwq!&ƒVM :sW߃X Oh&c\@%ԊT 6kgαt~P2Uc%d? pYIajw?p@]-*A$UǕ܆Η)tB<(& G+䡆BQ n ~RѼ=r[ifXNJ.:}*Ci^8ꓸy]_kOIvrxc57RKjH\+Ѫx-ExZ$Ab1Bߡ7&6v*uUM *$=՞d3H&w,[6~8e9RE4"k޽DѽұrĔ5/*vuMlVUNB{Vm"?ݴOü*,q@+z<ɼ5X}A2Z@>~u:[7ϟ/bsé0.}ttecYGWttRT5jN4 Ap5 h7Ã'>&$. `⊈%>&fkO"_7W `\M6aW"~J$M1'Q!oOy6&ݠZ'5rROco$ vJPW-u&絷Ey$kB1O}w-0n=5 |Tȫ\&$sasWғ{d<Ir?fŧ{ODM9#fZ#/1J!$S G_los1,t={g'px!Rߧb`! F\sFV;>ej߲ ?m Uj(p %+*OK.h&#I5#c'v<>6ιɱ++s`|&$Ggsj~5Hlr u),Rx]Ƞw*_-)n0&d Q20kX4 Ԕ3lmgs6tDԶKq}E >>b7㝳0yR`|<=MͿ[򨂿iq;vS;`7 w.<0G½qXPV>(ym8KДLod0q-zբ(1lmh򚹢 pЩJZ$*p~/̃ʨb0=A>$ EW}f_aQXw7c$gSH\K)h7+]nlGo&Ϻ %iLOXXۋD}IaM-7DED@0h.Émk6i0BOS:[d >y4q &:8x6XM_۠hZ!`~`D}g%EBV+?obw$|=F=Y ,ߍ:H\ R(A!%EL:o$ 15Dm|xaFk2 -0eSׇ"lc͔oM@k kk\6TGOͣh8nE {zYj/_,1CA=h'/.ܫ)RH_c`#luY-B34=*5I s B4{nwWۆjƧK-D@yVBko`Y٬:ڿf$8yvF9}I;FWP?j([_{C/ _Y<_MZ ڔmn,1 ;%#QRlz1A 9ͦ^l@um  ?y !H%fZ֪ՄȂozHr@|jAe;AfLdsKՒ'Y1&>%ׅ 2bh Sflk܅>ŦP`d<6~V~e;Θp *Vc-QTa..>ڧrP ˥ᔧ9 CBNLBSVQDpB~"~2ڋ$};mnڛU_(Mݻg%Dކ*]A7,Ղ Rm݇s4(S$h}EO`5,3Sh(1^;r|)`Q@_a+Of=}, n<+pQo7C+Ix fPL6$pj 7:~ Z|Ji'h[Xj~,8#0#qy~EQȰ-kLYtc9omT>2(7OΛ|)n%T3:-?7O0!{tC؂..B!n 1B H!(wgnϧhsYD?I8DA }u2rvwmO[;J2NYN)IIq)NDe$EĀ9?IJg&#m2Ҳ"&)"+JO'Ο†nnޜDW;7N$Ĥ(nPSPKQLSDWire-assembly-v1.3/PKNL+sF  3SDWire-assembly-v1.3/BOM.csvPK|PLZԔ7  % vSDWire-assembly-v1.3/SDWire-B.Fab.pdfPK|PL pP ' SDWire-assembly-v1.3/SDWire-B.SilkS.pdfPKNLuhs* SDWire-assembly-v1.3/SDWire-bottom-pos.csvPKwPLvt% SDWire-assembly-v1.3/SDWire-F.Fab.pdfPKwPL6'w4K7' G1SDWire-assembly-v1.3/SDWire-F.SilkS.pdfPKNLD' fSDWire-assembly-v1.3/SDWire-top-pos.csvPK`RLuhW( jSDWire-assembly-v1.3/SDWire-v1.3-sch.pdfPK 7sd-mux-ctrl-0.0.4/doc/hardware/fabrication/SDWire-fabrication-v1.3.zip000077500000000000000000001406211506653766500253740ustar00rootroot00000000000000PK'OLSDWire-fabrication-v1.3/PKjQL\E'SDWire-fabrication-v1.3/SDWire-B.Cu.gbr[[o~/p"@):AD]$yCEl !Q<s#LNNwW7^x7N?u\ݽogƩw~_˺;IOGP:)kKPPR{No￾>z .;xuO¿^]?]]|a9~{wiӛNO6w=~u{|u}?vG>y?g7{+Tῧ/o_>fbbç_}æp_h󅎇fo_}qճ哗ׯ^G=~ˣ>7*:BϠ~ys[A} |ۙA f[ȿMK7KhښgZce(FJIV"Z 5" ~v F } k<`Bw[UDӁI[WY&+A@mkCyr{q*4ih0  7ٟ*w'Xɑd^"ˍ,:qd"#Ҹ$p":Pd[q| Ϋ].(lqViUL=KRШ8-z)Pչ(Ј:aTVE|Z+!omXcAi2`y[xJN_+XR"˛Z#!q8F-G?w-b@)ˎ()$E%V@'L,tWbtCǒɆ rjC^T%aȆK'Jr#g 5VL6u1o NwYYsXI5gX*oZ Ar묄25Oɣ|n ,0S22SvR~XDΤ<ÆD1+lB4lm ;b :-wp e D0C=kArk3AZV*9cGG\.Tg1jjeVXZp KmczV Z\]h~Z= Բ@Vv.>;5{#pcys&LnGk8!\{ +UcQXX \[zZД"iC@5d5kƢaWzH[X 6Hz+%bqPlhBJ6ThYha;r!X6w,bX#boU[:kklBaط \8yy,Ǥ E ahX^hca% [NVsذ@6zA S!0U Syń_b2f:e-h\L7p7X}F{?qOz;+ ܧyqnXz6))[!AC,تg&{1nPY4V Բ eCo}mi yIÒXvC'<@2ܐvf0Ť[ʃTKbFxT66 ,T?m1a+7 izLa˽ #MǯP Ř,2JݗRʯFtѡsDeYM˲TnҘCZvQX_|I_Z9E[\Y6|JU, !AhQ\(LE!2&Y,I .KAحTkSz6hBo "em{צwKw]œXӡc35c1ղ Scn sMcVH:Ɣ|Fwm 93ޝuXw."z%⠕G ӴC 3vcyWpkܴ eb6UªaXjbqj0c553KU aL9:QI;acvGg λ ]q,4G\X$Y5"d0tF! `G[X2'pcYbڱ+JĪmNVb6?,>c?@f[rlJRAZ,Emq -&5F0WX(Lٰ0c,j&h8 ZY|[mE, (j(XpLYyA΋cєLQ2[+mNSY\0nR{HPcA~ӥna\sX/SY8&z]иʘjc65\i^xk0jHLř+KebXo閟cDe4%%XP>نG1-hy^LR>@ 0opnC*Owuʽfby%@rXQkE#'Z:ZYcM_kr.%ZFkpf1jreX~2S v)-h86Lo 3h8aE r`[3}6)9 Wk&74VyhCв L;kȴĝ%J!X8Xr%Jb>h·LQ] ^FhS|b|1ɜ"E;06bo; V\/nQZN 8@KR@] $1opIOivbœ2^&8/ٴl2bQ}DQopJ2kC+f6"3A =k6TNۀG"fhE\O8LW)%vD D,9o0 @ĒCj$ "9pC1pm @ ;XG)eDR7o,Uc7!<֐"K+$m.P'R!YE.p+XcXvw2c6`Rbk71;Ky[@'*r,N`?ijjq5Xzv9'ߕ,}ِ~pkxf"pa-_i JEyPKjQLR)SDWire-fabrication-v1.3/SDWire-B.Mask.gbr_o0';x"@U?LMIp"$J[u~D2d;1pͱ:,5È.z]a FeF^ K||y0S$/e@kC1, X.,΅-]IFr ]iI\6iGg^/M|h"%o:HEz83zQZI#1VFeOrMID:ĞQYJ$sQ<]wI$IʾTD6otl@] CR[Χ"_gu]h}*}CXR4фrQ KLYC d&657`:Ldhdͼ:k/h vzn2Lja+X+V+vK`gllzY%Xx黩IWڢfBV$A\@dk,:)PKjQLl*SDWire-fabrication-v1.3/SDWire-B.Paste.gbr_o0';xh:xASc e"dV_,m6YsϽg|{2#*ߛH++D1 wL=оK{`#߂;;e2kU5ɏ г@ZC? ڞP\t$Ep8L 6c9DEBbVQ&y$+bOZ'yl䨂lWGT,8{M#G$|^)U!ܖUTȓ9S2ڞ>idH.K IӦ*#&p2ސ>#qa# /й@4͖[.r<=Ftj]JGh;P~QKKl^CE%[6NW~Wd rxk!N4t!DD ;:w:PQV%E ׽B ^V + h/DkB&Ep1Z@y_PKjQL28W#*SDWire-fabrication-v1.3/SDWire-B.SilkS.gbrYNG}(BeY@8`caږ鞙Tu7!X9SOYN~x~?ny|}_m_lys=s2'Ikbnujf}ʯ(yE+F !0fNogkBHfJ#ZYUBk>pޮܲ_f;3x?pvz+oZn>ݏre[-{Ǘg(ԋ1^~׉ug nsYwpޯvݳ]w,owlyqßw.#%/邵^soluGW_ugWփłs(kTkl5K}s(/fl!ޥH6ԇ\3ny3 ףK%f<>[E -i#Lrq1+E"CI0 AؐI-o{q@;ऐLoRhH!a&0D3*AT!JrZBC8GqJ8:Y@ܰWC_N\1܁F%BwN2SB MQV*V8rxbOɛܟ%!g+=965T?SX \ASԔQx,*BSQ.#0/e3JfT^FXDQ֌ś keQ !Q%%TFیk!`Q'Mm SH!G2Hd<ȠvVuhx$ȝw ԯj˜kYT$tU!e%B><ڪ2JY!dT~*JpUj &/wf= DQ ث!42̜$HQ_*xЇ o)W<,RtHfo1YeP(&?Ѫ<1íuHG af쬹Q!;ʒ0UP+wdʩ7 HZ!LF2aU9RΝGF%Yc!qh ǽa*`ϻi:NS9^\pWJ*!6lA(iذ BsNۨLJ쵡DjXJa!Da) aY!`|.H-j,JFa^,#/ _W*/V˪E0m*PQ%a֢HFއH<`9!2*ţ)zeFJ|$GǗ*!ZBx|tK $^uPѽЌr-:r"UJϽXz܋FUb2dAٛ` Sŭ.!ZBA齃 `q8ml6yPLP/,ùk]ÊQzZbDQqqGl70`?oeGG)aȨy UfC^(@0e@2r{Ζ *yJIxӄmAtV 1ڄ8kBӟ:jr !Q0V7EXmZP=`ӗLFXрԌ*>R&L:)uB bCQ[·PKjQLvLp!,SDWire-fabrication-v1.3/SDWire-Edge.Cuts.gbrT[o0~iv -O0} ĠLHijs! v}s0C_Aagv* 8͓uș;`7]7Ro.pruqӨꧪp L9tp.waŸ/Ƒ3b]SƸ'|NZ =MyU$Ix˾8wiяM0~V*o5ݹip>=2^3RRhMT7Jl,SzNm]̣BEhaYv>NEZz]NӼ,YЛ ?h2/rj/<Ց7 J&G˩_< i A1hU!9Bk܄ߦ6C-KڬUA)j"rjuYܨ`jnԬ8{ݴUmBFMUDfcOX?٨ȵ%Hiaq#9)hFf3/i=94r74Մ搘UuLr_o;h14MXܠ}OGϖ1m]ךhY!ۗ;q~hxUQrr }z'7eߏ"d\kPKjQLOc2'SDWire-fabrication-v1.3/SDWire-F.Cu.gbr}[fq{gp#閌`XDzRN̯{XU<8 tk},UEn^~c}|}{ݏ_O|ɏO?7凿7Ye4JzǧGglĤOښ_Y+g_sߟ~?>~޵ڣ!TK})M!~M{{_}ӛ?V__wz?~ ??~Ͽ|>ߏ_˻ů ې7OO§ዧ(|O?ǏO?>><LJ~Z{~o_>Uw?6ڃIh?0ܥ~./%Tگ_?{⟿oZG~jƟAԏ4 t 9; ņYۋK(u0N`],oj#L@7ol58J37*-G(6v0M[] um1άu2wЛ6a1W qc(Cw $Q7ܶٿolyOv ! ٚwhCmXpqcgJgVzET @̊gV87k n4y ƪk)_bz3tf3YYќY̲g;ܙεԹ~gP8B2GGgV9ʙϬ|f3+qִIj:e,sf#9BgV9ʙi!/U-zϬrf3YȒCc,{fm%du%o w4m/{V 2&&JNbuhzZ]bu %Y?KB.$k)Vo@. veV/StZ"}כ\Z}tc!2#7xܑAwW2zӻbV@L'HUT8Ή%u L:%eu *KBU. m,sK@ñ.qVǺ챮 jLt[븹4tMNon]AW7GlT!$XYl[Jﴊm!0 cwұ3BYSx-+##$vA{*۽ 10XPrǺHbW;++gZma! 4qLM69$+ ܅#+]MCm0"ŽW޺ts)|}jC@ 5Jt#l=E &Y(Zm$$m[zjmYDZJv'յAӴ_O3!CMwdepҚ;111VGbZIz˜crd ȗ^&x ٬:U)rЬNoԐIiu{SJH5ab`3]B(1p]vewF-TGTf]f#Y )*%VN؊qr2bzkn=*歙w^M +.?m,~)ŪMAb͋/cS< g=c6ۄywnQi^nWCK^F$LgୟƃdE`ߡ37SȼA MΔfXt6%5ĝ n6w]*t\p MP碶ϕѪ=C k6YaQYHaō"S D =Y|^N읷鬸vs֡|tiB#E&KY"ɛD~Jc]=CϬԣ] ڐui&˔鈲 Lٗskñe.,;oR!kC1*.\Ed){^wՠEd){ '+!8̆&,s62-|ЗTw,;8Dz5G7Z,=NmCmlg\ZqP,++H*t,;x`s~+[uppZub5/hz5*%skT Yx.#1).Nh׆u XJ(s-,-1̋"Ȳ)s[aauG+h1%ezZ6iș7SV훎k}b#:!7K)Q1vB kN{7<6)ZΫv[wQ!b 9}ypəNW#K=͑J2( Y&K9+,Y_smm{J(YZ8-O]e$))=C/IΠ@b,mlW=cM=:Y1 K+V]dY1{ Ĺdi,\A61%YT+:öC.@w.luE(a Xu Biyo7'KÝ yJ ٶ*=Hdwcj^9'քYQluu^2,QcaȒxZ:j &Ɲh0@rP*Y=P&KBlrlAEM BV1B;(BbơB^0]k:,2H~' aV%T|ӶBBv 9r uil69Y/k^Þ@ U.''q[~w 2u{KY N+YOK{~0z,kA$ƪu ߨuQ‹V,&͑?sԬD:Q!dY'X+ Xr/V쑵 fu srlo*M>F5GvNH+J .sy ,vјj~Yu3K`)bl]*$׸s݀]E)3K@w~jxw=k`+ŏUeL'[;[r݋664Jg6ѐZw5<ݑk+zbYHKL6q!,wsZ}.Su4Z@=-odH1A/Ns*-֯ AB}.*֘Y|[kqZn6% aX=jwɹ.uJE9Po5Ej|Gi*9S!32RI'X7zwO?2\*I3zT*h QJnRp Щ6N%=9e5.v&[X4'A(bE$/vhYHJ̪ߎMVU{ ;lEu1']#tCl$+bJ`=(e,9\NN%hSײ덍mѧ2G)Z"-iʨq nuיЇ)]Fǂ~9e2M+vBu7qG~d^G>5Oc<=w e_ dZ-A5❪2.(wi< $KalNԌ{ é_)@P 0+"!+IY(F)XHU< #=:pbڛ=W@L1Y&bF&(b9CAv)IzSGDNd8N[(PdqJ8( 12I$ #;i{*^ &vX֓D^A;χ=WZc6aE;XG-r=')9^* A6'| %i~Beē]8;v dz\+:Ʌ$(0Y) OrހS3]hsby{tgIskROh mR>%IZ9,WMXjr xjhl|Ʃ!LGBhz*8Yl٢ [s Cl=<;s_HzҌ.}:aݐ:" K]Q ;[@PBqo]ne7cUL%]lI H6-.y@81OC|_c@xH15r_084EYHҧыPF/ڃENzzFliɍz-54=,%u0_Fb {8q$3OJ)ZֳWw"8)5FjFM<i*H!(i9:۽cih_ڃEf{E;NM&e!اIyN?ܼ&:ߩ[G N`FAo*qCRԵ>d>%Q.hNeN~YhN{ŇFce[#8!zYF&UW#x1 gz;૨GC h،b@ X6~hJE99Ř h0~;2\%qMJiO,Z=ȉ"]ES 9_9 Oۈ XP<,^0io=A*ۃdwzѮ[__"9zʙSk,eNL@bB7=KEoM\q̽H@z1ԕiМƦr`c ֔Tn z$QĦ,ZU9[h> T._ rxĎ~a|/}:;;,"5yw+jm)/,_Nmv}:%qHio G 荼?FdkqRdkoo az _/KbaiYk4ƓO_ڢӒM8G6S n+n'/J cNM-"Y^|;ÞC8Hn uCVKyfBS@=$]>~멻]+D{,A㶑6:Io`~`Ov=?CS%c!yf5*(oC$wY18i 2(~4 u=#oR TDi4Gi4&Q@(4etl١~2KK)#A85Ozkrppk6A>AUALEi8l[)+$D00ؓ#%7 Gp4Aҡ(ׁmHqZ lp`)JA IQ&ؐnhH`([hkq*)+cF&I&.Q6M.*b7 zN. &ZeNQ `r9qDD?vp gٛKM͈zГv ߲㜂6'Y񽄠ls*SqsQsԻco@{ώDF}JD_uWV|4UP&TK*+G"z߼kpcZ٧ۅ 1ixgkK?ڐ Vwsd~ʅ4~ϹYcx l;S8[`O҈cWxLHK=ma@;cfl~#m2IJNʺ$ʳ u1NJRD+4 qd>K~H i= ɱCqlq,1SE:UKf]eHqmQйʽrj-'m!ԪʗU b2wԙ8^z7C]k=7~XNҵ FQBb"1]ޛcyԑ[/"aRJmZ bScR0!=izdBs*yL Hm۹(IFdX(r܏BL)1RLZxcPBdZt>ܹKpAg\6`b,F9 H)>͈K ֺ34(q<)Jѡ;Yb=LRIv?îD[d {h-ooC}iwhG(n$wdԫKxu OKbǥZ zz U&x+Ѡٮ*60Vxd!KYv8,^1Z"e&Kj;tƵ(bJ=ϷzBJZWo']# ^#Eu=EYbGs}'),╜\*kjʮF B )ufYU u“X#eY]#fg`U7k/d)m,.uiTYR TF?vYxeS)T_3tZ[ǻZnԏ`/!++R}UE#ůO7DxRR٫5AyL uU[qx\cQ(!R+pFrǟ́x7Du_|aֵ(?tњC*b$1Hf&!A"!:@<|eIn_OʫV]\|XK.-_!Դ2|7&Ԅ_! u3]"_AŵܠJmYO%jnԭAmDԋUl z51PBˆ-.,8*ף&x?TCdn$%H6dM.ѳ|NciZp4I״ zY1{.С$:Wl~ɱ^o7H8֮5sLѻv)*^mس, B )JW*f=K,l(a6[c@,td}uL)6JPm4]P/\6h6L)ʞ ^רl#PGױQE }诇4N!ܼmS!P{@j%N/z XjWP],Bu]Z15 0R4ýľonWFSQB)3.e&R EA^+ "(ZQ^~CXd0*uazNUl~NK C60d^, 2 "{66CZJ[xjmYgDw.eVp/nPo74u>xz[zfQ gX_qA}v2{m^|ƒf㻱kMdwAlzR|].17nPr?R毺-E1lD0yM"]PHdݿnܦʖ]Bbz-•ܺΎZ]m+Y }!$m[5{_P&hRTW+/ ERk[;X]D-lY r-gk)e6v~|<3+Xl>p6Օ>ߐR4QEBu`]u)vH+~Ê0 hZD?T b^ڈ( e2z rgEA.E,W1lENxBT Tˉ@JL(Chԕg3"~1o>%0d%Ĕ|$Eb`(p"#ZŌhWm6aKIЋpmr [m,mvQ.ƲM0'/5kuz)}cJq|Q +zqmSG/J਴EF,}sPdoPJJWbcr}e) QzR/(gCMG "_4aMT>^s3ͤĕ^Aid޳w|}/ؘ J y^B"16mL*K-wҾ T!du `&Xrw]#`^rFW`b ݬhiO`)/ۉ\KIpA_ux)*ֱC^Idp(M\榖 $ M6ײXt-]\~cfPBZS#P|_(,懷2dMZT&[I^2供coJ&vܹ+$XmX^웯f6(:<0mdrLMAs~A8KzfU!Fl0砍eO2ꚿ!uw 9(CE.W#%H!h܂^Z6ȝvsp@Nϝ͞FT;T b#Zd?h:tqjY/ mtϞ tAdσȁڸIHHx"ЮaEF;kn l1GV?fzږ@bس(af/{ MުuQCq,XPBE“yen1 rgX>OH%J8zeJNA%ե@Nf.XKx1)69O6*UfCv%UO:[!峧9T.(ynD}7?GQɌ  u&OV.q(߬~ ǬK'+e֨T X{E<_Y{ix[/$_d]ĉX-׆7ƤǺ;tp; QXҲ#Yho 5@9PB\Oez._{rmg1göhNoNu|iuO֪A̪ĊmuAze~҆)}N&kW:kd:x h!{Ȣ0qz.nl2PKjQL&K~)SDWire-fabrication-v1.3/SDWire-F.Mask.gbrmO7Wت{ߝO% xpt-p(xۡxx=ޜ]/ylzx6>yl\l{+gL13o_ZZ,wM-3PW ^𛐯vWs{/1QZg#,Xmpˇpٮ֏1v}O/m>,?]_m|sܮww]|M|}7NMvۺ:mwտvSmֻ]էMy\慎4lx5{ՍyͻӃZEW4m/ޟ{vzϋUb⢆]\No!\bn]yek1B΄dfu CjfMlߏ9`޷b?lM*)EPvS' S#-&mRLa70i֠fJ iF%ttdxK4 oDvN!۝u a촥XވX*cQ\P{QT"E+4kX0LӪhb !c]ŠX+}|@ҵφu7,e ktFea_tdrdWLZVL"YEPi "YEPan=LZw\,%Xl,J:6A6B _ϜmiR RH j1.Woq,#]"F? stpHFEp2mPٲ:jqh/i-{ dpZ-.&8t_M#U\00`+bi|L5E26&+²c"Hy5D3F &(͸ &43(&7#fHSPh!y Ux_ZOqλަ] i%z"["\C586h%H=f X8b?9ˍ!.UO *b!t&PKjQLC˙*SDWire-fabrication-v1.3/SDWire-F.Paste.gbrn7@ ($J:mvQ6*d%A^ȝap;3a_>5nlVssZ˻ۇ[\vwjnδO|V/lxt=-VVBp3x%+%Y7w7j~[m.z:q]tIg/UK9nwC Xm>??V闇vxrxryfڤ&NΏn`gqn]uzyJ?U6mͺnj_=WyƺjۓZ'w3ێE;gE?j(5RR9\hEQ*#*/cP2ז8`YXYֲqJU0QVV_LCR]0iE4 h "YEDE E hy"ZγBdc!Q]p3Y7-kpc.V2i PkD&RF`(( X~-TI1j cMc9$$FCe;%Sn UHsੳCUqvpINi}C$d{,0Yny"K"4SH Z1LjhuhMI;:NqcANb! ZFAGO,N˾j2S4અ)$%&a/YVXFA֍IXeMъBz5Dd$+X(KpLE53!Hy ;;nT~ډ5&4*xC{ ~ #D\"Bю;Z ㎞@[ Ak/-q&X8ʍqV* N9EN{? *IT^ ,:RJ2@WeH1RnWg&yBDJ)[^1ᯩy|s 2M㒜E %0;U0@A" 3|{|:CX]vPKjQLů+*SDWire-fabrication-v1.3/SDWire-F.SilkS.gbr}]eq{ 8?k ȱ {Qچ4hwd~pwժUW]"Y$ܟw~ٻ޽7?z擯~şݻxq8|O飯GR˟cc}>yަG}by?O?W_˿~JOmb+ֿho}U7Yէݧݟzo?w}w_/Woo|߭~ߗ~g7~M}oo{Շ7?o/=l77{ӿ_߼nx{?qL{o~O>2/嗿_%Oކc 뿇[2Kqy X\߇g4`=$!WC2^Vm?yV8>yxBLG\X*Yaq$d8%`=@`;ƫ`aF0jI|jl=#ٍd_MKd음B>s1`8/rKz>ǿ_Bz@5YOE*OGɷ5SgۂH[MM~sO}mē=UTS"Rq+UnFVB?, Wcxu-A%*L[^R7 Tj۲=,4$ի"C)[2JLꖆck[֚j`]5T%Ts'Uգr\Y^Faz|6R2,`FHF}-)Tɝ³v{i<ʼ~0RFܧfF  $eIɑZ-+O%BQoݏ)CA&+KY?hB] $B}ޢJ(*u F4rXHZ z.[&15ڱ R;oKjC:"SaF Ҳz\ۭZ潡Q!{J~*Km_r@@h-,TmǏ-^kb] Qz:^Uvy4 (q+´w˼:㇥|KKSႌkƂ %LB*hƼ|5b'<lC,낄!kHdtH4ri5py(zu3T&MI-OҟP0P|ꏚB+앞DUFCų| rwWV85 G@zܒ[Ѥ,g| ) ]RlNJ!gC޾e$ݡ.4zOʗ 4#Ck }F Crl7gtԃ]V].9PVv# m3k6Ԧlχt͕ FZ.oB];vF!- V!0/+FqV0xSJ)apҝJI )yEa S1U像|e(%/؝!KR %U٘ҐPabd mtőFzT !qې!|FʖQXـF% heiSVj/0TLB^hy@ F)95#:%(6vH ]^IYbfAG-H(٥tκ] %̂x'h7I7А&q6G# OF!WiFQ &*{H _j%^asaB4n5r*UElpٍH !6v6ؠcaWZvܶlD8L(7$0sF8(QL8gh{7Ⴈ^KiA{B(*TY.hl&ȻMd^uΦ`]TY!.WIeF**hV7 ġb>t͕ Z (yAC Ez"Xrn!4HJiaRW ۗf c6  D6W(r]W(ӍUl(Arn괎]UDx"nݦi5/ڰHA:v-3H\Yq0%eh( ^&)JĔs0k%UmJ"YCrP>[Y)S6Ɠkʫ=%gU$ch(nȍyWYLwP6rzgU&6<$N!ؐhvL:Ekq6^aӐ O|cC&]*K_% ZD-l 5M!hV({g8VpkZaݜݠ (1§v::u6 ;0 p7o24FQaFbWH2 DEx^itg(ҙDa(ݙWSq: M󈘆7dUBE= mG9!n:$l[m+^y8W*Z6rzwC^8J_e<\x'J]TxBzOӶ/Ae996(t4u"'6)fz +C3r,h6Jvj˽y(:(qcAzD ڙ(wMwv]N;h "Te4 d٩Nmk{S۲DNmk+4B7ahGl#5N ȓQ@>Ё5\(K I({)O$ kYth8PaH##?$Q VAQs>Q({]Btii4[ )͠0VvP G i"Y7z)FYݎX(v@ MZ> 1 5'ݠ}Q ʼi#U{CB6wGd̛LdBU7  6,d(= qXَ,7ζwvn-smA;gsN؎|W9  ټK@nڹ^BP@nj6ae^YVxzi m/P=ڰ@dEeK^3AJ\uʨ[(YF4G,(o$h)DEdpwL#eD>m"CB2^(-n>۱w-m!hC <:9Oxid<~ m82Q!# N ˡ#SJ^RaJZABZvcaA2 x<ގ(mU^z(& }ՑO*@!7;2cga7B|0G~ˆb4"Jn#JC)rhI6{k D(*ɷE`inQX[оLA:804t%K4>kV!2*$)rNȡʑ߂R2և(@o )#MNo ^V4E/pِ8Il4FzQh<$7!Y [%^q<v<:p^I4,(U!2*$xS7kviڐ,R, [$ ǻ2YmENnJ1y $)C1)ܑG'C 6/Fg%l&%2FS2&~HKbm&~K$+aOC?Xȇ}P+ٳ(7 v@^K@(RIЍ5UlPihY'b Ԙl.塡:WҌxmODVK񐼲j'r4rQz`ʃ0C`^VpUxsFÌQ%DXed8A  ?tcEҹ70S3Ƹ Ƕn3ۮ ɼ ef̛e ~Yb(dhSBkJUVJh x`| rH>9$7M=@B;;ͻ ټs40;Hg"P/G"&U{CB6/0oיj fGMYq{C( 9˫Bgya/ClN!XB**Fcʸ _3 Qf|JH>@t5ň$Na|GC>}PЙ7J>@ KB4q d/ÐkzlX(&r4Oja+- ]`Gr4 DNC{B}c!)o2W69%  ^WmӦN}ԦNԆNpn]'_N4|V@P۪0ZJ{)U!o֨jPM'Ζјa ~+1xǬt[Juy_aoWYvXT8hFYUU|>I|hۤQkC^^_ u ykTF3`^{@p@kd2ؐe)fJVR2qB^ h4΂?M9Aᱸ1e(L %o 4e!$oMb`^(aoK ]{EyW]{I 7+!(Bh?F9C 6/F*3rUf߅"e](Rxa-De](Rf߅"e](r|eYwHewȂvȂU{C](](bK[pB i '-fم"}!{nSټ畎;-nSi3mjQBmZYCW|ÆX7o8]}ڝ!Iq P&9 *PJÙWSԒ7rђߟ|B&3X/ C3IaȒO/'~?|@ ~@(2 PC*'2Aj^VbR^ .U/Vx0g7hڂsPO1 {+̰kg3U!3Ϝ= TNH^[W'*7?)mkRCQkzQ, -TQ!FmS*b(iw`+WzD~_ҔTeP 4Q/SS % 8sy05ILZƽI߹M6mywnDՍSe5hDYd9qnl ڂd(6mZ&0qF@!_|*ɺ2e$vi{9Q.@;^` BkeUZYi U؆j(PA"iSId^3U!2(Ec/.*9v==.ʺcItL#邎ɧ}P͛4)P+ih =s 4=.+uܘ m/<^@)zU#,BZR+ĭ 乕kԉ{Bu4[7B_J0 (dyQhӺ6i6`(h3 &@T$@TGmZӠ"N`ՠA+T0 S6V쫜lެC C ( 4jTXySiT,:WV>'': r գ"}%!WzY>y)(1\lWBH"lSOsDʏ="I3 (Phs }osrmzVzަ%Ao3۰¦00ַU6B2om_i*'F6n B`hCz  Mf0+zEb 62ÆB WIlmb@#ҵ&P;+eÂB2(#/H_eHoS|3ȪB+'~|o4Օ*:L9eE?4~nɗP!?'k@ DF!4h@)0kJ#[ڦ^бX!zg Ó\o|Dn›*W6V}C=*04zr!N!|VX#2Р'<}@z^!iw=yhy2pWm|~iǷ?(_ HoȦS{R<*c&W>p? |<~uz9WXC3FF8e_7(d](C5*/"fD˨.D# F}^hBT*pS2B6͟xo?4㏎*}^/;K*@$Bfq40ad =TT?P5o£1/?uNɊh,#i!'"+6!|.2%Z5xWz^HCF46]9!eAI晿FMYePTp1TIyLzlڳ&#u=Ⓒ,~eA_*LI_̂dLji]ْIK|O]PTzJ2@>؉ 4mI<uQs%Þ+Eyj_6)/ Ά2/9}5V4pTu"MY(E~)CA4=hjS+kJx)97"X~zPk8`(2NjVNƆE:Bx)Ki*\BlKW8- {F jtW1 4x^whQo2 ¤gLUVl*׽+Y94 af0C`CVox=|dI_*Sg&QCCY'Ge"|؃(׳Bz`RJg i n!m^W5וxcXv8|kf!@9i/>O^b~N?ߣb ~sBWQT^byK] KT{EJ㭨BսTKKg%8vHKRzL>xmW-iKͽJհ:9{J{zl(mw {Z={{j{ROc^*^*V C{{|t [^j^jVRq/e:Kw|DOǃB-BmRe66RP֊Kwe1ee5̛z1eeb^Ҳ,t5kХmrV6otn6LAP6K:0]Rvpuh!PXVa[UٯPA*Dj2W5]/%qp;W#@e 6]e;~^ :QDA17V]a6Ϻc{NfsgK?@-ZhAP.:?j2su !aPJ[(jf$UP]0-R%nxϊ{DB uwRѯf]kZ-ͪ~=w%G ZlH \m_+!]۳+BIdd:kwE>+r- lVc(KW˂w21nGL&:KT=UOޛ'nzg~JW$m(DJ믌2_)?o?~?۽uǐ ޼9ؠ/k x{ÇO_{K[/~}O_n>ݎ\o+_|\х~Qxu+4\_&?_뫯zǛǫ/Njn?\U1՗o/|un\}ǮTbcdw~xyyo^Ӌ߼ϵZ? 8w?3Ϯşgf:/B^?h]\9`~$?(R~h_>ٔڳJͮA:٭ )t = P>}=rCgٻ$d֐Mll*P!u3q˧x*JRc&:&UdUƸ9ft{Uj,4)cj Ze#hmX K4lR.TE]5 吊5q 0+Ȑem(97L.N)8fWps&XReրaC镓 ٵ"8a5D@w "-lL?^/qrR2 j6TI>EP*4Xs?kdT" )ƤysJ _"o|`(bBS dk3E;Q0rf2ZDNg,M"yos%?a,% ^H֢0#@XD(DZ0i2l< =<۬]-8aneeI€\x::"^I6eu8RfFF*/SyD5J jYB/-!!Qs E>`Tp +PdG(BB1v`9m 1qy +?!,&, @AxI@v yh,,C (Ρ2[#RV>'{0hDGL1>AR5}Y14ى@X р_Ä<l6t8TQf")& T [Cԫf,#*we@0 g@1AQYJ PwZyr=rIzs !5` k8ka PBes@&C H14& f{86cWDi?1x(= {SΖZ UXN'hъ?BQOh`8Yʫ΁0,+C°2/!60u~=s֐ѝzs]\ (i_sQo6PmJ +iP*>$!JNf%ˤ3/5D"u5 K}>ntU(3#yIΗyKJjF%yAa9@+F r2A0\Lh2p0Fɖel.+UbPu+c HVmL> &:"1,T --iHMQ5fm s.W@.sgY*rHdy/AlD=$M%bf>XmqT7J%4sl38pq6H!'ȕu4{*bwEL@BZ7ɮK3k$L}faC 3 yg0uUT 29Ab !6R s6i<@.5tyA.2nL&&2I~@V_2|ch%Kh$PgT  o'T 2+id9@Ӻ5/ܴ*"Oh^diA9DBUp ^2~ en*B;Tv)Zwȼ | 9A؎t>v(9@'jXFÉʗw^f*jqLBlP efCI0@6R s6c =yi1S 2Jc6aؾ8۠>O @t SbϠq,U JM/ktr袗ǙMMA`lAҠj/0PgQrNs\~1Qi IgH+X0 <&ǃ>Lz1ȃtiWtECBe.PfgAN[,QrNA:{<(Qv.@ 7V3Sl5G>]h qˆ\FYBPR s\@g4 XP :W܆mf5xL/qcCgOẹ̮e1\fxFNOER<8ji:%q@ӶH̘ E  T4_P h,("J*j+hd&+Q"zs "?d+{$}Ch( fX-n 6#bD"j$r2[ 9abNٔUm4Zn@cXcq; kq ZW,& 1TymcVZvhu|¡~A} ,p[8r#n874a Yiٽ/N !X " 5㆒@܀Az6(1B 61Q& rA 9[Ї9{ R)ϧ]>|6dFQ<%4GW;seOWR mzB 0ZP TPhHz|3!Dyx2.R<_Ce/t2?l#7d~ȣ$Ԏt?ЈfICOY+w״(sE.7 KH|VeeD@ʣ$ U6Zd_l ۑ6" dFlۈKKVΑm54jyh"m!ay&P塉C^dr맃"k~Mïi0gX{ϳo!¯YCҼ$ȢqN^@1źb5Le-SY@,Ԙk~z 9[aU βٺ@u{jX) oH$aw`}zΠ/ݩPY/d, TLG]9hhV4ΓG..ЫzC>/zG3EaIAem0dCO@2y"C#E׳!Cٓ$PR`&C#J>%6IN tzLlTTbQ:]=(؋,J944Z k E㝞»r򰄗]ba}4|`զ[\%3B.wK *3E:SZP\Օ*U] +a^rF*" Dϕ  !`H B`Z˸KVx[?O!%S@ x̌FK*3PF4B1^(G͇BUEE+A ҃GQ>!ܪ6u~Qc渨͕L"C ɼAj)4fUK ~}QRĖm,*}iutӢуkd.J mvѬ-v@iDZӵۏc;6TغB}zkm✮/(P\X9TSى{!%N\֔:zqZS)yԔ%@J% 9$TiFÊK׌WDyx2@_V{LWi Ee<ʤzu G2ѼCF$3HTe*+jiP84}(99 4LsHQ;0FTT3+i(7(;-` *3uc RF,[Na!4hޘ $Siu~OبO~NKk'^u3 !vZI\D'Gs4:HbXCfLa0l< sy~  eF1~ț+@8Ć8l!ATbi_8CMA#`R2ӻ)bjH%__] QF)/MmXi/v`(68:/$ڪ,N1Wiʥa r57yJ$ bd: EIq!O]+#ojL1#l\⻅n[8[8λn[8m(w 3yp3ypλn[8ӥmp-Wn[8n[8_ypv 9Shp-;hp-w yp-w y:ʻn[8Y[8 ?-Wn[8dyp-/n[8λlPv yp-w ™BnVyp-;hp-w gVλnܠyp--n[8[8 -w ߖvPKjQLB!)SDWire-fabrication-v1.3/SDWire-In2.Cu.gbr\[__`,iw~Ӧvl4FɣOYĞb2m~%sDN/(^$V7_7߼zۧ_?􏷏w{7?|zyϬW~GW?5zxW(|twkNTx7Z}'F2(Տyw?<}{뜏!G,!`ο fnuO^<<<?zuݫ}ٻ}׿=~ao?x_y?o<t>?ݼʮ)͋?\K7`؍ :ݜ2F./xy7?鳛/>/_jխ~nV?/e8wf^ܪ97c?<jbw3ZT@. ` nDltcSjc ]ιnI4COs [ rkz!FPyA6)P!uqQ^Ku]UdUƸ9ftTj3Y̘VRr)JAݦe|P6+kن%AT^ɆME[GUHLP\HChoS: ’,$&2kkzEsM6~7(@ f3L4+泝LHˤ(+'k"(aD!A O9t8t`2zueQRH0P%9, E!b~Rا.Vk"T|*RZbQtDP= [m)t 3)3 $܀óM:m?G0fXc^H֬aX[Q ;:ھTf8i6mS. dIP͑YGS ̚L8ԇ}hߊP95;ȡ[L:NF': &fv\/)z SBk¾ԻYqTcc<8TEzVXpQr*gG_6jFPg؈IcFpզ"Hǎ1ʒ7%2p5#Gp?LFlL8׋sQsi8Џ Ư׌5l'+"FM voü ]N}m$9a''.Ā mzcgu@HQ6Vy;9%DB^!QԴb![ .P7-!!Q +1уˮ@(/@0Q\%F\~LB1v 9m 1Lu` ?'Ll) 5 'w 1f/8ʢW(N1(gYS=8`șgQ SO8p)UƤB7C(PP0]1@i:$N!>c`esT%- Lu X jZލ|` )ASFK9 GSclt 3Y.C[NC|T &,f|`aX+ BUtQ(\eŔ)ҧxGJ Z+Npd-` CW=gl0N!8%|J3 ؊H6%l;#m^f̣tӔ5E:OKMf H摧^Cԡq3@6x vSH÷ؔ) Vo3)֟ 4e+6ħMP8DPE;K$CIU 99mu2h*!nOiyX:*1u̩H&S*϶S%icai+PH%b<P\C fR{:PsC 0(v̡O)3_ C6LN!" ?v,gJ^{9Zf`}7ǍoGjq`琥ȒA "zL,:*ǎlp-fA^Wj0uYWAH&T qH5=pAlQ|`-SiRR"G184z"Cp X?<:Eqn(-CbQ8A(-բj\grQzQzQ:( Rg`r0ީR 1Mەp [W\i˦ a5Dd!:|R`>vHS ̠Tbnz jE '˩rθ§E  QJ 佫LPy d:_>P g||` ͊y)4Zi-F^K#/RhN+FSܹelD_f?c>ϋ<@$(IWq^&pyz^v=]ycB]^@AUi3#EYpb d ˁV XtMS(bĬaD[\è>\~+buSߥ4z_GWȐCB`o;"Kϧ<@$(I78EFRo1SI)ƅ^< DX%-ybpƱ<@*RY2N(ڣP¥o@0+PhEaO~ 竩$0ak Te`4;qF@P(EH.BFؼͫig5'N- (APY nn(R,;jrO̫69`s ۺ^ / 36_2!1e`ֹB{Zϲf*[!CBى&Y(6+b3( fPlF˜ɈyєAV4l뜒y)dC)ADmՆmb1E' n)nRͥRssȃQ0eQ+2PRZl#d%§X)ߊ:,]g@O ( E]Sl0f墑.j؞nK܃ŤLQђ+"Z>awTYP՛'R`tuG fFK$b+;c X1_ y$A&^zWc|z)MFq3CͲk춞kpB5JP8,$\,ߝ9fxSΝE jN5q$N{X ~ʜcΆ#|;NY@\P `j.V9%ä cCAW PwA؟\JmTr(IF(|60jc-8MK)!9r9G[ Ed'ؐ%=g۳#[^ *aeቘR4 !r[ A ӳg-wY7_is4ְG*%k3@d]Cgl:-6lӒfwgj%$ ,037˜3ވ#Eb$hQN]?k6šf]?`֤ 9$$jqH168ZRlDxKOEk6 f)Z{/tut\0HcHʘtGv^rz*lI:N!^D9{"(Hltļ% %ۣrJX|sgBbgJPSw!8eW S;,ux 4*c{\t3iFK L6/06T_Iw>N^զ IvJْ 7L-.琘2#hH~6)m)6G$ pYiGb|y9G(: (Y0e*OS(ĺ=[o-Q}9. & uQ×ћ|LE6*|>V T8k6C`ޱ9sL ʹz>aa~ ZP1e"|Ørho1LY]=%?FV3;?BQ̫^1E/Qw \ ]!t'a[u L%DM l #(UQGIyak> ESqY㐨qЪx@e@7L0vYϔzLu^8XoZM*EOJٔSsVce*,`; 2QȐй9/ʴCJt m Nѥ2 Zce#vN;8 p.N!UG('S  PЊTR9ryAc)&B%qSrAL"֦ o^SC pHx_*Y`Qo  ](a`2%$t 35mwR,OX|~e &c9Q+7BK 3bgl^ļhDpCo#DbƜ-J/y?[* @-‘C5{ Jnbm("Mvq°>`W ~W*#hrB-KHkV j*#=/琘2# 0ӌ 0f̣aES @+X*sHb.:g $O@Kܑ>+|9 %1t:nI*ᇃ$:ƂypwOD$3ed$)'#)˲2Bdo%: QQT͒yWt9K@5t`<@$(IWq^ L{ͮ0=A^Iv@dca/9V' 1 ʽ8KI'+[ },YZطr\ lx(qťz^oHAh6|X2O0e"8j&^>JCaFr& IĆm2TI#$j5dj#Xks(D}bʦ!]rx?>z 7TĤih\y5?P*tnL,36[2 9eF0QaUxB%$9P UE̡ )dWU3C}AYpHzm],㌪NPr O!hH/3c#%Sfш(=gf,u2"WQ6h>Q~ HA(?!rvc#;y`MyHPAoЫ0ʯk6 a4npXbVaT AҲC)fYGbYZL#by6Q]52`:&PAnt]$"A,6k بU=еwUWNou@զD?"zG VEN*TU+R<@T_RUZay)scÊNPy+G) Jlb**T.t(+PQ2AAeSyumFI-8dȟDbCȴ(V4-eH$Hm$vv`ʔy)3F #"Ƽ)K Jdl\*7(;ޡqe ohg 6@vd 9cP1|L2U{:&bE?ALZ6bA2瓋KggƆGN,j]"<;iϔ7 hؼ@BC@|CS8h1V Z^`糄/$6 7'oUx'A?]l\8CM"\{ad(wST!CˤLyfZJ?60 $7%5:/$ :8BObWiʥtL9Ѐ{-b:ܕx$WrYp- zhUd^ymߍiwcݘv7=ݘv7ݍiwcZvcݘv7nLƴ1nLӞnL-nLӮnLƴ3h7ݍiwcݘv7%ݘv7ݍiwcZ5vcݘv7ݍiwcݘvnLƴKƴƴ1(ݘv7ݍiwcݘv7܍iwcݘv7@1nL+ݘv7]Ly7ݍi)ƴ1 ƴ1nLr؍i ڍiwcݘ[ݘv7ݍiwcݘvƴ1_ݘv7nLƴʼn4PKNLhQ"SDWire-fabrication-v1.3/SDWire.drlUTj[1wSh!wnj)] 1pmwC!M 4#[:CZa>~m\oqvod_L|x`Mɗ._}>bX?}˖iaև /|:,/d>9>z|JħwukCmϾ[!7p3axa,&.=)9T"C.r,$`s )J@db[W{$с r  {ZIDs XeV*$FZIz9d*l !)$AsBQ^a5 #8GZ8Mk`:aUA+@{s, ##(Ɋ-Ƀ"QNȝP"ԉ Ivq)d$\Rw;Q)_=%1 .']"ע(`7l@p&( mڤ7vV%.чxNbS,(G8A&M:|ş\' On~o\_[w-{]OwoWoJѿoK*<]n9dc\o7B~ ~O>{w|7~l㟾~~W?7?/1Gxw>|W%|>}|ϟ}姿>~/Ç_oy}x/r߼|G/_z?|xqex=N kRGqwO?_~>۷ٛ'?%?+VS?֊WHn^Uur󺮜M[?'CUem"'%LW.r<$Q~˯ˇWx$[^ Ф2 #M$_Nv Al9H";'^MII6..׀r'(2ZQ0I`(bi{ 1H0>Hk쀣/8h Ai 0&2;S\PFNe_=6>??tu14+3IpGīntQBV -c4./@HXg3q z39O .4*>kor&b Rl^ w)m)`)|זb"&wmSlKPZ|xB[rve(_ +^S]k?҈Y,]uPŘ/t"9RK1[VH1Oj$5Y+Wx CIFxK?K(]6ܖCQ.BMA=w; ERp [JDp= h(Ӊbkm;  W}ǹ&yZ=i}KEѾPN7 Fr˛<2)>`)bqqK1ok`)V4$p{Fa@}L~r׃\ ԏ])]"`(26_*jG-}DUP>J^<T|QѵAIZNFa~gG Ū4pa,.U`.!=% 2Ke,ZŸ_ѫ;wSNS$pw ȠZ!J ;V2ukF\: e(\f=j |+-4Fܵ"">$h[ohRy\|>+4P*z#\C{hYp `5gȗSkn\U~<(W"qjetIN'9ݠ"F,Y!B*:*X@E&Nc˙CN VNN7A Mf%V#V 9;[ κinmL4SDnSDv)"VN=CC-qSi1" Cۙu[F8f1iyY[Py*;^mD:4e˧\ -$T[ bhDwIŖvO-BH׳;w &چcFO ŴD!uXC! 'u;`Hw_E,g.|zY拱$gh0 Ȋ,4H4hD'W؟/7\D#YAn3@E,MN4g(y޷ h Ҝinst.8E㊸#ДrUP1eA?Fj5xEI79p/=E-bT4Qm8tTtIC4בF7lhQo8 _'^W4bL,rrj9j~y]z ~g5c1eHC܌WA첇!R ֛V 镦 M+ך}J":} д14\uHc`Ј֖+"VNyim7-\טt"4-bW,YVvM j1&/5_f?85+j<s 5M ,-byK1KsZMu+)W(Ba, cP;@оJ!'n5C#c>詚ɱ < S8jc5l+]-Db+ -Vp㥂^F.cw\)WV\V)5*W޲ōƲNp-aA]\P+z>kV!v "ɣ6ޫdܴ_ӜMP@iR)+⎈94} 'q [O¬js?X 澬ۖBu5` G_s<М}p=>V|5PO4hBٺ׏Sօf"r@\} i&ir4lx Ɲ*nkAuK}iG|Ƙfc,7h&Yh=;~͞wPa+? :+$T厈?w'$KOlM~|oTmkQj82Bʻ7Sqrs~ V(bTbl(2* ^7H\ 0ZQ6bO eʱy#2  W!B콼՝ Xpg g'yBc_#X(Z%1PS>rxpIGJe202їeippUCE8`@/CKpPѢ6SA4qauc@FV pD]Ic@iVDއVȨBxSZC#|#JL[I 4JT2U2:PZ(lZkiêNxލhT $rj;RP5Z gvP@FMuݴ7ߜS8xmm;ĝNnwAdkJ=@ϫ6҇ -ogrMgyHTWGa14ޥ ᫔2b V>а7¹uq!00K, NԬ픪)Jhdd&<]#e'[+ ._ӑ]9ÈvhM1BJu_;nMG4h0hhdh$VT~Z77@q4mTkQ0Zb,n;(hmw/pN:ZG w,7@`X ܌w >ƣzf,9B/_cû߸FQVK*_ba o㭰w(M'ٓ.V]U"<:1{^[N)cA%jK)`eG) 0hXۍpwը+1"h\rT7uxtD(/v l"8W=Uf L qWRT^s h!ϣ*uUZRp mW7p\we\wN]vYɈPh˛Xn8@6r|W.!prC<E- 'P||@Ṩ!(_^ۭd-Ny'zXjUת_9)p .oGL/XN ѰxOcJATnvP}@4)}v%c.")8xI< #]*dxxn54 }+#n#s%tk;hv9hp*?wk@bMFH|mP@vb9o4 7Z_02w,"$ @&_tJ#ѭ-!rsW4T5ʂнv!4k•'VOW*SjݐJ ." KS}2 Ri[``6NX`:ѲndQvL'Ĵð*w@Vxyc<ɱaƪUd\ I^ +f R@p40G?z2+8v˚[݁ElX %LTnFW"fjlrc*B Z1YQZ0[QZ0hi5w,"$ 9x~DsMI0{֮HieQH"%'h`͕;n#V tR@nQAP߸TS;$n=E ۶57>M=V@;1>'jf \P T ᥩ ꖦ2V ,8\É v0`$_dwܘ `skxGP\r?2 1W@f6vE3i 7|RǷíJ[^ηf3%?XṮI{ ՜߰C^MU] %NiocS nUOꂁ8]bqa%ngH1\}V=Ǩ'xh7F `V\5Y[/, .1Ջ+" =5(і"7@{ Uʩ+Կz =KɧSV©+ԿԿvr=o7G-7B>2ea} 69SEHV_C&_]r4BmjmQ0DV3֣!Fkw簰G2> 1x5hC|iRm숯S(eZHfw ڏ|)D:x,PGMFX[ 4o49"SbGcViC 5SR<U< |y<@n:P4K7~{|3#DHk[4<4- bC*3`{B1.Õ,@m#+Vɛ[rO0 (r2T vKd"/ 6>)w_jhKrX" ۜR^g$ dELj"<uQm bn$4nbR̄FtMD"s%~j7]f;a 06P7.Gu-X pvhڇ{"<]8uC)Ir ]",؂$Ձ0"nrnZG|_v h_:>wK!TkQ0Zb,n;(hmB_-!MRō_; 2nu>" {NXR/,vj2uvx6iOl|w!B#ܜSE#h+(8y 4@#h,{Ve%[W+ oN읦&nVeWS+pԣ5TK*D[Gf#W! NH(E 7tX \V/S7QXcb4(hbh-ExGYBk4Q 1䁛Gs/]S3ǓF 8.5/8t1ko͂- Cu3^'Bz'M2u5Gn5ѠUMYcL#QD=o*8Z  o;<íh^B$V"Uܱ>_z.[z-ȓz0?ȃz6Fnw:nO_VIoۊd\"pM J@ЬFx8!%ʣF5O;*޿R s/&O`yt/hWV EmԐK#WQk ZkKj+ ڋB$(䦯YmGGl_[Il,h`ɒw5q9te-wj(&`e|EJKg\/U5A]}_WuK}_SUg5nkh)T-rnk˵w[U󇻭J|_,{yQcl x?\3eدY{1)߃{3U^ YU}O7+Td(i6q o זۻY[PE?cG8!Ÿmxx tgݭVc MJurVJR$\3t2-7eۨ{5XE>Qݵ[(vTl-`,?@c̽x?.nTQ TgZ&LyO.|͈sU_aF qΫ$dԸ!xGPBc ࣴ> 5,/GUX4xǟQ/RqT\w 2@`Zw,7"F$cub|w@klQ1xg5d*Қ.UʏKw*_u5Q?x,5io$UTE JZM b`^:yGtO2uW<҃"JzsP1:yRx7H?hWayCY\7NEkzgApSjSs'h}A"zvN$< [hbPO=x>a3W pQarcC%koߣ1h>g+mΦ 0Vcwz>, ex1P-0 4?*?u/I/vXVO `PkJ-ӌh 6V&)&{Y{7l.>;RٽKbc%$ZEt}{p!]bPC|Z74S>y̆?vPS2ʦm-y:w_skB>`c>5N{ m0,l0|`y%SݘӉ[u0BK&~!E(Χ; ԅׁ"]A3Kb'@ 4F_94Nj`ֻ]1J߯\OIsޠМ4gO BsV@qBsVƒ4T5ThΥCf3^Yn"<$hΏ(МP9kV ޠ9+u4geDи ]PG|E qdbh(1~ GUM8[$10_@ Xiy ck#fiq 8фvҰD/qWu=[(2᪶_&kso¨VB1g(Q3K(\_ Y 3\~vjjqXc%Nv62ȼUPK=QJ%sd-mux-fabrication/sd-mux.drlUT UCY CYux cPcP]MO1 e7j F5 [EE >Nڼw amհ}=<ﶫ kusw۾| zx ?w3|P/~,_ggay#ij}yZ>~ ;A1\Oƿj4s Nk5"RjsHl9x: s H"ǜu^-`Avd_(@$"hYͺ;  tPX F[Y1kC%_d? kɃ=zlQ( Rt\5!C*bPw GUY`+9A(d! *!R$9,و*אNFGi aAy+2M'`s9 6[1rZs!JJ`xf/!%R.tMI\  Y4%UGJa J}Y66X{ 7 jr1G Jr[`R#4"uH҃3bpmܜ7՝Yj7wH_]b[ }+V_WI߆շbm|)v޷!oivIxi<4˗B+iZKê-''h?,x(C¼$ ʯoڑ/D{ߡ$1wH9>-<4lآ hhFYX6]m8Q<X1yTd' вL{0]Z-VPKCQJsH[U 'sd-mux-fabrication/sd-mux-Dwgs.User.gbrUT ^CYCYux cPcPYMoG WlQHRɘTDz vb.ek$@ή3$ =||YU?Su{vt,t3_-oV7ߦfd:]-ojj-4uT߷wfݑrGճdt&M32J[^(Z)r^o.fx{-83}0"X3ofdXћ9Yֳ2}_Ͽ_Ϳ6g}Kn4YO͗_^={~vsy'wo?owͺ:[l*w겙_Z-M3Uwz1T/Z,^(u4zq}Փ|YRtuWoJC Wb&Wﯮד^8./nnێ'NFH_Ѿۗ,yt/\&|)Y_*Qk彊.|Wj=Q*LAD#9vF`T`LmPu <XTSq5-`Ntttk㬵.+sqGp2Oa_|3]t QWeAQk3 i#4*G%5kZ)1ڄDQ!ZJ!b"f9!JE+FHD${FL7M`'H,"KUdgŋQ ʑ*@%HȩZ:zuy/tA+\l-tPl_IPD3Y1C9+aka> eU:7ld85xq 7XLZ%F.qt5Ҡf/K,懳/F1]Wjz}qplJ*fm@8׺WׅρA`U)Ak0O2x͖LI% <"^K~g-KOe-Чh b-(uT߯qmSX6zxl%ƩDdPP VXsBƠl N=:up AlXQ <'"jho!:uf4OH4EF,ecZ#(:e"u8ˆcZe>gSPuP6(b\@sCs cHjEE#:%r sNvܜhNyǵvZ Sf@5nSYHBOY+4S%^)0kba1)I n&jƴ6?FHS6Hf D6hS:LQssCt:+Nn@DnNn@Pݜtb'݀S6VJ7 i[ZqZ V#ƐxcdGŰ#1MŐ3rբPKCQJmQ6%sd-mux-fabrication/sd-mux-F.Paste.gbrUT ^CYCYux cPcPYo7+($$;Ou,Hj'ΣlmTR>wHArgAsÙ3Y/Ի~\o?.wr5Ymꯓvqq{جB1Cfr=;5o`Lr}+o ^1,vۿq5}8|%(cTN ͵Tg/@azPlzf'wOss}v{&#w|eܭ'zR={~v}q|+]IuQ/z^MvW/zxxEW*,wbq_Z ݺz{T\WV~d,Pep{4RcQk48.)`t(A (@ݒKй[>}3­ {}skXč>9$6R2HUH' VU,J8PR%() 56W(Ay*@Uij4bIfIJ 'xX e уQU)fNvm`r)aH4N@^c$2MTƗpdW¼ 8(4ӝ%h y+yR( R1xLJp=[ ATPNH3"|"285;ߎBENǻ@l3Żg~뭥4lHLtB/ޔ6T^il/ŔI1ǤՊåCv\[ajDj鈱[ tֺ48X,r [& xP$ HAIz GH< KOBJzmbGIH3)LE& )cLD9t^\0D4 U ȍ u-F])bʳF4qbeH}vb륢ضqpM>&f E KfCj1B:1F8/qM9l2 &a59^RhW2JRrālXs&J]ik@P~@ε| s2iq@8 r't{3G%{:P@XPRՁuKٚ9 ^R}G"p3F;h>|)95 _1&(PH29`cҁo0x~Ŧ+DpN[`zb1YDh%)Ќ<6QCYQ|1@: Ի@jZ%-&2fFT@:;UHhv@eDSw_eX* $ЩƥFPKCQJj}"sd-mux-fabrication/sd-mux-F.Cu.gbrUT ^CYȒCYux cPcP]p9rv_1A`VfUiaGIAvll`¿=yXEb; A~}L4{ htK{3;[]*cLCFMG{vybV;B5rÃ1bj4*i V{c>VPJUCLAy8lyx*~U@T__@u9_|& !=hjW?(\HV]f^AAZTmv$6[o-L0L [- $}lہtmgPKoLn/ ՘i3$I i ToG A4Fw+uN$wބCʼn9S;j*Ȩϕ3`^4c}n\{-xgNtjo#wI feo/|Cxːxw٧@ބ1So*(ꜽ Ơv1jruo#QkzPG.LOD|]cj}Q;wRӘ i9v91b#w91H\$ņVkFp;j囄%Rwޔ9FnsAQ5c{oS3<妇zCb!XozȆSozH,ծWԔ:5M%a ; sa"E}콵IiQtC>NQ}lJ*D"Ii[WoW|Ӥ4}>w-)F}C^9zSg1}'S(.{ۙG*=Q4_g^mԡ5 Y|}4=\u"?#X=6f!Ԭ}.>>֤M lcӈƦ{sdJH#~:fkJZ{j_}M ކ@{NVa[ h65:2jwZfz":{o^qb6މѠ[8c3ӧ͍H*zoDZBh5{bY 4: Tjѝ!Z'{2A /u(!{GǍs} Cj,$jNמdc%fuE'{.VWX@gFwǗjsuT%= e?Aug%r*dAof[4JWj76܁jGZaN]S(K:D 0 .jS㭍F~i0 1H҆6?@8~ Y#8/ɡ]Ce>NB{> 9G vL,sdCK D%:v BU5P&,wJ}κ)Y7=F!!HZZC S[!u? EjLuLo>;}eM9I @尅`"Sx\h2H6F\ہku[H@:|8o܆bS6{;Oa1 VNP_W/u/Mpaq57,5v2-BB`#\k͞Lh&:-nuV_oR>ߑ|*S)1 nv`š}(@&+gjK@nG jkCLCJ=È ?rR.`D$" $R0~k'e2e<=_]FU/X݀1=Kf-`U=v#@rp*C]Sy[:?/{ZV WCŷ(n bqr6ĺ}#-]G8ڮ3VD"\’aT<2߶Y6*1 ]%ҏȣ4h#irEwmn8\q~jCȩ]vg#tNi.=˕D )x?j1#YfKoP/5G ޜ@aX+zZ{]t_,ʾ{U'w&v2qt4.mdfN,[vCu9|#~=?}W@|#[毽}dWdFb]ub$gWf'B3ou#3x4i mC_mࡣ9xh7 ]rqXvR4< 7ia:7U}|/~0hEg#S xZ4Gf {{x)/̎mrB_MdpJ6UZ(-_0[, -? wz?>T}C6nzGp"tܸ6*p8USc!6KU"ݺ '*y W q|_R!=Xmp-6o}Ǻ 'BǷ8;/7_YuS#"*5DC}we"DFWg0MZ6#=aE &&n]-VW[F 2bZ/na<6_ 8[ffygDHJG Gk̉xݭQc!ӪY7 [GA \nk6&<NJ1|J‰CW9+<*;AME6wZ Ip p>d_YpѩĐD 1W mN$f1b0т ȫM.&B-RD^mFu HLv>)Iny_Mp]./NG(d?,FM܇ĀOaJ)~bw|h_sjPIN@_h|$N"=8K~mb毽6O(.Wuc;WL p;rJWd>9 ͷƧͅ^m3yf8>J˅n&r6r[n;Bj> ~57eBGo&0v]Aojp[֕:0@96vp[2TecUu5O G]$H{G Xo737ENisT67p8h-32qj06ohw%qm3-hqR׈a p7jslF 1G -ZMm|@/Y7$)dNop G!*lVo8c ` [gߧy8wZDN 1w*Iߤ8ye!?ʋGFԑw80[GwW[_NēCZх7}_[}Wwkbtrۼ@ H}׌EJ9NJω/9۽=>-Wb0>>Z- "-pJ-:F - x-ϳn炮)Scl~40[[7pL--2.s͓߫o8/׵3 a7M"u.YU };=sN:lO-]Z-$ 0[l&tZbGF!a o:~zYl JuτtࠖJCG7״[WFH#1a<ϙ AĕbȏP-v' y*}cVU}K Ҟ;#yl69y"Zl_7 &o=qAVu 6ho֮x~nH>pnȊB70PSBFϧ+`)K=(@i)7zmcˮ~Tf[ -h.^`0Du IyR/}naUGW+'( SZރ]0:fjj^=) l2 ` -1UzAj <7׊y=ҚhR7[(wavytEA6UփθW:!yާF^soZmGY]UqQI^ wqE2JyҾUW/TC2no?[>nD<*zAbōM&Qp#=,`9FhQqgv0:[Fѕ 7oL}pd;vd(=G;YiGUgT9lz %E8oTpwn:p  caq -INZ͎ʈ(0ZWxZ%EΨBTˤ#zX]Z2i%~=$J+wFV6pd55b(Dor̚-ha`"N<[!g:',o<i4W5(njoiA{N*CS p,0It[dEUuo]o-T4q lA[K> A_Ӭ4qtJw6woy1y%ƨVP|!JRhMDI_-thatxe =wmoIH"c(ko0Zt0yƉBf'~f$p# Aֽ+q\lj$tuU_ 0o}.Kªr6o7V:CŶpo?>/ak(O;'D~~C3QD1n~" JR;}̬ukŤ6x6lY /H* W7?ܳo?o`)oxun=c$V!p.+qۓ@rw+Ko=6asH򾘽6x~@^ F漣礱 YGĽMz#d< W'|gpmr}!|;?) R|H&07) 8Ax6k ko۴:ScԱcKoM!6tyYc_mapk *l*AM}'Ҥ@~L_mL_cw^63}'T;w|*" X+cdx+~tI]z{vy;VFZ#0i>4}9 CpT-10tm+MZm]a"}G!H&]Amj$;sWHE/&2'fqMt:)(g9E kCFX df%d }:Elanc^mv:\<ߑ{D>1WNҭsJzo);IE9꣍U\pwD3sWa&VkPm8ZhS)6Fii H-0ZYq=SUe9fw߿c6XÉM7ax"u= c0Z,`Mq0Y{Ĩ/N$窨xw_goj̱kU #݈][9 GW&o]Z<]x2#6v)`/#ng ߜW?-X]=-x2DCBM?=O%ZvOg|W]!|]LZ'ۛr.1wÌPY oGZBp{0FyS^-, ~Օ{eohQWCUoo8ÆtZU!R RԁbEKSn:oB}h=epTXRR hqkZ(S-xW~87 `xxj;~2+Xq&#.x;Vp4Ӭ6(K~[rl&o=[;95pjɈzfqs'Hru>Q_l>|U9&;=Zn}uO퀿.U8['Ȩ6F{;FG/ܜ$ 6Ig ~q/F(4uVE6Clإ,Q!H&KW6R_ /0[UF!8[QXxP•(?H\(vm&iauµ71ʔO̙j%'m<fgp3&LI,SN$XI }Dy 0)R)d58fIH.>o` [7p i w d+LfG3Q-t';iL\Rx.,7$J+p9yXL=F! tT,\㻒pmsj)o>S,gW/뺌 rx̳ yoCQllZGTWco ;]~=K:꯽ѳ,ALF U=8ovj4C0&UHyy7D\ĦdUny젶஄8w hAGG }w5ڊ{=Anu5vL2ߣΫj.1au5ZQXm:ZX]E8zwu8թ*ZVJƫ PdUn[$sf)g餗#b-(7jhaYTmjqNV#V]'QE.BBZ 8[KĦ Uh 0ZHhEp8(0I tu5[KR[Wr.Xղ ꢿ/d\j|Ic- `x;L2NxZgV(֑y6IOA[b zy)ŐRFzFQ+16NHHb]>S>'wPB{1@? H@QF*0R)qhӐ\xg5j8JʘTABF1STZ-w:kBQxvȦrw:7cl%7A |T)I匮,65166C d$t t>16k#L>h(k|g_e ֡!98Yl!;uҕCCCCCCCCʕCCCCCCʍC(sk/xgphtR\h~ p3T `x33Լ%a\闄-,x%i$,#SBq  K$,F@c#y]d"C[hTH4(oVG5N3_4@yW;_$]ƶ^Ȣ严5y!$+ʝ(qmmQu4%5FbJn V7J vֺ؈"LFIrl&^IOI7̐G+Xw z.}N{n hFsS;L p*BRc,2Y,΢D;BosgE΂68wɨI'F%ݠt 2MQon8eeX8]FF^*"+HBQS"B6([ ODXbYDˢ'Ҩˢ'Lbd״&Ihyu<XzuK3UNb:֜}7h:]iNWZ+ӕJtu:^iWZ+$F 8(\aDFԉ4:yl)TA6BnʅJtu:]iVH=}P_ִ}|NU].a(H"MIqxJu"S!H:iE1ѡ~o/^uh|]2{ Rw Es^,9jFx[-\t W+•nwr; MzK8k:6ufy, 3ka}tD Gl!u!uA(>Pvm#a<'S@:3&}fūZgjuƫUW_:l22mMpO}՚Fx 6;=Ljn]vBNDBx u/t 3h!қL9P碥Jd7s`qf.f.eHh-,Gx}[8)owB̽.!*Aۯpi כpi כ 6ۼp̓ m;)]ʝ\ȷ rVʅsz:Bv_Ip=q:㕳?O^upW wī/AKqKq+JAzMwGWԙrJZd.iV4wBv/^ )|l> ׭w?4Ƈo{ tW&ea-ȶF:~&r\I8\ xYoȾ $l/fzNx4yG#dǦܐݓYSmޑpސ}vg;ǴZgzy}z"1+yG!gN,i!^QڐmۈH3&׆bo~FkhFkhFkhF:W1{hҌtnΎ#(EQ2HM[HIkyrf hV(%?_ڦ(y}y#X7$n9ty5@R3NT5֔~ ;}:;uGi#Z_g)8r, f@ Y,mdz@D4?3Dށ]|KT?Ϭ~r tQ#tmԛtӑ4uvJ#.& ^ nCTvUfBC9,@>z!&$ݼQ]['r7ػLn I &9e])d2 ŷFrӴ(lȌm c`lP,o/@>mS`-Gl9ۦ LVm n);װ4-C!evdǰ@m+ 6*+˦t_Gi #6^2{WJ,Wl}56n*6qrpM 4&d3k0M/Ww ?̼d1y5wӧVH T{ *n{=R^P<]\Q.h.T!Q:h mfrV' ZUwUZxg2z9.dRSj05IHۚ WpB8y" L!%%x³jW2& eTpv{fzB kH\!ϮH-Zqxe du*xy 7!I9s?qFÂhW.0o Q@KؽXn`CyCBZ&7npRѷ:<>-j\eRF_0?*HZm GŖ|nQ닌EfxdR3/ԁDy-zXa'9cێ2lHB5jĕ؛iX{%PތIH9Y30K4ƨӶ'ui9#cO7}=<][kTJtGbϛSLWwX;"0=o[Q74EN#ڰWsj4̵3ѣAB[Xu{ƃyA~hQ.ޑiBB(ڝy1\MZR%OZo3{hQ':/ +BC,aR'F&\u uQ4^ i\$'ruȋ]!ΠTTJKax# J(rF7@Cmp >~3#!rG-d񛗂^;r`G 9F8gGMQ]rG޶=w jC!tk%W+Z,k"rN]z"N䃙ިdћ'"2:*SgG֙ECzst=u67㯻D7)NDcJw9fzwSK;DħTSȮ%Y:lD`xӕ#F,zC܎ 6Q3uBSj'ǰK4Bݪ[r} #H㹤K .7 1nBMuȗFcXjI#pWy2zCk>\:҄x,bRHa!(OmY_^hOAz1pڰb&E"mV u5vPwx4j !y[|M$lHQǃxɗq3x8>@P:m85:|"d)sCA.qH !z[W2G:̼7З_5FΙn;Q:̽F)VBt)#(h Xߏ.rH|lךGv}:o1Ac,^GcȜ)T-d&? u1pa'u3LʼnOTWñʕPp,1$K୷Q#~xu(ndj8's8tfў,E{:E{:}y!o@;wV>LODsx+R5Z.ZH[‰-8L }p5g9ʶBJ~[õovAbɇ*J!!ԕ=ey[F̄c*!CZ*-HDYղ4zC65ǀaw(u 8*0CXUzY^Ȫ/^^H'_!%CTͫUu{@!US?rN 1|8L˚TιZϧaHBZ_ rt RUž[P-{;F$ 鏤85rj-< ZxPESHqqOu#(jW*B{4|b E;> -d< N +C!DM""go5-G@-sLټ_!2W!3R5w)5xdw^8Ue ,D vqgn]H~ۍnF\8 ؠ[O'w?c+h, :WΉ:ν7>uH'zno2$κ#gomG;xQbFUi_9-N&$Ήzl;nHIo_*~;SAvW[h>11^#v 4Lor~#{o*8qFjA)qS899}N'r:)DDZrG|p9evo}2n4= ;S&nI+h-|NfA96 >[g,XIrR}7_"[-H}ꍞ P6=m$晋 'SrfV"ґͿgAb_: \7(.Ly,$6 BP-BG]͙nY"42e6$o!S3Ǧc>>& 9&ܧTIn탕 wB$oyF}GB=E6hZ_79G-umohzS5BWNvC$Z?>,ykϏ+R]TmPHO[~( ћ%^惫_c3UWsBŸ9$V>4 eoPV۶ 5AiD:ʹ'o> ]-"vA_L}LXa$"' B-nH69"rҐ/\I G 3U2'Ld^JW%:Cfvm- `k&PBl 9jXQ>D.膄`3[fwKrlB۔wөAF4)Jjp*}1 L.8! E j$et@.R8rWර{)q<#W-QI֜Y R[ aҩ_.Я/]-$˫?+Q=kTF"h}` '^jzybV1ԿGKpqdG+R(,_cFRhSeZ5U])ի.">ޥEpQG@*"*TwQĈ ](~+%9\cHEDh$"]' .Axus~6:lj>dS08}reGڕ&"W2_pWXd ɴ p<,F&kTc:LRcxE;A@U%t>G1TϮJ pD3%*@?HP|ir@q+`V<8@L PCQ^eT 䠁+RIXǻS1܎zQ4L&ʚ IN`q>/p5"4A-ZvCqd"r4hVVn~x5EB<]. y,& H%“UM wo슣eQ=B*ɞpU%Oq~$PE ~phD>gm@)%vU j1Ȉ^-[oY%wHոU [@.[x6BFP 4d,~V5p S6P(vrCaWkNboT9!H}c:yw}5\*"D3h=](V 4(s`o5HWeBqK "stNy"r9@f8bQd]<;3T )q44jr#[ |.k o .`Uj~2bcb>8-eVTEQWufġNd D.@O(-6i)˖PG5*LoUCN'F}M򫏓SqP75)Bqt(pٝULڅN[݌a/9TK4 X 7wV:YG7h$\]6v3#N$l7mGU (z0>9z1PܻmsEy 6Ev0ɞa=5EONZv7:Svi05NZͻL^Jؘ:D|0.eݬhq9"d o- @B 2%MT_H"$Ș&?XEp%wR2}(ς#AH;5L* T^Wm/몣sL'" l.o 5]|@ ެȂУIU$`:9+ `ѣ+SEoh^N2e- Ga21!g 3 jI { 恋TÿMuO`GL<[5?ᒣ+᫳E ^\-VWd@B}\ohCbڅH4^OTPV۹;}kΏw}HԂ&ya:%l>_؇V}mI>x^jC֠.<%QL6\~dHlUP -8A P9[I9P]Qky㤋 L11 'MPEf۾@[&Y}QZ77׶6ȎBuLJ*Sfv W t\5lZB?%@/?ĊFd l'NĐ>E:#S ^&S #C8Gq:gHꣅlHABD blmAV",x=CI}]_ ߑʚO HdϳXѩk#(6<4?H݉:" Ϫgo=N]ָY 91Hլy_>tf?OW lpΐ"jp%kB ғ IVWc dM&X`lI/I &̮afMg)K jmwEU6<ήVqR<&(@!Yխs)uEg&1Yl Q=˭3J ` U 3Ǹ2ӱRW,qw[5 Δa^1\xN9x8$ WlN ^HB6 K(s.=wsqJ-KK. ^㛄d"ܰ nR4ŸxdH;C+[j4*=8QVsU$У  #.k BQLoiy|9wZ"fo&WW4 -B݀L.I3+'1\k~u:kBX:UT%<="`G(Bz8,H2x'taG03ilu'?PJ~$P`A:֦n9h 2gVnoc9xxvu<俈sʧ!OŚ='\ /I(O\SȾ1p+xβiաXJ:s vtly\gȁud4uϲb n,tvX91t:D`=ȱݹ{6$8 G3SHqZ.][J/.&s JcFeKCjjϫ je RiGqlpcM!]ͣKH ь\&[4<9<-Pd餽䆯AA A rUFhyBzJI) bIRa>LEX¡~$tkS GJU|Jaw\ɵZPjDu8IG}OfHgo;8q0 y3J28FV ny8ȬڍHMVq0lcw{$qM "pcbC f*wUDY"6C0xjEA`FT+HrP*gbp@G(f>“GD >=Q&b28?aXrbq({TP8xxC ~:츆K2N@e ^8UehQ/oIhEaW:p{;d "8HR14$bwz˂ˏd7v墝$XN{TX{\hut%=>Ε-.8>] qwtjW9̥)=ZÝ28:톗^Af( uyF"%Ey\g acܽ$@X6TbfVʿL+d(f`T>X@ /a*UY)Aga3ME ,G I|tgM H쇥ף7}oWg 0q-:Lpi) ,}Hr!bݢ" O`-yN,g2 K~@U?2 nu o۽z-9mC%U^Un'N@,_G0#]|<5u\PYd(I`z:j:8R% x+բnPz}F0dXSΛs'U}*Z'RޯO֧+Q9q>EтlMo`UFLkN:)<.Ղ aX1oJF i&@YP|t!(#;72dJney 8Մ9(d?PY+K{f8>GWpgJm|Io|c.i:v rl!':s0Sз"p3 <]cmTn2"dYUj @sGJy8ChCpJv.'5KD x+u6TﵾZ6^{miBqwit9!UFDNL nv4F\UP9 4])Glf\P mTqRH+ *sJ;İ.ɥu'poj}<#ҳE p{IDd!ɷOB mͯ\™eE*Ntu* ImҵyI]IHrή4uw@c 5ǙjA NFS‰/>Iuv xv9ܵ ^%N"v2ܰIϨ@ rz2󝯒jC]\i3+pvUdwN%;:&{I8EDdk'x! qɜ wUh] ^2o\+MCU@o|z/mufj!ا$9o$Y ._#G(T%c/] `w1xLl9s$8s?:N7v/pq 5axydq=m&&+}\jG>P)m_Ax+ze: 'e4x:t(wB*22+ښRW\(>ҧ!_-M]20nzƅ2 x$I`$M B>G Md r]<8{Wv&y+D8S}4'"BZ+nHpZ;c$xbj. "K6@*0m` B/>AM-)7埈Ї :^;(-26T [@TTslWxL}:MI~e5vaIޤB &Zq pssgɫ$bXQK1}>|Qm#_0|_|no&規ps[e a\8c0]'g$rW=%+9z KY,U-s=2X]cX~82[‡^D%K*Ւ]8r Kj5j[KjMތn6.` s،% u\Fl} @ YyZ8[B9`Qg. >\M PC²qnښ*9ԏ7  "Md 8( uVi1N?3Ț?I Ox3-lwrFZz&' Ӥ*Υ· ?IBtAD8U!i$I6{W2+VW7 $Nػ$95*仨 ʴ;Ec,*?)k &'j bVg ^IUdb770uAEH<'C_*;DZK=u}p56iJ$RJڱ c+iH {V1: BvV1iǎZ>d5yqDj3:?0Tjy_[lŠEl [9.,{WNGt /x*"sq"ѡldWGO`*ݹD%7JC9Q%PyW#IwV2PBjZkT }<Ȟ3o9hG W%ߘi]^C'{Gfsp>O MMKljdeKAYE0S ri<\Lo FJlj6h"zn4C$eC$eU`(q&!ET`+ T`@W*0DRV*0DRV`*0(PXwa)bj~Wn B__ޅPLB_(, ,NG/{W/Z{-ܐ>p" nF!;QHDa ut/IraB@'JUNѩG{ZQ Ʌ \&x% zEChRFPue7mjƜ do&S ]I1 pLf(U#L˅U՚? NJWGW‰'xp1ۚ_EQS!Yz>~ԃSz,ZwzWw ݫh1\Xp2_pRZaO\kzQ*RƬxj΁D.1ETtdԴGVdb@]hzFWgl^$o  ֻDC/bl03CK)|dx#e)?U8N@6X YC!L=nS;s\+n Q\Oml8O󐣤s!B2\HpжáZHCT#p(^ЉX7#Bۜp<ה9{C=6k<9RWQv Oq&w1?qwpBO͡k@fm3N 5B#R@LMkCujjo+9LQ{Ѭ8HQ;.qZr,'.&UFvhOx'Q":R:Jg \m#˄ gFlPԑL)#{ёJb::Ҍ6rёR)!|ԑ#XHuz|lHt\\t$|zu$=]Gңu$=]9~ё*mʝHHC6 A).!d &DEȮ vM{քlMmM(޺ >|ф&hBpC\W!P6AGv@Vh$_aKބAq \4mݔ!l9NC|"KZ#|gF/t@lYG? 8A!w$ r+.IAk8dc]y1ǐ76CkH~"c.j:Dhs"UUUUUHF7tCnɃ;^LR"a%)>8v; !I+/õejG2B)C^!)!٬=ꜮQu:r5 ͛֐n~>; ܭᶳR@z!;(qHFy!$+ʝǵ )8dU微[B4{"TFF^*"Ie}<%"dpz|y"'eRZ֢'FW=/)Zc?nZ-^Ӛl&QXMhK#PNbEεB*Z'ء{KhMtu:]iNWZ+ӕJxu:^iWZ+Qc0VM o#lDK4NI(ڑ*&[ȍָC:]iNWZ+ӕ{DWF*2{ pGX:WiďyN.q.'PS'`:|L'g0[FqJW:_|ƻ "I%r֋3GnAxABh93iӈJ_όTtvW|W$`:='qEj.ǻsoU6ޜv=:K; ~,PJ*iodca|ЮNruҺ\i].WZ+˕Jr5zzB:ĉE6lKQgPcROXq7PQx稓׸}M5\u+•nJp[-\tːQȔo[D/Uj&&,8ϙՒ>癵[(} @>&9d ?1;~ɥx"0mcܮW' yfդϬx:UW3^x:~ѫUWƫ:l갌L6Gm"y5mvd~]vBNDBx u/t о:rMasf.W7oo x2O rR# S8^s䧍Qs@Bz۝sKBv|} _z7z7A^mnyzZP?ANVDdB\( rW.\Op=t9\OR/J"y^x[ypW wī/AKqKq+JdO򎁛Ω EӑhMZ"aܳ]BwBv/ޔY|l> ׭w?4Ƈo{ tW&ea-d3F:~&r\I8\ꂛ^ru^JTb~'r;hdqֽ}lش>{2kܑ;.~Tyg{Yk=Lq?oOO$^<8fz;(=[C&B}%ilqD$BIH#)7BJ1p ׈p ׈p ׈p 8hQL$jpK1(ܥ:{u0BmQ׀K6m!%f$PH^-5YŢtF/mSbw>j@QH7|Jz#jePi87#ɫ 8[ 62r3Hؿdr:)_-pl-fzGHQt+~Dd}o*^S`<ީ#H?J4Rhɽ+`fANeɋ0-ɤHX.{j! ֤25?G݁]|<(ūpQ>k;Cz(&>Ҥb:צQhAxC=oc|f MEvA^- *"0e]z#je22/xkC-NNE7D?9ǑV 5jĺˁ }w+)iޓd#}{H"?nHu 7 4R-.\ .| n2\h5ó*i6x>+JzdAg(֢%y,OQlomJ*2:k!5xjK,kQ5˨liE+Z6C~QCʹqynA>tF@g*W} k{T#) Vq [U`\3i*-+"=zSp@1jL7$m$W}&@q3XYϹn[oF.ۨ7}g#izFv]Lz;7T*DMח§[l*|P*]qPƇ:-캫offH "n(`7oTW\jR &N-Mwl,؇{߮55KLS~LSd,Sb ʖmSǽm 67Lƥ Sl UH-Slm-m 65,ś CV϶Q4;[V lǃmvmUdWl믇l1m YQ2^2{WJ,Wl}56n*6qrpM 4&d3jv &Uyc@f^2[?[]W=*s7@Z5eGU{`ZxUMi& N'6jdZ68yujuT3g * gUUTc1I,,S.BGcuԴ1ك\~3#!rG-d񛗂^;r`G 9F8gGMA%wdmsi1nʇCՊ7!#?Ě܁SȪ`7({?F΅cJ2yufPq:}pՁ|]"ٛ'"z1j3˃ I'">Fv}(aoKhě1`v$o@޶Q+2T@?^`D#ԭOaVq&${U]{ @ɝ@{">mrb+邐=ʯ%8:cZU ̆>!ڡOБ ϖ&> fZqa!(OmY_^hOAz1pڰb&E"mV u5vPwx4j (>C AȨz^{Qñ}/[kOLռmּfDPK!9BPxXE~LTq܆ ;ymf^wR%܏bL7ĝF^HBz=,Djh#(hO~?1FIg"Y>@;^k_'-OSs " GoY d:ǐ9S\ZvMH(N T~BVA! uˢ%#^=jRJ/jD$埗"gou#9Q;s 9z;(FprjjGȼ7¹IcZ%CҲ֗Bf ]T(hT (0nqcTO@@2HSSm.v#`zh۬G \4U$7GT1b9],Rڊ+e~!=wQ>{1r Ңb2UQSeHSp)1˖!DQT#*$Wu}W괼fz"w> 4_ ^#(dYнACvqxs ލpw#A7-6N$~n1V ?X\tu~{o}&) O>dHuGpb@9Fwc;$FQ쫠%ҾrZXY/=MIvݐx|߾>5Uv"=wߧ쮶`3o{d%Tn3!]p}g9mNL N9un}wrtiZK}w}ɴl,'O;Z% BZ8iji@>4l!lX`%'!NH|lh#7zk6,CZg.7LəmZXHG7)n} $Rsݠh»`3U@\|D~@* iwhB 9Fu6gg Ȕ5ې%NBt4䤛pRM$AVڂ [Pow/ MDtGi}EԚ#׵YHOcAd_9 9h5sPRu=?RHuYSɖIBn#=n$TDoOx 6BJ[,>2!McWBѾ8dGed{G?«T9u sPIyYТhD I\ yx$"a9/z5uW ONw@{8_8.T9v?h_og6Nc0Dހ H~]ހ#:Y¨[TȄ EavL!H3z?G݋^Uᅣ2 qT>@Gq p-ӿt!ӿ=> f90w!шxGQD293Į+Hf nBc*fFs 9z;(FprjjW| 6ps:A2v#o~%k<}u21bɇdJ&\!FNx:$\ICs!'q3LTȜ0O;q{)] ٶtl$/`C -[)CDbEEjB.-kl-FEi mSNMBѤ+éń&0to) #OcIκxJ]Pz\ D%IJZsf)?o/J1n&PjK~A$ @fst{[/RJ,G] Q x*PzqA3YP- @H}#: x#|qSKžOiDi~רVeDt0"j^Wx¦REPE#24tjEx֊ DrɎ!*~w=D|$Ļ"K谩MpɩΗ\iW`>^|]a%&2QFDHQE2I0IHO|EYVEZP=*>͔dRJf^ P;CI  :rH%ZUI0)CU!K>Dz)R$H]$aOp;EI0 T*k.$9EĽ+`xD'Å0ʊ=wJkI͓l\ѠZMZE UH "w+q$  OjV51HH޽+jG=h &{UiO>@7'W8%vBU.8 # zf@~nFWfgIZ UV)ln]A-А7.RSCCr`Zc- N]@Mɹm\y9QR 1prpI4L {td[[-Р̭F8H"]Dd "2",-WuY:m 9XEwԮ#TRq3 ytwT<R ȍlo)5ȂyNWd=mp⨷ėBڒ#zZQG]n@֙;y₾5=HpZ:Cn.[@ T2VO4O|I ;Tz Q$FW5ʯ>NNyDWDA$Z Qҝ[HjbewfW1Uk:nu3t0Sa.eD(`-#RD>[Pg]NQ ߠI芒su?L{T,:ɎU3 r d8upw@MpJHy-'m'8ّk${E=:iu-N`LdVLۥ8i52y(ac9v9đ1l)2 Y˔4/{Su~%"$~@ ctb"dI<^< Ru#(֜3٪$HRqNz]51ޟOUԸBp\v<:H&,JV{Z B@'MhVW@/EO%rfy9 ȔzJ/$uˀDŽ$$n @>RVPC[m:lK> 8?m!ynR C}蔰' ~aZm!F' yZD1]"GVDp5!U@]<3BM l% BuE. t70=(ǀP4AIUn_jnJdnFk\ `6#; mFW#H-FN}UH2\5Еr`"Wk 8Klg+" plga;?48^CgTO5xL ĢL<)z#9O ]tG '.:Eu%Z<+X%Tw=&G*k>/ =b Fq;j@i(B$b"D@>X%*-Ȝ'/O[lcj {B"FZ)df d[l'8NjFpY⛩kp"$NPoۣTP!1)p^8DS!sWuճoq9z"֑e??˲st*&/zمbwd)PvJF&#v>>ڐW80δNk#itG6 o)b]33+- ux5>y%HmxO7qk8Çv5Rn, yD3rHn@=kP5]1(SAW[s(S v)%ΧRt%I0a Stϧ"O)*Vi)q%j)S BCUU1ס$q9?!"C0 '(IP=[- #j7Z i7<]:ˉЭ @^~dx*h:"[mEc#nm5}*ԎÍ7$|tHUemkTO Og^QU 9AolQ U*OFn18\FiȊMˈr@aIQ#f Q!@C 1<3Wdz..u89IdxV.Fp%qaZ_]NgP-Ȗ8R#IdE 聣/ .?RXH|!ؕv`9ZoQar:sѕP8WJϺ|tk.@ҩ_D2Rxh!wफV^z ^L0PmN<{ko\q6R:ms*:D)bhRSXI*3H{P* SWPbI\X/ȇZjVeqJeǟ=X 7I@q*dRw¬>^ѣ9I Z1DA  t88ED"QGU!;)% j㶂.5JFKgW5q gi7qv!@ax.] c8L{/aFjj;(o.x@.;Z"axqrT]`ABGoQA\mӷB+E!֐,}{o\3ZZJΌ|4 u\T5 _]ЧNɍ$OW'M+ ﹚V 4TM+s+<@s TԴz>;kZ=miLJmsreAaf7e M]F1+Hb[dƎBW[{[ڜdoEc@B<yKQ4|DV2s!:/eJ_K%:IEK&rjҖ$kr1A'} :MKZy'_6jA < ѕ*9Nd \J2*-$ x)z)-V6Wx#P8^.]D( V@ZЪ d6[W2åzk'HRp! ʅw,d?P9XҞ-,,@ lml,J TxV]dRg]8|}ŒxVZwuisAf "$eK 0,@SWbUлCI]bO9oΝT]짚> xjy,JyZ>Yf[DM}G 7%cT%3;h@GWT V+|ax VWļ)-P1f-FWx"*Be򆼢c^hD0)Es` pk牳&xBT"砐Bg,B] Ý-+:)'Q:N]8s<"ۑރXj--L!CRi4t[D>QEȈgU-%7AžNxΉNH*qxˏG8l)i=Dl>,тL2/w ծ^ېS6k{-﵁U UݥU|DWDVU 9E2-V`qAW=BE0,;tuqU BPȷQ=MxkH![b0x:*I ot$XýgWHj :4sdMXz&=ׇ$> Ib~&x5r g: u8@*$Jמa$uu'!8Y} 8'g%\;U>J+N 'o$yvڃ/ٵp>?'x]+:t]ħ;Pp*B&=3T1ҧwJBuqQEhpU591 @~ '$Io$%s'p[oJUu.d/K{8ێzq4>W齴ձo^bcdm+|powRwUpW7N2Α.86r E*3ԄN3gV 4Fs%B G~eem0ض\өo/< # PhkJ]pp:"D;t[_KQ27u웺%v  r"$EZ$}4$ O 3$6)iǫv4u Z^uQ 穮LJNi)\[#Ejme4D/-ku\Z"3 z :#i@7ҋW*w"B2|ȠTR*lRVFPq̱WKȳ]r1lo4'I%y -h=/ % bE=/FF#|GnXFWGq>mq0|q+Ў>tey8F^Nl ]#p GXCH6$.eTXRȐ#b wŒb ~s8lKFBF%XXR$xQ%j.W-]S W%2xQ%TnGD,`TKRw͞b.J,֨ŒnZ,r4y3"M۸1!8FlFm4b3:2b3HqqD,1d.kiR*o r> Dў@37D kd'Y<>Rl!iꙜZjgLT8 6<$2 V]l='mG@|]ɨ:[]݀8{W`J֨F ((Ӧ2Sthdtw /`+'MX\'x% T5+ړ!!*pP } dks$Vhh p, b Lڤ.*HI+i:0Ҏu;ӯ# Xi$U2JڱXiǠcVo;Zk"yng2pp P~mi˳ kd*uγ/l漻N]9IHqf*k EĊD]%=tt+uD@u]$IZh@ ENJj-~pQ5<*h#{zϼ!|-\^|c~wx1Mɚˮ*?5416,YIC,BglïO]'ʥsQ2~dS* 'j۠U+'D}Dit]?z"ޢQhi.Qsx $E x |}i%0 \")+Е   nT!"ęH =P!*0DRVP!]IYIYz\WPLT@a)߅B_w- }aіz"C1 }(>^+;p^h] pC,-W@3Ge#*j&@ p'Ʌ +eWT92FFUjG+$ &p$ ;XU eIJfAՕY߸֧ /s7 !dO+pv%vGN+1AnpTv|3-Bd8#TATkh/:+I_] 'cok~GM=Hʻd RtjA rUSj$O9j걄kݽj]EUX*w `4~ s1k~ $/g0UڗnGЭBG!uWuIT z!4NUVzuH Ec IY;•biἑFqkjD́FHՄWL (w qx/{Uo- gЭf=4hU4!.qJ Fjx5mk />߂{!'_js`=<_W "ZOG6*VQY0-<+V6[ ,.xPyW-l䗱~I/)%ETV GG.'|XTBJ'E* Aԕko9Ԕ8D*df;8]ޡNs80*n*%s)y7[uq8fWWvf{$LHuP4 @!Q)@K*Q9ELkm`zQ} ~[] @㳫nb 1"O+X3O6 {!  Јq.TH~ϏWLLR3$>I ?|tuRQ]m; $!I8DF +9 o?ҦԶmd1j2>kyT _H&ty+T53C Uth)ә.RyW[ $[OZufDW:ELu|\g颌L3]1A"r &I2]@g^t@ !ISK!ʨ)m9 >^\m*QdUEz$LH4%H"ك @O$=GZ5类`}#qT@ YO"ox|C;)No(|4'XЖ\: "ZAI}݌rO*qJUbPӶPsuq0QjwT|vTrώ*+&8wTiώ[Hs[H9|"iK֑rA'Hxrn\Щ #NnEct ]7w,2#c$  m.}/+W_V֗ee_}YY_V֗/+ʺSd~Ӻ1w]*s`xQ#lSbhIM.F šhXEqdt>,p-AFz]I)0KV㵮9*w0^g;\v ޸ʐų4#3{omW`j_ά[<@ӷ?Ո|sW Ԕ'ļ EZZ:NRCiCp@) U{S'#f2dpbNDes͉yvfQm8hp#tKDϣ+/ΣT>=bjv&]ĸs:d.9b[sM3o:s3R l9r#&WwHszA+lYY%çGRhxJ߀f㕓h=A+ʞ$X5PXY},tW~V{-8=Om3xIА^[w&fkqZ5w \ GJ|KR.8%IeBMpdHL݈xp;`JwCPےB 8O5x].)!'IRkq ]t%\w!#|lw2kpڵypUe_"p!E#a8d84 f4 f">on3 9fn3 # VDu\%A:2'G-(Gr,B@ {<#:Z6w>dL/`V#^?Y_} jT"¬//F`w_L?S=j> 㨡G}e j`! -csw'o'ow#/ɏȋ z5wF)]" a ,ʶG^qFP8L+ʹV xNbtuqĊKn5\B. |ϴhDP kzӪe\B"^@ܐ{^|Bі}f,$VۻA=3rbZ>3|<}<}<zD"W+ #NsAWܨ1e(* Jy;8T!Σ9H73;7RZ RquQ#4sk%lPJ("'r V>±z* $<]inH!^ϢnQPikW,Jw bNu^x/ཝ?h/)%ϥs$%ql'HW7 ^ehHO# U7KjUMSD6 h\"">ֳ3)cf/I9oRle9('qѸtyTq!\*a܂Ewȩ.8n8 `.2፩nKqhxxˌKQ0"àJ/NQ5܌Oɷ>uc{$"& ,"])W W.YSl֩3ҒΓ$O1s8Ybl 1ҴOW_2AxUF5Z&"܈AN6 s x ?N g/iEnvd (p\3)Z28WFЪ.R3]qph k'P ~ ۬l=V{-:؁tBFvN3[܁w}%ػ""{\T 9g\9.ouۓAo$Is ӧy$Cd=jW摌w-nz6Wfl(jjn8EF 8Ē d2H\-,ilo9"fU *bJR@=yг'! ѯm[#{st%JqQuLPhFFbkdd;Fڇ{_+iHZjد,H !ƅ3.ppRtEu#@2"16(!h}`(76 @${) o7w],_@##30@'^CLhՐ:g^ =W`J:ئ$NyY9! ^ 2;Jg\VQXoKS-?sҗ(_K~OET>{$s5mO5 'P P8w2oԱd[TCCf3Ӧ2s~d~]ρT/]]P/[W$ #\MԹ<X0O/YeCFNd2#('WO@9Ky|{Wfc ,Xh36@c捣 _=w<@6֕Z܇}+r^>c7*cmn  buSnpvŴt#.T Yb šGFouy]ƵaD庍4@5zudxjVS2(3{yɨpEY.|uoC- LqH3~g;'(Afw}Y+x p|%LФ.קVĥ؄VH37|I o7[ɻ]qU<>|.9<}N8>EhA#ҹ+"sΑ&He-GSwrQ+̀ `Inݫ8nkI i"N f1d$ئwAD) {$p< 5.d>'í3E5w~h}ή|p;n=Ln'}'IVW'O &x2u>}Q8 j,CU9<x @ )pד G$x(zvByCձij طuEդű]G2+٥6@*&?_'׷l(+= TI^@@6>,?\A't#|x.#}=Nfю+nD=W'58S&ƘlZb 2XصձdD&xHsH-\’d ZaKapx͒wP'=<_sK#IC("kcsiSe3\ 4>8/.˾/.˾/.˾ei9 PKCQJY'~`QO"sd-mux-fabrication/sd-mux-B.Cu.gbrUT ^CYCYux cPcP}]gm}>EzUm$#NҎ'n^'m/ˇ)qF;ER|D̥7_ͯ7}߾o~o>o~0Or>ȥd7?t凾wAϕ_8}?XcIU͵*K?>c_~oh?|?~O@㏿_w>շB?_~_~>_c*Nο٧~?ҏ?_>O}~_~??~~d'KacvMbIbRrǔ5AQ9jh!N,?$!%UC6Ο`!1V4y.djl4]-9!shsEfE7FmI;nJ+w|s+mJ+mJ}簯GCGhZv6)hKkRMmiwej7X6Kc몍?Dӓj(#뜌 ?x_R ~6˩-α.M Ԡس8 o r|u0f~"oN yJK%)!/|ڡ {BA7YQ h®_BDN^W={ zI}fq} q 硈t1Acb*y[2^/zHYGT ~@)^hh@qMTuc.j@iI%iⶵԯpDԍ >-hCP ]jn%kW DA7D}CzfAޏWD/\I"JCb9t38 l@r :!8fCMH,!G; n J&+O~6@ 0 }\rwuƒ; d@bdъ|BR1VpI@ <<e2,mJJ`#D<4$q|H H4n\ LH3))<@9y/gӧm[Mîv! Jj%!wb#e+DMSx $>N/#"-trL_K.%NR&ݙ%޾7B.L!I E+&>Զ;R R9,RR rVy ?Mv@|14gXyPjDa&@]g7]M;4=̀Pܝ<7MSqoLnYUyoºxyv#!J ҤҽRaZD@ec!;u_ WH9'Bs 8H QT}!`YE5IJ?3JIh@, P~0p Uvc8PFq|Bx2Z=] imO@0 ;u˾s}WbƃeeB'~>kb. ]e/{/A X$y*#w1'_lY+Dߌm^/5=T"Vv{_[Cb& -ᜈc-@\ɇj?*5=&- O9RɏF%.V/BSL/m0OH jxܴjG Xy ǥ3>GÅ>'\yes'% O|R~8lD(gҢ6dh1i]LZŤu1i]LZŤu1i08hƪ4?=P3$8b  u:>G E18c |b ~?6O5dBAĞZ?]zm7L?O0L?LN7 n$ۀ‚V"3[:\XPf]ZDh hK s `@dRN)Ra(HE#hhPyѠyM 4CMc=4  \CᡱҘ fs\i1WZ͕Vs\h49 Q}% ?H gCKW5Zk/ [~/}^Uf@%ɓ'3vNf9s6clٌ3e3ff̔͘)1Sv44hzY)x8EYZd)K]Z1Z$biyʁ]S7_q?¯Ѷ+TCWi8~,Yzg;mR@|K #ے#CSڊO {F;H1O& 8(CVTSLeFR7_^ghVUh]s$5x-4x)1G Gći9Бym4!$"BU Be@&9 /s|zZ/ ҽuG^ְ r R"$eKY[l_E2c^{{T!K6"ުtoN{qLt/-Hto׺"kK?-_(uv=+(!gh㬠`/] qVPg `{ 3LaJ&PaE&5d)AiKK<K[0mX-0khKK,K[$R49)hK1ci9)KL?!ȲiO'S)ɔhJ|0%>Mw;S)ΔxoJ|0%~S 9lUWӯ*_M*~U6lCWUӯ_UMg) u=L+L+L+L+L+L+L+L+L+L+L+L+L+L+s)^t5bzѶ~FM/:^t6h/^t1lyJW^doR /:bՋ`$`.dm;y Fi@-ަ* ZHLk[!x2(XZ,?NH#&7>P^/01 $wÏ 2vc. R]=*Qy.]$+ưfwZȝNm{uy5XiHiM0i= 7Z|U+p,9.+fDު~ސ5UF9B Zv\ Z=\_¯7)xaۢmnb|Z ]V˻3f^QTN)j^|Pg8ɬprE$&UWP<\sE6v 0a( অ`TE.Hxߢ8X`M>j79H!j79XS/Q4p5Ǣ5LN# Ʋ9aF˭buDؐPXķ:j)Я 7&*X/ *-ac0N@дUۘCh(ۘ UT nRĖPMɞ{i (,iw kjeI? % 5G+K W5md &r*] 5\_RQ QPڙ+AӚyѨUF_=?+s(lSk1hB ΥHD)TL^ᝇ!x#oZ$]BWy;JXilrTCC+6 ѭPu=$ɏ/"{r`KkUE=wHB{QDĐEWЉFFF$LS7(/%hlF `H(ڂQ_ɷ`7WлڿBll/ÿn߲]CMk_'v8F{l*T _`d".19,C&O;{ ڧ&)Camg !|⏾4lr+M^|w4xGӫ g\FH)d`"7$B&>AtєH"o'qZQa#34D,͕!4 dРܤ2! Uܙ1k2|V|by 2XcAHy1L{ T'K^QѢ1 i~?6OxxʝӈffL~2н2|q'?b .^̀1ԕ]{eh/=ZR1wֺlUS kY~WچT卵 C]YɯW09=%WƗ.ejcmh[C.O/@fRUSý*IJ)ZH C vglڝ a+azq:8&rn>կcs>Wrj>SCʀyCmG8 aL1A^̷N0Tm'\@6NАB[U<6zz8!@+G9^y KcZVNH@3蕣fi äWr5SY7U.PaUU VXc棚멈8ږ>ZdF :!d|z)$q݇ɨh󰌶&%(j2ӣ" uqU@腽Y롐A" 0zn1Li%}55\i9j 5i9;bU\KvKGxI[JA4ֲ%rZn6:=ԤbD qjADPB=VNrlr U_yr8xU_~R8m4w lGw"oD=G%@䳬W F1|V+Tɑ.8FKy`דB7Jܝy{8!d5.gy]u@iLIInMR=77^s Đ%6@ "-v&dZ {Nb~'bdw*h?M&)IY.K\lj@aR KHD98R>/\8$di& H"$D=D/bVRu2 W@?Y 9`G"q|M<Spι&> 'Cr`HḣY{cp=/\J{L_%<M&αn L VDa) ɰ>G>?t8ꋜ Zk+؛.tQ? }gsԣԨ5}59nᾚ}&^+ZR^Cs7>p'P+^S_$ahBB`3,s|9Gp(}9x86jK_ա86. CGADu(Y7Ȯ1CFCqoP* U8r B\X{ \ TVN&G2,ZBv uJd%Wžl|6&޻FþבQUQi/Z9H#W޿&'@| ٽ排) EhHLfODb猛Bx @$Ar]6I$$ˠ5I$tI̜@ƵV !?'sKݑ[r*D209Ki2s(G=e3/|p168=XIװq&VEVya%'?4HH "ngE T|Q~Vzj8Hm;++G>}VO"T\e^Ί*ѱ̡"""`USO**Vya0$6ćVY IȥAT_]SZm`=_ @"V<V (j6%nB\~k}QWo_PW\d {"tNJ+T+k c9<^pSyP2y|:\\rG<;dUrQ,蒷|G7u 9s>_9BurGiQrXyTΛq/OiQqŘ\iGMvBl,>]T{3h@_C/R520P$@1w5Q*7poTtb5P€>uoIćk0z&9i%g"E=K5YVY/6˩mjݞ9v@hu ^$NJ'C99_iPe2~$!Fz*I~F'0wW# ;#<'犃)r4TPGŸL⢠[2^|QW-Ɂ"*]|\ J:RG.p9SX#DWU ˃ {*0 qƀ&7ɑav Ikisɫ +ALB<ХZg^'QY^ 8"A{@\@Q^`:r{/<8'j(0Fj;Q ^IU$I-^8N L *@SPy'A]u~n z|RB^9$ٻ!c+:W;ͭfnNHx(kj_DO,Vv$!5oTf vPzel;ݡ ;96C?j;oTtm-Pw4{5͇G`#r٤>G׷@H+HkS.&IbҺ.&IbҺM^K۴䱴=j[RaіuKE<)R4yі6cvei+fYڐՐ`J FMK|2%>LOGS)xoJ3%ޙLw{S);ljWeӯʦ_UL~U1lUWeӧȦRL~U5jU%R<}AT{.V&V&V&V&V&V&V&V&V&V&V&V&V&VSX^t5bzѶ~FM/:^t6h/^t1lyJW^.xR7蜂E<+Cs&ϒL^f+i=B5hºΪ\9{Պ+̲7.(f7YUĀt*g7`dƄ;>Y ̩e,1 6qQ Nk<տDFg;ъNkTܺӚaz@nV*½)Z̪Ko L i}@s(R8LneHԝ,$Sz4FSߠjyJ/7pr x5 0pk@bI`ø,[kcP5ܼ;%Xgfb>h]" 1 7;O<p?j;oyS2p;Z}=ϱnǞTsmۡ7WP;n>wǍY5ZVqъ;Eik;R=NljbjbjbjbjbjljbjbjbjbjbjljbjbjbjbjbjbjbjBV Q!'u$%?*WLz&mB-FCġO 4}XkJFmtrBY{S`ZS_cǦz/Mc a LɎO?ӚƳ#"wMqtMq|/M〼"g-Ӌ ɭTZm- H/N5֣U" A)  b~!1@fE?[L g~Ѐ[r}Bk b u9&ߺԚJG Z (OCQ 9dv\-Qv\aTJe@W%gR((R_7h y['~N['H#ikіoHu.1[5\K,1[5%ykLh&Aj9XbaS0Z0tӒRe#% ZkDlfi.`i6` _h [] ɡRWӨJ%T4`EI3b￴__Js\4Q-ʄ"BNpnq6Z@w@nun?I+&HKJR}u+ 5Qi0VËpBAb0so޷(L%eMLhFͱh '/4m@G;$EKCuIшg%(X*uI{l.)uI;j)H]RQB?PwxD"e M[ut:BvC.nNP\V)ub6ubAU'gSxӫT=<[0J+K]ZYg[V4԰,er .ezU2a(pkk'] 5\_RQ =hTWe DرѨU8#Mծc(q1G7Z_~]*CLvYKYK{{|YZEӬ.7!+U6Hiupp ׍ &l_]#lsdn i;fjtAt'Ky5UATl I/ W#ҢgL_%-nÿ.tI[Ю+.Is΀@I4xjܵ1}n!j|t( I2[Kr!I^%sc-,^C\&ٳ/t(4QkUDA & 4QЅ7ҫjtD5yi#4MT&f}3Ĭz/A8FgθjG+Dj >1@O1 }AQN}|di=\{}YPIF?NealNf@t؜|ϔм2}fPۑ9N֛@Wތ8̷N0Tm'\@6NNh*sA6-@nm6{8ihjVL} s(Tf+GNʹD 5"6,~n @S\ª r3i*G5-Sq- S}ګx14 WtdTEyXFzfzwceGLz[fz]DiI(7(`woasPasP u}A1vs1U8@B,nj"BGܬI`-sNcWZ@dGdJ!l( | Ӱ,gL;hyu&pL` ] 䈯WgLwgн;` @2MD'J0[*p~p) %VN~"={i B7iۮ0Eu vZ$Co9-yi#974nSm4ԣvZNO vZNNXU'ң(ݒkQo bEҖ~R4 ?ǶlI>yrz(NODtO !c+6+PZ'Z'SvnAsך=ͮgE{W dY+\u¢cjH~jR%֊Z5s@[OLDO:402 >$2b{cp=/\J{L_K4y.u)T=Mc L VDa) ɰ>G>?t8ꋜy䬏+5VP7)]~btׇ温GQkևjrD}59|{}hEJGx HuR@xL}E}R K`%ϰWrب űpnD}. :-7ա8u(u(Nw-G}(&^QRXQDűr>ju(hh\6(砢m8yKS!h9KNqϥO@BbTXc~aҗwxeԍ0|4(@fCe997eK/2t EC5DH:ANGR.sVhY u+ZC u#<lNZw'o4|&ϕ|>E*/}З-peY]yg_ȅd/?pfי @/-NEYb5uZrQ>MɖLQPE$!|"΢^&@<}e.pLQ.Uٴ 01C5,qI93aHrIE4h^x'w:ʸ+"2)=4` m`P8'+&KA N+KQR:*ߧputwpuEB}TSJX!O,= tU@2kVN&G2,Z` %r%k\: Jd=^mLw{6}#:.$y#juYN\ex+-W@7dc;Jbg,I$v&SI"3=MьT>`P4I(| Ee"2hrMe]E3'cfq+W3_V-ѨW 9K^CRŃY g)MTf=A,uEkXI\žO$Kk8+Ʃ%HH "ngE T|Q~Vzj8Hm;++G>}VO"T\e^Ί*ѱ̡"""` ;z|-bG>JUT⃶ F$҈ N*ڎkJz^jN/Iv6%nB3^^g ay V(} +VXqU);VX2 8P^Ys\M$7֋eg?s_&蒇|G].*qC]^w.!tN? 2GN@6-JM*U[]_5(")Rr:5Qe]!aPx\O^pY]Ni,hF  Eޠ2j\ x%%ЊBUjz37箐B*\}+}5n&ۤ`aXshH_J?w*+<Ļb$/t/XcbHJcǎJx{oD:<;PKhX$A ZEֆ FUF.% QT/D\] WKe5֓P 0}a#-sܤ!Ɂ P+qNWk$T0= ~: ~p3Q* 01=䕇CHNe(9ɹ`/td.c:M5TEQ'(Vī_UKr r}Jvpj3hg !Ңԑ ?\)Uwh©bm;p^q8,)%H1MrdX+CBxڜxrjJ@к$t);% @TV=q8|key/;y@.p5X  NI 'L@ |WRf(I{~'|n' T"TIPd't@W09Ȁ+{__?PKCQJyOI!$sd-mux-fabrication/sd-mux-F.Mask.gbrUT ^CY CYux cPcPYo7+: $h@I(mhך Fd[$yuQY0Fu$ULp}~=~:q{W?ݮ.>?VO>vGKٿv'.L˯^g10nN>3Jfzܞ<s~e<}έ_߫o/._n?W˯^_}u#R|=ppZ-ޡ/^lS^]]^lx{pvbk_*xkW=..L^ZꉱJrbbiN̲:D׵st:,w<贸 *,x8_m#:*m9(9?,dH^aYL[2]Ψ;E3eB>BnΌGqY+x!d4"d!f3\01o͉;;K#Ɵ_O&h0=m؂|IFp.XDed bѸӜHt H##D%B*㵲Hkz_@AjCŝc"0Tj (h%f(Ah@v#%%k\K6BIS!sٍ:` {1 s:|`+5T-(m`QD G1=Q΀r$ [+W2LX;/}iV@*X' ?jU%to@/ q bۈf:-0(p}(ZPՀlKtXjРׇ c.&BRoIRiv|R%mJ0Jh8&Y«8Z"o@UWU7&% @3" ,"B1U둡lX!R62*vxt;qOjf .+SpVkJghQ |=ݾX*P "[F 0?%5ga?h+K7 exˡbҤ^>_}В8ni0]b)G2뒶GL!3;,U!Q}Rh +I@YB*R(IҺpG o) N NARPGH`wߑQ28L+_XXN;295Vڰ%q8,3Lo RS5 C"+-KLMI81NN\Z6c3f_jI DqEg L/eLaCg t:S(k3yiJi ]05x~D $7r2eXc+J4d [ %52 )dp6:-rdJ0GҐnӴpwvV %^^OE!mH 4۹е-04zQ$-H%(:(xyģ)HAֶ OuE)P +Dj S;cJa>FUjWkjLx|F,ܛ!kvƱ[#l_܆PwM9&+@G̯b,DTo|$R:[8uʈL&8(+Z[CdWz:6"<$c|kjWf: ɰ؆qoeiu9m✺l*-Pđ5Zʒ/HJ؂$$ sg \C} ̓ϑviŚy[QFJg QX$,Zr6_P5u~2'f`ݧkl5)Ĝ)HdUFXf7*;!{RE9AJN $+TfW\Z&@@%)0~]G<g])E^ ^u?3Zx -DL't(BǑ@kցiT0ӟFUO){߁;7PKCQJLWk $sd-mux-fabrication/sd-mux-B.Mask.gbrUT ^CY CYux cPcPn8\,d8${ć mF&v =];mRE` Ð3Ҿ/r?]ܕj],]y=^fioI^_s˳TS/e~V19rN\5&%2RH3SҎd^_Su%,'Zh 9X@[tܸqQ:em~plf6,̕伨N\W?|uoNf NO\6#Hȕ[/+ RlU岄*v+ټۯTed45'oPMf|9VUG׷hj>iJv6s7%W{v60:NU+! pbe3끍lg39NHXe;I=1?ZA;1?@f 2)uc~B9Uq6#prS},܏ FpDPY5l4Bt$X7XT.cX >U%)g*@ l. l@{A;#3V+z=w\p/=h/_ +S oj`<x$|-Oc TkZXN9TMQQ>#1GY@H0BQl?FQ;Fdz!j?%Q̻j} @X*^VMnBXXm: vJ7((rTÞ8']"&0Cj! @#oԈKx`sh$ KW#ќyN^Fv< sd-mux-fabrication/sd-mux-F.Cu.gbrUT^CYux cPcPPKCQJY'~`QO"sd-mux-fabrication/sd-mux-B.Cu.gbrUT^CYux cPcPPKCQJyOI!$Nsd-mux-fabrication/sd-mux-F.Mask.gbrUT^CYux cPcPPKCQJLWk $`Wsd-mux-fabrication/sd-mux-B.Mask.gbrUT^CYux cPcPPK )[sd-mux-ctrl-0.0.4/doc/hardware/fabrication/usd-adapter-fabrication-v1.zip000066400000000000000000000073471506653766500263130ustar00rootroot00000000000000PK 5EpIusd-adapter-fabrication-v1/UT  ,X ,Xux cPcPPK,EpI!%3I4usd-adapter-fabrication-v1/usd-adapter-Edge.Cuts.gbrUT  ,X ,Xux cPcPT[o0~8MdK%)j3}L L *m3nLs [DOpt57EGi/b>VOx|vm 8 ؅ J~0K!<ο5SEWs_gCESaacDkSg䝱\$y4(^+ $Ƹ7iI 6ݕL*`t/_Z,een6fb.qlHf e?z.FDȅGߤ|;n""Co%ۚ-؃eaO\cTob&ݸNûrs9a+l8<^*K)?=b-hh@(Q4hDĭ*D')YigN^ӕFY'3Q "&bRuh)\} - Dx@5T`Z:Xdq<ʊ%V)&ۑ~lj8B+ckڠ!%h1ZQcbOb{Awku2v-@Z7757\R{Fﺁ4 Jg3 ӒCxٓ8w1(Ns* `7 .s9 uH3] H' Wi$=T1 ܜǺH!UvXUW?PK,EpId4Co4usd-adapter-fabrication-v1/usd-adapter-Dwgs.User.gbrUT  ,X ,Xux cPcPWMOGWL!nBXA6#MR`nߞٞ)H8 7U꽪޷v~Mws~|}y{]/_8h'^M]nac],oӣ?ͺ[?Qwrgzp^WYަGV>tZ};?6>>,W: o,fLX_|y\\/Fڰ?/κߤN PG3D >"gW"_)G0uƤ?B=л!X> #Np#3@%UhD91n2Qg `gRSXip-S:Tf@VcГ3+$q|agL@q2JKl`*"ԍ,8H%3+'5K#DPgx&Ui4F $OBB( S]1B.E&lEAa]i*ň`AB`F) Y3'[9e8P6 K`[ L4L:7l's@qݡYH-z ?OT)FXl*`;օR0E,r1 ĦRIC zƭca_uHڈ-aiioGff0`4a=n-w n mLDZAػ!%!q:MQ1d.aA.v󗫄Jj6EzS?tLO ?A'~EDElP 8RO`( iN;响q@FlU$y^M9& 4M7?.Po ?dE116C~dЈ8<A~LG1B}=롬P5/ A8r b Ul} :A'l' A<6T HkEi0݂Aints.TE*ZrLjS[ދZ[CH\F x)JA2E:q 9퐈fh6ChlTQ̀YSf`(གྷ;āF;$n7!vBXlC@Ji`u~s )eP';fC;`6sSq`/Ŕݛc}*3`P R6vaH=jєl3o7Fk'Dq?Nljx/33")Eni?^|zΗ5@:=1@h Baܼ/M1WLjㅿ=s._PKEpI:*usd-adapter-fabrication-v1/usd-adapter.drlUT T ,XT ,Xux cPcP]MK@xGM bSو؈fċix),vڮCW%qJ׉2laiW|=UCOm#]q[,c;0\SUweIXoY %$HY%X"a F$җH )T=q;q{ᱠ =q%A~PK 5EpIAusd-adapter-fabrication-v1/UT ,Xux cPcPPK,EpI!%3I4Uusd-adapter-fabrication-v1/usd-adapter-Edge.Cuts.gbrUT ,Xux cPcPPK,EpI.T/usd-adapter-fabrication-v1/usd-adapter-F.Cu.gbrUT ,Xux cPcPPK,EpId4Co4usd-adapter-fabrication-v1/usd-adapter-Dwgs.User.gbrUT ,Xux cPcPPKEpI:*` usd-adapter-fabrication-v1/usd-adapter.drlUTT ,Xux cPcPPK: sd-mux-ctrl-0.0.4/doc/hardware/fabrication/usd-adapter-fabrication-v2.zip000066400000000000000000000230621506653766500263040ustar00rootroot00000000000000PK (LbLusd-adapter-fabrication-v2/UT L Zk Zux cPcPPKLbL$P2usd-adapter-fabrication-v2/usd-adapter-F.SilkS.gbrUT 8 Z8 Zux cPcP_o0wZD8(!QaZh2NQϾay";Ƙ/`̥V|^HQ^r|1k)GdOoŪmAKz`=66bw`ăG>dq I!vb:"V 9ጓ~s"cM2yڔP2*uUF)Z瓙DoQ%zzN7ZF?24+i ,0#IQo4t)jOdE+ Yv՛)^^>\$w_BZ@d̅gPl>Y7J&oMrlv˯"+R]y8 ub}\ۄVڶ &W~u$nf|~57|s]5B5p(1Cg =jpĜUVy%PKLbLpl)4usd-adapter-fabrication-v2/usd-adapter-Edge.Cuts.gbrUT 8 Z8 Zux cPcPT]o0}WxZDc;Q(*Lk1UL&$Tx sW" >~6s*B!8uOK0|mCqD&2e$0:dq{z$EFza@0 B]QLyuL &PC0~@tX GM18nϊY ܬFw7o_р “P pb[ol 21COYK7G*XwH |6駋Y*`)K%btf6pt! V0ishRS45 SC]q* f4 v')`biqb8yIT-8عtL1v0TuX6nPUF5TS܎uZ%hA!ײHJeBHB1eC|^<<}SRU1,EZ PKLbL$W/usd-adapter-fabrication-v2/usd-adapter-F.Cu.gbrUT 8 Z8 Zux cPcP\Y]~W(B2`aGDZ&3h=էjXq/;9y~|psw߮yru}oR]G̣>GVcLJn>hwܥ/OOFHGʼQsk>oJayu󻇯/>rEg\QE|4Y"`z~rww}s 7r͏ןȇt~]?=/ś/^(}OW7_g}߹ }|| +w7㷿~pO}ק7>y䋯5sz~szyu:S78$˗ /^==Do&|ٷoӋ^=~T'Ҩp?㟾3 م~{/qOܠo4QDg_?m‚}v&&~JKŠD8I~m&s$=L%Xܠd HxAO=٢D> BQ BFuaN$ B JBפIQp"Y(4i/ b)qFihfE]Qa4cc>54Bbq@)fB-$XID/txn]$zx쨲c+A ͌Qr,a `G%%nQԔx+B!LN#B$ y6ݦ+l1B(wNӹ(!I+%͈F}jK#C}&d#9m% O^(HS䉉&Q eXX=ZԲ~?O}hBg:"F<,P!o#M rZWUIYf,Q3ޖ{ܦpQ%`ށ ڠS,%PA,ERr` ,,5͟x]0+e <(Ha2Q`.ifU5SADb["Rs" QxU^,KnCVͶ2VFv5r}AKEĔdy`V3[F: :a]),jʦ*,I˕b W9DU%N0bۙs]:(чqubȜJv#a>(JXCn3Hò =:W)1Glíp2 ؉JΆdA4yURg@3Ӭ>-!]P{5B`/xNsݓo1IvQen>{'$ޤӺC4binbӼm*(V:?gVI9N3n> }@KOW5%q YgN8-49EUH3f_‰!(2,{fu "D| T8vbDNC  FHGASei<uRp'/q=k=dGw̧#J&Z8*#PXiіHhGtKB ^SQR( SV>GS9Aʶ@.$BZey|1I,nda=0ԑ.~8PZUqSbxB:-~MquneTK S4EpZ[ EhGUM7 :-B 'T)C<4(%~Z_`GxW1Gu$6dlD#DHeWlSSDPLG^4S:AX֝0fSb[ rn#X԰M-ݺEO znmNeX:8O:n|锭j::Hrm'o[N,r˳0d&2kT-Sf^ rO (vc#n$pVPv`^6Mjn~O,_Oid(֡Yۺ?OSan֙M8:PsqP !ƎpHsA83APFQ%~ǃ!<5 YGS *Mh\ q[kǁƵ)k:qBofQᄅcݠ)jG7NB_`kD7N qZtl:i0je$4VNku:J,D/('ȔSbeȵ#}AYv3`mHO;ϴن% 堐m]<1vͤ&[D)"",9(̉vOF:~]jOPfh.R8 [Ds<29:e,Yxxm%V!@ Q!e4]6He{$y2abE6IR3]6 {Me&Il ʈ˶?~1^i~He k%kelyqcwl[$Mlt,fzitf#l#qvuÔe놬lÐEm۲PF7u""q<0ZOb~K"ewϲ:!] e%ygJϲ (L/0dهIe&QX]`<-Y}y3&J&ϽepJ0> T2VO@x:btY N3'hcPA&ې@o-jYZ!#rj^8]` i:fmA7 >C-݄o{of9oCSϐZ |rQ M^<#AS3^2<ې@oДД3zfϼ\xUԗ xU(י'!{x66'$5ۇTd!QDP0"E ( 9tdiǛ:iUdO'wgH[VT3+IYY"{t=nxmg줁ia\f.~JAZMYJe(k~&sؽBSܥ_;0tpeӤ~}06_W?7nm$W!㈸e>cFk.[crs^ΖrɣQcA-F~N :%ۙҰq;L w6fPKLbLX8j1usd-adapter-fabrication-v2/usd-adapter-F.Mask.gbrUT 8 Z8 Zux cPcP]o0&:p5JGL(++us-T=F |"w, b1~φI G]"Gog, u,UrSEŽ衖01}Q APCkKn] C$id`$X0=1=BFV $Ct:rhb[KOΓ#\bOtf^L썞eӍ{&zݺ,Fj0W@0 V@12`9e *̀<>ے)ؼU<~{k1 & 'ɧfNⰎ~^ -V?#0[l 1Z@T5ui]TҊ F*V1 y+kDs Yc=WUh hl2گO,큘. (|obvo &"~c50rACEpAѦ"{?PKLbLR˯l;2usd-adapter-fabrication-v2/usd-adapter-B.SilkS.gbrUT 8 Z8 Zux cPcPN0}P%(N8]џB$"`ԇu`ߐUah4gf)Xf :5 w!SH 0! ܊ _<3Aarć`MD<<.x&=FӀeKz6h(Nh4tt WBfGGa f"\D M&b"D,"߻5NuJyK^fϔ fY}$9(2#j_qg||~矣AV{ l΂-4!6$lf#FHQWwg5ևS?~& oc_`z+ *wŪzJ !ff [%"'J$~ԟJZ'{ʍ"8$m+u">zf<^zoۺ5>r:ӿcZ$0}AtxdFS;{'I}^.VQ 8K\#.ˆX˽Tc,*HLwPZTZW& YT̏d?s>䦰dG/馫p#n;?Uf  3{]*I`=“v,Ua,ok$l_-nh1 -Hg)` M.a>w,i7&fw& %~8"nƱؠFjVErs^ΆrѣQ4F,7%蔸߿΄יq3GPK (LbLAusd-adapter-fabrication-v2/UTL Zux cPcPPKLbL$P2Uusd-adapter-fabrication-v2/usd-adapter-F.SilkS.gbrUT8 Zux cPcPPKLbLpl)4usd-adapter-fabrication-v2/usd-adapter-Edge.Cuts.gbrUT8 Zux cPcPPKLbL$W/usd-adapter-fabrication-v2/usd-adapter-F.Cu.gbrUT8 Zux cPcPPKLbLhW/usd-adapter-fabrication-v2/usd-adapter-B.Cu.gbrUT8 Zux cPcPPKLbLX8j1Iusd-adapter-fabrication-v2/usd-adapter-F.Mask.gbrUT8 Zux cPcPPKLbLR˯l;2usd-adapter-fabrication-v2/usd-adapter-B.SilkS.gbrUT8 Zux cPcPPKLbL.B*usd-adapter-fabrication-v2/usd-adapter.drlUT Zux cPcPPKLbLq0Q1usd-adapter-fabrication-v2/usd-adapter-B.Mask.gbrUT8 Zux cPcPPK  "sd-mux-ctrl-0.0.4/doc/hardware/main-board/000077500000000000000000000000001506653766500202705ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/hardware/main-board/SDCARD.dcm000066400000000000000000000002321506653766500217120ustar00rootroot00000000000000EESchema-DOCLIB Version 2.0 # $CMP USDCARD F http://www.tme.eu/pl/Document/65e9adff7d23be96049ded2e753b5b63/MX-47219-2001.pdf $ENDCMP # #End Doc Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/SDCARD.lib000066400000000000000000000021051506653766500217160ustar00rootroot00000000000000EESchema-LIBRARY Version 2.3 #encoding utf-8 # # SDCARD # DEF SDCARD J 0 40 Y Y 1 F N F0 "J" -150 600 60 H V C CNN F1 "SDCARD" 0 -650 60 H V C CNN F2 "" 0 0 60 H V C CNN F3 "" 0 0 60 H V C CNN DRAW S -200 550 450 -600 0 0 0 f X CD/DAT3/CS 1 -500 300 300 R 50 50 1 1 I X CMD/MOSI 2 -500 200 300 R 50 50 1 1 I X GND 3 -500 -500 300 R 50 50 1 1 I X VDD 4 -500 450 300 R 50 50 1 1 I X CLK 5 -500 0 300 R 50 50 1 1 I X GND 6 -500 -400 300 R 50 50 1 1 I X DAT0/MISO 7 -500 100 300 R 50 50 1 1 I X DAT1 8 -500 -100 300 R 50 50 1 1 I X DAT2 9 -500 -200 300 R 50 50 1 1 I ENDDRAW ENDDEF # # USDCARD # DEF USDCARD J 0 40 Y Y 1 F N F0 "J" -150 600 60 H V C CNN F1 "USDCARD" 0 -550 60 H V C CNN F2 "" 0 0 60 H V C CNN F3 "" 0 0 60 H V C CNN DRAW S -200 550 450 -500 0 0 0 f X DAT2 1 -500 -200 300 R 50 50 1 1 I X CD/DAT3/CS 2 -500 300 300 R 50 50 1 1 I X CMD/MOSI 3 -500 200 300 R 50 50 1 1 I X VDD 4 -500 450 300 R 50 50 1 1 I X CLK 5 -500 0 300 R 50 50 1 1 I X GND 6 -500 -400 300 R 50 50 1 1 I X DAT0/MISO 7 -500 100 300 R 50 50 1 1 I X DAT1 8 -500 -100 300 R 50 50 1 1 I ENDDRAW ENDDEF # #End Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/000077500000000000000000000000001506653766500240255ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/PSB_IDC_4x2.kicad_mod000066400000000000000000000033121506653766500274600ustar00rootroot00000000000000(module PSB_IDC_4x2 (layer F.Cu) (tedit 55FFBD61) (descr "PINS Box 4x2 2.54") (tags "CONN DEV") (fp_text reference P5 (at 10.09952 -3.40048 90) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.2032))) ) (fp_text value IDC_02X04 (at 0 5.7) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.2032))) ) (fp_line (start -9.1 4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end -9.1 -4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start -9.1 -4.7) (end -9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 2.3 4.7) (end 2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start 2.3 3.3) (end -2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start -2.3 3.3) (end -2.3 4.7) (layer F.SilkS) (width 0.29972)) (pad 8 thru_hole oval (at 3.81 -1.27) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 7 thru_hole oval (at 3.81 1.27) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 1 thru_hole rect (at -3.81 1.27) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 2 thru_hole oval (at -3.81 -1.27) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 3 thru_hole oval (at -1.27 1.27) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 4 thru_hole oval (at -1.27 -1.27) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 5 thru_hole oval (at 1.27 1.27) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 6 thru_hole oval (at 1.27 -1.27) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/conn_usb_A.kicad_mod000066400000000000000000000035651506653766500277400ustar00rootroot00000000000000(module conn_usb_A (layer F.Cu) (tedit 55FF8B2A) (descr "USB A Socket") (fp_text reference P3 (at 1 -9.5 90) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_text value 61400416021 (at 0 -8.636) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_line (start -7.62 6.985) (end 7.62 6.985) (layer F.SilkS) (width 0.381)) (fp_line (start -7.62 6.731) (end -7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start 7.62 6.731) (end 7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start 7.62 7.239) (end -7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start -7.62 6.731) (end 7.62 6.731) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 -4.318) (end 7.874 -3.302) (layer F.SilkS) (width 0.381)) (fp_line (start 7.874 -3.302) (end 6.604 -2.286) (layer F.SilkS) (width 0.381)) (fp_line (start -6.604 -4.318) (end -7.874 -3.302) (layer F.SilkS) (width 0.381)) (fp_line (start -7.874 -3.302) (end -6.604 -2.286) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 -7.112) (end -6.604 -7.112) (layer F.SilkS) (width 0.381)) (fp_line (start -6.604 -7.112) (end -6.604 7.112) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 7.112) (end 6.604 -7.112) (layer F.SilkS) (width 0.381)) (pad 5 thru_hole circle (at -6.57098 -3.27914) (size 2.99974 2.99974) (drill 1.99898) (layers *.Cu *.Mask)) (pad 5 thru_hole circle (at 6.57098 -3.27914) (size 2.99974 2.99974) (drill 1.99898) (layers *.Cu *.Mask)) (pad 1 thru_hole circle (at -3.50012 -5.98932) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask)) (pad 2 thru_hole circle (at -1.00076 -5.98932) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask)) (pad 3 thru_hole circle (at 1.00076 -5.98932) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask)) (pad 4 thru_hole circle (at 3.50012 -5.98932) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/conn_usb_B_micro.kicad_mod000066400000000000000000000040301506653766500311160ustar00rootroot00000000000000(module conn_usb_B_micro (layer F.Cu) (tedit 5672F747) (descr "USB B micro") (fp_text reference P1 (at -4.7 -2.4 90) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value USB_OTG (at 0 -4.0005) (layer F.SilkS) (effects (font (size 0.50038 0.50038) (thickness 0.09906))) ) (fp_line (start -4.20116 1.99898) (end 4.20116 1.99898) (layer F.SilkS) (width 0.20066)) (fp_line (start -4.20116 2.10058) (end 4.20116 2.10058) (layer F.SilkS) (width 0.20066)) (fp_line (start 4.20116 2.10058) (end 4.20116 1.89992) (layer F.SilkS) (width 0.20066)) (fp_line (start 4.20116 1.89992) (end -4.20116 1.89992) (layer F.SilkS) (width 0.20066)) (fp_line (start -4.20116 1.89992) (end -4.20116 2.10058) (layer F.SilkS) (width 0.20066)) (fp_line (start -3.8989 2.10058) (end -3.8989 -2.90068) (layer F.SilkS) (width 0.20066)) (fp_line (start -3.8989 -2.90068) (end 3.8989 -2.90068) (layer F.SilkS) (width 0.20066)) (fp_line (start 3.8989 -2.90068) (end 3.8989 2.10058) (layer F.SilkS) (width 0.20066)) (pad 6 smd rect (at -1.19888 0) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask)) (pad 6 smd rect (at 1.19888 0) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask)) (pad 6 smd rect (at 3.9497 0) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask)) (pad 6 smd rect (at -3.9497 0) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask)) (pad 1 smd rect (at -1.30048 -2.67462) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at -0.6477 -2.67462) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask)) (pad 3 smd rect (at 0 -2.67462) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask)) (pad 4 smd rect (at 0.6477 -2.67462) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask)) (pad 5 smd rect (at 1.30048 -2.67462) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask)) (pad "" np_thru_hole circle (at 2.05 -2.45) (size 0.79756 0.79756) (drill 0.79756) (layers *.Cu *.Mask F.SilkS)) (pad "" np_thru_hole circle (at -2.05 -2.45) (size 0.79756 0.79756) (drill 0.79756) (layers *.Cu *.Mask F.SilkS)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/cons_1,5x3.kicad_mod000066400000000000000000000027021506653766500274600ustar00rootroot00000000000000(module cons_1,5x3 (layer F.Cu) (tedit 564D7E5D) (descr "3 Pins 5mm screw connector") (fp_text reference P7 (at -9.15048 -4.4 90) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.25))) ) (fp_text value "PINS 1,5x3" (at 0 5.9) (layer F.SilkS) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (fp_circle (center 5 0.1) (end 3 0.1) (layer F.SilkS) (width 0.381)) (fp_line (start 2.5 4.1) (end 2.5 4.6) (layer F.SilkS) (width 0.381)) (fp_line (start -2.5 4.1) (end -2.5 4.6) (layer F.SilkS) (width 0.381)) (fp_circle (center 0 0.1) (end -2 0.1) (layer F.SilkS) (width 0.381)) (fp_circle (center -5 0.1) (end -3 0.1) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 2.6) (end 7.5 2.6) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 -2.3) (end 7.5 -2.3) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 4.1) (end 7.5 4.1) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 4.6) (end 7.5 4.6) (layer F.SilkS) (width 0.381)) (fp_line (start 7.5 4.6) (end 7.5 -5.2) (layer F.SilkS) (width 0.381)) (fp_line (start 7.5 -5.2) (end -7.5 -5.2) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 -5.2) (end -7.5 4.6) (layer F.SilkS) (width 0.381)) (pad 3 thru_hole circle (at 5 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS)) (pad 1 thru_hole circle (at -5 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS)) (pad 2 thru_hole circle (at 0 0) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/do219ab.kicad_mod000066400000000000000000000024201506653766500270200ustar00rootroot00000000000000(module do219ab (layer F.Cu) (tedit 5672F820) (descr DO219AB) (fp_text reference D1 (at 3.45048 -0.05048) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value ES1AL (at 0 1.50114) (layer F.SilkS) hide (effects (font (size 0.39878 0.39878) (thickness 0.09906))) ) (fp_line (start -1.15046 1.00076) (end -1.15046 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.14952 -1.00076) (end -1.14952 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.20112 1.00076) (end -1.20112 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.40018 -1.00076) (end -1.40018 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.29924 -1.00076) (end -1.29924 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.00076) (end -1.50114 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.00076) (end -1.50114 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.00076) (end 1.50114 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.00076) (end 1.50114 -1.00076) (layer F.SilkS) (width 0.127)) (pad 2 smd rect (at 1.45034 0) (size 1.30048 1.39954) (layers F.Cu F.Paste F.Mask)) (pad 1 smd rect (at -1.45034 0) (size 1.30048 1.39954) (layers F.Cu F.Paste F.Mask)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/microsd_socket.kicad_mod000066400000000000000000000040401506653766500306670ustar00rootroot00000000000000(module microsd_socket (layer F.Cu) (tedit 564C537C) (descr "MicroSD Card socket") (fp_text reference J1 (at 6.76 4.1) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_text value USDCARD (at 6.99 -13.79) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_line (start 2.37 2.09) (end 11.16 2.09) (layer F.SilkS) (width 0.381)) (fp_line (start 2.35818 2.09968) (end 2.05846 2.501) (layer F.SilkS) (width 0.381)) (fp_line (start 11.459 2.501) (end 13.9609 2.501) (layer F.SilkS) (width 0.381)) (fp_line (start 2.061 2.501) (end -0.2609 2.501) (layer F.SilkS) (width 0.381)) (fp_line (start 11.459 2.501) (end 11.15928 2.09968) (layer F.SilkS) (width 0.381)) (fp_line (start 13.9609 2.5) (end 13.9609 -12) (layer F.SilkS) (width 0.381)) (fp_line (start 13.9609 -12) (end -0.2609 -12) (layer F.SilkS) (width 0.381)) (fp_line (start -0.2609 -12) (end -0.2609 2.5) (layer F.SilkS) (width 0.381)) (pad 1 smd rect (at 10.08 -2.6) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) (pad 2 smd rect (at 8.98 -2.6) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) (pad 3 smd rect (at 7.88 -2.6) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) (pad 4 smd rect (at 6.78 -2.6) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) (pad 5 smd rect (at 5.68 -2.6) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) (pad 6 smd rect (at 4.58 -2.6) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) (pad 7 smd rect (at 3.48 -2.6) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) (pad 8 smd rect (at 2.38 -2.6) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) (pad S smd rect (at 13.75 0) (size 1.45 2) (layers F.Cu F.Paste F.Mask)) (pad S smd rect (at 0 -8.3) (size 1.45 2) (layers F.Cu F.Paste F.Mask)) (pad S smd rect (at 0 0) (size 1.45 2) (layers F.Cu F.Paste F.Mask)) (pad S smd rect (at 13.75 -8.3) (size 1.45 2) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/msoic-10.kicad_mod000066400000000000000000000050511506653766500272120ustar00rootroot00000000000000(module msoic-10 (layer F.Cu) (tedit 5672F7A6) (descr MSOIC-10) (fp_text reference U1 (at 2.6 -0.05) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value TS3USB30EDGSR (at 0 0.29972) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start -1.016 -2.413) (end -1.016 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start -0.508 -2.413) (end -0.508 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 0 -2.413) (end 0 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 0.4826 -2.413) (end 0.4826 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 1.016 -2.413) (end 1.016 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 1.016 2.413) (end 1.016 1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 0.508 2.413) (end 0.508 1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 0 2.413) (end 0 1.524) (layer F.SilkS) (width 0.127)) (fp_line (start -0.508 2.413) (end -0.508 1.524) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9906 2.413) (end -0.9906 1.524) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -1.00076 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at -0.50038 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 3 smd rect (at 0 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 4 smd rect (at 0.50038 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 5 smd rect (at 1.00076 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 6 smd rect (at 1.00076 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 7 smd rect (at 0.50038 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 8 smd rect (at 0 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 9 smd rect (at -0.50038 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) (pad 10 smd rect (at -1.00076 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/msoic-8.kicad_mod000066400000000000000000000044251506653766500271450ustar00rootroot00000000000000(module msoic-8 (layer F.Cu) (tedit 5672F721) (descr MSOIC-8) (fp_text reference Q7 (at -0.1 3.7) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value IRF7606PBF (at 0 0.29972) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 -1.4986) (end 0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 -1.4986) (end -0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 -1.4986) (end -0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 -1.4986) (end 0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 1.4986) (end 0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 1.4986) (end 0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 1.4986) (end -0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 1.4986) (end -0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -0.97536 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at -0.32512 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask)) (pad 3 smd rect (at 0.32512 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask)) (pad 4 smd rect (at 0.97536 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask)) (pad 5 smd rect (at 0.97536 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask)) (pad 6 smd rect (at 0.32512 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask)) (pad 7 smd rect (at -0.32512 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask)) (pad 8 smd rect (at -0.97536 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/ssop-28.kicad_mod000066400000000000000000000063451506653766500271040ustar00rootroot00000000000000(module ssop-28 (layer F.Cu) (tedit 5672F793) (descr SSOP-16) (fp_text reference U2 (at 6.25048 0.14952) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value FT245RL (at 0 -1.143) (layer F.SilkS) (effects (font (size 0.50038 0.50038) (thickness 0.09906))) ) (fp_line (start 5.19938 -2.30124) (end 5.19938 2.30124) (layer F.SilkS) (width 0.14986)) (fp_line (start -5.19938 2.30124) (end -5.19938 -2.30124) (layer F.SilkS) (width 0.14986)) (fp_line (start -5.19938 -2.30124) (end 5.19938 -2.30124) (layer F.SilkS) (width 0.14986)) (fp_line (start 5.19938 2.30124) (end -5.19938 2.30124) (layer F.SilkS) (width 0.14986)) (fp_circle (center -4.43992 1.53416) (end -4.56692 1.78816) (layer F.SilkS) (width 0.14986)) (pad 7 smd rect (at -0.32512 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 8 smd rect (at 0.32512 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 9 smd rect (at 0.97536 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 10 smd rect (at 1.6256 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 25 smd rect (at -2.27584 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 4 smd rect (at -2.27584 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 5 smd rect (at -1.6256 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 6 smd rect (at -0.97536 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 18 smd rect (at 2.27584 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 19 smd rect (at 1.6256 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 20 smd rect (at 0.97536 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 21 smd rect (at 0.32512 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 22 smd rect (at -0.32512 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 23 smd rect (at -0.97536 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 11 smd rect (at 2.27584 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 24 smd rect (at -1.6256 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 26 smd rect (at -2.92608 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 27 smd rect (at -3.57378 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 28 smd rect (at -4.22402 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 1 smd rect (at -4.22402 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at -3.57378 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 3 smd rect (at -2.92608 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 12 smd rect (at 2.92608 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 13 smd rect (at 3.57378 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 14 smd rect (at 4.22402 3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 15 smd rect (at 4.22402 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 16 smd rect (at 3.57378 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) (pad 17 smd rect (at 2.92608 -3.59918) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/footprints.pretty/tssop-24.kicad_mod000066400000000000000000000055721506653766500272650ustar00rootroot00000000000000(module tssop-24 (layer F.Cu) (tedit 5672F701) (descr TSSOP-24) (fp_text reference U4 (at -5.09952 -0.00048) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value TS3A27518E (at 0 -1.143) (layer F.SilkS) (effects (font (size 0.50038 0.50038) (thickness 0.09906))) ) (fp_line (start 3.937 -2.286) (end -3.937 -2.286) (layer F.SilkS) (width 0.127)) (fp_line (start -3.937 -2.286) (end -3.937 2.286) (layer F.SilkS) (width 0.127)) (fp_line (start -3.937 2.286) (end 3.937 2.286) (layer F.SilkS) (width 0.127)) (fp_line (start 3.937 2.286) (end 3.937 -2.286) (layer F.SilkS) (width 0.127)) (fp_circle (center -3.175 1.524) (end -3.302 1.778) (layer F.SilkS) (width 0.127)) (pad 6 smd rect (at -0.32512 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 7 smd rect (at 0.32512 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 8 smd rect (at 0.97536 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 9 smd rect (at 1.6256 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 22 smd rect (at -2.26568 -2.794) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 3 smd rect (at -2.27584 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 4 smd rect (at -1.6256 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 5 smd rect (at -0.97536 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 15 smd rect (at 2.27584 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 16 smd rect (at 1.6256 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 17 smd rect (at 0.97536 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 18 smd rect (at 0.32512 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 19 smd rect (at -0.32512 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 20 smd rect (at -0.97536 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 10 smd rect (at 2.27584 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 21 smd rect (at -1.6256 -2.794) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at -2.92608 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 11 smd rect (at 2.92608 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 14 smd rect (at 2.92608 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 23 smd rect (at -2.92608 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 1 smd rect (at -3.57378 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 12 smd rect (at 3.57378 2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 13 smd rect (at 3.57378 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) (pad 24 smd rect (at -3.57378 -2.79908) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask)) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/ft245RL.dcm000066400000000000000000000003241506653766500220560ustar00rootroot00000000000000EESchema-DOCLIB Version 2.0 # $CMP FT245RL D USB to parallel FIFO interface K USB Parallel FIFO I/O Converter F http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT245R.pdf $ENDCMP # #End Doc Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/ft245RL.lib000066400000000000000000000047251506653766500220720ustar00rootroot00000000000000EESchema-LIBRARY Version 2.3 #encoding utf-8 # # FT245RL # DEF FT245RL U 0 40 Y Y 1 F N F0 "U" -500 850 61 H V C CNN F1 "FT245RL" 350 -800 60 H V C CNN F2 "" -700 -350 60 H V C CNN F3 "" -700 -350 60 H V C CNN DRAW S -550 800 550 -750 0 1 0 f X D0 1 850 700 300 L 50 50 1 1 B X D4 2 850 300 300 L 50 50 1 1 B X D2 3 850 500 300 L 50 50 1 1 B X VCCIO 4 -850 700 300 R 50 50 1 1 I X D1 5 850 600 300 L 50 50 1 1 B X D7 6 850 0 300 L 50 50 1 1 B X GND 7 -350 -1050 300 U 50 50 1 1 P X NC 8 50 -1050 300 U 50 50 1 1 N NX X D5 9 850 200 300 L 50 50 1 1 B X D6 10 850 100 300 L 50 50 1 1 B X VCC 20 -850 600 300 R 50 50 1 1 I X D3 11 850 400 300 L 50 50 1 1 B X GND 21 -150 -1050 300 U 50 50 1 1 P X PWREN# 12 850 -600 300 L 50 50 1 1 I X TXE 22 850 -300 300 L 50 50 1 1 O X RD# 13 850 -400 300 L 50 50 1 1 I X RXF# 23 850 -200 300 L 50 50 1 1 O X WR 14 850 -500 300 L 50 50 1 1 I X NC 24 150 -1050 300 U 50 50 1 1 N NX X USBDP 15 -850 300 300 R 50 50 1 1 B X AGND 25 -450 -1050 300 U 50 50 1 1 P X USBDM 16 -850 400 300 R 50 50 1 1 B X TEST 26 -50 -1050 300 U 50 50 1 1 I X 3V3OUT 17 -850 -350 300 R 50 50 1 1 O X OSCI 27 -850 0 300 R 50 50 1 1 I X GND 18 -250 -1050 300 U 50 50 1 1 P X OSCO 28 -850 -100 300 R 50 50 1 1 O X RESET# 19 -850 100 300 R 50 50 1 1 I ENDDRAW ENDDEF # # FT245RLfff # DEF FT245RLfff U 0 40 Y Y 1 F N F0 "U" 0 50 61 H V C CNN F1 "FT245RLfff" 0 -100 60 H V C CNN F2 "" -700 -350 60 H V C CNN F3 "" -700 -350 60 H V C CNN DRAW S -550 800 550 -750 0 1 0 N X D0 1 850 700 300 L 50 50 1 1 B X D4 2 850 300 300 L 50 50 1 1 B X D2 3 850 500 300 L 50 50 1 1 B X VCCIO 4 -850 700 300 R 50 50 1 1 I X D1 5 850 600 300 L 50 50 1 1 B X D7 6 850 0 300 L 50 50 1 1 B X GND 7 -350 -1050 300 U 50 50 1 1 P X NC 8 50 -1050 300 U 50 50 1 1 N NX X D5 9 850 200 300 L 50 50 1 1 B X D6 10 850 100 300 L 50 50 1 1 B X VCC 20 -850 600 300 R 50 50 1 1 I X D3 11 850 400 300 L 50 50 1 1 B X GND 21 -150 -1050 300 U 50 50 1 1 P X PWREN# 12 850 -600 300 L 50 50 1 1 I X TXE 22 850 -300 300 L 50 50 1 1 O X RD# 13 850 -400 300 L 50 50 1 1 I X RXF# 23 850 -200 300 L 50 50 1 1 O X WR 14 850 -500 300 L 50 50 1 1 I X NC 24 150 -1050 300 U 50 50 1 1 N NX X USBDP 15 -850 300 300 R 50 50 1 1 B X AGND 25 -450 -1050 300 U 50 50 1 1 P X USBDM 16 -850 400 300 R 50 50 1 1 B X TEST 26 -50 -1050 300 U 50 50 1 1 I X 3V3OUT 17 -850 -350 300 R 50 50 1 1 O X OSCI 27 -850 0 300 R 50 50 1 1 I X GND 18 -250 -1050 300 U 50 50 1 1 P X OSCO 28 -850 -100 300 R 50 50 1 1 O X RESET# 19 -850 100 300 R 50 50 1 1 I ENDDRAW ENDDEF # #End Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/induction.dcm000066400000000000000000000002211506653766500227440ustar00rootroot00000000000000EESchema-DOCLIB Version 2.0 # $CMP MI0805K400R-10 D Resistor K R DEV F http://www.farnell.com/datasheets/1685910.pdf $ENDCMP # #End Doc Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/induction.lib000066400000000000000000000005221506653766500227530ustar00rootroot00000000000000EESchema-LIBRARY Version 2.3 #encoding utf-8 # # MI0805K400R-10 # DEF MI0805K400R-10 FB 0 0 N Y 1 F N F0 "FB" -100 0 50 V V C CNN F1 "MI0805K400R-10" 100 0 50 V V C CNN F2 "" -70 0 30 V V C CNN F3 "" 0 0 30 H V C CNN DRAW S -40 -100 40 100 0 1 10 N X ~ 1 0 150 50 D 60 60 1 1 P X ~ 2 0 -150 50 U 60 60 1 1 P ENDDRAW ENDDEF # #End Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/sd-mux-cache.lib000066400000000000000000000314151506653766500232420ustar00rootroot00000000000000EESchema-LIBRARY Version 2.3 #encoding utf-8 # # +3V3 # DEF +3V3 #PWR 0 0 Y Y 1 F P F0 "#PWR" 0 -150 50 H I C CNN F1 "+3V3" 0 140 50 H V C CNN F2 "" 0 0 50 H V C CNN F3 "" 0 0 50 H V C CNN ALIAS +3.3V DRAW P 2 0 1 0 -30 50 0 100 N P 2 0 1 0 0 0 0 100 N P 2 0 1 0 0 100 30 50 N X +3V3 1 0 0 0 U 50 50 1 1 W N ENDDRAW ENDDEF # # 74AHC1G14 # DEF 74AHC1G14 U 0 30 Y Y 1 F N F0 "U" 145 115 50 H V C CNN F1 "74AHC1G14" 200 -100 50 H V C CNN F2 "" 95 -135 50 H V C CNN F3 "" 145 115 50 H V C CNN DRAW P 4 0 0 0 -150 150 -150 -150 150 0 -150 150 N X GND 3 -50 -200 100 U 40 20 0 0 W X VCC 5 -50 200 100 D 40 20 0 0 W X ~ 2 -450 0 300 R 50 50 1 1 I X ~ 4 450 0 300 L 50 50 1 1 O I X ~ 2 -450 0 300 R 50 50 1 2 I I X ~ 4 450 0 300 L 50 50 1 2 O ENDDRAW ENDDEF # # C # DEF C C 0 10 N Y 1 F N F0 "C" 25 100 50 H V L CNN F1 "C" 25 -100 50 H V L CNN F2 "" 38 -150 50 H V C CNN F3 "" 0 0 50 H V C CNN $FPLIST C? C_????_* C_???? SMD*_c Capacitor* $ENDFPLIST DRAW P 2 0 1 20 -80 -30 80 -30 N P 2 0 1 20 -80 30 80 30 N X ~ 1 0 150 110 D 50 50 1 1 P X ~ 2 0 -150 110 U 50 50 1 1 P ENDDRAW ENDDEF # # CONN_01X03 # DEF CONN_01X03 P 0 40 Y N 1 F N F0 "P" 0 200 50 H V C CNN F1 "CONN_01X03" 100 0 50 V V C CNN F2 "" 0 0 50 H V C CNN F3 "" 0 0 50 H V C CNN $FPLIST Pin_Header_Straight_1X03 Pin_Header_Angled_1X03 Socket_Strip_Straight_1X03 Socket_Strip_Angled_1X03 $ENDFPLIST DRAW S -50 -95 10 -105 0 1 0 N S -50 5 10 -5 0 1 0 N S -50 105 10 95 0 1 0 N S -50 150 50 -150 0 1 0 N X P1 1 -200 100 150 R 50 50 1 1 P X P2 2 -200 0 150 R 50 50 1 1 P X P3 3 -200 -100 150 R 50 50 1 1 P ENDDRAW ENDDEF # # CONN_02X02 # DEF CONN_02X02 P 0 1 Y N 1 F N F0 "P" 0 150 50 H V C CNN F1 "CONN_02X02" 0 -150 50 H V C CNN F2 "" 0 -1200 50 H V C CNN F3 "" 0 -1200 50 H V C CNN $FPLIST Pin_Header_Straight_2X02 Pin_Header_Angled_2X02 Socket_Strip_Straight_2X02 Socket_Strip_Angled_2X02 $ENDFPLIST DRAW S -100 -45 -50 -55 0 1 0 N S -100 55 -50 45 0 1 0 N S -100 100 100 -100 0 1 0 N S 50 -45 100 -55 0 1 0 N S 50 55 100 45 0 1 0 N X P1 1 -250 50 150 R 50 50 1 1 P X P2 2 250 50 150 L 50 50 1 1 P X P3 3 -250 -50 150 R 50 50 1 1 P X P4 4 250 -50 150 L 50 50 1 1 P ENDDRAW ENDDEF # # CONN_02X04 # DEF CONN_02X04 P 0 1 Y N 1 F N F0 "P" 0 250 50 H V C CNN F1 "CONN_02X04" 0 -250 50 H V C CNN F2 "" 0 -1200 50 H V C CNN F3 "" 0 -1200 50 H V C CNN $FPLIST Pin_Header_Straight_2X04 Pin_Header_Angled_2X04 Socket_Strip_Straight_2X04 Socket_Strip_Angled_2X04 $ENDFPLIST DRAW S -100 -145 -50 -155 0 1 0 N S -100 -45 -50 -55 0 1 0 N S -100 55 -50 45 0 1 0 N S -100 155 -50 145 0 1 0 N S -100 200 100 -200 0 1 0 N S 50 -145 100 -155 0 1 0 N S 50 -45 100 -55 0 1 0 N S 50 55 100 45 0 1 0 N S 50 155 100 145 0 1 0 N X P1 1 -250 150 150 R 50 50 1 1 P X P2 2 250 150 150 L 50 50 1 1 P X P3 3 -250 50 150 R 50 50 1 1 P X P4 4 250 50 150 L 50 50 1 1 P X P5 5 -250 -50 150 R 50 50 1 1 P X P6 6 250 -50 150 L 50 50 1 1 P X P7 7 -250 -150 150 R 50 50 1 1 P X P8 8 250 -150 150 L 50 50 1 1 P ENDDRAW ENDDEF # # CP # DEF CP C 0 10 N Y 1 F N F0 "C" 25 100 50 H V L CNN F1 "CP" 25 -100 50 H V L CNN F2 "" 38 -150 50 H V C CNN F3 "" 0 0 50 H V C CNN $FPLIST CP* C_Axial* C_Radial* TantalC* C*elec c_elec* SMD*_Pol $ENDFPLIST DRAW S -90 20 -90 40 0 1 0 N S -90 20 90 20 0 1 0 N S 90 -20 -90 -40 0 1 0 F S 90 40 -90 40 0 1 0 N S 90 40 90 20 0 1 0 N P 2 0 1 0 -70 90 -30 90 N P 2 0 1 0 -50 110 -50 70 N X ~ 1 0 150 110 D 50 50 1 1 P X ~ 2 0 -150 110 U 50 50 1 1 P ENDDRAW ENDDEF # # D # DEF D D 0 40 N N 1 F N F0 "D" 0 100 50 H V C CNN F1 "D" 0 -100 50 H V C CNN F2 "" 0 0 50 H V C CNN F3 "" 0 0 50 H V C CNN $FPLIST Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode* D_* $ENDFPLIST DRAW P 2 0 1 6 -50 50 -50 -50 N P 3 0 1 0 50 50 -50 0 50 -50 F X K 1 -150 0 100 R 50 50 1 1 P X A 2 150 0 100 L 50 50 1 1 P ENDDRAW ENDDEF # # FT245RL # DEF FT245RL U 0 40 Y Y 1 F N F0 "U" -500 850 61 H V C CNN F1 "FT245RL" 350 -800 60 H V C CNN F2 "" -700 -350 60 H V C CNN F3 "" -700 -350 60 H V C CNN DRAW S -550 800 550 -750 0 1 0 f X D0 1 850 700 300 L 50 50 1 1 B X D4 2 850 300 300 L 50 50 1 1 B X D2 3 850 500 300 L 50 50 1 1 B X VCCIO 4 -850 700 300 R 50 50 1 1 I X D1 5 850 600 300 L 50 50 1 1 B X D7 6 850 0 300 L 50 50 1 1 B X GND 7 -350 -1050 300 U 50 50 1 1 P X NC 8 50 -1050 300 U 50 50 1 1 N NX X D5 9 850 200 300 L 50 50 1 1 B X D6 10 850 100 300 L 50 50 1 1 B X VCC 20 -850 600 300 R 50 50 1 1 I X D3 11 850 400 300 L 50 50 1 1 B X GND 21 -150 -1050 300 U 50 50 1 1 P X PWREN# 12 850 -600 300 L 50 50 1 1 I X TXE 22 850 -300 300 L 50 50 1 1 O X RD# 13 850 -400 300 L 50 50 1 1 I X RXF# 23 850 -200 300 L 50 50 1 1 O X WR 14 850 -500 300 L 50 50 1 1 I X NC 24 150 -1050 300 U 50 50 1 1 N NX X USBDP 15 -850 300 300 R 50 50 1 1 B X AGND 25 -450 -1050 300 U 50 50 1 1 P X USBDM 16 -850 400 300 R 50 50 1 1 B X TEST 26 -50 -1050 300 U 50 50 1 1 I X 3V3OUT 17 -850 -350 300 R 50 50 1 1 O X OSCI 27 -850 0 300 R 50 50 1 1 I X GND 18 -250 -1050 300 U 50 50 1 1 P X OSCO 28 -850 -100 300 R 50 50 1 1 O X RESET# 19 -850 100 300 R 50 50 1 1 I ENDDRAW ENDDEF # # G2RK-2 # DEF G2RK-2 RL 0 40 Y Y 1 F N F0 "RL" 550 250 50 H V L CNN F1 "G2RK-2" 600 -250 50 H V L CNN F2 "" -300 0 60 H V C CNN F3 "" -300 0 60 H V C CNN DRAW T 0 -400 -150 60 0 0 0 R Normal 0 C C T 0 600 -150 60 0 0 0 S Normal 0 C C S -700 200 700 -200 0 0 0 f P 2 0 0 20 0 -200 -50 -100 N P 2 0 0 20 0 200 -50 100 N P 3 0 0 20 -250 -200 -250 -100 -100 -100 N P 3 0 0 20 -250 200 -250 100 -100 100 N P 3 0 0 20 100 -100 250 -100 250 -200 N P 3 0 0 20 250 200 250 100 100 100 N P 5 0 0 0 -240 40 -340 40 -310 60 -310 20 -340 40 N P 5 1 0 0 240 40 340 40 310 60 310 20 340 40 N C -50 0 10 0 1 0 F S -625 75 -375 -75 0 1 10 N S 375 75 625 -75 0 1 10 N P 2 0 1 10 -600 -75 -400 75 N P 2 0 1 0 -500 -200 -500 -75 N P 2 0 1 0 -500 200 -500 75 N P 2 0 1 0 -485 110 -445 110 N P 2 0 1 0 -465 130 -465 90 N P 2 0 1 10 -375 0 -350 0 N P 2 0 1 10 -325 0 -300 0 N P 2 0 1 10 -275 0 -250 0 N P 2 0 1 10 -225 0 -200 0 N P 2 0 1 10 -175 0 -150 0 N P 2 0 1 10 -125 0 -100 0 N P 2 0 1 10 -75 0 -50 0 N P 2 0 1 10 -50 -80 -50 -50 N P 2 0 1 10 -50 -30 -50 0 N P 2 0 1 10 -50 0 -50 30 N P 2 0 1 10 -50 50 -50 80 N P 2 0 1 10 -25 0 0 0 N P 2 0 1 10 25 0 50 0 N P 2 0 1 10 75 0 100 0 N P 2 0 1 10 125 0 150 0 N P 2 0 1 10 175 0 200 0 N P 2 0 1 10 225 0 250 0 N P 2 0 1 10 275 0 300 0 N P 2 0 1 10 325 0 350 0 N P 2 0 1 10 400 -75 600 75 N P 2 0 1 0 500 -200 500 -75 N P 2 0 1 0 500 200 500 75 N P 2 0 1 0 515 110 555 110 N P 2 0 1 0 535 130 535 90 N X ~ 1 500 300 100 D 50 50 1 1 P X ~ 2 -500 300 100 D 50 50 1 1 P X ~ 3 -250 300 100 D 50 50 1 1 P X ~ 4 0 300 100 D 50 50 1 1 P X ~ 5 250 300 100 D 50 50 1 1 P X ~ 6 250 -300 100 U 50 50 1 1 P X ~ 7 0 -300 100 U 50 50 1 1 P X ~ 8 -250 -300 100 U 50 50 1 1 P X ~ 9 -500 -300 100 U 50 50 1 1 P X ~ 10 500 -300 100 U 50 50 1 1 P ENDDRAW ENDDEF # # GND # DEF GND #PWR 0 0 Y Y 1 F P F0 "#PWR" 0 -250 50 H I C CNN F1 "GND" 0 -150 50 H V C CNN F2 "" 0 0 50 H V C CNN F3 "" 0 0 50 H V C CNN DRAW P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N X GND 1 0 0 0 D 50 50 1 1 W N ENDDRAW ENDDEF # # IRF7606PBF # DEF IRF7606PBF Q 0 0 Y N 1 F N F0 "Q" -200 300 50 H V L CNN F1 "IRF7606PBF" -200 -250 50 H V L CNN F2 "MICRO8" 0 200 50 H V C CIN F3 "" 0 0 50 V V L CNN DRAW C -150 75 5 0 0 0 N C -50 75 5 0 0 0 N C 50 75 5 0 0 0 N C 150 75 5 0 0 0 N T 0 125 100 30 0 0 0 D Normal 0 C C T 0 -70 -70 30 0 0 0 G Normal 0 C C T 0 -125 100 30 0 0 0 S Normal 0 C C P 2 0 0 0 -200 100 -150 100 N P 2 0 0 0 -50 75 -150 75 N P 2 0 0 0 200 100 150 100 N P 4 0 0 0 -50 25 -50 110 50 110 50 25 N P 4 0 0 0 -20 125 -15 120 -15 100 -10 95 N P 4 0 0 0 -10 110 10 120 10 100 -10 110 F C -150 100 5 0 1 0 N C 0 50 111 0 1 8 N C 150 0 5 0 1 0 N C 150 100 5 0 1 0 N S -200 250 200 -200 0 1 10 f P 2 0 1 15 -65 25 -35 25 N P 2 0 1 15 -15 25 15 25 N P 2 0 1 15 35 25 65 25 N P 2 0 1 0 50 75 150 75 N P 2 0 1 0 200 0 150 0 N P 3 0 1 10 -60 0 60 0 60 0 N P 3 0 1 0 -50 0 -50 -150 -200 -150 N P 3 0 1 0 0 25 0 75 -50 75 N P 4 0 1 0 -200 0 -150 0 -150 200 -200 200 N P 4 0 1 0 -10 40 10 40 0 65 -10 40 F P 4 0 1 0 200 200 150 200 150 -100 200 -100 N X S 1 -300 200 100 R 50 50 1 1 P X S 2 -300 100 100 R 50 50 1 1 P X S 3 -300 0 100 R 50 50 1 1 P X G 4 -300 -150 100 R 50 50 1 1 P X D 5 300 -100 100 L 50 50 1 1 P X D 6 300 0 100 L 50 50 1 1 P X D 7 300 100 100 L 50 50 1 1 P X D 8 300 200 100 L 50 50 1 1 P ENDDRAW ENDDEF # # MI0805K400R-10 # DEF MI0805K400R-10 FB 0 0 N Y 1 F N F0 "FB" -100 0 50 V V C CNN F1 "MI0805K400R-10" 100 0 50 V V C CNN F2 "" -70 0 30 V V C CNN F3 "" 0 0 30 H V C CNN DRAW S -40 -100 40 100 0 1 10 N X ~ 1 0 150 50 D 60 60 1 1 P X ~ 2 0 -150 50 U 60 60 1 1 P ENDDRAW ENDDEF # # Q_NMOS_GDS # DEF Q_NMOS_GDS Q 0 0 Y N 1 F N F0 "Q" 300 50 50 H V R CNN F1 "Q_NMOS_GDS" 650 -50 50 H V R CNN F2 "" 200 100 50 H V C CNN F3 "" 0 0 50 H V C CNN DRAW C 50 0 111 0 1 10 N P 2 0 1 0 30 -70 100 -70 N P 2 0 1 10 30 -50 30 -90 N P 2 0 1 0 30 0 100 0 N P 2 0 1 10 30 20 30 -20 N P 2 0 1 0 30 70 100 70 N P 2 0 1 10 30 90 30 50 N P 2 0 1 0 100 -70 100 -100 N P 2 0 1 0 100 -70 100 0 N P 2 0 1 0 100 100 100 70 N P 3 0 1 10 10 75 10 -75 10 -75 N P 4 0 1 0 40 0 80 15 80 -15 40 0 F X G 1 -200 0 210 R 50 50 1 1 I X D 2 100 200 100 D 50 50 1 1 P X S 3 100 -200 100 U 50 50 1 1 P ENDDRAW ENDDEF # # R # DEF R R 0 0 N Y 1 F N F0 "R" 80 0 50 V V C CNN F1 "R" 0 0 50 V V C CNN F2 "" -70 0 50 V V C CNN F3 "" 0 0 50 H V C CNN $FPLIST R_* Resistor_* $ENDFPLIST DRAW S -40 -100 40 100 0 1 10 N X ~ 1 0 150 50 D 50 50 1 1 P X ~ 2 0 -150 50 U 50 50 1 1 P ENDDRAW ENDDEF # # TS3A27518E # DEF TS3A27518E U 0 40 Y Y 1 F N F0 "U" -250 1150 60 H V C CNN F1 "TS3A27518E" 0 -1150 60 H V C CNN F2 "" 300 -300 60 H V C CNN F3 "" 300 -300 60 H V C CNN DRAW S -300 1100 300 -1100 0 1 0 f X NC2 1 -600 700 300 R 50 50 1 1 B X NC1 2 -600 1000 300 R 50 50 1 1 B X N.C. 3 600 -1000 300 L 50 50 1 1 N N X COM1 4 600 1000 300 L 50 50 1 1 B X GND 5 600 -900 300 L 50 50 1 1 P X COM2 6 600 700 300 L 50 50 1 1 B X COM3 7 600 400 300 L 50 50 1 1 B X V+ 8 600 -800 300 L 50 50 1 1 P X COM4 9 600 100 300 L 50 50 1 1 B X COM5 10 600 -200 300 L 50 50 1 1 B X EN 20 -600 -1000 300 R 50 50 1 1 I I X NO1 11 -600 900 300 R 50 50 1 1 B X NC4 21 -600 100 300 R 50 50 1 1 B X COM6 12 600 -500 300 L 50 50 1 1 B X NC6 22 -600 -500 300 R 50 50 1 1 B X NO2 13 -600 600 300 R 50 50 1 1 B X NC3 23 -600 400 300 R 50 50 1 1 B X IN2 14 -600 -900 300 R 50 50 1 1 I X IN1 24 -600 -800 300 R 50 50 1 1 B X NO3 15 -600 300 300 R 50 50 1 1 B X NO6 16 -600 -600 300 R 50 50 1 1 B X NO4 17 -600 0 300 R 50 50 1 1 B X NO5 18 -600 -300 300 R 50 50 1 1 B X NC5 19 -600 -200 300 R 50 50 1 1 B ENDDRAW ENDDEF # # TS3USB30EDGSR # DEF TS3USB30EDGSR U 0 40 Y Y 1 F N F0 "U" -200 550 60 H V C CNN F1 "TS3USB30EDGSR" 0 -600 60 H V C CNN F2 "" -2210 -1110 60 H V C CNN F3 "" -2210 -1110 60 H V C CNN DRAW S -250 500 250 -550 0 1 0 f X S 1 -550 -350 300 R 50 50 1 1 I X D1+ 2 550 100 300 L 50 50 1 1 B X D2+ 3 550 0 300 L 50 50 1 1 B X D+ 4 -550 100 300 R 50 50 1 1 B X GND 5 550 -450 300 L 50 50 1 1 P X D- 6 -550 400 300 R 50 50 1 1 B X D2- 7 550 300 300 L 50 50 1 1 B X D1- 8 550 400 300 L 50 50 1 1 B X EN 9 -550 -450 300 R 50 50 1 1 I I X VCC 10 550 -350 300 L 50 50 1 1 P ENDDRAW ENDDEF # # USB_A-RESCUE-sd-mux # DEF USB_A-RESCUE-sd-mux P 0 40 Y Y 1 F N F0 "P" 200 -200 50 H V C CNN F1 "USB_A-RESCUE-sd-mux" -50 200 50 H V C CNN F2 "" -50 -100 50 V V C CNN F3 "" -50 -100 50 V V C CNN $FPLIST USB* $ENDFPLIST DRAW S -250 -150 150 150 0 1 0 N S -205 -150 -195 -120 0 1 0 N S -105 -150 -95 -120 0 1 0 N S -5 -150 5 -120 0 1 0 N S 95 -150 105 -120 0 1 0 N X VCC 1 -200 -300 150 U 50 50 1 1 W X D- 2 -100 -300 150 U 50 50 1 1 P X D+ 3 0 -300 150 U 50 50 1 1 P X GND 4 100 -300 150 U 50 50 1 1 W X shield 5 300 100 150 L 50 50 1 1 P ENDDRAW ENDDEF # # USB_OTG-RESCUE-sd-mux # DEF USB_OTG-RESCUE-sd-mux P 0 40 Y Y 1 F N F0 "P" 325 -125 50 H V C CNN F1 "USB_OTG-RESCUE-sd-mux" 0 200 50 H V C CNN F2 "" -50 -100 50 V V C CNN F3 "" -50 -100 50 V V C CNN $FPLIST USB* $ENDFPLIST DRAW S -250 -150 250 150 0 1 0 N S -205 -150 -195 -120 0 1 0 N S -105 -150 -95 -120 0 1 0 N S -5 -150 5 -120 0 1 0 N S 95 -150 105 -120 0 1 0 N S 195 -150 205 -120 0 1 0 N X VCC 1 -200 -300 150 U 50 50 1 1 w X D- 2 -100 -300 150 U 50 50 1 1 P X D+ 3 0 -300 150 U 50 50 1 1 P X ID 4 100 -300 150 U 50 50 1 1 W X GND 5 200 -300 150 U 50 50 1 1 W X shield 6 400 100 150 L 50 50 1 1 P ENDDRAW ENDDEF # # USDCARD # DEF USDCARD J 0 40 Y Y 1 F N F0 "J" -150 600 60 H V C CNN F1 "USDCARD" 0 -550 60 H V C CNN F2 "" 0 0 60 H V C CNN F3 "" 0 0 60 H V C CNN DRAW S -200 550 450 -500 0 0 0 f X DAT2 1 -500 -200 300 R 50 50 1 1 I X CD/DAT3/CS 2 -500 300 300 R 50 50 1 1 I X CMD/MOSI 3 -500 200 300 R 50 50 1 1 I X VDD 4 -500 450 300 R 50 50 1 1 I X CLK 5 -500 0 300 R 50 50 1 1 I X GND 6 -500 -400 300 R 50 50 1 1 I X DAT0/MISO 7 -500 100 300 R 50 50 1 1 I X DAT1 8 -500 -100 300 R 50 50 1 1 I ENDDRAW ENDDEF # # VDD # DEF VDD #PWR 0 0 Y Y 1 F P F0 "#PWR" 0 -150 50 H I C CNN F1 "VDD" 0 150 50 H V C CNN F2 "" 0 0 50 H V C CNN F3 "" 0 0 50 H V C CNN DRAW C 0 75 25 0 1 0 N P 2 0 1 0 0 0 0 50 N X VDD 1 0 0 0 U 50 50 1 1 W N ENDDRAW ENDDEF # #End Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/sd-mux.kicad_pcb000066400000000000000000011202751506653766500233360ustar00rootroot00000000000000(kicad_pcb (version 20170123) (host pcbnew no-vcs-found-36e5906~58~ubuntu14.04.1) (general (links 174) (no_connects 0) (area 104.085235 31.7921 206.842857 187.045) (thickness 1.6) (drawings 13) (tracks 689) (zones 0) (modules 52) (nets 75) ) (page A4) (title_block (title sd-mux) (date 2016-11-14) (rev 2.1) (company SRPOL) (comment 1 "Author: Adam Malinowski ") (comment 2 "Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved") ) (layers (0 F.Cu signal) (31 B.Cu signal) (32 B.Adhes user) (33 F.Adhes user) (34 B.Paste user) (35 F.Paste user) (36 B.SilkS user) (37 F.SilkS user) (38 B.Mask user) (39 F.Mask user) (40 Dwgs.User user) (41 Cmts.User user) (42 Eco1.User user) (43 Eco2.User user) (44 Edge.Cuts user) (45 Margin user) (46 B.CrtYd user) (47 F.CrtYd user) (48 B.Fab user) (49 F.Fab user) ) (setup (last_trace_width 0.254) (user_trace_width 0.508) (user_trace_width 1.116) (trace_clearance 0.2) (zone_clearance 0.254) (zone_45_only yes) (trace_min 0.254) (segment_width 0.2) (edge_width 0.15) (via_size 0.91) (via_drill 0.4) (via_min_size 0.91) (via_min_drill 0.4) (uvia_size 0.3) (uvia_drill 0.1) (uvias_allowed no) (uvia_min_size 0.4) (uvia_min_drill 0.1) (pcb_text_width 0.3) (pcb_text_size 1.5 1.5) (mod_edge_width 0.15) (mod_text_size 1 1) (mod_text_width 0.15) (pad_size 1.5 2) (pad_drill 1) (pad_to_mask_clearance 0.2) (aux_axis_origin 118.19952 147.60048) (grid_origin 118.19952 147.60048) (visible_elements FFFEFF7F) (pcbplotparams (layerselection 0x010fc_ffffffff) (usegerberextensions false) (excludeedgelayer false) (linewidth 0.100000) (plotframeref false) (viasonmask false) (mode 1) (useauxorigin false) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15) (psnegative false) (psa4output false) (plotreference true) (plotvalue false) (plotinvisibletext false) (padsonsilk false) (subtractmaskfromsilk false) (outputformat 1) (mirror false) (drillshape 0) (scaleselection 1) (outputdirectory fabr/)) ) (net 0 "") (net 1 "Net-(C1-Pad1)") (net 2 GND) (net 3 "Net-(C2-Pad1)") (net 4 "Net-(C4-Pad1)") (net 5 "Net-(C5-Pad1)") (net 6 VDD) (net 7 "Net-(D1-Pad1)") (net 8 "Net-(D2-Pad1)") (net 9 "Net-(FB1-Pad2)") (net 10 "Net-(J1-Pad1)") (net 11 "Net-(J1-Pad2)") (net 12 "Net-(J1-Pad5)") (net 13 "Net-(J1-Pad7)") (net 14 "Net-(J1-Pad8)") (net 15 "Net-(P1-Pad2)") (net 16 "Net-(P1-Pad3)") (net 17 "Net-(P1-Pad4)") (net 18 "Net-(P2-Pad1)") (net 19 "Net-(P2-Pad2)") (net 20 "Net-(P2-Pad3)") (net 21 "Net-(P2-Pad4)") (net 22 "Net-(P3-Pad2)") (net 23 "Net-(P3-Pad3)") (net 24 "Net-(P4-Pad2)") (net 25 "Net-(P4-Pad3)") (net 26 /DAT1_DUT) (net 27 /DAT0_DUT) (net 28 /DAT2_DUT) (net 29 /DAT3_DUT) (net 30 /CMD_DUT) (net 31 /VDD_DUT) (net 32 /CLK_DUT) (net 33 /DAT1_TS) (net 34 /DAT0_TS) (net 35 /DAT2_TS) (net 36 /DAT3_TS) (net 37 /CMD_TS) (net 38 /VDD_TS) (net 39 /CLK_TS) (net 40 "Net-(P7-Pad3)") (net 41 "Net-(P7-Pad1)") (net 42 "Net-(P10-Pad2)") (net 43 "Net-(P10-Pad1)") (net 44 "Net-(P10-Pad3)") (net 45 /POWER_SW_OFF) (net 46 /POWER_SW_ON) (net 47 "Net-(Q3-Pad4)") (net 48 /SOCKET_SEL) (net 49 "Net-(R5-Pad2)") (net 50 "Net-(RL1-Pad8)") (net 51 "Net-(RL1-Pad3)") (net 52 /USB_SEL) (net 53 "Net-(U2-Pad8)") (net 54 "Net-(U2-Pad9)") (net 55 "Net-(U2-Pad10)") (net 56 "Net-(U2-Pad6)") (net 57 "Net-(U2-Pad19)") (net 58 "Net-(U2-Pad22)") (net 59 "Net-(U2-Pad23)") (net 60 "Net-(U2-Pad24)") (net 61 "Net-(U2-Pad27)") (net 62 "Net-(U2-Pad28)") (net 63 "Net-(U2-Pad13)") (net 64 "Net-(U2-Pad14)") (net 65 "Net-(U4-Pad3)") (net 66 "Net-(U2-Pad5)") (net 67 +3V3) (net 68 "Net-(J1-Pad3)") (net 69 /USD_VDD) (net 70 "Net-(Q4-Pad4)") (net 71 "Net-(Q6-Pad1)") (net 72 "Net-(P3-Pad1)") (net 73 "Net-(P4-Pad1)") (net 74 "Net-(Q8-Pad4)") (net_class Default "This is the default net class." (clearance 0.2) (trace_width 0.254) (via_dia 0.91) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) (add_net +3V3) (add_net /CLK_DUT) (add_net /CLK_TS) (add_net /CMD_DUT) (add_net /CMD_TS) (add_net /DAT0_DUT) (add_net /DAT0_TS) (add_net /DAT1_DUT) (add_net /DAT1_TS) (add_net /DAT2_DUT) (add_net /DAT2_TS) (add_net /DAT3_DUT) (add_net /DAT3_TS) (add_net /POWER_SW_OFF) (add_net /POWER_SW_ON) (add_net /SOCKET_SEL) (add_net /USB_SEL) (add_net /USD_VDD) (add_net /VDD_DUT) (add_net /VDD_TS) (add_net GND) (add_net "Net-(C1-Pad1)") (add_net "Net-(C2-Pad1)") (add_net "Net-(C4-Pad1)") (add_net "Net-(C5-Pad1)") (add_net "Net-(D1-Pad1)") (add_net "Net-(D2-Pad1)") (add_net "Net-(FB1-Pad2)") (add_net "Net-(J1-Pad1)") (add_net "Net-(J1-Pad2)") (add_net "Net-(J1-Pad3)") (add_net "Net-(J1-Pad5)") (add_net "Net-(J1-Pad7)") (add_net "Net-(J1-Pad8)") (add_net "Net-(P1-Pad2)") (add_net "Net-(P1-Pad3)") (add_net "Net-(P1-Pad4)") (add_net "Net-(P10-Pad1)") (add_net "Net-(P10-Pad2)") (add_net "Net-(P10-Pad3)") (add_net "Net-(P2-Pad1)") (add_net "Net-(P2-Pad2)") (add_net "Net-(P2-Pad3)") (add_net "Net-(P2-Pad4)") (add_net "Net-(P3-Pad1)") (add_net "Net-(P3-Pad2)") (add_net "Net-(P3-Pad3)") (add_net "Net-(P4-Pad1)") (add_net "Net-(P4-Pad2)") (add_net "Net-(P4-Pad3)") (add_net "Net-(P7-Pad1)") (add_net "Net-(P7-Pad3)") (add_net "Net-(Q3-Pad4)") (add_net "Net-(Q4-Pad4)") (add_net "Net-(Q6-Pad1)") (add_net "Net-(Q8-Pad4)") (add_net "Net-(R5-Pad2)") (add_net "Net-(RL1-Pad3)") (add_net "Net-(RL1-Pad8)") (add_net "Net-(U2-Pad10)") (add_net "Net-(U2-Pad13)") (add_net "Net-(U2-Pad14)") (add_net "Net-(U2-Pad19)") (add_net "Net-(U2-Pad22)") (add_net "Net-(U2-Pad23)") (add_net "Net-(U2-Pad24)") (add_net "Net-(U2-Pad27)") (add_net "Net-(U2-Pad28)") (add_net "Net-(U2-Pad5)") (add_net "Net-(U2-Pad6)") (add_net "Net-(U2-Pad8)") (add_net "Net-(U2-Pad9)") (add_net "Net-(U4-Pad3)") ) (net_class USB_VCC "" (clearance 0.2) (trace_width 0.508) (via_dia 0.91) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) ) (net_class VDD "" (clearance 0.2) (trace_width 0.254) (via_dia 0.91) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) (add_net VDD) ) (module footprint:PSB_IDC_4x2 (layer F.Cu) (tedit 55FFBD68) (tstamp 55FFF9C3) (at 123.15 50.2 270) (descr "PINS Box 4x2 2.54") (tags "CONN DEV") (path /55F82556) (fp_text reference P6 (at -10.19952 -3.24952) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.2032))) ) (fp_text value IDC_02X04 (at 0 5.7 270) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.2032))) ) (fp_line (start -9.1 4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end -9.1 -4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start -9.1 -4.7) (end -9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 2.3 4.7) (end 2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start 2.3 3.3) (end -2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start -2.3 3.3) (end -2.3 4.7) (layer F.SilkS) (width 0.29972)) (pad 8 thru_hole oval (at 3.81 -1.27 270) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 33 /DAT1_TS)) (pad 7 thru_hole oval (at 3.81 1.27 270) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 34 /DAT0_TS)) (pad 1 thru_hole rect (at -3.81 1.27 270) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 35 /DAT2_TS)) (pad 2 thru_hole oval (at -3.81 -1.27 270) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 36 /DAT3_TS)) (pad 3 thru_hole oval (at -1.27 1.27 270) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 37 /CMD_TS)) (pad 4 thru_hole oval (at -1.27 -1.27 270) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 38 /VDD_TS)) (pad 5 thru_hole oval (at 1.27 1.27 270) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 39 /CLK_TS)) (pad 6 thru_hole oval (at 1.27 -1.27 270) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 2 GND)) ) (module footprint:PSB_IDC_4x2 (layer F.Cu) (tedit 55FFBD61) (tstamp 55FFF9B0) (at 163.2 50.2 90) (descr "PINS Box 4x2 2.54") (tags "CONN DEV") (path /55F7EFAC) (fp_text reference P5 (at 10.09952 -3.40048 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.2032))) ) (fp_text value IDC_02X04 (at 0 5.7 90) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.2032))) ) (fp_line (start -9.1 4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end -9.1 -4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start -9.1 -4.7) (end -9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 2.3 4.7) (end 2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start 2.3 3.3) (end -2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start -2.3 3.3) (end -2.3 4.7) (layer F.SilkS) (width 0.29972)) (pad 8 thru_hole oval (at 3.81 -1.27 90) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 26 /DAT1_DUT)) (pad 7 thru_hole oval (at 3.81 1.27 90) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 27 /DAT0_DUT)) (pad 1 thru_hole rect (at -3.81 1.27 90) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 28 /DAT2_DUT)) (pad 2 thru_hole oval (at -3.81 -1.27 90) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 29 /DAT3_DUT)) (pad 3 thru_hole oval (at -1.27 1.27 90) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 30 /CMD_DUT)) (pad 4 thru_hole oval (at -1.27 -1.27 90) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 31 /VDD_DUT)) (pad 5 thru_hole oval (at 1.27 1.27 90) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 32 /CLK_DUT)) (pad 6 thru_hole oval (at 1.27 -1.27 90) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 2 GND)) ) (module TO_SOT_Packages_SMD:SOT-23-5 (layer F.Cu) (tedit 55FF8A6D) (tstamp 55FFFB1E) (at 147.97468 98.73993 180) (descr "5-pin SOT23 package") (tags SOT-23-5) (path /55F6A3A2) (attr smd) (fp_text reference U3 (at -3.2 0.05) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 74AHC1G14 (at -0.05 2.35 180) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.8 -1.6) (end 1.8 -1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.8 -1.6) (end 1.8 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.8 1.6) (end -1.8 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.8 1.6) (end -1.8 -1.6) (layer F.CrtYd) (width 0.05)) (fp_circle (center -0.3 -1.7) (end -0.2 -1.7) (layer F.SilkS) (width 0.15)) (fp_line (start 0.25 -1.45) (end -0.25 -1.45) (layer F.SilkS) (width 0.15)) (fp_line (start 0.25 1.45) (end 0.25 -1.45) (layer F.SilkS) (width 0.15)) (fp_line (start -0.25 1.45) (end 0.25 1.45) (layer F.SilkS) (width 0.15)) (fp_line (start -0.25 -1.45) (end -0.25 1.45) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.1 -0.95 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at -1.1 0 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) (net 48 /SOCKET_SEL)) (pad 3 smd rect (at -1.1 0.95 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 4 smd rect (at 1.1 0.95 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) (net 71 "Net-(Q6-Pad1)")) (pad 5 smd rect (at 1.1 -0.95 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) (net 67 +3V3)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8A56) (tstamp 55FFF90C) (at 147.97468 95.53993) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55F6C0BE) (attr smd) (fp_text reference C7 (at 3.2 0) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 100n (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 67 +3V3)) (pad 2 smd rect (at 1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8A76) (tstamp 55FFFAAB) (at 147.97468 102.13993) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55F9E16A) (attr smd) (fp_text reference R8 (at 3.2 -0.1 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 10K (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 67 +3V3)) (pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 48 /SOCKET_SEL)) ) (module footprints:msoic-8 (layer F.Cu) (tedit 5672F6E8) (tstamp 55FFFA60) (at 131.13626 43.545748 270) (descr MSOIC-8) (path /55F69E32) (fp_text reference Q3 (at 2.354732 -0.06326) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value IRF7606PBF (at 0 0.29972 270) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 -1.4986) (end 0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 -1.4986) (end -0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 -1.4986) (end -0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 -1.4986) (end 0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 1.4986) (end 0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 1.4986) (end 0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 1.4986) (end -0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 1.4986) (end -0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -0.97536 2.30124 270) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 38 /VDD_TS)) (pad 2 smd rect (at -0.32512 2.30124 270) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 38 /VDD_TS)) (pad 3 smd rect (at 0.32512 2.30124 270) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 38 /VDD_TS)) (pad 4 smd rect (at 0.97536 2.30124 270) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 47 "Net-(Q3-Pad4)")) (pad 5 smd rect (at 0.97536 -2.30124 270) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD)) (pad 6 smd rect (at 0.32512 -2.30124 270) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD)) (pad 7 smd rect (at -0.32512 -2.30124 270) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD)) (pad 8 smd rect (at -0.97536 -2.30124 270) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD)) ) (module footprints:msoic-10 (layer F.Cu) (tedit 5672F7A6) (tstamp 55FFFAF0) (at 136.79952 87.45048) (descr MSOIC-10) (path /55FCF590) (fp_text reference U1 (at 2.6 -0.05) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value TS3USB30EDGSR (at 0 0.29972) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start -1.016 -2.413) (end -1.016 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start -0.508 -2.413) (end -0.508 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 0 -2.413) (end 0 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 0.4826 -2.413) (end 0.4826 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 1.016 -2.413) (end 1.016 -1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 1.016 2.413) (end 1.016 1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 0.508 2.413) (end 0.508 1.524) (layer F.SilkS) (width 0.127)) (fp_line (start 0 2.413) (end 0 1.524) (layer F.SilkS) (width 0.127)) (fp_line (start -0.508 2.413) (end -0.508 1.524) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9906 2.413) (end -0.9906 1.524) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -1.00076 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 52 /USB_SEL)) (pad 2 smd rect (at -0.50038 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 23 "Net-(P3-Pad3)")) (pad 3 smd rect (at 0 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 25 "Net-(P4-Pad3)")) (pad 4 smd rect (at 0.50038 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 20 "Net-(P2-Pad3)")) (pad 5 smd rect (at 1.00076 2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 6 smd rect (at 1.00076 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 19 "Net-(P2-Pad2)")) (pad 7 smd rect (at 0.50038 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 24 "Net-(P4-Pad2)")) (pad 8 smd rect (at 0 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 22 "Net-(P3-Pad2)")) (pad 9 smd rect (at -0.50038 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 10 smd rect (at -1.00076 -2.30124) (size 0.29972 1.45) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) ) (module footprints:tssop-24 (layer F.Cu) (tedit 5672F701) (tstamp 55FFFB3F) (at 142.3 67 180) (descr TSSOP-24) (path /55F68CCE) (fp_text reference U4 (at -5.09952 -0.00048 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value TS3A27518E (at 0 -1.143 180) (layer F.SilkS) (effects (font (size 0.50038 0.50038) (thickness 0.09906))) ) (fp_line (start 3.937 -2.286) (end -3.937 -2.286) (layer F.SilkS) (width 0.127)) (fp_line (start -3.937 -2.286) (end -3.937 2.286) (layer F.SilkS) (width 0.127)) (fp_line (start -3.937 2.286) (end 3.937 2.286) (layer F.SilkS) (width 0.127)) (fp_line (start 3.937 2.286) (end 3.937 -2.286) (layer F.SilkS) (width 0.127)) (fp_circle (center -3.175 1.524) (end -3.302 1.778) (layer F.SilkS) (width 0.127)) (pad 6 smd rect (at -0.32512 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 13 "Net-(J1-Pad7)")) (pad 7 smd rect (at 0.32512 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 12 "Net-(J1-Pad5)")) (pad 8 smd rect (at 0.97536 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 67 +3V3)) (pad 9 smd rect (at 1.6256 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 68 "Net-(J1-Pad3)")) (pad 22 smd rect (at -2.26568 -2.794 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 28 /DAT2_DUT)) (pad 3 smd rect (at -2.27584 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 65 "Net-(U4-Pad3)")) (pad 4 smd rect (at -1.6256 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 14 "Net-(J1-Pad8)")) (pad 5 smd rect (at -0.97536 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 15 smd rect (at 2.27584 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 39 /CLK_TS)) (pad 16 smd rect (at 1.6256 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 35 /DAT2_TS)) (pad 17 smd rect (at 0.97536 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 37 /CMD_TS)) (pad 18 smd rect (at 0.32512 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 36 /DAT3_TS)) (pad 19 smd rect (at -0.32512 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 29 /DAT3_DUT)) (pad 20 smd rect (at -0.97536 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 10 smd rect (at 2.27584 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 11 "Net-(J1-Pad2)")) (pad 21 smd rect (at -1.6256 -2.794 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 30 /CMD_DUT)) (pad 2 smd rect (at -2.92608 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 26 /DAT1_DUT)) (pad 11 smd rect (at 2.92608 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 33 /DAT1_TS)) (pad 14 smd rect (at 2.92608 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 48 /SOCKET_SEL)) (pad 23 smd rect (at -2.92608 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 32 /CLK_DUT)) (pad 1 smd rect (at -3.57378 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 27 /DAT0_DUT)) (pad 12 smd rect (at 3.57378 2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 10 "Net-(J1-Pad1)")) (pad 13 smd rect (at 3.57378 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 34 /DAT0_TS)) (pad 24 smd rect (at -3.57378 -2.79908 180) (size 0.4191 1.47066) (layers F.Cu F.Paste F.Mask) (net 48 /SOCKET_SEL)) ) (module Mounting_Holes:MountingHole_3-5mm (layer F.Cu) (tedit 55FFBC17) (tstamp 55FFBC79) (at 163.25 37.25048) (descr "Mounting hole, Befestigungsbohrung, 3,5mm, No Annular, Kein Restring,") (tags "Mounting hole, Befestigungsbohrung, 3,5mm, No Annular, Kein Restring,") (fp_text reference REF** (at 0 -4.50088) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MountingHole_3-5mm (at 0 5.00126) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 0 0) (end 3.5 0) (layer Cmts.User) (width 0.381)) (pad 1 thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers)) ) (module Mounting_Holes:MountingHole_3-5mm (layer F.Cu) (tedit 55FFBC17) (tstamp 55FFBC2C) (at 123.24952 37.25048) (descr "Mounting hole, Befestigungsbohrung, 3,5mm, No Annular, Kein Restring,") (tags "Mounting hole, Befestigungsbohrung, 3,5mm, No Annular, Kein Restring,") (fp_text reference REF** (at 0 -4.50088) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MountingHole_3-5mm (at 0 5.00126) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 0 0) (end 3.5 0) (layer Cmts.User) (width 0.381)) (pad 1 thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers)) ) (module Mounting_Holes:MountingHole_3-5mm (layer F.Cu) (tedit 55FFBC12) (tstamp 55FFBBCB) (at 123.25 143.95) (descr "Mounting hole, Befestigungsbohrung, 3,5mm, No Annular, Kein Restring,") (tags "Mounting hole, Befestigungsbohrung, 3,5mm, No Annular, Kein Restring,") (fp_text reference REF** (at 0 -4.50088) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MountingHole_3-5mm (at 0 5.00126) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 0 0) (end 3.5 0) (layer Cmts.User) (width 0.381)) (pad 1 thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers)) ) (module conn_usb_A (layer F.Cu) (tedit 55FF8B26) (tstamp 55FFF99D) (at 125.75 67.35 270) (descr "USB A Socket") (path /55FC51B0) (fp_text reference P4 (at -1 -9.35) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_text value 61400416021 (at 0 -8.636 270) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_line (start -7.62 6.985) (end 7.62 6.985) (layer F.SilkS) (width 0.381)) (fp_line (start -7.62 6.731) (end -7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start 7.62 6.731) (end 7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start 7.62 7.239) (end -7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start -7.62 6.731) (end 7.62 6.731) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 -4.318) (end 7.874 -3.302) (layer F.SilkS) (width 0.381)) (fp_line (start 7.874 -3.302) (end 6.604 -2.286) (layer F.SilkS) (width 0.381)) (fp_line (start -6.604 -4.318) (end -7.874 -3.302) (layer F.SilkS) (width 0.381)) (fp_line (start -7.874 -3.302) (end -6.604 -2.286) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 -7.112) (end -6.604 -7.112) (layer F.SilkS) (width 0.381)) (fp_line (start -6.604 -7.112) (end -6.604 7.112) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 7.112) (end 6.604 -7.112) (layer F.SilkS) (width 0.381)) (pad 5 thru_hole circle (at -6.57098 -3.27914 270) (size 2.99974 2.99974) (drill 1.99898) (layers *.Cu *.Mask) (net 5 "Net-(C5-Pad1)")) (pad 5 thru_hole circle (at 6.57098 -3.27914 270) (size 2.99974 2.99974) (drill 1.99898) (layers *.Cu *.Mask) (net 5 "Net-(C5-Pad1)")) (pad 1 thru_hole circle (at -3.50012 -5.98932 270) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask) (net 73 "Net-(P4-Pad1)")) (pad 2 thru_hole circle (at -1.00076 -5.98932 270) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask) (net 24 "Net-(P4-Pad2)")) (pad 3 thru_hole circle (at 1.00076 -5.98932 270) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask) (net 25 "Net-(P4-Pad3)")) (pad 4 thru_hole circle (at 3.50012 -5.98932 270) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask) (net 2 GND)) ) (module conn_usb_A (layer F.Cu) (tedit 55FF8B2A) (tstamp 55FFF993) (at 160.6 67.45 90) (descr "USB A Socket") (path /55FB5556) (fp_text reference P3 (at 1 -9.5 180) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_text value 61400416021 (at 0 -8.636 90) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_line (start -7.62 6.985) (end 7.62 6.985) (layer F.SilkS) (width 0.381)) (fp_line (start -7.62 6.731) (end -7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start 7.62 6.731) (end 7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start 7.62 7.239) (end -7.62 7.239) (layer F.SilkS) (width 0.381)) (fp_line (start -7.62 6.731) (end 7.62 6.731) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 -4.318) (end 7.874 -3.302) (layer F.SilkS) (width 0.381)) (fp_line (start 7.874 -3.302) (end 6.604 -2.286) (layer F.SilkS) (width 0.381)) (fp_line (start -6.604 -4.318) (end -7.874 -3.302) (layer F.SilkS) (width 0.381)) (fp_line (start -7.874 -3.302) (end -6.604 -2.286) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 -7.112) (end -6.604 -7.112) (layer F.SilkS) (width 0.381)) (fp_line (start -6.604 -7.112) (end -6.604 7.112) (layer F.SilkS) (width 0.381)) (fp_line (start 6.604 7.112) (end 6.604 -7.112) (layer F.SilkS) (width 0.381)) (pad 5 thru_hole circle (at -6.57098 -3.27914 90) (size 2.99974 2.99974) (drill 1.99898) (layers *.Cu *.Mask) (net 4 "Net-(C4-Pad1)")) (pad 5 thru_hole circle (at 6.57098 -3.27914 90) (size 2.99974 2.99974) (drill 1.99898) (layers *.Cu *.Mask) (net 4 "Net-(C4-Pad1)")) (pad 1 thru_hole circle (at -3.50012 -5.98932 90) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask) (net 72 "Net-(P3-Pad1)")) (pad 2 thru_hole circle (at -1.00076 -5.98932 90) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask) (net 22 "Net-(P3-Pad2)")) (pad 3 thru_hole circle (at 1.00076 -5.98932 90) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask) (net 23 "Net-(P3-Pad3)")) (pad 4 thru_hole circle (at 3.50012 -5.98932 90) (size 1.50114 1.50114) (drill 0.89916) (layers *.Cu *.Mask) (net 2 GND)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8E8C) (tstamp 55FFF8E8) (at 126.95 103.75 90) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55F73E2B) (attr smd) (fp_text reference C1 (at 3 0 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 27p (at 0 2.1 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0 90) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 1 "Net-(C1-Pad1)")) (pad 2 smd rect (at 1.25 0 90) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8B3F) (tstamp 55FFF8EE) (at 126.95 90.55 90) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55FB52D8) (attr smd) (fp_text reference C2 (at 3.15 -0.2 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 27p (at 0 2.1 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0 90) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 3 "Net-(C2-Pad1)")) (pad 2 smd rect (at 1.25 0 90) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8EA9) (tstamp 55FFF8F4) (at 134.95 106.05 270) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55F714EB) (attr smd) (fp_text reference C3 (at 3.15 0.1) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 100n (at 0 2.1 270) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0 270) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 67 +3V3)) (pad 2 smd rect (at 1.25 0 270) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8B04) (tstamp 55FFF8FA) (at 155.89904 80.15 180) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55FB5847) (attr smd) (fp_text reference C4 (at 3.15 -0.05) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 27p (at 0 2.1 180) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0 180) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 4 "Net-(C4-Pad1)")) (pad 2 smd rect (at 1.25 0 180) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8AEA) (tstamp 55FFF900) (at 130.3 77.35096) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55FC51B6) (attr smd) (fp_text reference C5 (at 3.2 0.05 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 27p (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 5 "Net-(C5-Pad1)")) (pad 2 smd rect (at 1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8AA0) (tstamp 55FFF906) (at 142.3 61) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55F69366) (attr smd) (fp_text reference C6 (at 0.05 -1.65) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 100n (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 67 +3V3)) (pad 2 smd rect (at 1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8EAE) (tstamp 55FFF912) (at 138.35 105.25) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55F7186D) (attr smd) (fp_text reference C8 (at 3.2 0) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 100n (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at 1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 55FF8EB7) (tstamp 55FFF918) (at 138.35 107.35) (descr "Capacitor SMD 0805, hand soldering") (tags "capacitor 0805") (path /55F718DB) (attr smd) (fp_text reference C9 (at 3.2 0) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 4.7u (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15)) (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at 1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module footprints:do219ab (layer F.Cu) (tedit 5672F820) (tstamp 55FFF927) (at 147.65 123.05 180) (descr DO219AB) (path /55F992F8) (fp_text reference D1 (at 3.45048 -0.05048 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value ES1AL (at 0 1.50114 180) (layer F.SilkS) hide (effects (font (size 0.39878 0.39878) (thickness 0.09906))) ) (fp_line (start -1.15046 1.00076) (end -1.15046 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.14952 -1.00076) (end -1.14952 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.20112 1.00076) (end -1.20112 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.40018 -1.00076) (end -1.40018 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.29924 -1.00076) (end -1.29924 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.00076) (end -1.50114 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.00076) (end -1.50114 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.00076) (end 1.50114 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.00076) (end 1.50114 -1.00076) (layer F.SilkS) (width 0.127)) (pad 2 smd rect (at 1.45034 0 180) (size 1.30048 1.39954) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 1 smd rect (at -1.45034 0 180) (size 1.30048 1.39954) (layers F.Cu F.Paste F.Mask) (net 7 "Net-(D1-Pad1)")) ) (module footprints:do219ab (layer F.Cu) (tedit 5672F82A) (tstamp 55FFF936) (at 152.55 123.05 180) (descr DO219AB) (path /55F977AF) (fp_text reference D2 (at -3.24952 -0.05048 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value ES1AL (at 0 1.50114 180) (layer F.SilkS) hide (effects (font (size 0.39878 0.39878) (thickness 0.09906))) ) (fp_line (start -1.15046 1.00076) (end -1.15046 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.14952 -1.00076) (end -1.14952 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.20112 1.00076) (end -1.20112 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.40018 -1.00076) (end -1.40018 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.29924 -1.00076) (end -1.29924 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.00076) (end -1.50114 -1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.00076) (end -1.50114 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.00076) (end 1.50114 1.00076) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.00076) (end 1.50114 -1.00076) (layer F.SilkS) (width 0.127)) (pad 2 smd rect (at 1.45034 0 180) (size 1.30048 1.39954) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 1 smd rect (at -1.45034 0 180) (size 1.30048 1.39954) (layers F.Cu F.Paste F.Mask) (net 8 "Net-(D2-Pad1)")) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8BAD) (tstamp 55FFF93C) (at 126.975 96.725 270) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55F74995) (attr smd) (fp_text reference FB1 (at -3.17452 0.10548) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MI0805K400R-10 (at 0 2.1 270) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0 270) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at 1.35 0 270) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 9 "Net-(FB1-Pad2)")) ) (module footprints:conn_usb_B_micro (layer F.Cu) (tedit 5672F747) (tstamp 55FFF972) (at 120.45 99.85 270) (descr "USB B micro") (path /55F72E39) (fp_text reference P1 (at -4.7 -2.4) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value USB_OTG (at 0 -4.0005 270) (layer F.SilkS) (effects (font (size 0.50038 0.50038) (thickness 0.09906))) ) (fp_line (start -4.20116 1.99898) (end 4.20116 1.99898) (layer F.SilkS) (width 0.20066)) (fp_line (start -4.20116 2.10058) (end 4.20116 2.10058) (layer F.SilkS) (width 0.20066)) (fp_line (start 4.20116 2.10058) (end 4.20116 1.89992) (layer F.SilkS) (width 0.20066)) (fp_line (start 4.20116 1.89992) (end -4.20116 1.89992) (layer F.SilkS) (width 0.20066)) (fp_line (start -4.20116 1.89992) (end -4.20116 2.10058) (layer F.SilkS) (width 0.20066)) (fp_line (start -3.8989 2.10058) (end -3.8989 -2.90068) (layer F.SilkS) (width 0.20066)) (fp_line (start -3.8989 -2.90068) (end 3.8989 -2.90068) (layer F.SilkS) (width 0.20066)) (fp_line (start 3.8989 -2.90068) (end 3.8989 2.10058) (layer F.SilkS) (width 0.20066)) (pad 6 smd rect (at -1.19888 0 270) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask) (net 1 "Net-(C1-Pad1)")) (pad 6 smd rect (at 1.19888 0 270) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask) (net 1 "Net-(C1-Pad1)")) (pad 6 smd rect (at 3.9497 0 270) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask) (net 1 "Net-(C1-Pad1)")) (pad 6 smd rect (at -3.9497 0 270) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask) (net 1 "Net-(C1-Pad1)")) (pad 1 smd rect (at -1.30048 -2.67462 270) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask) (net 9 "Net-(FB1-Pad2)")) (pad 2 smd rect (at -0.6477 -2.67462 270) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask) (net 15 "Net-(P1-Pad2)")) (pad 3 smd rect (at 0 -2.67462 270) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask) (net 16 "Net-(P1-Pad3)")) (pad 4 smd rect (at 0.6477 -2.67462 270) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask) (net 17 "Net-(P1-Pad4)")) (pad 5 smd rect (at 1.30048 -2.67462 270) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad "" np_thru_hole circle (at 2.05 -2.45 270) (size 0.79756 0.79756) (drill 0.79756) (layers *.Cu *.Mask F.SilkS)) (pad "" np_thru_hole circle (at -2.05 -2.45 270) (size 0.79756 0.79756) (drill 0.79756) (layers *.Cu *.Mask F.SilkS)) ) (module footprints:conn_usb_B_micro (layer F.Cu) (tedit 5672F73C) (tstamp 55FFF989) (at 120.45 87.65 270) (descr "USB B micro") (path /55FB52CC) (fp_text reference P2 (at 5.15048 -2.44952) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 629105136821 (at 0 -4.0005 270) (layer F.SilkS) (effects (font (size 0.50038 0.50038) (thickness 0.09906))) ) (fp_line (start -4.20116 1.99898) (end 4.20116 1.99898) (layer F.SilkS) (width 0.20066)) (fp_line (start -4.20116 2.10058) (end 4.20116 2.10058) (layer F.SilkS) (width 0.20066)) (fp_line (start 4.20116 2.10058) (end 4.20116 1.89992) (layer F.SilkS) (width 0.20066)) (fp_line (start 4.20116 1.89992) (end -4.20116 1.89992) (layer F.SilkS) (width 0.20066)) (fp_line (start -4.20116 1.89992) (end -4.20116 2.10058) (layer F.SilkS) (width 0.20066)) (fp_line (start -3.8989 2.10058) (end -3.8989 -2.90068) (layer F.SilkS) (width 0.20066)) (fp_line (start -3.8989 -2.90068) (end 3.8989 -2.90068) (layer F.SilkS) (width 0.20066)) (fp_line (start 3.8989 -2.90068) (end 3.8989 2.10058) (layer F.SilkS) (width 0.20066)) (pad 6 smd rect (at -1.19888 0 270) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask) (net 3 "Net-(C2-Pad1)")) (pad 6 smd rect (at 1.19888 0 270) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask) (net 3 "Net-(C2-Pad1)")) (pad 6 smd rect (at 3.9497 0 270) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask) (net 3 "Net-(C2-Pad1)")) (pad 6 smd rect (at -3.9497 0 270) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask) (net 3 "Net-(C2-Pad1)")) (pad 1 smd rect (at -1.30048 -2.67462 270) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask) (net 18 "Net-(P2-Pad1)")) (pad 2 smd rect (at -0.6477 -2.67462 270) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask) (net 19 "Net-(P2-Pad2)")) (pad 3 smd rect (at 0 -2.67462 270) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask) (net 20 "Net-(P2-Pad3)")) (pad 4 smd rect (at 0.6477 -2.67462 270) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask) (net 21 "Net-(P2-Pad4)")) (pad 5 smd rect (at 1.30048 -2.67462 270) (size 0.39878 1.3462) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad "" np_thru_hole circle (at 2.05 -2.45 270) (size 0.79756 0.79756) (drill 0.79756) (layers *.Cu *.Mask F.SilkS)) (pad "" np_thru_hole circle (at -2.05 -2.45 270) (size 0.79756 0.79756) (drill 0.79756) (layers *.Cu *.Mask F.SilkS) (clearance 0.01) (zone_connect 0)) ) (module footprints:cons_1,5x3 (layer F.Cu) (tedit 564D7E5D) (tstamp 55FFF9D6) (at 163.29952 132.55 90) (descr "3 Pins 5mm screw connector") (path /55FACECA) (fp_text reference P7 (at -9.15048 -4.4 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.25))) ) (fp_text value "MKDS 1,5/3" (at 0 5.9 90) (layer F.SilkS) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (fp_circle (center 5 0.1) (end 3 0.1) (layer F.SilkS) (width 0.381)) (fp_line (start 2.5 4.1) (end 2.5 4.6) (layer F.SilkS) (width 0.381)) (fp_line (start -2.5 4.1) (end -2.5 4.6) (layer F.SilkS) (width 0.381)) (fp_circle (center 0 0.1) (end -2 0.1) (layer F.SilkS) (width 0.381)) (fp_circle (center -5 0.1) (end -3 0.1) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 2.6) (end 7.5 2.6) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 -2.3) (end 7.5 -2.3) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 4.1) (end 7.5 4.1) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 4.6) (end 7.5 4.6) (layer F.SilkS) (width 0.381)) (fp_line (start 7.5 4.6) (end 7.5 -5.2) (layer F.SilkS) (width 0.381)) (fp_line (start 7.5 -5.2) (end -7.5 -5.2) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 -5.2) (end -7.5 4.6) (layer F.SilkS) (width 0.381)) (pad 3 thru_hole circle (at 5 0 90) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 40 "Net-(P7-Pad3)")) (pad 1 thru_hole circle (at -5 0 90) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 41 "Net-(P7-Pad1)")) (pad 2 thru_hole circle (at 0 0 90) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 42 "Net-(P10-Pad2)")) ) (module footprints:PSB_IDC__4x2 (layer F.Cu) (tedit 564EE464) (tstamp 55FFF9E9) (at 163.16952 115.49048 90) (descr "PINS Box 4x2 2.54") (tags "CONN DEV") (path /55FAD020) (fp_text reference P8 (at 9.84952 0.64952 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.2032))) ) (fp_text value CONN_02X02 (at 0 5.7 90) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.2032))) ) (fp_line (start -9.1 4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end -9.1 -4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start -9.1 -4.7) (end -9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 2.3 4.7) (end 2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start 2.3 3.3) (end -2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start -2.3 3.3) (end -2.3 4.7) (layer F.SilkS) (width 0.29972)) (pad 8 thru_hole oval (at 3.81 -1.27 90) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 7 thru_hole oval (at 3.81 1.27 90) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 1 thru_hole rect (at -3.81 1.27 90) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 41 "Net-(P7-Pad1)")) (pad 2 thru_hole oval (at -3.81 -1.27 90) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 40 "Net-(P7-Pad3)")) (pad 3 thru_hole oval (at -1.27 1.27 90) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 41 "Net-(P7-Pad1)")) (pad 4 thru_hole oval (at -1.27 -1.27 90) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 40 "Net-(P7-Pad3)")) (pad 5 thru_hole oval (at 1.27 1.27 90) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 6 thru_hole oval (at 1.27 -1.27 90) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS)) ) (module footprints:PSB_IDC__4x2 (layer F.Cu) (tedit 564EE436) (tstamp 55FFF9FC) (at 123.16952 115.49048 270) (descr "PINS Box 4x2 2.54") (tags "CONN DEV") (path /55FAB923) (fp_text reference P9 (at -10.04952 0.15048) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.2032))) ) (fp_text value CONN_02X02 (at 0 5.7 270) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.2032))) ) (fp_line (start -9.1 4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end -9.1 -4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start -9.1 -4.7) (end -9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 9.1 -4.7) (end 9.1 4.7) (layer F.SilkS) (width 0.3048)) (fp_line (start 2.3 4.7) (end 2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start 2.3 3.3) (end -2.3 3.3) (layer F.SilkS) (width 0.29972)) (fp_line (start -2.3 3.3) (end -2.3 4.7) (layer F.SilkS) (width 0.29972)) (pad 8 thru_hole oval (at 3.81 -1.27 270) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 7 thru_hole oval (at 3.81 1.27 270) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 1 thru_hole rect (at -3.81 1.27 270) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 44 "Net-(P10-Pad3)")) (pad 2 thru_hole oval (at -3.81 -1.27 270) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 43 "Net-(P10-Pad1)")) (pad 3 thru_hole oval (at -1.27 1.27 270) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS) (net 44 "Net-(P10-Pad3)")) (pad 4 thru_hole oval (at -1.27 -1.27 270) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS) (net 43 "Net-(P10-Pad1)")) (pad 5 thru_hole oval (at 1.27 1.27 270) (size 1.5 2) (drill 1 (offset 0 0.25)) (layers *.Cu *.Mask F.SilkS)) (pad 6 thru_hole oval (at 1.27 -1.27 270) (size 1.5 2) (drill 1 (offset 0 -0.25)) (layers *.Cu *.Mask F.SilkS)) ) (module footprints:cons_1,5x3 (layer F.Cu) (tedit 564D7E48) (tstamp 55FFFA0F) (at 123.09952 132.55 270) (descr "3 Pins 5mm screw connector") (path /55FAC530) (fp_text reference P10 (at 8.75048 -4.2) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.25))) ) (fp_text value "MKDS 1,5/3" (at 0 5.9 270) (layer F.SilkS) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (fp_circle (center 5 0.1) (end 3 0.1) (layer F.SilkS) (width 0.381)) (fp_line (start 2.5 4.1) (end 2.5 4.6) (layer F.SilkS) (width 0.381)) (fp_line (start -2.5 4.1) (end -2.5 4.6) (layer F.SilkS) (width 0.381)) (fp_circle (center 0 0.1) (end -2 0.1) (layer F.SilkS) (width 0.381)) (fp_circle (center -5 0.1) (end -3 0.1) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 2.6) (end 7.5 2.6) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 -2.3) (end 7.5 -2.3) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 4.1) (end 7.5 4.1) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 4.6) (end 7.5 4.6) (layer F.SilkS) (width 0.381)) (fp_line (start 7.5 4.6) (end 7.5 -5.2) (layer F.SilkS) (width 0.381)) (fp_line (start 7.5 -5.2) (end -7.5 -5.2) (layer F.SilkS) (width 0.381)) (fp_line (start -7.5 -5.2) (end -7.5 4.6) (layer F.SilkS) (width 0.381)) (pad 3 thru_hole circle (at 5 0 270) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 44 "Net-(P10-Pad3)")) (pad 1 thru_hole circle (at -5 0 270) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 43 "Net-(P10-Pad1)")) (pad 2 thru_hole circle (at 0 0 270) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 42 "Net-(P10-Pad2)")) ) (module footprints:msoic-8 (layer F.Cu) (tedit 5672F7FD) (tstamp 55FFFA2A) (at 147.65 118.65 180) (descr MSOIC-8) (path /55F8C5E8) (fp_text reference Q1 (at 2.75048 -0.15048 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value IRF7606PBF (at 0 0.29972 180) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 -1.4986) (end 0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 -1.4986) (end -0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 -1.4986) (end -0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 -1.4986) (end 0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 1.4986) (end 0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 1.4986) (end 0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 1.4986) (end -0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 1.4986) (end -0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -0.97536 2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at -0.32512 2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 3 smd rect (at 0.32512 2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 4 smd rect (at 0.97536 2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 45 /POWER_SW_OFF)) (pad 5 smd rect (at 0.97536 -2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 7 "Net-(D1-Pad1)")) (pad 6 smd rect (at 0.32512 -2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 7 "Net-(D1-Pad1)")) (pad 7 smd rect (at -0.32512 -2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 7 "Net-(D1-Pad1)")) (pad 8 smd rect (at -0.97536 -2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 7 "Net-(D1-Pad1)")) ) (module footprints:msoic-8 (layer F.Cu) (tedit 5672F80C) (tstamp 55FFFA45) (at 152.55 118.65 180) (descr MSOIC-8) (path /55F8FBDC) (fp_text reference Q2 (at -2.54952 -0.05048 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value IRF7606PBF (at 0 0.29972 180) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 -1.4986) (end 0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 -1.4986) (end -0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 -1.4986) (end -0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 -1.4986) (end 0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 1.4986) (end 0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 1.4986) (end 0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 1.4986) (end -0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 1.4986) (end -0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -0.97536 2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at -0.32512 2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 3 smd rect (at 0.32512 2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 4 smd rect (at 0.97536 2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 46 /POWER_SW_ON)) (pad 5 smd rect (at 0.97536 -2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 8 "Net-(D2-Pad1)")) (pad 6 smd rect (at 0.32512 -2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 8 "Net-(D2-Pad1)")) (pad 7 smd rect (at -0.32512 -2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 8 "Net-(D2-Pad1)")) (pad 8 smd rect (at -0.97536 -2.30124 180) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 8 "Net-(D2-Pad1)")) ) (module footprints:msoic-8 (layer F.Cu) (tedit 5672F6F3) (tstamp 55FFFA7B) (at 154.14952 43.62536 90) (descr MSOIC-8) (path /55F69957) (fp_text reference Q4 (at -2.47512 0.05 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value IRF7606PBF (at 0 0.29972 90) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 -1.4986) (end 0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 -1.4986) (end -0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 -1.4986) (end -0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 -1.4986) (end 0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 1.4986) (end 0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 1.4986) (end 0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 1.4986) (end -0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 1.4986) (end -0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -0.97536 2.30124 90) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 31 /VDD_DUT)) (pad 2 smd rect (at -0.32512 2.30124 90) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 31 /VDD_DUT)) (pad 3 smd rect (at 0.32512 2.30124 90) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 31 /VDD_DUT)) (pad 4 smd rect (at 0.97536 2.30124 90) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 70 "Net-(Q4-Pad4)")) (pad 5 smd rect (at 0.97536 -2.30124 90) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD)) (pad 6 smd rect (at 0.32512 -2.30124 90) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD)) (pad 7 smd rect (at -0.32512 -2.30124 90) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD)) (pad 8 smd rect (at -0.97536 -2.30124 90) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD)) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8E94) (tstamp 55FFFA81) (at 129.05 103.75 90) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55F73F08) (attr smd) (fp_text reference R1 (at 3 0.05 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 4.7K (at 0 2.1 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0 90) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 1 "Net-(C1-Pad1)")) (pad 2 smd rect (at 1.35 0 90) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8B4D) (tstamp 55FFFA87) (at 129.05 90.55 90) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55FB52DE) (attr smd) (fp_text reference R2 (at 3.15 0 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 4.7K (at 0 2.1 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0 90) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 3 "Net-(C2-Pad1)")) (pad 2 smd rect (at 1.35 0 90) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8B0F) (tstamp 55FFFA8D) (at 155.89904 77.95 180) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55FB584D) (attr smd) (fp_text reference R3 (at 3.2 -0.05) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 4.7K (at 0 2.1 180) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 4 "Net-(C4-Pad1)")) (pad 2 smd rect (at 1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8AF8) (tstamp 55FFFA93) (at 130.3 79.45096) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55FC51BC) (attr smd) (fp_text reference R4 (at 3.2 0 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 4.7K (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 5 "Net-(C5-Pad1)")) (pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8BA8) (tstamp 55FFFA99) (at 129.075 96.725 90) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55F7212F) (attr smd) (fp_text reference R5 (at 3.13452 -0.00548 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 10K (at 0 2.1 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0 90) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at 1.35 0 90) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 49 "Net-(R5-Pad2)")) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8EE5) (tstamp 55FFFA9F) (at 147.65 114.35 180) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55F9D342) (attr smd) (fp_text reference R6 (at -0.05 1.75 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 10K (at 0 2.1 180) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at 1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 45 /POWER_SW_OFF)) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 55FF8EED) (tstamp 55FFFAA5) (at 152.55 114.35 180) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /55F9CDCB) (attr smd) (fp_text reference R7 (at 0 1.7 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 10K (at 0 2.1 180) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at 1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 46 /POWER_SW_ON)) ) (module footprints:G2RK-2 (layer F.Cu) (tedit 55FF8F06) (tstamp 55FFFAD1) (at 143.19952 132.55 180) (descr "relay, V23042-B2 series") (path /55F8C327) (fp_text reference RL1 (at 9.6 7.84952 180) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_text value G2RK-2 (at -3.6 -7.57 180) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_line (start 14.6 6.45) (end 14.6 -6.45) (layer F.SilkS) (width 0.15)) (fp_line (start 14.6 6.45) (end -14.6 6.45) (layer F.SilkS) (width 0.15)) (fp_line (start -14.6 6.45) (end -14.6 -6.45) (layer F.SilkS) (width 0.15)) (fp_line (start 14.6 -6.45) (end -14.6 -6.45) (layer F.SilkS) (width 0.15)) (fp_line (start -8.516 -0.662) (end -8.516 0.862) (layer F.SilkS) (width 0.3048)) (fp_line (start -6.484 0.862) (end -8.516 0.862) (layer F.SilkS) (width 0.3048)) (fp_line (start -6.484 -0.662) (end -6.484 0.862) (layer F.SilkS) (width 0.3048)) (fp_line (start -8.516 -0.662) (end -6.484 -0.662) (layer F.SilkS) (width 0.3048)) (fp_line (start -8.516 0.862) (end -6.484 -0.662) (layer F.SilkS) (width 0.3048)) (fp_line (start -7.5 -3.71) (end -7.5 -0.662) (layer F.SilkS) (width 0.3048)) (fp_line (start -7.5 3.91) (end -7.5 0.862) (layer F.SilkS) (width 0.3048)) (fp_line (start -6.484 1.705) (end -6.484 2.721) (layer F.SilkS) (width 0.3048)) (fp_line (start -5.976 2.213) (end -6.992 2.213) (layer F.SilkS) (width 0.3048)) (fp_line (start -5.976 -2.213) (end -6.992 -2.213) (layer F.SilkS) (width 0.3048)) (fp_line (start -10.966 -2.213) (end -11.982 -2.213) (layer F.SilkS) (width 0.3048)) (fp_line (start -10.966 2.163) (end -11.982 2.163) (layer F.SilkS) (width 0.3048)) (fp_line (start -11.474 1.655) (end -11.474 2.671) (layer F.SilkS) (width 0.3048)) (fp_line (start -12.49 3.86) (end -12.49 0.812) (layer F.SilkS) (width 0.3048)) (fp_line (start -12.49 -3.76) (end -12.49 -0.712) (layer F.SilkS) (width 0.3048)) (fp_line (start -13.506 0.812) (end -11.474 -0.712) (layer F.SilkS) (width 0.3048)) (fp_line (start -13.506 -0.712) (end -11.474 -0.712) (layer F.SilkS) (width 0.3048)) (fp_line (start -11.474 -0.712) (end -11.474 0.812) (layer F.SilkS) (width 0.3048)) (fp_line (start -11.474 0.812) (end -13.506 0.812) (layer F.SilkS) (width 0.3048)) (fp_line (start -13.506 0.812) (end -13.506 -0.712) (layer F.SilkS) (width 0.3048)) (pad 10 thru_hole circle (at -12.5 3.75 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 2 GND)) (pad 8 thru_hole circle (at 2.5 3.75 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 50 "Net-(RL1-Pad8)")) (pad 7 thru_hole circle (at 7.5 3.75 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 40 "Net-(P7-Pad3)")) (pad 6 thru_hole circle (at 12.5 3.75 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 43 "Net-(P10-Pad1)")) (pad 5 thru_hole circle (at 12.5 -3.7 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 44 "Net-(P10-Pad3)")) (pad 4 thru_hole circle (at 7.5 -3.7 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 41 "Net-(P7-Pad1)")) (pad 3 thru_hole circle (at 2.5 -3.7 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 51 "Net-(RL1-Pad3)")) (pad 1 thru_hole circle (at -12.49 -3.76 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 8 "Net-(D2-Pad1)")) (pad 9 thru_hole circle (at -7.5 3.75 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 2 GND)) (pad 2 thru_hole circle (at -7.5 -3.7 180) (size 2.5 2.5) (drill 1.3) (layers *.Cu *.Mask F.SilkS) (net 7 "Net-(D1-Pad1)")) ) (module footprints:ssop-28 (layer F.Cu) (tedit 5672F793) (tstamp 55FFFB15) (at 138.05 98.85 180) (descr SSOP-16) (path /55F7090C) (fp_text reference U2 (at 6.25048 0.14952 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value FT245RL (at 0 -1.143 180) (layer F.SilkS) (effects (font (size 0.50038 0.50038) (thickness 0.09906))) ) (fp_line (start 5.19938 -2.30124) (end 5.19938 2.30124) (layer F.SilkS) (width 0.14986)) (fp_line (start -5.19938 2.30124) (end -5.19938 -2.30124) (layer F.SilkS) (width 0.14986)) (fp_line (start -5.19938 -2.30124) (end 5.19938 -2.30124) (layer F.SilkS) (width 0.14986)) (fp_line (start 5.19938 2.30124) (end -5.19938 2.30124) (layer F.SilkS) (width 0.14986)) (fp_circle (center -4.43992 1.53416) (end -4.56692 1.78816) (layer F.SilkS) (width 0.14986)) (pad 7 smd rect (at -0.32512 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 8 smd rect (at 0.32512 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 53 "Net-(U2-Pad8)")) (pad 9 smd rect (at 0.97536 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 54 "Net-(U2-Pad9)")) (pad 10 smd rect (at 1.6256 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 55 "Net-(U2-Pad10)")) (pad 25 smd rect (at -2.27584 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 4 smd rect (at -2.27584 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 5 smd rect (at -1.6256 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 66 "Net-(U2-Pad5)")) (pad 6 smd rect (at -0.97536 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 56 "Net-(U2-Pad6)")) (pad 18 smd rect (at 2.27584 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 19 smd rect (at 1.6256 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 57 "Net-(U2-Pad19)")) (pad 20 smd rect (at 0.97536 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 21 smd rect (at 0.32512 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 22 smd rect (at -0.32512 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 58 "Net-(U2-Pad22)")) (pad 23 smd rect (at -0.97536 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 59 "Net-(U2-Pad23)")) (pad 11 smd rect (at 2.27584 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 52 /USB_SEL)) (pad 24 smd rect (at -1.6256 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 60 "Net-(U2-Pad24)")) (pad 26 smd rect (at -2.92608 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 27 smd rect (at -3.57378 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 61 "Net-(U2-Pad27)")) (pad 28 smd rect (at -4.22402 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 62 "Net-(U2-Pad28)")) (pad 1 smd rect (at -4.22402 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 48 /SOCKET_SEL)) (pad 2 smd rect (at -3.57378 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 46 /POWER_SW_ON)) (pad 3 smd rect (at -2.92608 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 45 /POWER_SW_OFF)) (pad 12 smd rect (at 2.92608 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 49 "Net-(R5-Pad2)")) (pad 13 smd rect (at 3.57378 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 63 "Net-(U2-Pad13)")) (pad 14 smd rect (at 4.22402 3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 64 "Net-(U2-Pad14)")) (pad 15 smd rect (at 4.22402 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 16 "Net-(P1-Pad3)")) (pad 16 smd rect (at 3.57378 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 15 "Net-(P1-Pad2)")) (pad 17 smd rect (at 2.92608 -3.59918 180) (size 0.4064 1.651) (layers F.Cu F.Paste F.Mask) (net 67 +3V3)) ) (module Mounting_Holes:MountingHole_3-5mm (layer F.Cu) (tedit 55FFBC17) (tstamp 560023CC) (at 163.25 143.95) (descr "Mounting hole, Befestigungsbohrung, 3,5mm, No Annular, Kein Restring,") (tags "Mounting hole, Befestigungsbohrung, 3,5mm, No Annular, Kein Restring,") (fp_text reference REF** (at 0 -4.50088) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MountingHole_3-5mm (at 0 5.00126) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 0 0) (end 3.5 0) (layer Cmts.User) (width 0.381)) (pad 1 thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers)) ) (module footprints:microsd_socket (layer F.Cu) (tedit 564C537C) (tstamp 564C5BA3) (at 149.62952 46.20048 180) (descr "MicroSD Card socket") (path /564C4A57) (fp_text reference J1 (at 6.76 4.1 180) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_text value USDCARD (at 6.99 -13.79 180) (layer F.SilkS) (effects (font (thickness 0.3048))) ) (fp_line (start 2.37 2.09) (end 11.16 2.09) (layer F.SilkS) (width 0.381)) (fp_line (start 2.35818 2.09968) (end 2.05846 2.501) (layer F.SilkS) (width 0.381)) (fp_line (start 11.459 2.501) (end 13.9609 2.501) (layer F.SilkS) (width 0.381)) (fp_line (start 2.061 2.501) (end -0.2609 2.501) (layer F.SilkS) (width 0.381)) (fp_line (start 11.459 2.501) (end 11.15928 2.09968) (layer F.SilkS) (width 0.381)) (fp_line (start 13.9609 2.5) (end 13.9609 -12) (layer F.SilkS) (width 0.381)) (fp_line (start 13.9609 -12) (end -0.2609 -12) (layer F.SilkS) (width 0.381)) (fp_line (start -0.2609 -12) (end -0.2609 2.5) (layer F.SilkS) (width 0.381)) (pad 1 smd rect (at 10.08 -2.6 180) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (net 10 "Net-(J1-Pad1)") (clearance 0.20066)) (pad 2 smd rect (at 8.98 -2.6 180) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (net 11 "Net-(J1-Pad2)") (clearance 0.20066)) (pad 3 smd rect (at 7.88 -2.6 180) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (net 68 "Net-(J1-Pad3)") (clearance 0.20066)) (pad 4 smd rect (at 6.78 -2.6 180) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (net 69 /USD_VDD) (clearance 0.20066)) (pad 5 smd rect (at 5.68 -2.6 180) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (net 12 "Net-(J1-Pad5)") (clearance 0.20066)) (pad 6 smd rect (at 4.58 -2.6 180) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (net 2 GND) (clearance 0.20066)) (pad 7 smd rect (at 3.48 -2.6 180) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (net 13 "Net-(J1-Pad7)") (clearance 0.20066)) (pad 8 smd rect (at 2.38 -2.6 180) (size 0.8 1.5) (layers F.Cu F.Paste F.Mask) (net 14 "Net-(J1-Pad8)") (clearance 0.20066)) (pad S smd rect (at 13.75 0 180) (size 1.45 2) (layers F.Cu F.Paste F.Mask)) (pad S smd rect (at 0 -8.3 180) (size 1.45 2) (layers F.Cu F.Paste F.Mask)) (pad S smd rect (at 0 0 180) (size 1.45 2) (layers F.Cu F.Paste F.Mask)) (pad S smd rect (at 13.75 -8.3 180) (size 1.45 2) (layers F.Cu F.Paste F.Mask) (clearance 0.20066)) ) (module TO_SOT_Packages_SMD:SOT-23 (layer F.Cu) (tedit 553634F8) (tstamp 56507528) (at 131.19952 37.40048) (descr "SOT-23, Standard") (tags SOT-23) (path /5650BBA3) (attr smd) (fp_text reference Q5 (at 0 -2.25) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 2N7002 (at 0 2.3) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.65 -1.6) (end 1.65 -1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.65 -1.6) (end 1.65 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.65 1.6) (end -1.65 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.65 1.6) (end -1.65 -1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.29916 -0.65024) (end 1.2509 -0.65024) (layer F.SilkS) (width 0.15)) (fp_line (start -1.49982 0.0508) (end -1.49982 -0.65024) (layer F.SilkS) (width 0.15)) (fp_line (start -1.49982 -0.65024) (end -1.2509 -0.65024) (layer F.SilkS) (width 0.15)) (fp_line (start 1.29916 -0.65024) (end 1.49982 -0.65024) (layer F.SilkS) (width 0.15)) (fp_line (start 1.49982 -0.65024) (end 1.49982 0.0508) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -0.95 1.00076) (size 0.8001 0.8001) (layers F.Cu F.Paste F.Mask) (net 48 /SOCKET_SEL)) (pad 2 smd rect (at 0.95 1.00076) (size 0.8001 0.8001) (layers F.Cu F.Paste F.Mask) (net 47 "Net-(Q3-Pad4)")) (pad 3 smd rect (at 0 -0.99822) (size 0.8001 0.8001) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module TO_SOT_Packages_SMD:SOT-23 (layer F.Cu) (tedit 553634F8) (tstamp 56507538) (at 154.09952 37.3987) (descr "SOT-23, Standard") (tags SOT-23) (path /5650C4BC) (attr smd) (fp_text reference Q6 (at 0 -2.25) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 2N7002 (at 0 2.3) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.65 -1.6) (end 1.65 -1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.65 -1.6) (end 1.65 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.65 1.6) (end -1.65 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.65 1.6) (end -1.65 -1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.29916 -0.65024) (end 1.2509 -0.65024) (layer F.SilkS) (width 0.15)) (fp_line (start -1.49982 0.0508) (end -1.49982 -0.65024) (layer F.SilkS) (width 0.15)) (fp_line (start -1.49982 -0.65024) (end -1.2509 -0.65024) (layer F.SilkS) (width 0.15)) (fp_line (start 1.29916 -0.65024) (end 1.49982 -0.65024) (layer F.SilkS) (width 0.15)) (fp_line (start 1.49982 -0.65024) (end 1.49982 0.0508) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -0.95 1.00076) (size 0.8001 0.8001) (layers F.Cu F.Paste F.Mask) (net 71 "Net-(Q6-Pad1)")) (pad 2 smd rect (at 0.95 1.00076) (size 0.8001 0.8001) (layers F.Cu F.Paste F.Mask) (net 70 "Net-(Q4-Pad4)")) (pad 3 smd rect (at 0 -0.99822) (size 0.8001 0.8001) (layers F.Cu F.Paste F.Mask) (net 2 GND)) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 54189DEE) (tstamp 56507544) (at 131.19952 40.40048) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /56502CC1) (attr smd) (fp_text reference R9 (at 3.5 0.1) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 10K (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 38 /VDD_TS)) (pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 47 "Net-(Q3-Pad4)")) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 54189DEE) (tstamp 56507550) (at 154.09952 40.40048) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /56503BE6) (attr smd) (fp_text reference R10 (at 0 -2.1) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 10K (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 31 /VDD_DUT)) (pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 70 "Net-(Q4-Pad4)")) ) (module footprints:msoic-8 (layer F.Cu) (tedit 5672F721) (tstamp 56507999) (at 124.49952 78.00048) (descr MSOIC-8) (path /56520582) (fp_text reference Q7 (at -0.1 3.7) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value IRF7606PBF (at 0 0.29972) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 -1.4986) (end 0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 -1.4986) (end -0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 -1.4986) (end -0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 -1.4986) (end 0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 1.4986) (end 0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 1.4986) (end 0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 1.4986) (end -0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 1.4986) (end -0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -0.97536 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 18 "Net-(P2-Pad1)")) (pad 2 smd rect (at -0.32512 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 18 "Net-(P2-Pad1)")) (pad 3 smd rect (at 0.32512 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 18 "Net-(P2-Pad1)")) (pad 4 smd rect (at 0.97536 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 52 /USB_SEL)) (pad 5 smd rect (at 0.97536 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 72 "Net-(P3-Pad1)")) (pad 6 smd rect (at 0.32512 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 72 "Net-(P3-Pad1)")) (pad 7 smd rect (at -0.32512 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 72 "Net-(P3-Pad1)")) (pad 8 smd rect (at -0.97536 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 72 "Net-(P3-Pad1)")) ) (module footprints:msoic-8 (layer F.Cu) (tedit 5672F713) (tstamp 565079B4) (at 121.09952 78.00048) (descr MSOIC-8) (path /56520E3D) (fp_text reference Q8 (at -0.1 3.7) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value IRF7606PBF (at 0 0.29972) (layer F.SilkS) (effects (font (size 0.24892 0.24892) (thickness 0.0508))) ) (fp_circle (center -0.9 0.9) (end -1 0.9) (layer F.SilkS) (width 0.3)) (fp_circle (center -0.9 0.9) (end -1.1 0.9) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 -1.4986) (end 0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 -1.4986) (end -0.3302 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 -1.4986) (end -0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 -1.4986) (end 0.9652 -2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.9652 1.4986) (end 0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start 0.3302 1.4986) (end 0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.9652 1.4986) (end -0.9652 2.413) (layer F.SilkS) (width 0.127)) (fp_line (start -0.3302 1.4986) (end -0.3302 2.413) (layer F.SilkS) (width 0.127)) (fp_circle (center -0.89916 0.9017) (end -1.09982 1.09982) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 -1.50114) (end -1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 -1.50114) (end -1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start -1.50114 1.50114) (end 1.50114 1.50114) (layer F.SilkS) (width 0.127)) (fp_line (start 1.50114 1.50114) (end 1.50114 -1.50114) (layer F.SilkS) (width 0.127)) (pad 1 smd rect (at -0.97536 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 18 "Net-(P2-Pad1)")) (pad 2 smd rect (at -0.32512 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 18 "Net-(P2-Pad1)")) (pad 3 smd rect (at 0.32512 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 18 "Net-(P2-Pad1)")) (pad 4 smd rect (at 0.97536 2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 74 "Net-(Q8-Pad4)")) (pad 5 smd rect (at 0.97536 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 73 "Net-(P4-Pad1)")) (pad 6 smd rect (at 0.32512 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 73 "Net-(P4-Pad1)")) (pad 7 smd rect (at -0.32512 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 73 "Net-(P4-Pad1)")) (pad 8 smd rect (at -0.97536 -2.30124) (size 0.40894 1.02108) (layers F.Cu F.Paste F.Mask) (net 73 "Net-(P4-Pad1)")) ) (module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 54189DEE) (tstamp 565079C0) (at 135.79952 92.30048) (descr "Resistor SMD 0805, hand soldering") (tags "resistor 0805") (path /56534182) (attr smd) (fp_text reference R11 (at 3.9 0) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 10K (at 0 2.1) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05)) (fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15)) (fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 6 VDD)) (pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask) (net 52 /USB_SEL)) ) (module TO_SOT_Packages_SMD:SOT-23-5 (layer F.Cu) (tedit 55360473) (tstamp 565079D2) (at 128.09952 84.05048 180) (descr "5-pin SOT23 package") (tags SOT-23-5) (path /565228E4) (attr smd) (fp_text reference U5 (at 2.8 -0.05 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 74AHC1G14 (at -0.05 2.35 180) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.8 -1.6) (end 1.8 -1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.8 -1.6) (end 1.8 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.8 1.6) (end -1.8 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.8 1.6) (end -1.8 -1.6) (layer F.CrtYd) (width 0.05)) (fp_circle (center -0.3 -1.7) (end -0.2 -1.7) (layer F.SilkS) (width 0.15)) (fp_line (start 0.25 -1.45) (end -0.25 -1.45) (layer F.SilkS) (width 0.15)) (fp_line (start 0.25 1.45) (end 0.25 -1.45) (layer F.SilkS) (width 0.15)) (fp_line (start -0.25 1.45) (end 0.25 1.45) (layer F.SilkS) (width 0.15)) (fp_line (start -0.25 -1.45) (end -0.25 1.45) (layer F.SilkS) (width 0.15)) (pad 1 smd rect (at -1.1 -0.95 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at -1.1 0 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) (net 52 /USB_SEL)) (pad 3 smd rect (at -1.1 0.95 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) (net 2 GND)) (pad 4 smd rect (at 1.1 0.95 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) (net 74 "Net-(Q8-Pad4)")) (pad 5 smd rect (at 1.1 -0.95 180) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) (net 18 "Net-(P2-Pad1)")) ) (gr_text sd-mux.kicad_pcb (at 196.3 185.65) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (gr_text 1/1 (at 188.05 183) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (dimension 114 (width 0.3) (layer Dwgs.User) (gr_text "114.000 mm" (at 111.44952 90.60048 270) (layer Dwgs.User) (tstamp 59437F3C) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 118.19952 147.60048) (xy 110.09952 147.60048))) (feature2 (pts (xy 118.19952 33.60048) (xy 110.09952 33.60048))) (crossbar (pts (xy 112.79952 33.60048) (xy 112.79952 147.60048))) (arrow1a (pts (xy 112.79952 147.60048) (xy 112.213099 146.473976))) (arrow1b (pts (xy 112.79952 147.60048) (xy 113.385941 146.473976))) (arrow2a (pts (xy 112.79952 33.60048) (xy 112.213099 34.726984))) (arrow2b (pts (xy 112.79952 33.60048) (xy 113.385941 34.726984))) ) (dimension 50 (width 0.3) (layer Dwgs.User) (gr_text "50.000 mm" (at 143.19952 154.250479) (layer Dwgs.User) (tstamp 59437F3D) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 168.19952 147.60048) (xy 168.19952 155.600479))) (feature2 (pts (xy 118.19952 147.60048) (xy 118.19952 155.600479))) (crossbar (pts (xy 118.19952 152.900479) (xy 168.19952 152.900479))) (arrow1a (pts (xy 168.19952 152.900479) (xy 167.073016 153.4869))) (arrow1b (pts (xy 168.19952 152.900479) (xy 167.073016 152.314058))) (arrow2a (pts (xy 118.19952 152.900479) (xy 119.326024 153.4869))) (arrow2b (pts (xy 118.19952 152.900479) (xy 119.326024 152.314058))) ) (gr_text "sd-mux v2" (at 134.84 141.36) (layer B.Cu) (tstamp 56424921) (effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror)) ) (gr_text 2016-02-26 (at 135 144.8) (layer B.Cu) (tstamp 56424920) (effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror)) ) (gr_text 2016-02-26 (at 135.05 144.74) (layer F.Cu) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (gr_text "sd-mux v2" (at 134.89 141.3) (layer F.Cu) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (target plus (at 145.75 144.75) (size 5) (width 0.15) (layer Edge.Cuts)) (gr_line (start 168.19952 147.60048) (end 118.19952 147.60048) (angle 90) (layer Edge.Cuts) (width 0.15)) (gr_line (start 168.19952 33.60048) (end 168.19952 147.60048) (angle 90) (layer Edge.Cuts) (width 0.15)) (gr_line (start 118.19952 33.60048) (end 168.19952 33.60048) (angle 90) (layer Edge.Cuts) (width 0.15)) (gr_line (start 118.19952 147.60048) (end 118.19952 33.60048) (angle 90) (layer Edge.Cuts) (width 0.15)) (segment (start 120.45 103.7997) (end 123.2497 103.7997) (width 0.508) (layer F.Cu) (net 1)) (segment (start 124.45 105) (end 126.95 105) (width 0.508) (layer F.Cu) (net 1) (tstamp 56001C8A)) (segment (start 123.2497 103.7997) (end 124.45 105) (width 0.508) (layer F.Cu) (net 1) (tstamp 56001C89)) (segment (start 126.95 105) (end 127.05 105.1) (width 0.508) (layer F.Cu) (net 1) (tstamp 56001C8B)) (segment (start 127.05 105.1) (end 129.05 105.1) (width 0.508) (layer F.Cu) (net 1) (tstamp 56001C8C)) (segment (start 120.45 95.9003) (end 120.45 98.65112) (width 0.508) (layer F.Cu) (net 1)) (segment (start 120.45 98.65112) (end 120.45 101.04888) (width 0.508) (layer F.Cu) (net 1) (tstamp 56001C80)) (segment (start 120.45 101.04888) (end 120.45 103.7997) (width 0.508) (layer F.Cu) (net 1) (tstamp 56001C81)) (segment (start 149.22468 95.53993) (end 150.91007 95.53993) (width 0.508) (layer F.Cu) (net 2)) (segment (start 150.91007 95.53993) (end 150.95 95.5) (width 0.508) (layer F.Cu) (net 2)) (via (at 150.95 95.5) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 137.80028 89.75172) (end 138.39828 89.75172) (width 0.254) (layer F.Cu) (net 2)) (segment (start 138.39828 89.75172) (end 138.95 89.2) (width 0.254) (layer F.Cu) (net 2)) (via (at 138.95 89.2) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 136.29914 85.14924) (end 136.29914 83.55086) (width 0.254) (layer F.Cu) (net 2)) (segment (start 136.29914 83.55086) (end 136.55 83.3) (width 0.254) (layer F.Cu) (net 2)) (via (at 136.55 83.3) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 129.19952 83.10048) (end 130.64952 83.10048) (width 0.508) (layer F.Cu) (net 2)) (segment (start 130.64952 83.10048) (end 131.65 82.1) (width 0.508) (layer F.Cu) (net 2)) (segment (start 131.65 81) (end 131.65 82.1) (width 0.508) (layer B.Cu) (net 2)) (via (at 131.65 82.1) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 131.65 79.45096) (end 131.65 81) (width 0.508) (layer F.Cu) (net 2)) (via (at 131.65 81) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 160.65 63.9) (end 161.85 63.9) (width 0.508) (layer F.Cu) (net 2)) (via (at 161.85 63.9) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 159.35 63.9) (end 160.65 63.9) (width 0.508) (layer B.Cu) (net 2)) (via (at 160.65 63.9) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 154.61068 63.94988) (end 159.30012 63.94988) (width 0.508) (layer F.Cu) (net 2)) (segment (start 159.30012 63.94988) (end 159.35 63.9) (width 0.508) (layer F.Cu) (net 2)) (via (at 159.35 63.9) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 149.05 37) (end 147.85 37) (width 0.508) (layer F.Cu) (net 2)) (via (at 147.85 37) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 150.45 37) (end 149.05 37) (width 0.508) (layer B.Cu) (net 2)) (via (at 149.05 37) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 154.09952 36.40048) (end 151.04952 36.40048) (width 0.508) (layer F.Cu) (net 2)) (segment (start 151.04952 36.40048) (end 150.45 37) (width 0.508) (layer F.Cu) (net 2)) (via (at 150.45 37) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 161.93 48.93) (end 159.58 48.93) (width 0.508) (layer F.Cu) (net 2)) (segment (start 159.58 48.93) (end 159.55 48.9) (width 0.508) (layer F.Cu) (net 2)) (via (at 159.55 48.9) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 124.42 51.47) (end 126.72 51.47) (width 0.508) (layer F.Cu) (net 2)) (segment (start 126.72 51.47) (end 126.75 51.5) (width 0.508) (layer F.Cu) (net 2)) (via (at 126.75 51.5) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (via (at 145.374033 61.214422) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 145.159611 61) (end 145.374033 61.214422) (width 0.4) (layer F.Cu) (net 2)) (segment (start 143.55 61) (end 145.159611 61) (width 0.4) (layer F.Cu) (net 2)) (segment (start 149.22468 95.53993) (end 149.22468 96.68897) (width 0.254) (layer F.Cu) (net 2)) (segment (start 149.22468 96.68897) (end 149.07468 96.83897) (width 0.254) (layer F.Cu) (net 2) (tstamp 5600268F)) (segment (start 149.07468 96.83897) (end 149.07468 97.78993) (width 0.254) (layer F.Cu) (net 2) (tstamp 56002690)) (segment (start 143.27536 64.20092) (end 143.27536 65.91536) (width 0.4) (layer F.Cu) (net 2)) (segment (start 143.27536 65.91536) (end 143.28 65.92) (width 0.254) (layer F.Cu) (net 2)) (via (at 143.28 65.92) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 143.27536 69.79908) (end 143.27536 71.73536) (width 0.254) (layer F.Cu) (net 2)) (segment (start 143.27536 71.73536) (end 143.62 72.08) (width 0.254) (layer F.Cu) (net 2)) (via (at 143.62 72.08) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 151.09966 123.05) (end 151.09966 122.90062) (width 0.254) (layer F.Cu) (net 2)) (segment (start 151.09966 122.90062) (end 150.09952 121.90048) (width 0.4) (layer F.Cu) (net 2) (tstamp 560026AC)) (segment (start 150.09952 121.90048) (end 150.09952 120.80048) (width 0.4) (layer F.Cu) (net 2) (tstamp 560026AD)) (via (at 150.09952 120.80048) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 135.77416 102.44918) (end 135.77416 100.72512) (width 0.254) (layer F.Cu) (net 2)) (via (at 135.69952 100.65048) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 135.77416 100.72512) (end 135.69952 100.65048) (width 0.254) (layer F.Cu) (net 2) (tstamp 560026A6)) (via (at 140.99952 104.25048) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 140.97608 102.44918) (end 140.97608 104.22392) (width 0.254) (layer F.Cu) (net 2) (tstamp 56002608)) (segment (start 140.97608 104.22704) (end 140.97608 104.22392) (width 0.254) (layer F.Cu) (net 2) (tstamp 560026A0)) (segment (start 140.97608 104.22704) (end 140.99952 104.25048) (width 0.254) (layer F.Cu) (net 2) (tstamp 5600269F)) (segment (start 137.72488 102.44918) (end 137.72488 101.12512) (width 0.254) (layer F.Cu) (net 2)) (via (at 138.19952 100.65048) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 137.72488 101.12512) (end 138.19952 100.65048) (width 0.254) (layer F.Cu) (net 2) (tstamp 56002696)) (segment (start 140.32584 102.44918) (end 140.97608 102.44918) (width 0.254) (layer F.Cu) (net 2)) (segment (start 138.37512 95.25082) (end 138.39952 95.22642) (width 0.254) (layer F.Cu) (net 2)) (via (at 124.49952 88.95048) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 2)) (segment (start 123.12462 101.15048) (end 124.64952 101.15048) (width 0.254) (layer F.Cu) (net 2)) (segment (start 124.64952 101.15048) (end 124.65 101.15) (width 0.254) (layer F.Cu) (net 2) (tstamp 560025E9)) (segment (start 123.12462 88.95048) (end 124.49952 88.95048) (width 0.254) (layer F.Cu) (net 2)) (segment (start 124.49952 88.95048) (end 124.5 88.95) (width 0.254) (layer F.Cu) (net 2) (tstamp 560025E4)) (segment (start 120.45 83.7003) (end 120.45 86.45112) (width 0.508) (layer F.Cu) (net 3)) (segment (start 120.45 86.45112) (end 120.45 88.84888) (width 0.508) (layer F.Cu) (net 3) (tstamp 56001C7C)) (segment (start 120.45 88.84888) (end 120.45 91.5997) (width 0.508) (layer F.Cu) (net 3) (tstamp 56001C7D)) (segment (start 120.45 91.5997) (end 126.7497 91.5997) (width 0.508) (layer F.Cu) (net 3)) (segment (start 126.7497 91.5997) (end 127.05 91.9) (width 0.508) (layer F.Cu) (net 3) (tstamp 56001C72)) (segment (start 127.05 91.9) (end 129.05 91.9) (width 0.508) (layer F.Cu) (net 3) (tstamp 56001C73)) (segment (start 157.32086 74.02098) (end 157.32086 77.72182) (width 0.508) (layer F.Cu) (net 4)) (segment (start 157.17086 77.87182) (end 157.24904 77.95) (width 0.508) (layer F.Cu) (net 4)) (segment (start 157.12002 77.82098) (end 157.24904 77.95) (width 0.508) (layer F.Cu) (net 4) (tstamp 56001C69)) (segment (start 157.24904 77.95) (end 157.24904 80.05) (width 0.508) (layer F.Cu) (net 4) (tstamp 56001C6A)) (segment (start 157.24904 80.05) (end 157.14904 80.15) (width 0.508) (layer F.Cu) (net 4) (tstamp 56001C6B)) (segment (start 157.32086 60.87902) (end 157.32086 74.02098) (width 0.508) (layer B.Cu) (net 4)) (segment (start 157.24904 80.05) (end 157.14904 80.15) (width 0.508) (layer F.Cu) (net 4) (tstamp 56001C64)) (segment (start 129.02914 73.92098) (end 129.02914 76.793702) (width 0.508) (layer F.Cu) (net 5)) (segment (start 129.02914 76.793702) (end 129.05 76.814562) (width 0.254) (layer F.Cu) (net 5)) (segment (start 129.05 76.814562) (end 129.05 77.35096) (width 0.254) (layer F.Cu) (net 5)) (segment (start 129.02914 60.77902) (end 129.02914 73.92098) (width 0.508) (layer B.Cu) (net 5)) (segment (start 129.07902 77.32194) (end 128.95 77.45096) (width 0.508) (layer F.Cu) (net 5) (tstamp 56001C45)) (segment (start 128.95 77.45096) (end 128.95 79.45096) (width 0.508) (layer F.Cu) (net 5) (tstamp 56001C46)) (segment (start 132.15 92.30048) (end 134.44952 92.30048) (width 0.508) (layer F.Cu) (net 6)) (segment (start 135.55 83.92148) (end 135.55 81.7) (width 0.254) (layer F.Cu) (net 6)) (segment (start 135.79876 84.17024) (end 135.55 83.92148) (width 0.254) (layer F.Cu) (net 6)) (segment (start 135.79876 85.14924) (end 135.79876 84.17024) (width 0.254) (layer F.Cu) (net 6)) (segment (start 132.050004 90.7) (end 132.050004 85.199996) (width 0.508) (layer B.Cu) (net 6)) (segment (start 135.095001 82.154999) (end 135.55 81.7) (width 0.508) (layer B.Cu) (net 6)) (via (at 135.55 81.7) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 6)) (segment (start 132.050004 85.199996) (end 135.095001 82.154999) (width 0.508) (layer B.Cu) (net 6)) (segment (start 132.05 92.20048) (end 132.050004 92.200476) (width 0.508) (layer F.Cu) (net 6)) (segment (start 132.050004 91.343467) (end 132.050004 90.7) (width 0.508) (layer F.Cu) (net 6)) (segment (start 132.050004 92.200476) (end 132.050004 91.343467) (width 0.508) (layer F.Cu) (net 6)) (via (at 132.050004 90.7) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 6)) (segment (start 132.05 92.20048) (end 132.05 92.3) (width 0.508) (layer F.Cu) (net 6)) (segment (start 132.05 92.3) (end 130.95 93.4) (width 0.508) (layer F.Cu) (net 6)) (segment (start 130.95 93.4) (end 127.45 93.4) (width 0.508) (layer F.Cu) (net 6)) (segment (start 127.45 93.4) (end 126.975 93.875) (width 0.508) (layer F.Cu) (net 6)) (segment (start 126.975 93.875) (end 126.975 95.375) (width 0.508) (layer F.Cu) (net 6)) (segment (start 132.05 92.20048) (end 132.15 92.30048) (width 0.508) (layer F.Cu) (net 6)) (segment (start 137.1 107.35) (end 137.1 108.483) (width 0.508) (layer F.Cu) (net 6)) (segment (start 137.1 108.483) (end 146.517 117.9) (width 0.508) (layer F.Cu) (net 6)) (segment (start 146.517 117.9) (end 147.95 117.9) (width 0.508) (layer F.Cu) (net 6)) (segment (start 152.9 117.2) (end 152.9 116.37364) (width 0.4) (layer F.Cu) (net 6)) (segment (start 152.9 116.37364) (end 152.87512 116.34876) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001DBE)) (segment (start 147.97512 116.34876) (end 147.97512 117.9) (width 0.4) (layer F.Cu) (net 6)) (segment (start 147.97512 117.9) (end 147.95 117.9) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001DB6)) (segment (start 147.95 117.9) (end 152.2 117.9) (width 0.508) (layer F.Cu) (net 6) (tstamp 56001DB9)) (segment (start 152.2 117.9) (end 152.9 117.2) (width 0.508) (layer F.Cu) (net 6) (tstamp 56001DA6)) (segment (start 152.9 117.2) (end 152.87512 117.22488) (width 0.508) (layer F.Cu) (net 6) (tstamp 56001DBC)) (segment (start 152.22488 116.34876) (end 152.87512 116.34876) (width 0.4) (layer F.Cu) (net 6)) (segment (start 152.87512 116.34876) (end 153.52536 116.34876) (width 0.4) (layer F.Cu) (net 6) (tstamp 56001D9B)) (segment (start 153.52536 116.34876) (end 153.55 116.32412) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D9C)) (segment (start 153.55 116.32412) (end 153.55 115.7) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D9D)) (segment (start 153.55 115.7) (end 153.9 115.35) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D9E)) (segment (start 153.9 115.35) (end 153.9 114.35) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D9F)) (segment (start 147.32488 116.34876) (end 147.97512 116.34876) (width 0.4) (layer F.Cu) (net 6)) (segment (start 147.97512 116.34876) (end 148.62536 116.34876) (width 0.4) (layer F.Cu) (net 6) (tstamp 56001D94)) (segment (start 148.62536 116.34876) (end 148.65 116.32412) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D95)) (segment (start 148.65 116.32412) (end 148.65 115.6) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D96)) (segment (start 148.65 115.6) (end 149 115.25) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D97)) (segment (start 149 115.25) (end 149 114.35) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D98)) (segment (start 137.07464 102.44918) (end 137.07464 103.47464) (width 0.254) (layer F.Cu) (net 6)) (segment (start 137.1 103.5) (end 137.1 105.25) (width 0.508) (layer F.Cu) (net 6)) (segment (start 137.07464 103.47464) (end 137.1 103.5) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001D16)) (segment (start 137.1 107.35) (end 137.1 105.25) (width 0.508) (layer F.Cu) (net 6)) (segment (start 137.05 101.05) (end 137.05 101.4) (width 0.508) (layer F.Cu) (net 6)) (segment (start 137.05 101.4) (end 137.05 101.35072) (width 0.508) (layer F.Cu) (net 6) (tstamp 56001D0F)) (segment (start 137.05 98.075) (end 137.05 101.05) (width 0.508) (layer F.Cu) (net 6)) (segment (start 137.07464 101.37536) (end 137.07464 102.44918) (width 0.254) (layer F.Cu) (net 6)) (segment (start 140.32584 95.25082) (end 140.32584 96.22416) (width 0.254) (layer F.Cu) (net 6)) (segment (start 137.05 98.075) (end 129.075 98.075) (width 0.508) (layer F.Cu) (net 6) (tstamp 56001CF0)) (segment (start 140.3 96.25) (end 140.3 96.95) (width 0.508) (layer F.Cu) (net 6)) (segment (start 140.32584 96.22416) (end 140.3 96.25) (width 0.254) (layer F.Cu) (net 6) (tstamp 56001CE4)) (segment (start 127.125 95.825) (end 129.225 97.925) (width 0.508) (layer F.Cu) (net 6) (tstamp 56001C90)) (segment (start 139.175 98.075) (end 140.3 96.95) (width 0.508) (layer F.Cu) (net 6)) (segment (start 139.175 98.075) (end 137.05 98.075) (width 0.508) (layer F.Cu) (net 6)) (segment (start 149.155001 124.649978) (end 149.61 124.194979) (width 0.508) (layer B.Cu) (net 7)) (segment (start 149.10034 124.14977) (end 149.145549 124.194979) (width 0.4) (layer F.Cu) (net 7)) (segment (start 149.10034 123.05) (end 149.10034 124.14977) (width 0.4) (layer F.Cu) (net 7)) (segment (start 150.69952 136.25) (end 148.995519 134.545999) (width 0.508) (layer B.Cu) (net 7)) (segment (start 149.145549 124.194979) (end 149.61 124.194979) (width 0.4) (layer F.Cu) (net 7)) (via (at 149.61 124.194979) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 7)) (segment (start 148.995519 134.545999) (end 148.995519 124.80946) (width 0.508) (layer B.Cu) (net 7)) (segment (start 148.995519 124.80946) (end 149.155001 124.649978) (width 0.508) (layer B.Cu) (net 7)) (segment (start 149.10034 123.05) (end 149.10034 122.25034) (width 0.4) (layer F.Cu) (net 7)) (segment (start 148.62536 121.77536) (end 148.62536 120.95124) (width 0.4) (layer F.Cu) (net 7) (tstamp 56001DC7)) (segment (start 149.10034 122.25034) (end 148.62536 121.77536) (width 0.4) (layer F.Cu) (net 7) (tstamp 56001DC6)) (segment (start 146.67464 120.95124) (end 147.32488 120.95124) (width 0.4) (layer F.Cu) (net 7)) (segment (start 147.32488 120.95124) (end 147.97512 120.95124) (width 0.4) (layer F.Cu) (net 7) (tstamp 56001DC2)) (segment (start 147.97512 120.95124) (end 148.62536 120.95124) (width 0.4) (layer F.Cu) (net 7) (tstamp 56001DC3)) (segment (start 154.045549 124.194979) (end 154.5 124.194979) (width 0.4) (layer F.Cu) (net 8)) (segment (start 154.045001 124.649978) (end 154.5 124.194979) (width 0.508) (layer B.Cu) (net 8)) (segment (start 154.00034 124.14977) (end 154.045549 124.194979) (width 0.4) (layer F.Cu) (net 8)) (segment (start 155.68952 136.31) (end 153.995519 134.615999) (width 0.508) (layer B.Cu) (net 8)) (segment (start 153.995519 124.69946) (end 154.045001 124.649978) (width 0.508) (layer B.Cu) (net 8)) (segment (start 153.995519 134.615999) (end 153.995519 124.69946) (width 0.508) (layer B.Cu) (net 8)) (segment (start 154.00034 123.05) (end 154.00034 124.14977) (width 0.4) (layer F.Cu) (net 8)) (via (at 154.5 124.194979) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 8)) (segment (start 151.57464 120.95124) (end 152.22488 120.95124) (width 0.4) (layer F.Cu) (net 8)) (segment (start 152.22488 120.95124) (end 152.87512 120.95124) (width 0.4) (layer F.Cu) (net 8) (tstamp 56001DCA)) (segment (start 152.87512 120.95124) (end 153.52536 120.95124) (width 0.4) (layer F.Cu) (net 8) (tstamp 56001DCB)) (segment (start 153.52536 120.95124) (end 153.55 120.97588) (width 0.254) (layer F.Cu) (net 8) (tstamp 56001DCC)) (segment (start 153.55 120.97588) (end 153.55 121.7) (width 0.4) (layer F.Cu) (net 8) (tstamp 56001DCD)) (segment (start 153.55 121.7) (end 154.00034 122.15034) (width 0.4) (layer F.Cu) (net 8) (tstamp 56001DCE)) (segment (start 154.00034 122.15034) (end 154.00034 123.05) (width 0.4) (layer F.Cu) (net 8) (tstamp 56001DCF)) (segment (start 123.12462 98.54952) (end 124.25048 98.54952) (width 0.254) (layer F.Cu) (net 9)) (segment (start 124.725 98.075) (end 126.975 98.075) (width 0.508) (layer F.Cu) (net 9) (tstamp 56001C98)) (segment (start 124.25048 98.54952) (end 124.725 98.075) (width 0.508) (layer F.Cu) (net 9) (tstamp 56001C97)) (segment (start 138.72622 64.20092) (end 138.72622 53.82378) (width 0.254) (layer F.Cu) (net 10)) (segment (start 139.54952 53.00048) (end 139.54952 48.80048) (width 0.254) (layer F.Cu) (net 10)) (segment (start 138.72622 53.82378) (end 139.54952 53.00048) (width 0.254) (layer F.Cu) (net 10)) (segment (start 140.02416 63.21159) (end 140.02416 62.92512) (width 0.254) (layer F.Cu) (net 11)) (segment (start 140.02416 62.92512) (end 139.35 62.25096) (width 0.254) (layer F.Cu) (net 11)) (segment (start 139.35 62.25096) (end 139.35 54.3) (width 0.254) (layer F.Cu) (net 11)) (segment (start 139.35 54.3) (end 140.64952 53.00048) (width 0.254) (layer F.Cu) (net 11)) (segment (start 140.64952 53.00048) (end 140.64952 48.80048) (width 0.254) (layer F.Cu) (net 11)) (segment (start 140.02416 63.21159) (end 140.02416 63.12512) (width 0.254) (layer F.Cu) (net 11)) (segment (start 140.02416 64.20092) (end 140.02416 63.21159) (width 0.254) (layer F.Cu) (net 11)) (segment (start 141.97488 64.20092) (end 141.97488 62.47512) (width 0.254) (layer F.Cu) (net 12)) (segment (start 141.97488 62.47512) (end 142.3 62.15) (width 0.254) (layer F.Cu) (net 12)) (segment (start 142.3 62.15) (end 142.3 59.95) (width 0.254) (layer F.Cu) (net 12)) (segment (start 142.3 59.95) (end 143.94952 58.30048) (width 0.254) (layer F.Cu) (net 12)) (segment (start 143.94952 58.30048) (end 143.94952 48.80048) (width 0.254) (layer F.Cu) (net 12)) (segment (start 142.62512 64.20092) (end 142.62512 63.21159) (width 0.254) (layer F.Cu) (net 13)) (segment (start 142.62512 63.21159) (end 143.779396 62.057314) (width 0.254) (layer F.Cu) (net 13)) (segment (start 143.779396 62.057314) (end 145.35594 62.057314) (width 0.254) (layer F.Cu) (net 13)) (segment (start 145.35594 62.057314) (end 145.885046 62.057314) (width 0.254) (layer F.Cu) (net 13)) (segment (start 146.156035 61.786325) (end 145.885046 62.057314) (width 0.254) (layer F.Cu) (net 13)) (segment (start 146.14952 60.832545) (end 146.156035 60.83906) (width 0.254) (layer F.Cu) (net 13)) (segment (start 146.14952 48.80048) (end 146.14952 60.832545) (width 0.254) (layer F.Cu) (net 13)) (segment (start 146.156035 60.83906) (end 146.156035 61.786325) (width 0.254) (layer F.Cu) (net 13)) (segment (start 145.885046 62.057314) (end 145.89236 62.05) (width 0.254) (layer F.Cu) (net 13)) (segment (start 143.9256 64.20092) (end 143.9256 63.21159) (width 0.254) (layer F.Cu) (net 14)) (segment (start 143.9256 63.21159) (end 144.625866 62.511324) (width 0.254) (layer F.Cu) (net 14)) (segment (start 144.625866 62.511324) (end 146.073103 62.511324) (width 0.254) (layer F.Cu) (net 14)) (segment (start 147.24952 61.334907) (end 147.24952 49.80448) (width 0.254) (layer F.Cu) (net 14)) (segment (start 147.24952 49.80448) (end 147.24952 48.80048) (width 0.254) (layer F.Cu) (net 14)) (segment (start 146.073103 62.511324) (end 147.24952 61.334907) (width 0.254) (layer F.Cu) (net 14)) (segment (start 134.47622 102.44918) (end 134.47622 101.07622) (width 0.254) (layer F.Cu) (net 15)) (segment (start 124.6523 99.2023) (end 123.12462 99.2023) (width 0.254) (layer F.Cu) (net 15) (tstamp 56001C9F)) (segment (start 124.9 99.45) (end 124.6523 99.2023) (width 0.254) (layer F.Cu) (net 15) (tstamp 56001C9E)) (segment (start 132.85 99.45) (end 124.9 99.45) (width 0.254) (layer F.Cu) (net 15) (tstamp 56001C9C)) (segment (start 134.47622 101.07622) (end 132.85 99.45) (width 0.254) (layer F.Cu) (net 15) (tstamp 56001C9B)) (segment (start 133.82598 102.44918) (end 133.82598 101.17598) (width 0.254) (layer F.Cu) (net 16)) (segment (start 124.25 99.85) (end 123.12462 99.85) (width 0.254) (layer F.Cu) (net 16) (tstamp 56001CA8)) (segment (start 124.45 100.05) (end 124.25 99.85) (width 0.254) (layer F.Cu) (net 16) (tstamp 56001CA7)) (segment (start 132.7 100.05) (end 124.45 100.05) (width 0.254) (layer F.Cu) (net 16) (tstamp 56001CA5)) (segment (start 133.82598 101.17598) (end 132.7 100.05) (width 0.254) (layer F.Cu) (net 16) (tstamp 56001CA4)) (segment (start 124.1744 85.00048) (end 124.1744 84.3244) (width 0.35) (layer F.Cu) (net 18)) (segment (start 124.1744 85.77472) (end 124.1744 85.00048) (width 0.35) (layer F.Cu) (net 18)) (segment (start 124.1744 85.00048) (end 126.99952 85.00048) (width 0.254) (layer F.Cu) (net 18)) (segment (start 123.95 78.9) (end 124.1744 79.1244) (width 0.508) (layer F.Cu) (net 18)) (segment (start 124.1744 79.1244) (end 124.1744 80.30172) (width 0.508) (layer F.Cu) (net 18)) (segment (start 121.05 78.9) (end 123.95 78.9) (width 0.508) (layer F.Cu) (net 18)) (segment (start 120.7744 79.1756) (end 121.05 78.9) (width 0.508) (layer F.Cu) (net 18)) (segment (start 120.7744 80.30172) (end 120.7744 79.1756) (width 0.508) (layer F.Cu) (net 18)) (segment (start 123.12462 86.34952) (end 123.5996 86.34952) (width 0.35) (layer F.Cu) (net 18)) (segment (start 123.5996 86.34952) (end 124.1744 85.77472) (width 0.35) (layer F.Cu) (net 18)) (segment (start 124.1744 84.3244) (end 121.65048 81.80048) (width 0.35) (layer F.Cu) (net 18)) (segment (start 121.65048 81.80048) (end 121.15048 81.80048) (width 0.35) (layer F.Cu) (net 18)) (segment (start 121.15048 81.80048) (end 120.7744 81.4244) (width 0.35) (layer F.Cu) (net 18)) (segment (start 120.7744 81.4244) (end 120.7744 80.30172) (width 0.35) (layer F.Cu) (net 18)) (segment (start 124.1744 80.30172) (end 124.816409 80.30172) (width 0.508) (layer F.Cu) (net 18)) (segment (start 123.52416 80.30172) (end 124.1744 80.30172) (width 0.508) (layer F.Cu) (net 18)) (segment (start 120.7744 80.30172) (end 121.416409 80.30172) (width 0.508) (layer F.Cu) (net 18)) (segment (start 120.12416 80.30172) (end 120.7744 80.30172) (width 0.508) (layer F.Cu) (net 18)) (segment (start 127.05 85.05096) (end 126.99952 85.00048) (width 0.508) (layer F.Cu) (net 18)) (segment (start 137.80028 86.29972) (end 137.80028 85.14924) (width 0.254) (layer F.Cu) (net 19)) (segment (start 137.0977 87.0023) (end 137.80028 86.29972) (width 0.254) (layer F.Cu) (net 19)) (segment (start 123.12462 87.0023) (end 137.0977 87.0023) (width 0.254) (layer F.Cu) (net 19)) (segment (start 123.12462 87.65) (end 137 87.65) (width 0.254) (layer F.Cu) (net 20)) (segment (start 137 87.65) (end 137.2999 87.9499) (width 0.254) (layer F.Cu) (net 20)) (segment (start 137.2999 87.9499) (end 137.2999 89.75172) (width 0.254) (layer F.Cu) (net 20)) (segment (start 153.860111 69.201329) (end 154.61068 68.45076) (width 0.254) (layer F.Cu) (net 22)) (segment (start 149.895989 77.511943) (end 149.895989 73.165451) (width 0.254) (layer F.Cu) (net 22)) (segment (start 136.79952 84.25048) (end 140.25 80.8) (width 0.254) (layer F.Cu) (net 22)) (segment (start 136.79952 85.14924) (end 136.79952 84.25048) (width 0.254) (layer F.Cu) (net 22)) (segment (start 140.25 80.8) (end 146.607932 80.8) (width 0.254) (layer F.Cu) (net 22)) (segment (start 146.607932 80.8) (end 149.895989 77.511943) (width 0.254) (layer F.Cu) (net 22)) (segment (start 149.895989 73.165451) (end 153.860111 69.201329) (width 0.254) (layer F.Cu) (net 22)) (segment (start 154.61068 66.44924) (end 155.95 67.78856) (width 0.254) (layer F.Cu) (net 23)) (segment (start 154.15 69.7) (end 150.35 73.5) (width 0.254) (layer F.Cu) (net 23)) (segment (start 136.372141 90.803721) (end 136.29914 90.73072) (width 0.254) (layer F.Cu) (net 23)) (segment (start 155.95 67.78856) (end 155.95 69.1) (width 0.254) (layer F.Cu) (net 23)) (segment (start 155.95 69.1) (end 155.35 69.7) (width 0.254) (layer F.Cu) (net 23)) (segment (start 155.35 69.7) (end 154.15 69.7) (width 0.254) (layer F.Cu) (net 23)) (segment (start 136.29914 90.73072) (end 136.29914 89.75172) (width 0.254) (layer F.Cu) (net 23)) (segment (start 150.35 73.5) (end 150.35 77.7) (width 0.254) (layer F.Cu) (net 23)) (segment (start 140.668989 88.981011) (end 138.846279 90.803721) (width 0.254) (layer F.Cu) (net 23)) (segment (start 150.35 77.7) (end 146.732002 81.317998) (width 0.254) (layer F.Cu) (net 23)) (segment (start 146.732002 81.317998) (end 141.274638 81.317998) (width 0.254) (layer F.Cu) (net 23)) (segment (start 140.668989 81.923647) (end 140.668989 88.981011) (width 0.254) (layer F.Cu) (net 23)) (segment (start 141.274638 81.317998) (end 140.668989 81.923647) (width 0.254) (layer F.Cu) (net 23)) (segment (start 138.846279 90.803721) (end 136.372141 90.803721) (width 0.254) (layer F.Cu) (net 23)) (segment (start 137.2999 85.14924) (end 137.2999 86.12824) (width 0.254) (layer F.Cu) (net 24)) (segment (start 137.2999 86.12824) (end 136.97814 86.45) (width 0.254) (layer F.Cu) (net 24)) (segment (start 136.97814 86.45) (end 134.95 86.45) (width 0.254) (layer F.Cu) (net 24)) (segment (start 134.95 86.45) (end 134.65 86.15) (width 0.254) (layer F.Cu) (net 24)) (segment (start 134.65 86.15) (end 134.65 69.25992) (width 0.254) (layer F.Cu) (net 24)) (segment (start 134.65 69.25992) (end 132.489889 67.099809) (width 0.254) (layer F.Cu) (net 24)) (segment (start 132.489889 67.099809) (end 131.73932 66.34924) (width 0.254) (layer F.Cu) (net 24)) (segment (start 133.8 69.3) (end 133.8 86.05) (width 0.254) (layer F.Cu) (net 25)) (segment (start 131.73932 68.35076) (end 132.85076 68.35076) (width 0.254) (layer F.Cu) (net 25)) (segment (start 132.85076 68.35076) (end 133.8 69.3) (width 0.254) (layer F.Cu) (net 25)) (segment (start 136.79952 88.77272) (end 136.79952 89.75172) (width 0.254) (layer F.Cu) (net 25)) (segment (start 136.4768 88.45) (end 136.79952 88.77272) (width 0.254) (layer F.Cu) (net 25)) (segment (start 133.8 88.45) (end 136.4768 88.45) (width 0.254) (layer F.Cu) (net 25)) (segment (start 133.8 86.05) (end 133.8 88.45) (width 0.254) (layer B.Cu) (net 25)) (via (at 133.8 88.45) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 25)) (via (at 133.8 86.05) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 25)) (segment (start 152.35 58.6) (end 152.35 52.5) (width 0.254) (layer F.Cu) (net 26)) (segment (start 145.22608 64.20092) (end 145.22608 63.21159) (width 0.254) (layer F.Cu) (net 26)) (segment (start 145.22608 63.21159) (end 145.472335 62.965335) (width 0.254) (layer F.Cu) (net 26)) (segment (start 145.472335 62.965335) (end 147.984665 62.965335) (width 0.254) (layer F.Cu) (net 26)) (segment (start 147.984665 62.965335) (end 152.35 58.6) (width 0.254) (layer F.Cu) (net 26)) (segment (start 152.35 52.5) (end 158.46 46.39) (width 0.254) (layer F.Cu) (net 26)) (segment (start 158.46 46.39) (end 161.93 46.39) (width 0.254) (layer F.Cu) (net 26)) (segment (start 145.2 64.227) (end 145.22608 64.20092) (width 0.254) (layer F.Cu) (net 26) (tstamp 56001940)) (segment (start 163.26 47.6) (end 164.47 46.39) (width 0.254) (layer F.Cu) (net 27)) (segment (start 145.87378 64.20092) (end 147.391148 64.20092) (width 0.254) (layer F.Cu) (net 27)) (segment (start 158.55 47.6) (end 163.26 47.6) (width 0.254) (layer F.Cu) (net 27)) (segment (start 152.85 53.3) (end 158.55 47.6) (width 0.254) (layer F.Cu) (net 27)) (segment (start 147.391148 64.20092) (end 152.85 58.742068) (width 0.254) (layer F.Cu) (net 27)) (segment (start 152.85 58.742068) (end 152.85 53.3) (width 0.254) (layer F.Cu) (net 27)) (segment (start 164.47 46.39) (end 164.47 46.22) (width 0.254) (layer F.Cu) (net 27)) (segment (start 145.128339 71.345989) (end 144.56568 70.78333) (width 0.254) (layer F.Cu) (net 28)) (segment (start 150.541979 62.526126) (end 150.541979 66.717373) (width 0.254) (layer F.Cu) (net 28)) (segment (start 150.54198 62.423886) (end 150.541979 62.526126) (width 0.254) (layer F.Cu) (net 28)) (segment (start 150.541979 66.717373) (end 145.913363 71.345989) (width 0.254) (layer F.Cu) (net 28)) (segment (start 153.85 59.115866) (end 150.54198 62.423886) (width 0.254) (layer F.Cu) (net 28)) (segment (start 153.85 57.4) (end 153.85 59.115866) (width 0.254) (layer F.Cu) (net 28)) (segment (start 145.913363 71.345989) (end 145.128339 71.345989) (width 0.254) (layer F.Cu) (net 28)) (segment (start 158.55 52.7) (end 153.85 57.4) (width 0.254) (layer F.Cu) (net 28)) (segment (start 163.95 50.2) (end 163.15 51) (width 0.254) (layer F.Cu) (net 28)) (segment (start 163.15 51) (end 163.15 52.1) (width 0.254) (layer F.Cu) (net 28)) (segment (start 163.15 52.1) (end 162.55 52.7) (width 0.254) (layer F.Cu) (net 28)) (segment (start 165.45 50.2) (end 163.95 50.2) (width 0.254) (layer F.Cu) (net 28)) (segment (start 166.04701 50.79701) (end 165.45 50.2) (width 0.254) (layer F.Cu) (net 28)) (segment (start 166.04701 52.43299) (end 166.04701 50.79701) (width 0.254) (layer F.Cu) (net 28)) (segment (start 162.55 52.7) (end 158.55 52.7) (width 0.254) (layer F.Cu) (net 28)) (segment (start 144.56568 70.78333) (end 144.56568 69.794) (width 0.254) (layer F.Cu) (net 28)) (segment (start 164.47 54.01) (end 166.04701 52.43299) (width 0.254) (layer F.Cu) (net 28)) (segment (start 145.732068 73.06) (end 151.45 67.342068) (width 0.254) (layer F.Cu) (net 29)) (segment (start 160.24 54.01) (end 161.93 54.01) (width 0.254) (layer F.Cu) (net 29)) (segment (start 142.62512 69.79908) (end 142.62512 72.67512) (width 0.254) (layer F.Cu) (net 29)) (segment (start 142.62512 72.67512) (end 143.01 73.06) (width 0.254) (layer F.Cu) (net 29)) (segment (start 143.01 73.06) (end 145.732068 73.06) (width 0.254) (layer F.Cu) (net 29)) (segment (start 151.45 62.8) (end 160.24 54.01) (width 0.254) (layer F.Cu) (net 29)) (segment (start 151.45 67.342068) (end 151.45 62.8) (width 0.254) (layer F.Cu) (net 29)) (segment (start 150.99599 62.611942) (end 158.45 55.157932) (width 0.254) (layer F.Cu) (net 30)) (segment (start 158.45 54.643467) (end 158.45 54) (width 0.254) (layer F.Cu) (net 30)) (segment (start 158.45 55.157932) (end 158.45 54.643467) (width 0.254) (layer F.Cu) (net 30)) (segment (start 143.9256 69.794) (end 143.9256 71.0756) (width 0.254) (layer F.Cu) (net 30)) (segment (start 143.9256 71.0756) (end 144.65 71.8) (width 0.254) (layer F.Cu) (net 30)) (segment (start 146.10142 71.8) (end 150.995989 66.905431) (width 0.254) (layer F.Cu) (net 30)) (segment (start 150.995989 66.905431) (end 150.99599 62.611942) (width 0.254) (layer F.Cu) (net 30)) (segment (start 144.65 71.8) (end 146.10142 71.8) (width 0.254) (layer F.Cu) (net 30)) (segment (start 158.45 54) (end 159.51701 52.93299) (width 0.254) (layer B.Cu) (net 30)) (segment (start 159.51701 52.93299) (end 163.00701 52.93299) (width 0.254) (layer B.Cu) (net 30)) (segment (start 163.00701 52.93299) (end 164.47 51.47) (width 0.254) (layer B.Cu) (net 30)) (via (at 158.45 54) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 30)) (segment (start 164.47 51.47) (end 164.08 51.47) (width 0.254) (layer F.Cu) (net 30)) (segment (start 152.74952 40.40048) (end 152.74952 41.55848) (width 0.508) (layer F.Cu) (net 31)) (segment (start 152.74952 41.55848) (end 155.14152 43.95048) (width 0.508) (layer F.Cu) (net 31)) (segment (start 155.14152 43.95048) (end 155.43222 43.95048) (width 0.508) (layer F.Cu) (net 31)) (segment (start 155.43222 43.95048) (end 156.45076 43.95048) (width 0.508) (layer F.Cu) (net 31)) (segment (start 162.49952 44.00048) (end 156.50076 44.00048) (width 0.508) (layer F.Cu) (net 31)) (segment (start 156.50076 44.00048) (end 156.45076 43.95048) (width 0.508) (layer F.Cu) (net 31)) (segment (start 161.93 51.47) (end 163.13401 50.26599) (width 0.508) (layer B.Cu) (net 31)) (segment (start 163.13401 50.26599) (end 163.13401 44.63497) (width 0.508) (layer B.Cu) (net 31)) (segment (start 163.13401 44.63497) (end 162.49952 44.00048) (width 0.508) (layer B.Cu) (net 31)) (via (at 162.49952 44.00048) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 31)) (segment (start 156.45124 44.07512) (end 156.45124 44.72536) (width 0.4) (layer F.Cu) (net 31)) (segment (start 156.45124 44.07512) (end 156.45124 43.42488) (width 0.4) (layer F.Cu) (net 31) (tstamp 56001B51)) (segment (start 164.47 48.93) (end 163.39299 50.00701) (width 0.254) (layer F.Cu) (net 32)) (segment (start 158.54299 50.00701) (end 153.35 55.2) (width 0.254) (layer F.Cu) (net 32)) (segment (start 163.39299 50.00701) (end 158.54299 50.00701) (width 0.254) (layer F.Cu) (net 32)) (segment (start 153.35 55.2) (end 153.35 58.9) (width 0.254) (layer F.Cu) (net 32)) (segment (start 153.35 58.9) (end 145.22608 67.02392) (width 0.254) (layer F.Cu) (net 32)) (segment (start 145.22608 67.02392) (end 145.22608 68.80975) (width 0.254) (layer F.Cu) (net 32)) (segment (start 145.22608 68.80975) (end 145.22608 69.79908) (width 0.254) (layer F.Cu) (net 32)) (segment (start 164.47 48.93) (end 164.13 48.93) (width 0.254) (layer F.Cu) (net 32)) (segment (start 135.349996 57) (end 134.706528 57.000001) (width 0.254) (layer B.Cu) (net 33)) (segment (start 132.095 56.545002) (end 132.549999 57.000001) (width 0.254) (layer F.Cu) (net 33)) (segment (start 129.559998 54.01) (end 132.095 56.545002) (width 0.254) (layer F.Cu) (net 33)) (segment (start 124.42 54.01) (end 129.559998 54.01) (width 0.254) (layer F.Cu) (net 33)) (segment (start 133.193466 57.000001) (end 132.549999 57.000001) (width 0.254) (layer B.Cu) (net 33)) (segment (start 134.706528 57.000001) (end 133.193466 57.000001) (width 0.254) (layer B.Cu) (net 33)) (via (at 132.549999 57.000001) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 33)) (segment (start 135.349996 62.358178) (end 135.349996 57.643467) (width 0.254) (layer F.Cu) (net 33)) (segment (start 138.255069 65.263251) (end 135.349996 62.358178) (width 0.254) (layer F.Cu) (net 33)) (segment (start 139.300919 65.263251) (end 138.255069 65.263251) (width 0.254) (layer F.Cu) (net 33)) (segment (start 139.37392 64.20092) (end 139.37392 65.19025) (width 0.254) (layer F.Cu) (net 33)) (segment (start 139.37392 65.19025) (end 139.300919 65.263251) (width 0.254) (layer F.Cu) (net 33)) (segment (start 135.349996 57.643467) (end 135.349996 57) (width 0.254) (layer F.Cu) (net 33)) (via (at 135.349996 57) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 33)) (segment (start 124.42952 54.00048) (end 124.42 54.01) (width 0.254) (layer B.Cu) (net 33)) (segment (start 124.46 54.05) (end 124.42 54.01) (width 0.254) (layer F.Cu) (net 33)) (segment (start 132.45 58.7) (end 129.65 55.9) (width 0.254) (layer F.Cu) (net 34)) (segment (start 129.65 55.9) (end 122.55 55.9) (width 0.254) (layer F.Cu) (net 34)) (segment (start 122.55 55.9) (end 121.88 55.23) (width 0.254) (layer F.Cu) (net 34)) (segment (start 138.72622 68.97622) (end 132.45 62.7) (width 0.254) (layer F.Cu) (net 34)) (segment (start 138.72622 69.79908) (end 138.72622 68.97622) (width 0.254) (layer F.Cu) (net 34)) (segment (start 132.45 62.7) (end 132.45 58.7) (width 0.254) (layer F.Cu) (net 34)) (segment (start 121.88 55.23) (end 121.88 54.01) (width 0.254) (layer F.Cu) (net 34)) (segment (start 138.910639 67.045989) (end 140.6744 68.80975) (width 0.254) (layer F.Cu) (net 35)) (segment (start 121.88 46.39) (end 121.46 46.39) (width 0.254) (layer F.Cu) (net 35)) (segment (start 122.35 50.2) (end 123.15 51) (width 0.254) (layer F.Cu) (net 35)) (segment (start 140.6744 68.80975) (end 140.6744 69.79908) (width 0.254) (layer F.Cu) (net 35)) (segment (start 120.05 49.5) (end 120.75 50.2) (width 0.254) (layer F.Cu) (net 35)) (segment (start 120.75 50.2) (end 122.35 50.2) (width 0.254) (layer F.Cu) (net 35)) (segment (start 120.05 47.8) (end 120.05 49.5) (width 0.254) (layer F.Cu) (net 35)) (segment (start 131.35 52.8) (end 133.45 54.9) (width 0.254) (layer F.Cu) (net 35)) (segment (start 121.46 46.39) (end 120.05 47.8) (width 0.254) (layer F.Cu) (net 35)) (segment (start 123.15 52.097932) (end 123.852068 52.8) (width 0.254) (layer F.Cu) (net 35)) (segment (start 123.15 51) (end 123.15 52.097932) (width 0.254) (layer F.Cu) (net 35)) (segment (start 123.852068 52.8) (end 131.35 52.8) (width 0.254) (layer F.Cu) (net 35)) (segment (start 133.45 54.9) (end 133.45 62.384386) (width 0.254) (layer F.Cu) (net 35)) (segment (start 133.45 62.384386) (end 138.111603 67.045989) (width 0.254) (layer F.Cu) (net 35)) (segment (start 138.111603 67.045989) (end 138.910639 67.045989) (width 0.254) (layer F.Cu) (net 35)) (segment (start 141.97488 69.79908) (end 141.97488 68.682812) (width 0.254) (layer F.Cu) (net 36)) (segment (start 141.97488 68.682812) (end 139.430036 66.137968) (width 0.254) (layer F.Cu) (net 36)) (segment (start 126.24 46.39) (end 124.42 46.39) (width 0.254) (layer F.Cu) (net 36)) (segment (start 139.430036 66.137968) (end 138.487717 66.137967) (width 0.254) (layer F.Cu) (net 36)) (segment (start 138.487717 66.137967) (end 134.45 62.10025) (width 0.254) (layer F.Cu) (net 36)) (segment (start 134.45 62.10025) (end 134.45 54.6) (width 0.254) (layer F.Cu) (net 36)) (segment (start 134.45 54.6) (end 126.24 46.39) (width 0.254) (layer F.Cu) (net 36)) (segment (start 141.32464 68.80975) (end 141.32464 69.79908) (width 0.254) (layer F.Cu) (net 37)) (segment (start 139.184046 66.591978) (end 141.32464 68.732572) (width 0.254) (layer F.Cu) (net 37)) (segment (start 129.392068 50.2) (end 133.95 54.757932) (width 0.254) (layer F.Cu) (net 37)) (segment (start 133.95 54.757932) (end 133.95 62.242318) (width 0.254) (layer F.Cu) (net 37)) (segment (start 123.15 50.2) (end 129.392068 50.2) (width 0.254) (layer F.Cu) (net 37)) (segment (start 138.29966 66.591978) (end 139.184046 66.591978) (width 0.254) (layer F.Cu) (net 37)) (segment (start 141.32464 68.732572) (end 141.32464 68.80975) (width 0.254) (layer F.Cu) (net 37)) (segment (start 121.88 48.93) (end 123.15 50.2) (width 0.254) (layer F.Cu) (net 37)) (segment (start 133.95 62.242318) (end 138.29966 66.591978) (width 0.254) (layer F.Cu) (net 37)) (segment (start 121.88 48.93) (end 121.88 48.98) (width 0.254) (layer F.Cu) (net 37)) (segment (start 129.84952 40.40048) (end 129.84952 41.555888) (width 0.508) (layer F.Cu) (net 38)) (segment (start 129.84952 41.555888) (end 128.83502 42.570388) (width 0.508) (layer F.Cu) (net 38)) (segment (start 128.83502 43.220628) (end 125.129372 43.220628) (width 0.508) (layer F.Cu) (net 38)) (segment (start 123.15 45.2) (end 123.15 47.66) (width 0.508) (layer F.Cu) (net 38)) (segment (start 123.15 47.66) (end 124.42 48.93) (width 0.508) (layer F.Cu) (net 38)) (segment (start 125.129372 43.220628) (end 123.15 45.2) (width 0.508) (layer F.Cu) (net 38)) (segment (start 128.83502 43.870868) (end 128.83502 43.220628) (width 0.254) (layer F.Cu) (net 38) (tstamp 56001B0E)) (segment (start 128.83502 43.220628) (end 128.83502 42.570388) (width 0.254) (layer F.Cu) (net 38) (tstamp 56001B0F)) (segment (start 123.05 54.5) (end 123.05 52.64) (width 0.254) (layer F.Cu) (net 39)) (segment (start 137.923546 67.5) (end 132.904011 62.480465) (width 0.254) (layer F.Cu) (net 39)) (segment (start 123.85 55.3) (end 123.05 54.5) (width 0.254) (layer F.Cu) (net 39)) (segment (start 138.71441 67.5) (end 137.923546 67.5) (width 0.254) (layer F.Cu) (net 39)) (segment (start 129.692068 55.3) (end 123.85 55.3) (width 0.254) (layer F.Cu) (net 39)) (segment (start 132.904011 62.480465) (end 132.90401 58.511942) (width 0.254) (layer F.Cu) (net 39)) (segment (start 140.02416 68.80975) (end 138.71441 67.5) (width 0.254) (layer F.Cu) (net 39)) (segment (start 132.90401 58.511942) (end 129.692068 55.3) (width 0.254) (layer F.Cu) (net 39)) (segment (start 123.05 52.64) (end 121.88 51.47) (width 0.254) (layer F.Cu) (net 39)) (segment (start 140.02416 69.79908) (end 140.02416 68.80975) (width 0.254) (layer F.Cu) (net 39)) (segment (start 161.89952 111.68048) (end 161.88 111.7) (width 2) (layer F.Cu) (net 40)) (segment (start 159.39952 112.25048) (end 159.39952 114.40048) (width 2) (layer F.Cu) (net 40)) (segment (start 161.88 111.7) (end 159.95 111.7) (width 2) (layer F.Cu) (net 40)) (segment (start 159.95 111.7) (end 159.39952 112.25048) (width 2) (layer F.Cu) (net 40)) (segment (start 159.39952 116.80048) (end 159.39952 119.40048) (width 2) (layer F.Cu) (net 40)) (segment (start 159.39952 119.40048) (end 159.39952 126.099999) (width 2) (layer F.Cu) (net 40)) (segment (start 161.89952 119.30048) (end 159.49952 119.30048) (width 2) (layer F.Cu) (net 40)) (segment (start 159.49952 119.30048) (end 159.39952 119.40048) (width 2) (layer F.Cu) (net 40)) (segment (start 159.39952 114.40048) (end 159.39952 116.80048) (width 2) (layer F.Cu) (net 40)) (segment (start 161.89952 116.76048) (end 159.43952 116.76048) (width 2) (layer F.Cu) (net 40)) (segment (start 159.43952 116.76048) (end 159.39952 116.80048) (width 2) (layer F.Cu) (net 40)) (segment (start 161.89952 114.22048) (end 159.57952 114.22048) (width 2) (layer F.Cu) (net 40)) (segment (start 159.57952 114.22048) (end 159.39952 114.40048) (width 2) (layer F.Cu) (net 40)) (segment (start 138.399521 126.099999) (end 159.39952 126.099999) (width 2.5) (layer F.Cu) (net 40)) (segment (start 159.39952 126.099999) (end 161.849519 126.099999) (width 2.5) (layer F.Cu) (net 40)) (segment (start 162.049521 126.300001) (end 163.29952 127.55) (width 2.5) (layer F.Cu) (net 40)) (segment (start 161.849519 126.099999) (end 162.049521 126.300001) (width 2.5) (layer F.Cu) (net 40)) (segment (start 135.69952 128.8) (end 138.399521 126.099999) (width 2.5) (layer F.Cu) (net 40)) (segment (start 164.43952 111.68048) (end 166.33048 111.68048) (width 2) (layer F.Cu) (net 41)) (segment (start 166.33048 111.68048) (end 166.95 112.3) (width 2) (layer F.Cu) (net 41)) (segment (start 166.95 112.3) (end 166.95 114.50048) (width 2) (layer F.Cu) (net 41)) (segment (start 166.95 117.00048) (end 166.95 119.20048) (width 2) (layer F.Cu) (net 41)) (segment (start 166.95 119.20048) (end 166.95 133.89952) (width 2) (layer F.Cu) (net 41)) (segment (start 164.43952 119.30048) (end 166.85 119.30048) (width 2) (layer F.Cu) (net 41)) (segment (start 166.85 119.30048) (end 166.95 119.20048) (width 2) (layer F.Cu) (net 41)) (segment (start 166.95 114.50048) (end 166.95 117.00048) (width 2) (layer F.Cu) (net 41)) (segment (start 164.43952 116.76048) (end 166.71 116.76048) (width 2) (layer F.Cu) (net 41)) (segment (start 166.71 116.76048) (end 166.95 117.00048) (width 2) (layer F.Cu) (net 41)) (segment (start 164.43952 114.22048) (end 166.67 114.22048) (width 2) (layer F.Cu) (net 41)) (segment (start 166.67 114.22048) (end 166.95 114.50048) (width 2) (layer F.Cu) (net 41)) (segment (start 166.95 133.89952) (end 163.29952 137.55) (width 2) (layer F.Cu) (net 41)) (segment (start 135.69952 136.25) (end 138.459521 139.010001) (width 2.5) (layer F.Cu) (net 41)) (segment (start 162.049521 138.799999) (end 163.29952 137.55) (width 2.5) (layer F.Cu) (net 41)) (segment (start 138.459521 139.010001) (end 161.839519 139.010001) (width 2.5) (layer F.Cu) (net 41)) (segment (start 161.839519 139.010001) (end 162.049521 138.799999) (width 2.5) (layer F.Cu) (net 41)) (segment (start 123.09952 132.55) (end 163.29952 132.55) (width 2.5) (layer F.Cu) (net 42)) (segment (start 126.88953 116.80048) (end 126.88953 119.40048) (width 2) (layer F.Cu) (net 43)) (segment (start 126.88953 119.40048) (end 126.88953 127.45999) (width 2) (layer F.Cu) (net 43)) (segment (start 124.43952 119.30048) (end 126.78953 119.30048) (width 2) (layer F.Cu) (net 43)) (segment (start 126.78953 119.30048) (end 126.88953 119.40048) (width 2) (layer F.Cu) (net 43)) (segment (start 126.88953 114.30048) (end 126.88953 116.80048) (width 2) (layer F.Cu) (net 43)) (segment (start 124.43952 116.76048) (end 126.84953 116.76048) (width 2) (layer F.Cu) (net 43)) (segment (start 126.84953 116.76048) (end 126.88953 116.80048) (width 2) (layer F.Cu) (net 43)) (segment (start 126.88953 112.23953) (end 126.88953 114.30048) (width 2) (layer F.Cu) (net 43)) (segment (start 124.43952 114.22048) (end 126.80953 114.22048) (width 2) (layer F.Cu) (net 43)) (segment (start 126.80953 114.22048) (end 126.88953 114.30048) (width 2) (layer F.Cu) (net 43)) (segment (start 123.09952 127.55) (end 126.79952 127.55) (width 2.5) (layer F.Cu) (net 43)) (segment (start 126.79952 127.55) (end 129.44952 127.55) (width 2.5) (layer F.Cu) (net 43)) (segment (start 126.33048 111.68048) (end 126.88953 112.23953) (width 2) (layer F.Cu) (net 43)) (segment (start 126.88953 127.45999) (end 126.79952 127.55) (width 2) (layer F.Cu) (net 43)) (segment (start 124.43952 111.68048) (end 126.33048 111.68048) (width 2) (layer F.Cu) (net 43)) (segment (start 129.44952 127.55) (end 130.69952 128.8) (width 2.5) (layer F.Cu) (net 43)) (segment (start 119.44951 133.89999) (end 119.44951 119.10048) (width 2) (layer F.Cu) (net 44)) (segment (start 121.89952 119.30048) (end 119.64951 119.30048) (width 2) (layer F.Cu) (net 44)) (segment (start 119.44951 119.10048) (end 119.44951 116.70048) (width 2) (layer F.Cu) (net 44)) (segment (start 119.64951 119.30048) (end 119.44951 119.10048) (width 2) (layer F.Cu) (net 44)) (segment (start 119.44951 116.70048) (end 119.44951 114.40048) (width 2) (layer F.Cu) (net 44)) (segment (start 121.89952 116.76048) (end 119.50951 116.76048) (width 2) (layer F.Cu) (net 44)) (segment (start 119.50951 116.76048) (end 119.44951 116.70048) (width 2) (layer F.Cu) (net 44)) (segment (start 119.44951 114.40048) (end 119.44951 112.30049) (width 2) (layer F.Cu) (net 44)) (segment (start 121.89952 114.22048) (end 119.62951 114.22048) (width 2) (layer F.Cu) (net 44)) (segment (start 119.62951 114.22048) (end 119.44951 114.40048) (width 2) (layer F.Cu) (net 44)) (segment (start 119.44951 112.30049) (end 120.06952 111.68048) (width 2) (layer F.Cu) (net 44)) (segment (start 120.06952 111.68048) (end 121.89952 111.68048) (width 2) (layer F.Cu) (net 44)) (segment (start 123.09952 137.55) (end 119.44951 133.89999) (width 2) (layer F.Cu) (net 44)) (segment (start 123.09952 137.55) (end 129.39952 137.55) (width 2.5) (layer F.Cu) (net 44)) (segment (start 129.39952 137.55) (end 130.69952 136.25) (width 2.5) (layer F.Cu) (net 44)) (segment (start 143.45 104.3) (end 143.45 111.6) (width 0.254) (layer F.Cu) (net 45)) (segment (start 143.45 111.6) (end 146.2 114.35) (width 0.254) (layer F.Cu) (net 45)) (segment (start 146.2 114.35) (end 146.3 114.35) (width 0.254) (layer F.Cu) (net 45)) (segment (start 142.55 98.6) (end 143.45 99.5) (width 0.254) (layer B.Cu) (net 45)) (segment (start 143.45 99.5) (end 143.45 104.3) (width 0.254) (layer B.Cu) (net 45)) (via (at 143.45 104.3) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 45)) (segment (start 140.97608 95.25082) (end 140.97608 97.02608) (width 0.254) (layer F.Cu) (net 45)) (segment (start 140.97608 97.02608) (end 142.55 98.6) (width 0.254) (layer F.Cu) (net 45)) (via (at 142.55 98.6) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 45)) (segment (start 146.3 114.35) (end 146.3 115.15) (width 0.254) (layer F.Cu) (net 45)) (segment (start 146.67464 115.52464) (end 146.67464 116.34876) (width 0.254) (layer F.Cu) (net 45) (tstamp 56001D82)) (segment (start 146.3 115.15) (end 146.67464 115.52464) (width 0.254) (layer F.Cu) (net 45) (tstamp 56001D81)) (segment (start 145.05 104.3) (end 145.05 108.3) (width 0.254) (layer F.Cu) (net 46)) (segment (start 145.05 108.3) (end 151.1 114.35) (width 0.254) (layer F.Cu) (net 46)) (segment (start 151.1 114.35) (end 151.2 114.35) (width 0.254) (layer F.Cu) (net 46)) (segment (start 144.304999 103.554999) (end 145.05 104.3) (width 0.254) (layer B.Cu) (net 46)) (via (at 145.05 104.3) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 46)) (segment (start 143.85 97.7) (end 144.304999 98.154999) (width 0.254) (layer B.Cu) (net 46)) (segment (start 144.304999 98.154999) (end 144.304999 103.554999) (width 0.254) (layer B.Cu) (net 46)) (segment (start 141.62378 95.25082) (end 141.62378 96.33032) (width 0.254) (layer F.Cu) (net 46)) (segment (start 141.62378 96.33032) (end 142.99346 97.7) (width 0.254) (layer F.Cu) (net 46)) (segment (start 142.99346 97.7) (end 143.85 97.7) (width 0.254) (layer F.Cu) (net 46)) (via (at 143.85 97.7) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 46)) (segment (start 151.57464 116.34876) (end 151.57464 115.57464) (width 0.254) (layer F.Cu) (net 46)) (segment (start 151.2 115.2) (end 151.2 114.35) (width 0.254) (layer F.Cu) (net 46) (tstamp 56001D86)) (segment (start 151.57464 115.57464) (end 151.2 115.2) (width 0.254) (layer F.Cu) (net 46) (tstamp 56001D85)) (segment (start 132.14952 38.40124) (end 132.14952 40.00048) (width 0.4) (layer F.Cu) (net 47)) (segment (start 132.14952 40.00048) (end 132.54952 40.40048) (width 0.4) (layer F.Cu) (net 47)) (segment (start 128.83502 44.521108) (end 129.74556 44.521108) (width 0.4) (layer F.Cu) (net 47)) (segment (start 132.54952 41.717148) (end 132.54952 41.45048) (width 0.4) (layer F.Cu) (net 47)) (segment (start 129.74556 44.521108) (end 132.54952 41.717148) (width 0.4) (layer F.Cu) (net 47)) (segment (start 132.54952 41.45048) (end 132.54952 40.40048) (width 0.4) (layer F.Cu) (net 47)) (segment (start 151.75 98.70048) (end 151.75 93.60048) (width 0.254) (layer F.Cu) (net 48)) (segment (start 151.75 93.60048) (end 151.75 91.80192) (width 0.254) (layer F.Cu) (net 48)) (segment (start 149.95048 93.60048) (end 151.75 93.60048) (width 0.254) (layer F.Cu) (net 48)) (segment (start 151.75 91.80192) (end 151.74952 91.80144) (width 0.254) (layer F.Cu) (net 48)) (segment (start 166.955035 44.605036) (end 164.849999 42.5) (width 0.254) (layer F.Cu) (net 48)) (segment (start 151.74952 91.80144) (end 151.74952 89.80048) (width 0.254) (layer F.Cu) (net 48)) (segment (start 166.955035 68.394965) (end 166.955035 44.605036) (width 0.254) (layer F.Cu) (net 48)) (segment (start 130.760818 38.40124) (end 130.24952 38.40124) (width 0.254) (layer F.Cu) (net 48)) (segment (start 151.74952 89.80048) (end 158.780052 82.769948) (width 0.254) (layer F.Cu) (net 48)) (segment (start 158.780052 82.769948) (end 158.780052 76.569948) (width 0.254) (layer F.Cu) (net 48)) (segment (start 158.780052 76.569948) (end 166.955035 68.394965) (width 0.254) (layer F.Cu) (net 48)) (segment (start 164.849999 42.5) (end 161.85 42.5) (width 0.254) (layer F.Cu) (net 48)) (segment (start 161.85 42.5) (end 154.75 35.4) (width 0.254) (layer F.Cu) (net 48)) (segment (start 154.75 35.4) (end 133.762058 35.4) (width 0.254) (layer F.Cu) (net 48)) (segment (start 133.762058 35.4) (end 130.760818 38.40124) (width 0.254) (layer F.Cu) (net 48)) (segment (start 151.75 98.70048) (end 151.75 99.71461) (width 0.254) (layer F.Cu) (net 48)) (segment (start 151.75 98.70048) (end 151.71055 98.73993) (width 0.254) (layer F.Cu) (net 48)) (segment (start 151.71055 98.73993) (end 149.07468 98.73993) (width 0.254) (layer F.Cu) (net 48)) (segment (start 151.75 99.71461) (end 150.506922 100.957688) (width 0.254) (layer F.Cu) (net 48)) (segment (start 147.19952 93.60048) (end 149.95048 93.60048) (width 0.254) (layer F.Cu) (net 48)) (segment (start 142.27402 95.25082) (end 142.27402 94.17132) (width 0.254) (layer F.Cu) (net 48)) (segment (start 142.27402 94.17132) (end 142.84486 93.60048) (width 0.254) (layer F.Cu) (net 48)) (segment (start 142.84486 93.60048) (end 147.14952 93.60048) (width 0.254) (layer F.Cu) (net 48)) (segment (start 147.14952 93.60048) (end 147.15 93.6) (width 0.254) (layer F.Cu) (net 48)) (segment (start 142.6 74.75) (end 139.37392 71.52392) (width 0.254) (layer F.Cu) (net 48)) (segment (start 139.37392 71.52392) (end 139.37392 69.79908) (width 0.254) (layer F.Cu) (net 48)) (segment (start 147.15 74.75) (end 142.6 74.75) (width 0.254) (layer F.Cu) (net 48)) (segment (start 145.87378 69.79908) (end 146.354328 69.79908) (width 0.254) (layer F.Cu) (net 48)) (segment (start 146.354328 69.79908) (end 146.751704 69.401704) (width 0.254) (layer F.Cu) (net 48)) (via (at 146.751704 69.401704) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 48)) (segment (start 147.15 74.75) (end 147.15 69.8) (width 0.254) (layer B.Cu) (net 48)) (segment (start 147.15 69.8) (end 146.751704 69.401704) (width 0.254) (layer B.Cu) (net 48)) (via (at 147.15 74.75) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 48)) (segment (start 147.15 74.7) (end 147.15 74.75) (width 0.254) (layer F.Cu) (net 48) (tstamp 56001B44)) (segment (start 147.15 74.75) (end 147.15 74.7) (width 0.254) (layer F.Cu) (net 48) (tstamp 56001B46)) (segment (start 147.15 74.75) (end 147.15 93.6) (width 0.254) (layer B.Cu) (net 48)) (via (at 147.19952 93.60048) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 48)) (segment (start 150.506922 100.957688) (end 149.32468 102.13993) (width 0.254) (layer F.Cu) (net 48)) (segment (start 129.075 95.375) (end 129.075 94.325) (width 0.254) (layer F.Cu) (net 49)) (segment (start 135.12392 94.12392) (end 135.12392 95.25082) (width 0.254) (layer F.Cu) (net 49) (tstamp 56001CB2)) (segment (start 135 94) (end 135.12392 94.12392) (width 0.254) (layer F.Cu) (net 49) (tstamp 56001CB1)) (segment (start 129.4 94) (end 135 94) (width 0.254) (layer F.Cu) (net 49) (tstamp 56001CB0)) (segment (start 129.075 94.325) (end 129.4 94) (width 0.254) (layer F.Cu) (net 49) (tstamp 56001CAF)) (segment (start 135.79876 92.30048) (end 135.79876 95.22622) (width 0.254) (layer F.Cu) (net 52)) (segment (start 135.79876 89.75172) (end 135.79876 92.30048) (width 0.254) (layer F.Cu) (net 52)) (segment (start 135.79876 92.30048) (end 137.14952 92.30048) (width 0.254) (layer F.Cu) (net 52)) (segment (start 135.79876 95.22622) (end 135.77416 95.25082) (width 0.254) (layer F.Cu) (net 52)) (segment (start 130.75 89.7) (end 135.74704 89.7) (width 0.254) (layer F.Cu) (net 52)) (segment (start 135.74704 89.7) (end 135.79876 89.75172) (width 0.254) (layer F.Cu) (net 52)) (segment (start 130.75 86.2) (end 130.75 89.7) (width 0.254) (layer B.Cu) (net 52)) (via (at 130.75 89.7) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 52)) (segment (start 129.19952 84.05048) (end 129.98352 84.05048) (width 0.254) (layer F.Cu) (net 52)) (segment (start 129.98352 84.05048) (end 130.75 84.81696) (width 0.254) (layer F.Cu) (net 52)) (segment (start 130.75 84.81696) (end 130.75 86.2) (width 0.254) (layer F.Cu) (net 52)) (via (at 130.75 86.2) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 52)) (segment (start 125.47488 80.30172) (end 125.93335 80.30172) (width 0.254) (layer F.Cu) (net 52)) (segment (start 125.93335 80.30172) (end 128.15 82.51837) (width 0.254) (layer F.Cu) (net 52)) (segment (start 128.41552 84.05048) (end 129.19952 84.05048) (width 0.254) (layer F.Cu) (net 52)) (segment (start 128.15 82.51837) (end 128.15 83.78496) (width 0.254) (layer F.Cu) (net 52)) (segment (start 128.15 83.78496) (end 128.41552 84.05048) (width 0.254) (layer F.Cu) (net 52)) (segment (start 141.14952 92.30048) (end 144.65 88.8) (width 0.508) (layer B.Cu) (net 67)) (segment (start 144.65 88.8) (end 144.65 78.7) (width 0.508) (layer B.Cu) (net 67)) (segment (start 144.65 78.7) (end 142.09 76.14) (width 0.508) (layer B.Cu) (net 67)) (segment (start 142.09 76.14) (end 142.09 67.31) (width 0.508) (layer B.Cu) (net 67)) (segment (start 139.85 99.7) (end 139.85 93.6) (width 0.508) (layer B.Cu) (net 67)) (segment (start 139.85 93.6) (end 141.14952 92.30048) (width 0.508) (layer B.Cu) (net 67)) (segment (start 137.1 103.5) (end 139.85 100.75) (width 0.508) (layer B.Cu) (net 67)) (segment (start 139.85 100.75) (end 139.85 99.7) (width 0.508) (layer B.Cu) (net 67)) (segment (start 132.05 103.5) (end 137.1 103.5) (width 0.508) (layer B.Cu) (net 67)) (segment (start 140.78993 99.68993) (end 139.86007 99.68993) (width 0.508) (layer F.Cu) (net 67)) (segment (start 139.86007 99.68993) (end 139.85 99.7) (width 0.508) (layer F.Cu) (net 67)) (via (at 139.85 99.7) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 67)) (segment (start 146.62468 100.73993) (end 146.62468 102.13993) (width 0.508) (layer F.Cu) (net 67) (tstamp 56002515)) (segment (start 146.87468 100.48993) (end 146.62468 100.73993) (width 0.508) (layer F.Cu) (net 67) (tstamp 56002514)) (segment (start 146.72468 95.53993) (end 147.22468 95.53993) (width 0.508) (layer F.Cu) (net 67)) (segment (start 147.22468 95.53993) (end 147.97468 96.28993) (width 0.508) (layer F.Cu) (net 67) (tstamp 5600250F)) (segment (start 147.97468 96.28993) (end 147.97468 98.58993) (width 0.508) (layer F.Cu) (net 67) (tstamp 56002510)) (segment (start 140.78993 99.68993) (end 146.87468 99.68993) (width 0.508) (layer F.Cu) (net 67)) (segment (start 146.87468 99.68993) (end 146.87468 100.48993) (width 0.508) (layer F.Cu) (net 67)) (segment (start 147.97468 98.58993) (end 146.87468 99.68993) (width 0.508) (layer F.Cu) (net 67) (tstamp 56002511)) (segment (start 133.35 104.8) (end 134.95 104.8) (width 0.508) (layer F.Cu) (net 67)) (segment (start 132.05 103.5) (end 133.35 104.8) (width 0.508) (layer F.Cu) (net 67)) (via (at 132.05 103.5) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 67)) (via (at 142.09 67.31) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 67)) (segment (start 141.32464 64.20092) (end 141.32464 66.54464) (width 0.4) (layer F.Cu) (net 67)) (segment (start 141.32464 66.54464) (end 142.09 67.31) (width 0.4) (layer F.Cu) (net 67)) (segment (start 141.05 62.2) (end 141.05 61) (width 0.4) (layer F.Cu) (net 67) (tstamp 560019B2)) (segment (start 135.12392 102.44918) (end 135.12392 104.62608) (width 0.4) (layer F.Cu) (net 67)) (segment (start 135.12392 104.62608) (end 134.95 104.8) (width 0.254) (layer F.Cu) (net 67) (tstamp 56001D19)) (segment (start 141.32464 64.20092) (end 141.3 64.22556) (width 0.254) (layer F.Cu) (net 67)) (segment (start 141.32464 64.20092) (end 141.32464 62.47464) (width 0.4) (layer F.Cu) (net 67)) (segment (start 141.32464 62.47464) (end 141.05 62.2) (width 0.4) (layer F.Cu) (net 67) (tstamp 560019B1)) (segment (start 140.6744 64.20092) (end 140.6744 62.933292) (width 0.254) (layer F.Cu) (net 68)) (segment (start 140.6744 62.933292) (end 139.972999 62.231891) (width 0.254) (layer F.Cu) (net 68)) (segment (start 139.972999 62.231891) (end 139.972999 54.777001) (width 0.254) (layer F.Cu) (net 68)) (segment (start 139.972999 54.777001) (end 141.74952 53.00048) (width 0.254) (layer F.Cu) (net 68)) (segment (start 141.74952 53.00048) (end 141.74952 49.80448) (width 0.254) (layer F.Cu) (net 68)) (segment (start 141.74952 49.80448) (end 141.74952 48.80048) (width 0.254) (layer F.Cu) (net 68)) (segment (start 133.4375 43.870868) (end 142.89952 43.870868) (width 0.508) (layer F.Cu) (net 69)) (segment (start 142.89952 43.870868) (end 151.768668 43.870868) (width 0.508) (layer F.Cu) (net 69)) (segment (start 142.85 47.542) (end 142.85 43.920388) (width 0.508) (layer F.Cu) (net 69)) (segment (start 142.85 43.920388) (end 142.89952 43.870868) (width 0.508) (layer F.Cu) (net 69)) (segment (start 142.84952 48.80048) (end 142.84952 47.54248) (width 0.508) (layer F.Cu) (net 69)) (segment (start 142.84952 47.54248) (end 142.85 47.542) (width 0.508) (layer F.Cu) (net 69)) (segment (start 151.768668 43.870868) (end 151.84828 43.95048) (width 0.508) (layer F.Cu) (net 69)) (segment (start 133.4375 43.220628) (end 133.4375 43.870868) (width 0.254) (layer F.Cu) (net 69) (tstamp 56001982)) (segment (start 133.4375 42.570388) (end 133.4375 43.220628) (width 0.254) (layer F.Cu) (net 69)) (segment (start 133.4375 43.870868) (end 133.4375 44.521108) (width 0.254) (layer F.Cu) (net 69) (tstamp 56001983)) (segment (start 151.84876 42.77464) (end 151.84876 43.42488) (width 0.254) (layer F.Cu) (net 69) (tstamp 560019B7)) (segment (start 151.84876 43.42488) (end 151.84876 44.07512) (width 0.254) (layer F.Cu) (net 69) (tstamp 560019B8)) (segment (start 151.84876 44.07512) (end 151.84876 44.72536) (width 0.254) (layer F.Cu) (net 69) (tstamp 560019B9)) (segment (start 155.04952 38.39946) (end 155.04952 40.00048) (width 0.4) (layer F.Cu) (net 70)) (segment (start 155.04952 40.00048) (end 155.44952 40.40048) (width 0.508) (layer F.Cu) (net 70)) (segment (start 155.44952 40.40048) (end 155.44952 41.19952) (width 0.4) (layer F.Cu) (net 70)) (segment (start 155.44952 41.19952) (end 156.45076 42.20076) (width 0.4) (layer F.Cu) (net 70)) (segment (start 156.45076 42.20076) (end 156.45076 42.641769) (width 0.4) (layer F.Cu) (net 70)) (segment (start 144.25 93.400002) (end 144.795003 92.854999) (width 0.254) (layer B.Cu) (net 71)) (segment (start 144.25 95.3) (end 144.25 93.400002) (width 0.254) (layer B.Cu) (net 71)) (segment (start 145.893469 92.4) (end 145.250002 92.4) (width 0.254) (layer F.Cu) (net 71)) (segment (start 158.326041 76.381891) (end 158.326041 82.523959) (width 0.254) (layer F.Cu) (net 71)) (segment (start 166.501021 68.206911) (end 158.326041 76.381891) (width 0.254) (layer F.Cu) (net 71)) (segment (start 166.501021 44.79309) (end 166.501021 68.206911) (width 0.254) (layer F.Cu) (net 71)) (segment (start 144.795003 92.854999) (end 145.250002 92.4) (width 0.254) (layer B.Cu) (net 71)) (segment (start 148.45 92.4) (end 145.893469 92.4) (width 0.254) (layer F.Cu) (net 71)) (segment (start 158.326041 82.523959) (end 148.45 92.4) (width 0.254) (layer F.Cu) (net 71)) (segment (start 164.707932 43) (end 166.501021 44.79309) (width 0.254) (layer F.Cu) (net 71)) (segment (start 161.65 43) (end 164.707932 43) (width 0.254) (layer F.Cu) (net 71)) (segment (start 156.05 37.4) (end 161.65 43) (width 0.254) (layer F.Cu) (net 71)) (segment (start 153.49493 37.4) (end 156.05 37.4) (width 0.254) (layer F.Cu) (net 71)) (segment (start 153.14952 37.74541) (end 153.49493 37.4) (width 0.254) (layer F.Cu) (net 71)) (segment (start 153.14952 38.39946) (end 153.14952 37.74541) (width 0.254) (layer F.Cu) (net 71)) (via (at 145.250002 92.4) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 71)) (segment (start 146.87468 97.78993) (end 146.66968 97.78993) (width 0.254) (layer F.Cu) (net 71)) (segment (start 146.66968 97.78993) (end 144.25 95.37025) (width 0.254) (layer F.Cu) (net 71)) (segment (start 144.25 95.37025) (end 144.25 95.3) (width 0.254) (layer F.Cu) (net 71)) (via (at 144.25 95.3) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 71)) (segment (start 141.65 82.1) (end 139.35 82.1) (width 0.508) (layer B.Cu) (net 72)) (segment (start 139.35 82.1) (end 135.55 78.3) (width 0.508) (layer B.Cu) (net 72)) (segment (start 135.55 78.3) (end 127.05 78.3) (width 0.508) (layer B.Cu) (net 72)) (segment (start 126.05 78.3) (end 125.47488 77.72488) (width 0.508) (layer F.Cu) (net 72)) (segment (start 125.47488 77.72488) (end 125.47488 75.69924) (width 0.508) (layer F.Cu) (net 72)) (segment (start 127.05 78.3) (end 126.05 78.3) (width 0.508) (layer F.Cu) (net 72)) (via (at 127.05 78.3) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 72)) (segment (start 124.82464 75.69924) (end 125.47488 75.69924) (width 0.508) (layer F.Cu) (net 72)) (segment (start 124.1744 75.69924) (end 124.82464 75.69924) (width 0.508) (layer F.Cu) (net 72)) (segment (start 123.52416 75.69924) (end 124.1744 75.69924) (width 0.508) (layer F.Cu) (net 72)) (segment (start 147.85 82.1) (end 141.65 82.1) (width 0.508) (layer F.Cu) (net 72)) (via (at 141.65 82.1) (size 0.91) (drill 0.4) (layers F.Cu B.Cu) (net 72)) (segment (start 153.345039 76.604961) (end 147.85 82.1) (width 0.508) (layer F.Cu) (net 72)) (segment (start 154.61068 70.95012) (end 153.345039 72.215761) (width 0.508) (layer F.Cu) (net 72)) (segment (start 153.345039 72.215761) (end 153.345039 76.604961) (width 0.508) (layer F.Cu) (net 72)) (segment (start 131.73932 63.84988) (end 129.30012 63.84988) (width 0.508) (layer F.Cu) (net 73)) (segment (start 129.30012 63.84988) (end 122.07488 71.07512) (width 0.508) (layer F.Cu) (net 73)) (segment (start 122.07488 71.07512) (end 122.07488 75.69924) (width 0.508) (layer F.Cu) (net 73)) (segment (start 121.42464 75.69924) (end 122.07488 75.69924) (width 0.508) (layer F.Cu) (net 73)) (segment (start 120.7744 75.69924) (end 121.42464 75.69924) (width 0.508) (layer F.Cu) (net 73)) (segment (start 120.12416 75.69924) (end 120.7744 75.69924) (width 0.508) (layer F.Cu) (net 73)) (segment (start 122.07488 80.30172) (end 122.07488 80.60779) (width 0.254) (layer F.Cu) (net 74)) (segment (start 122.07488 80.60779) (end 124.56757 83.10048) (width 0.254) (layer F.Cu) (net 74)) (segment (start 124.56757 83.10048) (end 126.21552 83.10048) (width 0.254) (layer F.Cu) (net 74)) (segment (start 126.21552 83.10048) (end 126.99952 83.10048) (width 0.254) (layer F.Cu) (net 74)) (zone (net 2) (net_name GND) (layer F.Cu) (tstamp 5600255C) (hatch edge 0.508) (connect_pads (clearance 0.254)) (min_thickness 0.254) (fill yes (arc_segments 16) (thermal_gap 0.3) (thermal_bridge_width 0.3) (smoothing fillet)) (polygon (pts (xy 168.19952 147.60048) (xy 118.19952 147.60048) (xy 118.19952 33.60048) (xy 168.19952 33.60048) ) ) (filled_polygon (pts (xy 167.74352 111.140491) (xy 167.306994 110.703966) (xy 166.858966 110.404602) (xy 166.33048 110.29948) (xy 164.43952 110.29948) (xy 163.911034 110.404602) (xy 163.463006 110.703966) (xy 163.16952 111.143197) (xy 162.876034 110.703966) (xy 162.428006 110.404602) (xy 161.89952 110.299481) (xy 161.80139 110.319) (xy 159.95 110.319) (xy 159.421514 110.424122) (xy 158.973485 110.723486) (xy 158.423006 111.273966) (xy 158.123642 111.721994) (xy 158.01852 112.25048) (xy 158.01852 124.468999) (xy 155.291424 124.468999) (xy 155.335854 124.361999) (xy 155.336145 124.029418) (xy 155.209139 123.722042) (xy 155.039044 123.551649) (xy 155.039044 122.35023) (xy 155.009474 122.201571) (xy 154.925266 122.075544) (xy 154.799239 121.991336) (xy 154.65058 121.961766) (xy 154.54383 121.961766) (xy 154.537114 121.928001) (xy 154.411169 121.739511) (xy 154.131 121.459342) (xy 154.131 120.97588) (xy 154.118294 120.912003) (xy 154.118294 120.4407) (xy 154.088724 120.292041) (xy 154.004516 120.166014) (xy 153.878489 120.081806) (xy 153.72983 120.052236) (xy 153.32089 120.052236) (xy 153.20024 120.076235) (xy 153.07959 120.052236) (xy 152.67065 120.052236) (xy 152.55 120.076235) (xy 152.42935 120.052236) (xy 152.02041 120.052236) (xy 151.89976 120.076235) (xy 151.77911 120.052236) (xy 151.37017 120.052236) (xy 151.221511 120.081806) (xy 151.095484 120.166014) (xy 151.011276 120.292041) (xy 150.981706 120.4407) (xy 150.981706 121.46178) (xy 151.011276 121.610439) (xy 151.095484 121.736466) (xy 151.221511 121.820674) (xy 151.37017 121.850244) (xy 151.77911 121.850244) (xy 151.89976 121.826245) (xy 152.02041 121.850244) (xy 152.42935 121.850244) (xy 152.55 121.826245) (xy 152.67065 121.850244) (xy 152.998885 121.850244) (xy 153.013226 121.922339) (xy 153.103192 122.056983) (xy 153.075414 122.075544) (xy 152.991206 122.201571) (xy 152.961636 122.35023) (xy 152.961636 123.74977) (xy 152.991206 123.898429) (xy 153.075414 124.024456) (xy 153.201441 124.108664) (xy 153.3501 124.138234) (xy 153.41934 124.138234) (xy 153.41934 124.14977) (xy 153.463566 124.372109) (xy 153.528306 124.468999) (xy 150.401424 124.468999) (xy 150.445854 124.361999) (xy 150.446016 124.17677) (xy 150.96991 124.17677) (xy 151.07666 124.07002) (xy 151.07666 123.073) (xy 151.12266 123.073) (xy 151.12266 124.07002) (xy 151.22941 124.17677) (xy 151.834835 124.17677) (xy 151.991776 124.111763) (xy 152.111893 123.991646) (xy 152.1769 123.834706) (xy 152.1769 123.17975) (xy 152.07015 123.073) (xy 151.12266 123.073) (xy 151.07666 123.073) (xy 151.05666 123.073) (xy 151.05666 123.027) (xy 151.07666 123.027) (xy 151.07666 122.02998) (xy 151.12266 122.02998) (xy 151.12266 123.027) (xy 152.07015 123.027) (xy 152.1769 122.92025) (xy 152.1769 122.265294) (xy 152.111893 122.108354) (xy 151.991776 121.988237) (xy 151.834835 121.92323) (xy 151.22941 121.92323) (xy 151.12266 122.02998) (xy 151.07666 122.02998) (xy 150.96991 121.92323) (xy 150.364485 121.92323) (xy 150.207544 121.988237) (xy 150.087427 122.108354) (xy 150.072028 122.145529) (xy 150.025266 122.075544) (xy 149.899239 121.991336) (xy 149.75058 121.961766) (xy 149.592857 121.961766) (xy 149.511169 121.839511) (xy 149.20636 121.534702) (xy 149.20636 121.521777) (xy 149.218294 121.46178) (xy 149.218294 120.4407) (xy 149.188724 120.292041) (xy 149.104516 120.166014) (xy 148.978489 120.081806) (xy 148.82983 120.052236) (xy 148.42089 120.052236) (xy 148.30024 120.076235) (xy 148.17959 120.052236) (xy 147.77065 120.052236) (xy 147.65 120.076235) (xy 147.52935 120.052236) (xy 147.12041 120.052236) (xy 146.99976 120.076235) (xy 146.87911 120.052236) (xy 146.47017 120.052236) (xy 146.321511 120.081806) (xy 146.195484 120.166014) (xy 146.111276 120.292041) (xy 146.081706 120.4407) (xy 146.081706 121.46178) (xy 146.111276 121.610439) (xy 146.195484 121.736466) (xy 146.321511 121.820674) (xy 146.47017 121.850244) (xy 146.87911 121.850244) (xy 146.99976 121.826245) (xy 147.12041 121.850244) (xy 147.52935 121.850244) (xy 147.65 121.826245) (xy 147.77065 121.850244) (xy 148.059255 121.850244) (xy 148.088586 121.997699) (xy 148.158007 122.101595) (xy 148.091206 122.201571) (xy 148.061636 122.35023) (xy 148.061636 123.74977) (xy 148.091206 123.898429) (xy 148.175414 124.024456) (xy 148.301441 124.108664) (xy 148.4501 124.138234) (xy 148.51934 124.138234) (xy 148.51934 124.14977) (xy 148.563566 124.372109) (xy 148.628306 124.468999) (xy 138.399521 124.468999) (xy 137.775364 124.593151) (xy 137.24623 124.946708) (xy 134.546662 127.646276) (xy 134.317632 127.874907) (xy 134.068804 128.474151) (xy 134.068238 129.123003) (xy 134.316019 129.72268) (xy 134.774427 130.181888) (xy 135.075362 130.306847) (xy 135.075363 130.306848) (xy 135.075365 130.306848) (xy 135.373671 130.430716) (xy 136.022523 130.431282) (xy 136.6222 130.183501) (xy 137.081408 129.725093) (xy 137.081691 129.724411) (xy 139.075103 127.730999) (xy 139.461791 127.730999) (xy 139.317632 127.874907) (xy 139.068804 128.474151) (xy 139.068238 129.123003) (xy 139.316019 129.72268) (xy 139.774427 130.181888) (xy 140.373671 130.430716) (xy 141.022523 130.431282) (xy 141.6222 130.183501) (xy 141.856397 129.949712) (xy 149.582334 129.949712) (xy 149.713192 130.196695) (xy 150.322763 130.467829) (xy 150.989693 130.485052) (xy 151.612446 130.245741) (xy 151.685848 130.196695) (xy 151.816706 129.949712) (xy 154.582334 129.949712) (xy 154.713192 130.196695) (xy 155.322763 130.467829) (xy 155.989693 130.485052) (xy 156.612446 130.245741) (xy 156.685848 130.196695) (xy 156.816706 129.949712) (xy 155.69952 128.832527) (xy 154.582334 129.949712) (xy 151.816706 129.949712) (xy 150.69952 128.832527) (xy 149.582334 129.949712) (xy 141.856397 129.949712) (xy 142.081408 129.725093) (xy 142.330236 129.125849) (xy 142.330802 128.476997) (xy 142.083021 127.87732) (xy 141.936955 127.730999) (xy 149.458863 127.730999) (xy 149.302825 127.813672) (xy 149.031691 128.423243) (xy 149.014468 129.090173) (xy 149.253779 129.712926) (xy 149.302825 129.786328) (xy 149.549808 129.917186) (xy 150.666993 128.8) (xy 150.652851 128.785858) (xy 150.685378 128.753331) (xy 150.69952 128.767473) (xy 150.713662 128.753331) (xy 150.746189 128.785858) (xy 150.732047 128.8) (xy 151.849232 129.917186) (xy 152.096215 129.786328) (xy 152.367349 129.176757) (xy 152.384572 128.509827) (xy 152.145261 127.887074) (xy 152.096215 127.813672) (xy 151.940177 127.730999) (xy 154.458863 127.730999) (xy 154.302825 127.813672) (xy 154.031691 128.423243) (xy 154.014468 129.090173) (xy 154.253779 129.712926) (xy 154.302825 129.786328) (xy 154.549808 129.917186) (xy 155.666993 128.8) (xy 155.652851 128.785858) (xy 155.685378 128.753331) (xy 155.69952 128.767473) (xy 155.713662 128.753331) (xy 155.746189 128.785858) (xy 155.732047 128.8) (xy 156.849232 129.917186) (xy 157.096215 129.786328) (xy 157.367349 129.176757) (xy 157.384572 128.509827) (xy 157.145261 127.887074) (xy 157.096215 127.813672) (xy 156.940177 127.730999) (xy 161.173937 127.730999) (xy 162.145796 128.702858) (xy 162.374427 128.931888) (xy 162.973671 129.180716) (xy 163.622523 129.181282) (xy 164.2222 128.933501) (xy 164.681408 128.475093) (xy 164.930236 127.875849) (xy 164.930802 127.226997) (xy 164.683021 126.62732) (xy 164.224613 126.168112) (xy 164.223931 126.167829) (xy 163.00281 124.946708) (xy 162.473676 124.593151) (xy 161.849519 124.468999) (xy 160.78052 124.468999) (xy 160.78052 120.68148) (xy 161.89952 120.68148) (xy 162.428006 120.576358) (xy 162.876034 120.276994) (xy 163.16952 119.837763) (xy 163.301056 120.03462) (xy 163.301056 120.05048) (xy 163.330626 120.199139) (xy 163.414834 120.325166) (xy 163.540861 120.409374) (xy 163.68952 120.438944) (xy 163.70538 120.438944) (xy 163.911034 120.576358) (xy 164.43952 120.68148) (xy 165.569 120.68148) (xy 165.569 133.327491) (xy 162.977773 135.918719) (xy 162.976517 135.918718) (xy 162.37684 136.166499) (xy 161.917632 136.624907) (xy 161.917349 136.625589) (xy 161.163937 137.379001) (xy 156.927249 137.379001) (xy 157.071408 137.235093) (xy 157.320236 136.635849) (xy 157.320802 135.986997) (xy 157.073021 135.38732) (xy 156.614613 134.928112) (xy 156.015369 134.679284) (xy 155.366517 134.678718) (xy 154.76684 134.926499) (xy 154.307632 135.384907) (xy 154.058804 135.984151) (xy 154.058238 136.633003) (xy 154.306019 137.23268) (xy 154.452085 137.379001) (xy 151.877144 137.379001) (xy 152.081408 137.175093) (xy 152.330236 136.575849) (xy 152.330802 135.926997) (xy 152.083021 135.32732) (xy 151.624613 134.868112) (xy 151.025369 134.619284) (xy 150.376517 134.618718) (xy 149.77684 134.866499) (xy 149.317632 135.324907) (xy 149.068804 135.924151) (xy 149.068238 136.573003) (xy 149.316019 137.17268) (xy 149.521981 137.379001) (xy 141.877144 137.379001) (xy 142.081408 137.175093) (xy 142.330236 136.575849) (xy 142.330802 135.926997) (xy 142.083021 135.32732) (xy 141.624613 134.868112) (xy 141.025369 134.619284) (xy 140.376517 134.618718) (xy 139.77684 134.866499) (xy 139.317632 135.324907) (xy 139.068804 135.924151) (xy 139.068238 136.573003) (xy 139.316019 137.17268) (xy 139.521981 137.379001) (xy 139.135103 137.379001) (xy 136.853244 135.097142) (xy 136.624613 134.868112) (xy 136.323678 134.743153) (xy 136.323677 134.743152) (xy 136.323675 134.743152) (xy 136.025369 134.619284) (xy 135.376517 134.618718) (xy 134.77684 134.866499) (xy 134.317632 135.324907) (xy 134.068804 135.924151) (xy 134.068238 136.573003) (xy 134.316019 137.17268) (xy 134.774427 137.631888) (xy 134.775109 137.632171) (xy 136.906938 139.764) (xy 128.001857 139.764) (xy 128.001857 143.076) (xy 141.778143 143.076) (xy 141.778143 140.641001) (xy 161.839519 140.641001) (xy 162.463676 140.516849) (xy 162.99281 140.163292) (xy 164.452378 138.703724) (xy 164.681408 138.475093) (xy 164.930236 137.875849) (xy 164.930239 137.872309) (xy 167.74352 135.059029) (xy 167.74352 147.14448) (xy 118.65552 147.14448) (xy 118.65552 144.372022) (xy 121.118631 144.372022) (xy 121.442373 145.155538) (xy 122.041309 145.755521) (xy 122.824258 146.08063) (xy 123.672022 146.081369) (xy 124.455538 145.757627) (xy 125.055521 145.158691) (xy 125.38063 144.375742) (xy 125.381369 143.527978) (xy 125.247505 143.204) (xy 126.947572 143.204) (xy 126.947572 146.516) (xy 143.152429 146.516) (xy 143.152429 144.372022) (xy 161.118631 144.372022) (xy 161.442373 145.155538) (xy 162.041309 145.755521) (xy 162.824258 146.08063) (xy 163.672022 146.081369) (xy 164.455538 145.757627) (xy 165.055521 145.158691) (xy 165.38063 144.375742) (xy 165.381369 143.527978) (xy 165.057627 142.744462) (xy 164.458691 142.144479) (xy 163.675742 141.81937) (xy 162.827978 141.818631) (xy 162.044462 142.142373) (xy 161.444479 142.741309) (xy 161.11937 143.524258) (xy 161.118631 144.372022) (xy 143.152429 144.372022) (xy 143.152429 143.204) (xy 126.947572 143.204) (xy 125.247505 143.204) (xy 125.057627 142.744462) (xy 124.458691 142.144479) (xy 123.675742 141.81937) (xy 122.827978 141.818631) (xy 122.044462 142.142373) (xy 121.444479 142.741309) (xy 121.11937 143.524258) (xy 121.118631 144.372022) (xy 118.65552 144.372022) (xy 118.65552 135.059028) (xy 121.468239 137.871748) (xy 121.468238 137.873003) (xy 121.716019 138.47268) (xy 122.174427 138.931888) (xy 122.475362 139.056847) (xy 122.475363 139.056848) (xy 122.475365 139.056848) (xy 122.773671 139.180716) (xy 123.422523 139.181282) (xy 123.423205 139.181) (xy 129.39952 139.181) (xy 130.023677 139.056848) (xy 130.552811 138.703291) (xy 131.852378 137.403724) (xy 132.081408 137.175093) (xy 132.330236 136.575849) (xy 132.330802 135.926997) (xy 132.083021 135.32732) (xy 131.624613 134.868112) (xy 131.323678 134.743153) (xy 131.323677 134.743152) (xy 131.323675 134.743152) (xy 131.025369 134.619284) (xy 130.376517 134.618718) (xy 129.77684 134.866499) (xy 129.317632 135.324907) (xy 129.317349 135.325589) (xy 128.723938 135.919) (xy 123.421549 135.919) (xy 120.83051 133.327962) (xy 120.83051 132.873003) (xy 121.468238 132.873003) (xy 121.716019 133.47268) (xy 122.174427 133.931888) (xy 122.475362 134.056847) (xy 122.475363 134.056848) (xy 122.475365 134.056848) (xy 122.773671 134.180716) (xy 123.422523 134.181282) (xy 123.423205 134.181) (xy 163.299243 134.181) (xy 163.622523 134.181282) (xy 164.2222 133.933501) (xy 164.681408 133.475093) (xy 164.930236 132.875849) (xy 164.930802 132.226997) (xy 164.683021 131.62732) (xy 164.224613 131.168112) (xy 163.923678 131.043153) (xy 163.923677 131.043152) (xy 163.923675 131.043152) (xy 163.625369 130.919284) (xy 162.976517 130.918718) (xy 162.975835 130.919) (xy 123.099797 130.919) (xy 122.776517 130.918718) (xy 122.17684 131.166499) (xy 121.717632 131.624907) (xy 121.468804 132.224151) (xy 121.468238 132.873003) (xy 120.83051 132.873003) (xy 120.83051 120.68148) (xy 121.89952 120.68148) (xy 122.428006 120.576358) (xy 122.876034 120.276994) (xy 123.16952 119.837763) (xy 123.463006 120.276994) (xy 123.911034 120.576358) (xy 124.43952 120.68148) (xy 125.50853 120.68148) (xy 125.50853 125.919) (xy 123.099797 125.919) (xy 122.776517 125.918718) (xy 122.17684 126.166499) (xy 121.717632 126.624907) (xy 121.468804 127.224151) (xy 121.468238 127.873003) (xy 121.716019 128.47268) (xy 122.174427 128.931888) (xy 122.475362 129.056847) (xy 122.475363 129.056848) (xy 122.475365 129.056848) (xy 122.773671 129.180716) (xy 123.422523 129.181282) (xy 123.423205 129.181) (xy 128.773938 129.181) (xy 129.545796 129.952858) (xy 129.774427 130.181888) (xy 130.075362 130.306847) (xy 130.075363 130.306848) (xy 130.075365 130.306848) (xy 130.373671 130.430716) (xy 131.022523 130.431282) (xy 131.6222 130.183501) (xy 132.081408 129.725093) (xy 132.330236 129.125849) (xy 132.330802 128.476997) (xy 132.083021 127.87732) (xy 131.624613 127.418112) (xy 131.623931 127.417829) (xy 130.602811 126.396709) (xy 130.073677 126.043152) (xy 129.44952 125.919) (xy 128.27053 125.919) (xy 128.27053 123.17975) (xy 145.12242 123.17975) (xy 145.12242 123.834706) (xy 145.187427 123.991646) (xy 145.307544 124.111763) (xy 145.464485 124.17677) (xy 146.06991 124.17677) (xy 146.17666 124.07002) (xy 146.17666 123.073) (xy 146.22266 123.073) (xy 146.22266 124.07002) (xy 146.32941 124.17677) (xy 146.934835 124.17677) (xy 147.091776 124.111763) (xy 147.211893 123.991646) (xy 147.2769 123.834706) (xy 147.2769 123.17975) (xy 147.17015 123.073) (xy 146.22266 123.073) (xy 146.17666 123.073) (xy 145.22917 123.073) (xy 145.12242 123.17975) (xy 128.27053 123.17975) (xy 128.27053 122.265294) (xy 145.12242 122.265294) (xy 145.12242 122.92025) (xy 145.22917 123.027) (xy 146.17666 123.027) (xy 146.17666 122.02998) (xy 146.22266 122.02998) (xy 146.22266 123.027) (xy 147.17015 123.027) (xy 147.2769 122.92025) (xy 147.2769 122.265294) (xy 147.211893 122.108354) (xy 147.091776 121.988237) (xy 146.934835 121.92323) (xy 146.32941 121.92323) (xy 146.22266 122.02998) (xy 146.17666 122.02998) (xy 146.06991 121.92323) (xy 145.464485 121.92323) (xy 145.307544 121.988237) (xy 145.187427 122.108354) (xy 145.12242 122.265294) (xy 128.27053 122.265294) (xy 128.27053 112.23953) (xy 128.165408 111.711044) (xy 128.144986 111.68048) (xy 127.866044 111.263015) (xy 127.306994 110.703966) (xy 126.858966 110.404602) (xy 126.33048 110.29948) (xy 124.43952 110.29948) (xy 123.911034 110.404602) (xy 123.463006 110.703966) (xy 123.16952 111.143197) (xy 123.037984 110.94634) (xy 123.037984 110.93048) (xy 123.008414 110.781821) (xy 122.924206 110.655794) (xy 122.798179 110.571586) (xy 122.64952 110.542016) (xy 122.63366 110.542016) (xy 122.428006 110.404602) (xy 121.89952 110.29948) (xy 120.06952 110.29948) (xy 119.541034 110.404602) (xy 119.093006 110.703965) (xy 118.65552 111.141452) (xy 118.65552 107.42975) (xy 133.898 107.42975) (xy 133.898 108.134935) (xy 133.963007 108.291876) (xy 134.083124 108.411993) (xy 134.240064 108.477) (xy 134.82025 108.477) (xy 134.927 108.37025) (xy 134.927 107.323) (xy 134.00475 107.323) (xy 133.898 107.42975) (xy 118.65552 107.42975) (xy 118.65552 106.465065) (xy 133.898 106.465065) (xy 133.898 107.17025) (xy 134.00475 107.277) (xy 134.927 107.277) (xy 134.927 106.22975) (xy 134.82025 106.123) (xy 134.240064 106.123) (xy 134.083124 106.188007) (xy 133.963007 106.308124) (xy 133.898 106.465065) (xy 118.65552 106.465065) (xy 118.65552 94.95161) (xy 119.112846 94.95161) (xy 119.112846 96.84899) (xy 119.142416 96.997649) (xy 119.226624 97.123676) (xy 119.352651 97.207884) (xy 119.50131 97.237454) (xy 119.815 97.237454) (xy 119.815 97.313966) (xy 119.50131 97.313966) (xy 119.352651 97.343536) (xy 119.226624 97.427744) (xy 119.142416 97.553771) (xy 119.112846 97.70243) (xy 119.112846 99.59981) (xy 119.142416 99.748469) (xy 119.210256 99.85) (xy 119.142416 99.951531) (xy 119.112846 100.10019) (xy 119.112846 101.99757) (xy 119.142416 102.146229) (xy 119.226624 102.272256) (xy 119.352651 102.356464) (xy 119.50131 102.386034) (xy 119.815 102.386034) (xy 119.815 102.462546) (xy 119.50131 102.462546) (xy 119.352651 102.492116) (xy 119.226624 102.576324) (xy 119.142416 102.702351) (xy 119.112846 102.85101) (xy 119.112846 104.74839) (xy 119.142416 104.897049) (xy 119.226624 105.023076) (xy 119.352651 105.107284) (xy 119.50131 105.136854) (xy 121.39869 105.136854) (xy 121.547349 105.107284) (xy 121.673376 105.023076) (xy 121.757584 104.897049) (xy 121.787154 104.74839) (xy 121.787154 104.4347) (xy 122.986674 104.4347) (xy 124.000985 105.44901) (xy 124.000987 105.449013) (xy 124.152125 105.55) (xy 124.206996 105.586664) (xy 124.45 105.635001) (xy 124.450005 105.635) (xy 125.936536 105.635) (xy 125.936536 105.75) (xy 125.966106 105.898659) (xy 126.050314 106.024686) (xy 126.176341 106.108894) (xy 126.325 106.138464) (xy 127.575 106.138464) (xy 127.723659 106.108894) (xy 127.849686 106.024686) (xy 127.933894 105.898659) (xy 127.963464 105.75) (xy 127.963464 105.735) (xy 128.011536 105.735) (xy 128.011536 105.85) (xy 128.041106 105.998659) (xy 128.125314 106.124686) (xy 128.251341 106.208894) (xy 128.4 106.238464) (xy 129.7 106.238464) (xy 129.848659 106.208894) (xy 129.974686 106.124686) (xy 130.058894 105.998659) (xy 130.088464 105.85) (xy 130.088464 104.35) (xy 130.058894 104.201341) (xy 129.974686 104.075314) (xy 129.848659 103.991106) (xy 129.7 103.961536) (xy 128.4 103.961536) (xy 128.251341 103.991106) (xy 128.125314 104.075314) (xy 128.041106 104.201341) (xy 128.011536 104.35) (xy 128.011536 104.465) (xy 127.963464 104.465) (xy 127.963464 104.25) (xy 127.933894 104.101341) (xy 127.849686 103.975314) (xy 127.723659 103.891106) (xy 127.575 103.861536) (xy 126.325 103.861536) (xy 126.176341 103.891106) (xy 126.050314 103.975314) (xy 125.966106 104.101341) (xy 125.936536 104.25) (xy 125.936536 104.365) (xy 124.713025 104.365) (xy 123.698713 103.350687) (xy 123.492704 103.213036) (xy 123.2497 103.1647) (xy 121.787154 103.1647) (xy 121.787154 102.85101) (xy 121.757584 102.702351) (xy 121.673376 102.576324) (xy 121.547349 102.492116) (xy 121.39869 102.462546) (xy 121.085 102.462546) (xy 121.085 102.386034) (xy 121.39869 102.386034) (xy 121.547349 102.356464) (xy 121.673376 102.272256) (xy 121.757584 102.146229) (xy 121.787154 101.99757) (xy 121.787154 100.10019) (xy 121.757584 99.951531) (xy 121.689744 99.85) (xy 121.757584 99.748469) (xy 121.787154 99.59981) (xy 121.787154 97.70243) (xy 121.757584 97.553771) (xy 121.673376 97.427744) (xy 121.547349 97.343536) (xy 121.39869 97.313966) (xy 121.085 97.313966) (xy 121.085 97.237454) (xy 121.39869 97.237454) (xy 121.547349 97.207884) (xy 121.673376 97.123676) (xy 121.757584 96.997649) (xy 121.787154 96.84899) (xy 121.787154 94.95161) (xy 121.757584 94.802951) (xy 121.673376 94.676924) (xy 121.547349 94.592716) (xy 121.39869 94.563146) (xy 119.50131 94.563146) (xy 119.352651 94.592716) (xy 119.226624 94.676924) (xy 119.142416 94.802951) (xy 119.112846 94.95161) (xy 118.65552 94.95161) (xy 118.65552 82.75161) (xy 119.112846 82.75161) (xy 119.112846 84.64899) (xy 119.142416 84.797649) (xy 119.226624 84.923676) (xy 119.352651 85.007884) (xy 119.50131 85.037454) (xy 119.815 85.037454) (xy 119.815 85.113966) (xy 119.50131 85.113966) (xy 119.352651 85.143536) (xy 119.226624 85.227744) (xy 119.142416 85.353771) (xy 119.112846 85.50243) (xy 119.112846 87.39981) (xy 119.142416 87.548469) (xy 119.210256 87.65) (xy 119.142416 87.751531) (xy 119.112846 87.90019) (xy 119.112846 89.79757) (xy 119.142416 89.946229) (xy 119.226624 90.072256) (xy 119.352651 90.156464) (xy 119.50131 90.186034) (xy 119.815 90.186034) (xy 119.815 90.262546) (xy 119.50131 90.262546) (xy 119.352651 90.292116) (xy 119.226624 90.376324) (xy 119.142416 90.502351) (xy 119.112846 90.65101) (xy 119.112846 92.54839) (xy 119.142416 92.697049) (xy 119.226624 92.823076) (xy 119.352651 92.907284) (xy 119.50131 92.936854) (xy 121.39869 92.936854) (xy 121.547349 92.907284) (xy 121.673376 92.823076) (xy 121.757584 92.697049) (xy 121.787154 92.54839) (xy 121.787154 92.2347) (xy 125.936536 92.2347) (xy 125.936536 92.55) (xy 125.966106 92.698659) (xy 126.050314 92.824686) (xy 126.176341 92.908894) (xy 126.325 92.938464) (xy 127.019729 92.938464) (xy 127.000987 92.950987) (xy 127.000985 92.95099) (xy 126.525987 93.425987) (xy 126.388336 93.631996) (xy 126.34 93.875) (xy 126.34 94.236536) (xy 126.325 94.236536) (xy 126.176341 94.266106) (xy 126.050314 94.350314) (xy 125.966106 94.476341) (xy 125.936536 94.625) (xy 125.936536 96.125) (xy 125.966106 96.273659) (xy 126.050314 96.399686) (xy 126.176341 96.483894) (xy 126.325 96.513464) (xy 126.915438 96.513464) (xy 127.33851 96.936536) (xy 126.325 96.936536) (xy 126.176341 96.966106) (xy 126.050314 97.050314) (xy 125.966106 97.176341) (xy 125.936536 97.325) (xy 125.936536 97.44) (xy 124.725005 97.44) (xy 124.725 97.439999) (xy 124.481996 97.488336) (xy 124.275987 97.625987) (xy 123.916862 97.985112) (xy 123.79899 97.961666) (xy 123.677204 97.961666) (xy 123.679645 97.955788) (xy 123.679915 97.645573) (xy 123.561451 97.358867) (xy 123.342287 97.13932) (xy 123.055788 97.020355) (xy 122.745573 97.020085) (xy 122.458867 97.138549) (xy 122.23932 97.357713) (xy 122.120355 97.644212) (xy 122.120085 97.954427) (xy 122.17218 98.080508) (xy 122.091356 98.201471) (xy 122.061786 98.35013) (xy 122.061786 98.74891) (xy 122.087683 98.879102) (xy 122.063056 99.00291) (xy 122.063056 99.40169) (xy 122.087813 99.52615) (xy 122.063056 99.65061) (xy 122.063056 100.04939) (xy 122.087813 100.17385) (xy 122.063056 100.29831) (xy 122.063056 100.69709) (xy 122.073273 100.748455) (xy 122.02452 100.866155) (xy 122.02452 101.02073) (xy 122.13127 101.12748) (xy 122.727676 101.12748) (xy 122.616347 101.17348) (xy 122.13127 101.17348) (xy 122.02452 101.28023) (xy 122.02452 101.434805) (xy 122.089527 101.591746) (xy 122.156044 101.658263) (xy 122.120355 101.744212) (xy 122.120085 102.054427) (xy 122.238549 102.341133) (xy 122.457713 102.56068) (xy 122.744212 102.679645) (xy 123.054427 102.679915) (xy 123.175836 102.62975) (xy 125.898 102.62975) (xy 125.898 103.334935) (xy 125.963007 103.491876) (xy 126.083124 103.611993) (xy 126.240064 103.677) (xy 126.82025 103.677) (xy 126.927 103.57025) (xy 126.927 102.523) (xy 126.973 102.523) (xy 126.973 103.57025) (xy 127.07975 103.677) (xy 127.659936 103.677) (xy 127.816876 103.611993) (xy 127.936993 103.491876) (xy 128.002 103.334935) (xy 128.002 103.304947) (xy 128.038007 103.391876) (xy 128.158124 103.511993) (xy 128.315064 103.577) (xy 128.92025 103.577) (xy 129.027 103.47025) (xy 129.027 102.423) (xy 129.073 102.423) (xy 129.073 103.47025) (xy 129.17975 103.577) (xy 129.784936 103.577) (xy 129.941876 103.511993) (xy 130.061993 103.391876) (xy 130.127 103.234935) (xy 130.127 102.52975) (xy 130.02025 102.423) (xy 129.073 102.423) (xy 129.027 102.423) (xy 128.07975 102.423) (xy 127.973 102.52975) (xy 127.973 102.60075) (xy 127.89525 102.523) (xy 126.973 102.523) (xy 126.927 102.523) (xy 126.00475 102.523) (xy 125.898 102.62975) (xy 123.175836 102.62975) (xy 123.341133 102.561451) (xy 123.56068 102.342287) (xy 123.679645 102.055788) (xy 123.679888 101.77687) (xy 123.882656 101.77687) (xy 124.039596 101.711863) (xy 124.086394 101.665065) (xy 125.898 101.665065) (xy 125.898 102.37025) (xy 126.00475 102.477) (xy 126.927 102.477) (xy 126.927 101.42975) (xy 126.973 101.42975) (xy 126.973 102.477) (xy 127.89525 102.477) (xy 128.002 102.37025) (xy 128.002 102.29925) (xy 128.07975 102.377) (xy 129.027 102.377) (xy 129.027 101.32975) (xy 129.073 101.32975) (xy 129.073 102.377) (xy 130.02025 102.377) (xy 130.127 102.27025) (xy 130.127 101.565065) (xy 130.061993 101.408124) (xy 129.941876 101.288007) (xy 129.784936 101.223) (xy 129.17975 101.223) (xy 129.073 101.32975) (xy 129.027 101.32975) (xy 128.92025 101.223) (xy 128.315064 101.223) (xy 128.158124 101.288007) (xy 128.038007 101.408124) (xy 127.973 101.565065) (xy 127.973 101.595053) (xy 127.936993 101.508124) (xy 127.816876 101.388007) (xy 127.659936 101.323) (xy 127.07975 101.323) (xy 126.973 101.42975) (xy 126.927 101.42975) (xy 126.82025 101.323) (xy 126.240064 101.323) (xy 126.083124 101.388007) (xy 125.963007 101.508124) (xy 125.898 101.665065) (xy 124.086394 101.665065) (xy 124.159713 101.591746) (xy 124.22472 101.434805) (xy 124.22472 101.28023) (xy 124.11797 101.17348) (xy 123.183727 101.17348) (xy 123.072947 101.12748) (xy 123.10162 101.12748) (xy 123.10162 101.10748) (xy 123.14762 101.10748) (xy 123.14762 101.12748) (xy 124.11797 101.12748) (xy 124.22472 101.02073) (xy 124.22472 100.866155) (xy 124.175967 100.748455) (xy 124.186184 100.69709) (xy 124.186184 100.472951) (xy 124.255597 100.519331) (xy 124.45 100.558) (xy 132.48958 100.558) (xy 133.31798 101.3864) (xy 133.31798 101.394063) (xy 133.263886 101.475021) (xy 133.234316 101.62368) (xy 133.234316 103.27468) (xy 133.263886 103.423339) (xy 133.348094 103.549366) (xy 133.474121 103.633574) (xy 133.62278 103.663144) (xy 134.02918 103.663144) (xy 134.1511 103.638893) (xy 134.27302 103.663144) (xy 134.316916 103.663144) (xy 134.176341 103.691106) (xy 134.050314 103.775314) (xy 133.966106 103.901341) (xy 133.936536 104.05) (xy 133.936536 104.165) (xy 133.613026 104.165) (xy 132.886054 103.438028) (xy 132.886145 103.334439) (xy 132.759139 103.027063) (xy 132.524174 102.791687) (xy 132.21702 102.664146) (xy 131.884439 102.663855) (xy 131.577063 102.790861) (xy 131.341687 103.025826) (xy 131.214146 103.33298) (xy 131.213855 103.665561) (xy 131.340861 103.972937) (xy 131.575826 104.208313) (xy 131.88298 104.335854) (xy 131.98792 104.335946) (xy 132.900987 105.249013) (xy 133.106996 105.386664) (xy 133.35 105.435001) (xy 133.350005 105.435) (xy 133.936536 105.435) (xy 133.936536 105.55) (xy 133.966106 105.698659) (xy 134.050314 105.824686) (xy 134.176341 105.908894) (xy 134.325 105.938464) (xy 135.575 105.938464) (xy 135.723659 105.908894) (xy 135.849686 105.824686) (xy 135.933894 105.698659) (xy 135.961536 105.559693) (xy 135.961536 105.875) (xy 135.991106 106.023659) (xy 136.075314 106.149686) (xy 136.201341 106.233894) (xy 136.35 106.263464) (xy 136.465 106.263464) (xy 136.465 106.336536) (xy 136.35 106.336536) (xy 136.201341 106.366106) (xy 136.075314 106.450314) (xy 136.002 106.560037) (xy 136.002 106.465065) (xy 135.936993 106.308124) (xy 135.816876 106.188007) (xy 135.659936 106.123) (xy 135.07975 106.123) (xy 134.973 106.22975) (xy 134.973 107.277) (xy 134.993 107.277) (xy 134.993 107.323) (xy 134.973 107.323) (xy 134.973 108.37025) (xy 135.07975 108.477) (xy 135.659936 108.477) (xy 135.816876 108.411993) (xy 135.936993 108.291876) (xy 136.000714 108.138039) (xy 136.075314 108.249686) (xy 136.201341 108.333894) (xy 136.35 108.363464) (xy 136.465 108.363464) (xy 136.465 108.483) (xy 136.513336 108.726004) (xy 136.650987 108.932013) (xy 146.067987 118.349013) (xy 146.273996 118.486664) (xy 146.517 118.535) (xy 152.2 118.535) (xy 152.443004 118.486664) (xy 152.649013 118.349013) (xy 153.32413 117.673895) (xy 153.324133 117.673893) (xy 153.349013 117.649013) (xy 153.47004 117.467884) (xy 153.486664 117.443005) (xy 153.496809 117.392) (xy 153.5255 117.247764) (xy 153.72983 117.247764) (xy 153.878489 117.218194) (xy 154.004516 117.133986) (xy 154.088724 117.007959) (xy 154.118294 116.8593) (xy 154.118294 115.850126) (xy 154.25921 115.70921) (xy 154.369331 115.544403) (xy 154.400349 115.388464) (xy 154.65 115.388464) (xy 154.798659 115.358894) (xy 154.924686 115.274686) (xy 155.008894 115.148659) (xy 155.038464 115) (xy 155.038464 113.7) (xy 155.008894 113.551341) (xy 154.924686 113.425314) (xy 154.798659 113.341106) (xy 154.65 113.311536) (xy 153.15 113.311536) (xy 153.001341 113.341106) (xy 152.875314 113.425314) (xy 152.791106 113.551341) (xy 152.761536 113.7) (xy 152.761536 115) (xy 152.791106 115.148659) (xy 152.875314 115.274686) (xy 153.001341 115.358894) (xy 153.15 115.388464) (xy 153.158935 115.388464) (xy 153.113477 115.456497) (xy 153.07959 115.449756) (xy 152.67065 115.449756) (xy 152.55 115.473755) (xy 152.42935 115.449756) (xy 152.057799 115.449756) (xy 152.043971 115.380237) (xy 152.037799 115.371) (xy 152.098659 115.358894) (xy 152.224686 115.274686) (xy 152.308894 115.148659) (xy 152.338464 115) (xy 152.338464 113.7) (xy 152.308894 113.551341) (xy 152.224686 113.425314) (xy 152.098659 113.341106) (xy 151.95 113.311536) (xy 150.779956 113.311536) (xy 145.558 108.08958) (xy 145.558 104.974137) (xy 145.758313 104.774174) (xy 145.885854 104.46702) (xy 145.886145 104.134439) (xy 145.759139 103.827063) (xy 145.524174 103.591687) (xy 145.21702 103.464146) (xy 144.884439 103.463855) (xy 144.577063 103.590861) (xy 144.341687 103.825826) (xy 144.249932 104.046797) (xy 144.159139 103.827063) (xy 143.924174 103.591687) (xy 143.61702 103.464146) (xy 143.284439 103.463855) (xy 142.977063 103.590861) (xy 142.741687 103.825826) (xy 142.614146 104.13298) (xy 142.613855 104.465561) (xy 142.740861 104.772937) (xy 142.942 104.974428) (xy 142.942 111.6) (xy 142.980669 111.794403) (xy 143.09079 111.95921) (xy 145.161536 114.029956) (xy 145.161536 115) (xy 145.191106 115.148659) (xy 145.275314 115.274686) (xy 145.401341 115.358894) (xy 145.55 115.388464) (xy 145.86011 115.388464) (xy 145.94079 115.50921) (xy 146.115227 115.683647) (xy 146.111276 115.689561) (xy 146.081706 115.83822) (xy 146.081706 116.56668) (xy 137.873763 108.358737) (xy 137.998659 108.333894) (xy 138.124686 108.249686) (xy 138.208894 108.123659) (xy 138.238464 107.975) (xy 138.238464 107.47975) (xy 138.423 107.47975) (xy 138.423 108.059936) (xy 138.488007 108.216876) (xy 138.608124 108.336993) (xy 138.765065 108.402) (xy 139.47025 108.402) (xy 139.577 108.29525) (xy 139.577 107.373) (xy 139.623 107.373) (xy 139.623 108.29525) (xy 139.72975 108.402) (xy 140.434935 108.402) (xy 140.591876 108.336993) (xy 140.711993 108.216876) (xy 140.777 108.059936) (xy 140.777 107.47975) (xy 140.67025 107.373) (xy 139.623 107.373) (xy 139.577 107.373) (xy 138.52975 107.373) (xy 138.423 107.47975) (xy 138.238464 107.47975) (xy 138.238464 106.725) (xy 138.208894 106.576341) (xy 138.124686 106.450314) (xy 137.998659 106.366106) (xy 137.85 106.336536) (xy 137.735 106.336536) (xy 137.735 106.263464) (xy 137.85 106.263464) (xy 137.998659 106.233894) (xy 138.124686 106.149686) (xy 138.208894 106.023659) (xy 138.238464 105.875) (xy 138.238464 105.37975) (xy 138.423 105.37975) (xy 138.423 105.959936) (xy 138.488007 106.116876) (xy 138.608124 106.236993) (xy 138.760237 106.3) (xy 138.608124 106.363007) (xy 138.488007 106.483124) (xy 138.423 106.640064) (xy 138.423 107.22025) (xy 138.52975 107.327) (xy 139.577 107.327) (xy 139.577 106.40475) (xy 139.47225 106.3) (xy 139.577 106.19525) (xy 139.577 105.273) (xy 139.623 105.273) (xy 139.623 106.19525) (xy 139.72775 106.3) (xy 139.623 106.40475) (xy 139.623 107.327) (xy 140.67025 107.327) (xy 140.777 107.22025) (xy 140.777 106.640064) (xy 140.711993 106.483124) (xy 140.591876 106.363007) (xy 140.439763 106.3) (xy 140.591876 106.236993) (xy 140.711993 106.116876) (xy 140.777 105.959936) (xy 140.777 105.37975) (xy 140.67025 105.273) (xy 139.623 105.273) (xy 139.577 105.273) (xy 138.52975 105.273) (xy 138.423 105.37975) (xy 138.238464 105.37975) (xy 138.238464 104.625) (xy 138.22157 104.540064) (xy 138.423 104.540064) (xy 138.423 105.12025) (xy 138.52975 105.227) (xy 139.577 105.227) (xy 139.577 104.30475) (xy 139.623 104.30475) (xy 139.623 105.227) (xy 140.67025 105.227) (xy 140.777 105.12025) (xy 140.777 104.540064) (xy 140.711993 104.383124) (xy 140.591876 104.263007) (xy 140.434935 104.198) (xy 139.72975 104.198) (xy 139.623 104.30475) (xy 139.577 104.30475) (xy 139.47025 104.198) (xy 138.765065 104.198) (xy 138.608124 104.263007) (xy 138.488007 104.383124) (xy 138.423 104.540064) (xy 138.22157 104.540064) (xy 138.208894 104.476341) (xy 138.124686 104.350314) (xy 137.998659 104.266106) (xy 137.85 104.236536) (xy 137.735 104.236536) (xy 137.735 103.70168) (xy 137.747882 103.70168) (xy 137.747882 103.594932) (xy 137.85463 103.70168) (xy 138.013015 103.70168) (xy 138.127419 103.654292) (xy 138.17192 103.663144) (xy 138.57832 103.663144) (xy 138.70024 103.638893) (xy 138.82216 103.663144) (xy 139.22856 103.663144) (xy 139.35048 103.638893) (xy 139.4724 103.663144) (xy 139.8788 103.663144) (xy 139.923301 103.654292) (xy 140.037705 103.70168) (xy 140.19609 103.70168) (xy 140.30284 103.59493) (xy 140.30284 102.57893) (xy 140.34588 102.57893) (xy 140.34588 103.359616) (xy 140.34884 103.366762) (xy 140.34884 103.59493) (xy 140.45559 103.70168) (xy 140.613975 103.70168) (xy 140.65096 103.68636) (xy 140.687945 103.70168) (xy 140.84633 103.70168) (xy 140.95308 103.59493) (xy 140.95308 103.366762) (xy 140.95604 103.359616) (xy 140.95604 102.57893) (xy 140.95308 102.57597) (xy 140.95308 102.47218) (xy 140.34884 102.47218) (xy 140.34884 102.57597) (xy 140.34588 102.57893) (xy 140.30284 102.57893) (xy 140.30284 102.47218) (xy 140.28284 102.47218) (xy 140.28284 102.42618) (xy 140.30284 102.42618) (xy 140.30284 101.538744) (xy 140.34588 101.538744) (xy 140.34588 102.31943) (xy 140.34884 102.32239) (xy 140.34884 102.42618) (xy 140.95308 102.42618) (xy 140.95308 102.32239) (xy 140.95604 102.31943) (xy 140.95604 101.538744) (xy 140.95308 101.531598) (xy 140.95308 101.30343) (xy 140.99908 101.30343) (xy 140.99908 102.42618) (xy 141.01908 102.42618) (xy 141.01908 102.47218) (xy 140.99908 102.47218) (xy 140.99908 103.59493) (xy 141.10583 103.70168) (xy 141.264215 103.70168) (xy 141.377795 103.654634) (xy 141.42058 103.663144) (xy 141.82698 103.663144) (xy 141.9489 103.638893) (xy 142.07082 103.663144) (xy 142.47722 103.663144) (xy 142.625879 103.633574) (xy 142.751906 103.549366) (xy 142.836114 103.423339) (xy 142.865684 103.27468) (xy 142.865684 101.62368) (xy 142.836114 101.475021) (xy 142.751906 101.348994) (xy 142.625879 101.264786) (xy 142.47722 101.235216) (xy 142.07082 101.235216) (xy 141.9489 101.259467) (xy 141.82698 101.235216) (xy 141.42058 101.235216) (xy 141.377795 101.243726) (xy 141.264215 101.19668) (xy 141.10583 101.19668) (xy 140.99908 101.30343) (xy 140.95308 101.30343) (xy 140.84633 101.19668) (xy 140.687945 101.19668) (xy 140.65096 101.212) (xy 140.613975 101.19668) (xy 140.45559 101.19668) (xy 140.34884 101.30343) (xy 140.34884 101.531598) (xy 140.34588 101.538744) (xy 140.30284 101.538744) (xy 140.30284 101.30343) (xy 140.19609 101.19668) (xy 140.037705 101.19668) (xy 139.923301 101.244068) (xy 139.8788 101.235216) (xy 139.4724 101.235216) (xy 139.35048 101.259467) (xy 139.22856 101.235216) (xy 138.82216 101.235216) (xy 138.70024 101.259467) (xy 138.57832 101.235216) (xy 138.17192 101.235216) (xy 138.127419 101.244068) (xy 138.013015 101.19668) (xy 137.85463 101.19668) (xy 137.74788 101.30343) (xy 137.74788 102.42618) (xy 137.76788 102.42618) (xy 137.76788 102.47218) (xy 137.74788 102.47218) (xy 137.74788 102.49218) (xy 137.70188 102.49218) (xy 137.70188 102.47218) (xy 137.68188 102.47218) (xy 137.68188 102.42618) (xy 137.70188 102.42618) (xy 137.70188 101.30343) (xy 137.685 101.28655) (xy 137.685 98.71) (xy 139.175 98.71) (xy 139.418004 98.661664) (xy 139.624013 98.524013) (xy 140.689803 97.458223) (xy 141.714103 98.482523) (xy 141.713855 98.765561) (xy 141.833421 99.05493) (xy 140.387307 99.05493) (xy 140.324174 98.991687) (xy 140.01702 98.864146) (xy 139.684439 98.863855) (xy 139.377063 98.990861) (xy 139.141687 99.225826) (xy 139.014146 99.53298) (xy 139.013855 99.865561) (xy 139.140861 100.172937) (xy 139.375826 100.408313) (xy 139.68298 100.535854) (xy 140.015561 100.536145) (xy 140.322937 100.409139) (xy 140.407293 100.32493) (xy 146.122845 100.32493) (xy 146.143651 100.338832) (xy 146.038016 100.496926) (xy 145.98968 100.73993) (xy 145.98968 101.101466) (xy 145.87468 101.101466) (xy 145.726021 101.131036) (xy 145.599994 101.215244) (xy 145.515786 101.341271) (xy 145.486216 101.48993) (xy 145.486216 102.78993) (xy 145.515786 102.938589) (xy 145.599994 103.064616) (xy 145.726021 103.148824) (xy 145.87468 103.178394) (xy 147.37468 103.178394) (xy 147.523339 103.148824) (xy 147.649366 103.064616) (xy 147.733574 102.938589) (xy 147.763144 102.78993) (xy 147.763144 101.48993) (xy 147.733574 101.341271) (xy 147.649366 101.215244) (xy 147.523339 101.131036) (xy 147.37468 101.101466) (xy 147.25968 101.101466) (xy 147.25968 101.002956) (xy 147.323693 100.938943) (xy 147.461344 100.732935) (xy 147.50968 100.48993) (xy 147.50968 100.382508) (xy 147.553339 100.373824) (xy 147.679366 100.289616) (xy 147.763574 100.163589) (xy 147.793144 100.01493) (xy 147.793144 99.669492) (xy 148.170744 99.291892) (xy 148.156216 99.36493) (xy 148.156216 100.01493) (xy 148.185786 100.163589) (xy 148.269994 100.289616) (xy 148.396021 100.373824) (xy 148.54468 100.403394) (xy 149.60468 100.403394) (xy 149.753339 100.373824) (xy 149.879366 100.289616) (xy 149.963574 100.163589) (xy 149.993144 100.01493) (xy 149.993144 99.36493) (xy 149.969871 99.24793) (xy 151.242 99.24793) (xy 151.242 99.50419) (xy 149.644724 101.101466) (xy 148.57468 101.101466) (xy 148.426021 101.131036) (xy 148.299994 101.215244) (xy 148.215786 101.341271) (xy 148.186216 101.48993) (xy 148.186216 102.78993) (xy 148.215786 102.938589) (xy 148.299994 103.064616) (xy 148.426021 103.148824) (xy 148.57468 103.178394) (xy 150.07468 103.178394) (xy 150.223339 103.148824) (xy 150.349366 103.064616) (xy 150.433574 102.938589) (xy 150.463144 102.78993) (xy 150.463144 101.719886) (xy 152.10921 100.07382) (xy 152.219331 99.909013) (xy 152.258 99.71461) (xy 152.258 91.80192) (xy 152.25752 91.799507) (xy 152.25752 90.0109) (xy 159.139262 83.129158) (xy 159.249383 82.964351) (xy 159.288052 82.769948) (xy 159.288052 76.780368) (xy 167.314245 68.754175) (xy 167.424366 68.589368) (xy 167.463035 68.394965) (xy 167.463035 44.605036) (xy 167.424366 44.410633) (xy 167.377303 44.340199) (xy 167.314245 44.245825) (xy 165.209209 42.14079) (xy 165.044402 42.030669) (xy 164.849999 41.992) (xy 162.06042 41.992) (xy 157.740922 37.672502) (xy 161.118631 37.672502) (xy 161.442373 38.456018) (xy 162.041309 39.056001) (xy 162.824258 39.38111) (xy 163.672022 39.381849) (xy 164.455538 39.058107) (xy 165.055521 38.459171) (xy 165.38063 37.676222) (xy 165.381369 36.828458) (xy 165.057627 36.044942) (xy 164.458691 35.444959) (xy 163.675742 35.11985) (xy 162.827978 35.119111) (xy 162.044462 35.442853) (xy 161.444479 36.041789) (xy 161.11937 36.824738) (xy 161.118631 37.672502) (xy 157.740922 37.672502) (xy 155.10921 35.04079) (xy 154.944403 34.930669) (xy 154.75 34.892) (xy 133.762058 34.892) (xy 133.599908 34.924254) (xy 133.567654 34.930669) (xy 133.402848 35.04079) (xy 131.969099 36.474539) (xy 131.91982 36.42526) (xy 131.22252 36.42526) (xy 131.22252 37.12256) (xy 131.271799 37.171839) (xy 130.800095 37.643543) (xy 130.798229 37.642296) (xy 130.64957 37.612726) (xy 129.84947 37.612726) (xy 129.700811 37.642296) (xy 129.574784 37.726504) (xy 129.490576 37.852531) (xy 129.461006 38.00119) (xy 129.461006 38.80129) (xy 129.490576 38.949949) (xy 129.574784 39.075976) (xy 129.700811 39.160184) (xy 129.84947 39.189754) (xy 130.64957 39.189754) (xy 130.798229 39.160184) (xy 130.924256 39.075976) (xy 131.008464 38.949949) (xy 131.034835 38.817375) (xy 131.120028 38.76045) (xy 131.361006 38.519472) (xy 131.361006 38.80129) (xy 131.390576 38.949949) (xy 131.474784 39.075976) (xy 131.56852 39.138608) (xy 131.56852 39.446604) (xy 131.524834 39.475794) (xy 131.440626 39.601821) (xy 131.411056 39.75048) (xy 131.411056 41.05048) (xy 131.440626 41.199139) (xy 131.524834 41.325166) (xy 131.650861 41.409374) (xy 131.79952 41.438944) (xy 131.96852 41.438944) (xy 131.96852 41.47649) (xy 129.734024 43.710986) (xy 129.734024 43.666398) (xy 129.710025 43.545748) (xy 129.734024 43.425098) (xy 129.734024 43.016158) (xy 129.710025 42.895508) (xy 129.734024 42.774858) (xy 129.734024 42.56941) (xy 130.298533 42.004901) (xy 130.436184 41.798892) (xy 130.484521 41.555888) (xy 130.48452 41.555883) (xy 130.48452 41.438944) (xy 130.59952 41.438944) (xy 130.748179 41.409374) (xy 130.874206 41.325166) (xy 130.958414 41.199139) (xy 130.987984 41.05048) (xy 130.987984 39.75048) (xy 130.958414 39.601821) (xy 130.874206 39.475794) (xy 130.748179 39.391586) (xy 130.59952 39.362016) (xy 129.09952 39.362016) (xy 128.950861 39.391586) (xy 128.824834 39.475794) (xy 128.740626 39.601821) (xy 128.711056 39.75048) (xy 128.711056 41.05048) (xy 128.740626 41.199139) (xy 128.824834 41.325166) (xy 128.950861 41.409374) (xy 129.073595 41.433787) (xy 128.529928 41.977454) (xy 128.32448 41.977454) (xy 128.175821 42.007024) (xy 128.049794 42.091232) (xy 127.965586 42.217259) (xy 127.936016 42.365918) (xy 127.936016 42.585628) (xy 125.129372 42.585628) (xy 124.886368 42.633964) (xy 124.680359 42.771615) (xy 122.700987 44.750987) (xy 122.563336 44.956996) (xy 122.515 45.2) (xy 122.515 45.251536) (xy 120.63 45.251536) (xy 120.481341 45.281106) (xy 120.355314 45.365314) (xy 120.271106 45.491341) (xy 120.241536 45.64) (xy 120.241536 46.890044) (xy 119.69079 47.44079) (xy 119.580669 47.605597) (xy 119.542 47.8) (xy 119.542 49.5) (xy 119.580669 49.694403) (xy 119.69079 49.85921) (xy 120.390789 50.55921) (xy 120.455738 50.602607) (xy 120.555099 50.668998) (xy 120.553207 50.670262) (xy 120.308037 51.037185) (xy 120.221945 51.47) (xy 120.308037 51.902815) (xy 120.553207 52.269738) (xy 120.92013 52.514908) (xy 121.352945 52.601) (xy 121.907055 52.601) (xy 122.228617 52.537037) (xy 122.542 52.85042) (xy 122.542 53.100151) (xy 122.33987 52.965092) (xy 121.907055 52.879) (xy 121.352945 52.879) (xy 120.92013 52.965092) (xy 120.553207 53.210262) (xy 120.308037 53.577185) (xy 120.221945 54.01) (xy 120.308037 54.442815) (xy 120.553207 54.809738) (xy 120.92013 55.054908) (xy 121.352945 55.141) (xy 121.372 55.141) (xy 121.372 55.23) (xy 121.410669 55.424403) (xy 121.52079 55.58921) (xy 122.19079 56.25921) (xy 122.355596 56.369331) (xy 122.55 56.408) (xy 129.43958 56.408) (xy 131.942 58.91042) (xy 131.942 62.7) (xy 131.945678 62.71849) (xy 131.515224 62.718114) (xy 131.099174 62.890022) (xy 130.780581 63.20806) (xy 130.777749 63.21488) (xy 129.30012 63.21488) (xy 129.057115 63.263216) (xy 128.851107 63.400867) (xy 121.625867 70.626107) (xy 121.488216 70.832116) (xy 121.43988 71.07512) (xy 121.43988 74.800236) (xy 121.22017 74.800236) (xy 121.09952 74.824235) (xy 120.97887 74.800236) (xy 120.56993 74.800236) (xy 120.44928 74.824235) (xy 120.32863 74.800236) (xy 119.91969 74.800236) (xy 119.771031 74.829806) (xy 119.645004 74.914014) (xy 119.560796 75.040041) (xy 119.531226 75.1887) (xy 119.531226 75.487758) (xy 119.48916 75.69924) (xy 119.531226 75.910722) (xy 119.531226 76.20978) (xy 119.560796 76.358439) (xy 119.645004 76.484466) (xy 119.771031 76.568674) (xy 119.91969 76.598244) (xy 120.32863 76.598244) (xy 120.44928 76.574245) (xy 120.56993 76.598244) (xy 120.97887 76.598244) (xy 121.09952 76.574245) (xy 121.22017 76.598244) (xy 121.62911 76.598244) (xy 121.74976 76.574245) (xy 121.87041 76.598244) (xy 122.27935 76.598244) (xy 122.428009 76.568674) (xy 122.554036 76.484466) (xy 122.638244 76.358439) (xy 122.667814 76.20978) (xy 122.667814 75.910722) (xy 122.70988 75.69924) (xy 122.88916 75.69924) (xy 122.931226 75.910722) (xy 122.931226 76.20978) (xy 122.960796 76.358439) (xy 123.045004 76.484466) (xy 123.171031 76.568674) (xy 123.31969 76.598244) (xy 123.72863 76.598244) (xy 123.84928 76.574245) (xy 123.96993 76.598244) (xy 124.37887 76.598244) (xy 124.49952 76.574245) (xy 124.62017 76.598244) (xy 124.83988 76.598244) (xy 124.83988 77.72488) (xy 124.888216 77.967884) (xy 125.025867 78.173893) (xy 125.600985 78.74901) (xy 125.600987 78.749013) (xy 125.739966 78.841876) (xy 125.806996 78.886664) (xy 126.05 78.935001) (xy 126.050005 78.935) (xy 126.502641 78.935) (xy 126.575826 79.008313) (xy 126.88298 79.135854) (xy 127.215561 79.136145) (xy 127.522937 79.009139) (xy 127.758313 78.774174) (xy 127.885854 78.46702) (xy 127.886145 78.134439) (xy 127.759139 77.827063) (xy 127.524174 77.591687) (xy 127.21702 77.464146) (xy 126.884439 77.463855) (xy 126.577063 77.590861) (xy 126.502794 77.665) (xy 126.313025 77.665) (xy 126.10988 77.461854) (xy 126.10988 75.69924) (xy 126.067814 75.487758) (xy 126.067814 75.1887) (xy 126.038244 75.040041) (xy 125.954036 74.914014) (xy 125.828009 74.829806) (xy 125.67935 74.800236) (xy 125.27041 74.800236) (xy 125.14976 74.824235) (xy 125.02911 74.800236) (xy 124.62017 74.800236) (xy 124.49952 74.824235) (xy 124.37887 74.800236) (xy 123.96993 74.800236) (xy 123.84928 74.824235) (xy 123.72863 74.800236) (xy 123.31969 74.800236) (xy 123.171031 74.829806) (xy 123.045004 74.914014) (xy 122.960796 75.040041) (xy 122.931226 75.1887) (xy 122.931226 75.487758) (xy 122.88916 75.69924) (xy 122.70988 75.69924) (xy 122.70988 74.293467) (xy 127.147945 74.293467) (xy 127.433687 74.985015) (xy 127.962322 75.514574) (xy 128.39414 75.69388) (xy 128.39414 76.337496) (xy 128.3 76.337496) (xy 128.151341 76.367066) (xy 128.025314 76.451274) (xy 127.941106 76.577301) (xy 127.911536 76.72596) (xy 127.911536 77.97596) (xy 127.941106 78.124619) (xy 128.025314 78.250646) (xy 128.151341 78.334854) (xy 128.3 78.364424) (xy 128.315 78.364424) (xy 128.315 78.412496) (xy 128.2 78.412496) (xy 128.051341 78.442066) (xy 127.925314 78.526274) (xy 127.841106 78.652301) (xy 127.811536 78.80096) (xy 127.811536 80.10096) (xy 127.841106 80.249619) (xy 127.925314 80.375646) (xy 128.051341 80.459854) (xy 128.2 80.489424) (xy 129.7 80.489424) (xy 129.848659 80.459854) (xy 129.974686 80.375646) (xy 130.058894 80.249619) (xy 130.088464 80.10096) (xy 130.088464 79.58071) (xy 130.473 79.58071) (xy 130.473 80.185896) (xy 130.538007 80.342836) (xy 130.658124 80.462953) (xy 130.815065 80.52796) (xy 131.52025 80.52796) (xy 131.627 80.42121) (xy 131.627 79.47396) (xy 131.673 79.47396) (xy 131.673 80.42121) (xy 131.77975 80.52796) (xy 132.484935 80.52796) (xy 132.641876 80.462953) (xy 132.761993 80.342836) (xy 132.827 80.185896) (xy 132.827 79.58071) (xy 132.72025 79.47396) (xy 131.673 79.47396) (xy 131.627 79.47396) (xy 130.57975 79.47396) (xy 130.473 79.58071) (xy 130.088464 79.58071) (xy 130.088464 78.80096) (xy 130.058894 78.652301) (xy 129.974686 78.526274) (xy 129.848659 78.442066) (xy 129.7 78.412496) (xy 129.585 78.412496) (xy 129.585 78.364424) (xy 129.8 78.364424) (xy 129.948659 78.334854) (xy 130.074686 78.250646) (xy 130.158894 78.124619) (xy 130.188464 77.97596) (xy 130.188464 77.48071) (xy 130.373 77.48071) (xy 130.373 78.060896) (xy 130.438007 78.217836) (xy 130.558124 78.337953) (xy 130.715065 78.40296) (xy 130.745053 78.40296) (xy 130.658124 78.438967) (xy 130.538007 78.559084) (xy 130.473 78.716024) (xy 130.473 79.32121) (xy 130.57975 79.42796) (xy 131.627 79.42796) (xy 131.627 78.48071) (xy 131.52025 78.37396) (xy 131.44925 78.37396) (xy 131.527 78.29621) (xy 131.527 77.37396) (xy 131.573 77.37396) (xy 131.573 78.29621) (xy 131.67975 78.40296) (xy 131.75075 78.40296) (xy 131.673 78.48071) (xy 131.673 79.42796) (xy 132.72025 79.42796) (xy 132.827 79.32121) (xy 132.827 78.716024) (xy 132.761993 78.559084) (xy 132.641876 78.438967) (xy 132.484935 78.37396) (xy 132.454947 78.37396) (xy 132.541876 78.337953) (xy 132.661993 78.217836) (xy 132.727 78.060896) (xy 132.727 77.48071) (xy 132.62025 77.37396) (xy 131.573 77.37396) (xy 131.527 77.37396) (xy 130.47975 77.37396) (xy 130.373 77.48071) (xy 130.188464 77.48071) (xy 130.188464 76.72596) (xy 130.17157 76.641024) (xy 130.373 76.641024) (xy 130.373 77.22121) (xy 130.47975 77.32796) (xy 131.527 77.32796) (xy 131.527 76.40571) (xy 131.573 76.40571) (xy 131.573 77.32796) (xy 132.62025 77.32796) (xy 132.727 77.22121) (xy 132.727 76.641024) (xy 132.661993 76.484084) (xy 132.541876 76.363967) (xy 132.384935 76.29896) (xy 131.67975 76.29896) (xy 131.573 76.40571) (xy 131.527 76.40571) (xy 131.42025 76.29896) (xy 130.715065 76.29896) (xy 130.558124 76.363967) (xy 130.438007 76.484084) (xy 130.373 76.641024) (xy 130.17157 76.641024) (xy 130.158894 76.577301) (xy 130.074686 76.451274) (xy 129.948659 76.367066) (xy 129.8 76.337496) (xy 129.66414 76.337496) (xy 129.66414 75.693707) (xy 130.093175 75.516433) (xy 130.622734 74.987798) (xy 130.909682 74.296749) (xy 130.910335 73.548493) (xy 130.624593 72.856945) (xy 130.095958 72.327386) (xy 129.404909 72.040438) (xy 128.656653 72.039785) (xy 127.965105 72.325527) (xy 127.435546 72.854162) (xy 127.148598 73.545211) (xy 127.147945 74.293467) (xy 122.70988 74.293467) (xy 122.70988 71.639709) (xy 130.982258 71.639709) (xy 131.052338 71.834799) (xy 131.481452 72.022742) (xy 131.949824 72.032164) (xy 132.386149 71.861629) (xy 132.426302 71.834799) (xy 132.496382 71.639709) (xy 131.73932 70.882647) (xy 130.982258 71.639709) (xy 122.70988 71.639709) (xy 122.70988 71.338146) (xy 122.987402 71.060624) (xy 130.557276 71.060624) (xy 130.727811 71.496949) (xy 130.754641 71.537102) (xy 130.949731 71.607182) (xy 131.706793 70.85012) (xy 131.771847 70.85012) (xy 132.528909 71.607182) (xy 132.723999 71.537102) (xy 132.911942 71.107988) (xy 132.921364 70.639616) (xy 132.750829 70.203291) (xy 132.723999 70.163138) (xy 132.528909 70.093058) (xy 131.771847 70.85012) (xy 131.706793 70.85012) (xy 130.949731 70.093058) (xy 130.754641 70.163138) (xy 130.566698 70.592252) (xy 130.557276 71.060624) (xy 122.987402 71.060624) (xy 123.987495 70.060531) (xy 130.982258 70.060531) (xy 131.73932 70.817593) (xy 132.496382 70.060531) (xy 132.426302 69.865441) (xy 131.997188 69.677498) (xy 131.528816 69.668076) (xy 131.092491 69.838611) (xy 131.052338 69.865441) (xy 130.982258 70.060531) (xy 123.987495 70.060531) (xy 129.563146 64.48488) (xy 130.777336 64.48488) (xy 130.779462 64.490026) (xy 131.0975 64.808619) (xy 131.513249 64.981253) (xy 131.963416 64.981646) (xy 132.379466 64.809738) (xy 132.698059 64.4917) (xy 132.870693 64.075951) (xy 132.8709 63.83932) (xy 138.128206 69.096627) (xy 138.128206 70.53441) (xy 138.157776 70.683069) (xy 138.241984 70.809096) (xy 138.368011 70.893304) (xy 138.51667 70.922874) (xy 138.86592 70.922874) (xy 138.86592 71.52392) (xy 138.904589 71.718323) (xy 139.01471 71.88313) (xy 142.24079 75.10921) (xy 142.405596 75.219331) (xy 142.6 75.258) (xy 146.475863 75.258) (xy 146.675826 75.458313) (xy 146.98298 75.585854) (xy 147.315561 75.586145) (xy 147.622937 75.459139) (xy 147.858313 75.224174) (xy 147.985854 74.91702) (xy 147.986145 74.584439) (xy 147.859139 74.277063) (xy 147.624174 74.041687) (xy 147.31702 73.914146) (xy 146.984439 73.913855) (xy 146.677063 74.040861) (xy 146.475572 74.242) (xy 142.81042 74.242) (xy 139.88192 71.3135) (xy 139.88192 70.922874) (xy 140.23371 70.922874) (xy 140.34928 70.899886) (xy 140.46485 70.922874) (xy 140.88395 70.922874) (xy 140.99952 70.899886) (xy 141.11509 70.922874) (xy 141.53419 70.922874) (xy 141.64976 70.899886) (xy 141.76533 70.922874) (xy 142.11712 70.922874) (xy 142.11712 72.67512) (xy 142.155789 72.869523) (xy 142.26591 73.03433) (xy 142.65079 73.419211) (xy 142.7717 73.5) (xy 142.815597 73.529331) (xy 143.01 73.568) (xy 145.732068 73.568) (xy 145.926471 73.529331) (xy 146.091278 73.41921) (xy 151.80921 67.701278) (xy 151.919331 67.536471) (xy 151.958 67.342068) (xy 151.958 64.739469) (xy 153.853618 64.739469) (xy 153.923698 64.934559) (xy 154.352812 65.122502) (xy 154.821184 65.131924) (xy 155.257509 64.961389) (xy 155.297662 64.934559) (xy 155.367742 64.739469) (xy 154.61068 63.982407) (xy 153.853618 64.739469) (xy 151.958 64.739469) (xy 151.958 64.160384) (xy 153.428636 64.160384) (xy 153.599171 64.596709) (xy 153.626001 64.636862) (xy 153.821091 64.706942) (xy 154.578153 63.94988) (xy 154.643207 63.94988) (xy 155.400269 64.706942) (xy 155.595359 64.636862) (xy 155.783302 64.207748) (xy 155.792724 63.739376) (xy 155.622189 63.303051) (xy 155.595359 63.262898) (xy 155.400269 63.192818) (xy 154.643207 63.94988) (xy 154.578153 63.94988) (xy 153.821091 63.192818) (xy 153.626001 63.262898) (xy 153.438058 63.692012) (xy 153.428636 64.160384) (xy 151.958 64.160384) (xy 151.958 63.160291) (xy 153.853618 63.160291) (xy 154.61068 63.917353) (xy 155.367742 63.160291) (xy 155.297662 62.965201) (xy 154.868548 62.777258) (xy 154.400176 62.767836) (xy 153.963851 62.938371) (xy 153.923698 62.965201) (xy 153.853618 63.160291) (xy 151.958 63.160291) (xy 151.958 63.01042) (xy 153.716913 61.251507) (xy 155.439665 61.251507) (xy 155.725407 61.943055) (xy 156.254042 62.472614) (xy 156.945091 62.759562) (xy 157.693347 62.760215) (xy 158.384895 62.474473) (xy 158.914454 61.945838) (xy 159.201402 61.254789) (xy 159.202055 60.506533) (xy 158.916313 59.814985) (xy 158.387678 59.285426) (xy 157.696629 58.998478) (xy 156.948373 58.997825) (xy 156.256825 59.283567) (xy 155.727266 59.812202) (xy 155.440318 60.503251) (xy 155.439665 61.251507) (xy 153.716913 61.251507) (xy 160.425155 54.543265) (xy 160.603207 54.809738) (xy 160.97013 55.054908) (xy 161.402945 55.141) (xy 161.957055 55.141) (xy 162.38987 55.054908) (xy 162.756793 54.809738) (xy 163.001963 54.442815) (xy 163.088055 54.01) (xy 163.001963 53.577185) (xy 162.756793 53.210262) (xy 162.706746 53.176821) (xy 162.744403 53.169331) (xy 162.90921 53.05921) (xy 163.50921 52.45921) (xy 163.619331 52.294404) (xy 163.628589 52.247861) (xy 163.643207 52.269738) (xy 164.01013 52.514908) (xy 164.442945 52.601) (xy 164.997055 52.601) (xy 165.201184 52.560396) (xy 164.890044 52.871536) (xy 163.72 52.871536) (xy 163.571341 52.901106) (xy 163.445314 52.985314) (xy 163.361106 53.111341) (xy 163.331536 53.26) (xy 163.331536 54.76) (xy 163.361106 54.908659) (xy 163.445314 55.034686) (xy 163.571341 55.118894) (xy 163.72 55.148464) (xy 165.72 55.148464) (xy 165.868659 55.118894) (xy 165.993021 55.035799) (xy 165.993021 67.99649) (xy 158.923501 75.066011) (xy 159.201402 74.396749) (xy 159.202055 73.648493) (xy 158.916313 72.956945) (xy 158.387678 72.427386) (xy 157.696629 72.140438) (xy 156.948373 72.139785) (xy 156.256825 72.425527) (xy 155.727266 72.954162) (xy 155.440318 73.645211) (xy 155.439665 74.393467) (xy 155.725407 75.085015) (xy 156.254042 75.614574) (xy 156.68586 75.79388) (xy 156.68586 76.911536) (xy 156.49904 76.911536) (xy 156.350381 76.941106) (xy 156.224354 77.025314) (xy 156.140146 77.151341) (xy 156.110576 77.3) (xy 156.110576 78.6) (xy 156.140146 78.748659) (xy 156.224354 78.874686) (xy 156.350381 78.958894) (xy 156.49904 78.988464) (xy 156.61404 78.988464) (xy 156.61404 79.136536) (xy 156.39904 79.136536) (xy 156.250381 79.166106) (xy 156.124354 79.250314) (xy 156.040146 79.376341) (xy 156.010576 79.525) (xy 156.010576 80.775) (xy 156.040146 80.923659) (xy 156.124354 81.049686) (xy 156.250381 81.133894) (xy 156.39904 81.163464) (xy 157.818041 81.163464) (xy 157.818041 82.313539) (xy 148.23958 91.892) (xy 145.924139 91.892) (xy 145.724176 91.691687) (xy 145.417022 91.564146) (xy 145.084441 91.563855) (xy 144.777065 91.690861) (xy 144.541689 91.925826) (xy 144.414148 92.23298) (xy 144.413857 92.565561) (xy 144.540863 92.872937) (xy 144.760023 93.09248) (xy 142.84486 93.09248) (xy 142.650457 93.131149) (xy 142.48565 93.24127) (xy 141.91481 93.81211) (xy 141.804689 93.976917) (xy 141.792766 94.036856) (xy 141.42058 94.036856) (xy 141.29993 94.060855) (xy 141.17928 94.036856) (xy 140.77288 94.036856) (xy 140.65096 94.061107) (xy 140.52904 94.036856) (xy 140.12264 94.036856) (xy 140.00072 94.061107) (xy 139.8788 94.036856) (xy 139.4724 94.036856) (xy 139.35048 94.061107) (xy 139.22856 94.036856) (xy 138.82216 94.036856) (xy 138.777659 94.045708) (xy 138.663255 93.99832) (xy 138.50487 93.99832) (xy 138.39812 94.10507) (xy 138.39812 95.22782) (xy 138.41812 95.22782) (xy 138.41812 95.27382) (xy 138.39812 95.27382) (xy 138.39812 96.39657) (xy 138.50487 96.50332) (xy 138.663255 96.50332) (xy 138.777659 96.455932) (xy 138.82216 96.464784) (xy 139.22856 96.464784) (xy 139.35048 96.440533) (xy 139.4724 96.464784) (xy 139.665 96.464784) (xy 139.665 96.686974) (xy 138.911974 97.44) (xy 130.113464 97.44) (xy 130.113464 97.325) (xy 130.083894 97.176341) (xy 129.999686 97.050314) (xy 129.873659 96.966106) (xy 129.725 96.936536) (xy 129.134561 96.936536) (xy 128.711489 96.513464) (xy 129.725 96.513464) (xy 129.873659 96.483894) (xy 129.999686 96.399686) (xy 130.083894 96.273659) (xy 130.113464 96.125) (xy 130.113464 94.625) (xy 130.090191 94.508) (xy 133.234316 94.508) (xy 133.234316 96.07632) (xy 133.263886 96.224979) (xy 133.348094 96.351006) (xy 133.474121 96.435214) (xy 133.62278 96.464784) (xy 134.02918 96.464784) (xy 134.1511 96.440533) (xy 134.27302 96.464784) (xy 134.67942 96.464784) (xy 134.80007 96.440785) (xy 134.92072 96.464784) (xy 135.32712 96.464784) (xy 135.44904 96.440533) (xy 135.57096 96.464784) (xy 135.97736 96.464784) (xy 136.09928 96.440533) (xy 136.2212 96.464784) (xy 136.6276 96.464784) (xy 136.74952 96.440533) (xy 136.87144 96.464784) (xy 137.27784 96.464784) (xy 137.39976 96.440533) (xy 137.52168 96.464784) (xy 137.92808 96.464784) (xy 137.972581 96.455932) (xy 138.086985 96.50332) (xy 138.24537 96.50332) (xy 138.35212 96.39657) (xy 138.35212 95.27382) (xy 138.33212 95.27382) (xy 138.33212 95.22782) (xy 138.35212 95.22782) (xy 138.35212 94.10507) (xy 138.24537 93.99832) (xy 138.086985 93.99832) (xy 137.972581 94.045708) (xy 137.92808 94.036856) (xy 137.52168 94.036856) (xy 137.39976 94.061107) (xy 137.27784 94.036856) (xy 136.87144 94.036856) (xy 136.74952 94.061107) (xy 136.6276 94.036856) (xy 136.30676 94.036856) (xy 136.30676 93.320493) (xy 136.39952 93.338944) (xy 137.89952 93.338944) (xy 138.048179 93.309374) (xy 138.174206 93.225166) (xy 138.258414 93.099139) (xy 138.287984 92.95048) (xy 138.287984 91.65048) (xy 138.258414 91.501821) (xy 138.174206 91.375794) (xy 138.078313 91.311721) (xy 138.846279 91.311721) (xy 139.040682 91.273052) (xy 139.205489 91.162931) (xy 141.028199 89.340221) (xy 141.13832 89.175415) (xy 141.176989 88.981011) (xy 141.176989 82.808796) (xy 141.48298 82.935854) (xy 141.815561 82.936145) (xy 142.122937 82.809139) (xy 142.197206 82.735) (xy 147.85 82.735) (xy 148.093004 82.686664) (xy 148.299013 82.549013) (xy 150.568276 80.27975) (xy 153.47204 80.27975) (xy 153.47204 80.859936) (xy 153.537047 81.016876) (xy 153.657164 81.136993) (xy 153.814105 81.202) (xy 154.51929 81.202) (xy 154.62604 81.09525) (xy 154.62604 80.173) (xy 154.67204 80.173) (xy 154.67204 81.09525) (xy 154.77879 81.202) (xy 155.483975 81.202) (xy 155.640916 81.136993) (xy 155.761033 81.016876) (xy 155.82604 80.859936) (xy 155.82604 80.27975) (xy 155.71929 80.173) (xy 154.67204 80.173) (xy 154.62604 80.173) (xy 153.57879 80.173) (xy 153.47204 80.27975) (xy 150.568276 80.27975) (xy 151.407962 79.440064) (xy 153.47204 79.440064) (xy 153.47204 80.02025) (xy 153.57879 80.127) (xy 154.62604 80.127) (xy 154.62604 79.20475) (xy 154.67204 79.20475) (xy 154.67204 80.127) (xy 155.71929 80.127) (xy 155.82604 80.02025) (xy 155.82604 79.440064) (xy 155.761033 79.283124) (xy 155.640916 79.163007) (xy 155.483975 79.098) (xy 154.77879 79.098) (xy 154.67204 79.20475) (xy 154.62604 79.20475) (xy 154.51929 79.098) (xy 153.814105 79.098) (xy 153.657164 79.163007) (xy 153.537047 79.283124) (xy 153.47204 79.440064) (xy 151.407962 79.440064) (xy 152.768276 78.07975) (xy 153.37204 78.07975) (xy 153.37204 78.684936) (xy 153.437047 78.841876) (xy 153.557164 78.961993) (xy 153.714105 79.027) (xy 154.41929 79.027) (xy 154.52604 78.92025) (xy 154.52604 77.973) (xy 154.57204 77.973) (xy 154.57204 78.92025) (xy 154.67879 79.027) (xy 155.383975 79.027) (xy 155.540916 78.961993) (xy 155.661033 78.841876) (xy 155.72604 78.684936) (xy 155.72604 78.07975) (xy 155.61929 77.973) (xy 154.57204 77.973) (xy 154.52604 77.973) (xy 153.47879 77.973) (xy 153.37204 78.07975) (xy 152.768276 78.07975) (xy 153.37204 77.475986) (xy 153.37204 77.82025) (xy 153.47879 77.927) (xy 154.52604 77.927) (xy 154.52604 76.97975) (xy 154.57204 76.97975) (xy 154.57204 77.927) (xy 155.61929 77.927) (xy 155.72604 77.82025) (xy 155.72604 77.215064) (xy 155.661033 77.058124) (xy 155.540916 76.938007) (xy 155.383975 76.873) (xy 154.67879 76.873) (xy 154.57204 76.97975) (xy 154.52604 76.97975) (xy 154.41929 76.873) (xy 153.914975 76.873) (xy 153.931703 76.847965) (xy 153.98004 76.604961) (xy 153.980039 76.604956) (xy 153.980039 72.478787) (xy 154.379468 72.079358) (xy 154.384609 72.081493) (xy 154.834776 72.081886) (xy 155.250826 71.909978) (xy 155.569419 71.59194) (xy 155.742053 71.176191) (xy 155.742446 70.726024) (xy 155.570538 70.309974) (xy 155.44907 70.188294) (xy 155.544403 70.169331) (xy 155.70921 70.05921) (xy 156.30921 69.45921) (xy 156.419331 69.294404) (xy 156.458 69.1) (xy 156.458 67.78856) (xy 156.419331 67.594157) (xy 156.402615 67.56914) (xy 156.309211 67.42935) (xy 155.687221 66.807361) (xy 155.742053 66.675311) (xy 155.742446 66.225144) (xy 155.570538 65.809094) (xy 155.2525 65.490501) (xy 154.836751 65.317867) (xy 154.386584 65.317474) (xy 153.970534 65.489382) (xy 153.651941 65.80742) (xy 153.479307 66.223169) (xy 153.478914 66.673336) (xy 153.650822 67.089386) (xy 153.96886 67.407979) (xy 154.069792 67.44989) (xy 153.970534 67.490902) (xy 153.651941 67.80894) (xy 153.479307 68.224689) (xy 153.478914 68.674856) (xy 153.534247 68.808773) (xy 149.536779 72.806241) (xy 149.426658 72.971048) (xy 149.387989 73.165451) (xy 149.387989 77.301523) (xy 146.397512 80.292) (xy 140.25 80.292) (xy 140.055597 80.330669) (xy 139.89079 80.440789) (xy 136.44031 83.89127) (xy 136.330189 84.056077) (xy 136.30676 84.173863) (xy 136.30676 84.17024) (xy 136.268091 83.975837) (xy 136.15797 83.81103) (xy 136.058 83.71106) (xy 136.058 82.374137) (xy 136.258313 82.174174) (xy 136.385854 81.86702) (xy 136.386145 81.534439) (xy 136.259139 81.227063) (xy 136.024174 80.991687) (xy 135.71702 80.864146) (xy 135.384439 80.863855) (xy 135.158 80.957418) (xy 135.158 69.25992) (xy 135.119331 69.065517) (xy 135.119331 69.065516) (xy 135.00921 68.90071) (xy 132.815861 66.707361) (xy 132.870693 66.575311) (xy 132.871086 66.125144) (xy 132.699178 65.709094) (xy 132.38114 65.390501) (xy 131.965391 65.217867) (xy 131.515224 65.217474) (xy 131.099174 65.389382) (xy 130.780581 65.70742) (xy 130.607947 66.123169) (xy 130.607554 66.573336) (xy 130.779462 66.989386) (xy 131.0975 67.307979) (xy 131.198432 67.34989) (xy 131.099174 67.390902) (xy 130.780581 67.70894) (xy 130.607947 68.124689) (xy 130.607554 68.574856) (xy 130.779462 68.990906) (xy 131.0975 69.309499) (xy 131.513249 69.482133) (xy 131.963416 69.482526) (xy 132.379466 69.310618) (xy 132.698059 68.99258) (xy 132.720387 68.938807) (xy 133.292 69.51042) (xy 133.292 85.375863) (xy 133.091687 85.575826) (xy 132.964146 85.88298) (xy 132.963855 86.215561) (xy 133.079028 86.4943) (xy 131.533003 86.4943) (xy 131.585854 86.36702) (xy 131.586145 86.034439) (xy 131.459139 85.727063) (xy 131.258 85.525572) (xy 131.258 84.81696) (xy 131.219331 84.622557) (xy 131.219331 84.622556) (xy 131.10921 84.457749) (xy 130.34273 83.69127) (xy 130.177923 83.581149) (xy 130.131081 83.571832) (xy 130.15652 83.510416) (xy 130.15652 83.23023) (xy 130.04977 83.12348) (xy 129.22252 83.12348) (xy 129.22252 83.14348) (xy 129.17652 83.14348) (xy 129.17652 83.12348) (xy 129.15652 83.12348) (xy 129.15652 83.07748) (xy 129.17652 83.07748) (xy 129.17652 82.45523) (xy 129.22252 82.45523) (xy 129.22252 83.07748) (xy 130.04977 83.07748) (xy 130.15652 82.97073) (xy 130.15652 82.690544) (xy 130.091513 82.533604) (xy 129.971396 82.413487) (xy 129.814455 82.34848) (xy 129.32927 82.34848) (xy 129.22252 82.45523) (xy 129.17652 82.45523) (xy 129.06977 82.34848) (xy 128.624207 82.34848) (xy 128.619331 82.323967) (xy 128.532243 82.193631) (xy 128.50921 82.159159) (xy 126.29256 79.94251) (xy 126.127753 79.832389) (xy 126.067814 79.820466) (xy 126.067814 79.79118) (xy 126.038244 79.642521) (xy 125.954036 79.516494) (xy 125.828009 79.432286) (xy 125.67935 79.402716) (xy 125.27041 79.402716) (xy 125.14976 79.426715) (xy 125.02911 79.402716) (xy 124.8094 79.402716) (xy 124.8094 79.124405) (xy 124.809401 79.1244) (xy 124.761064 78.881396) (xy 124.623413 78.675387) (xy 124.62341 78.675385) (xy 124.399013 78.450987) (xy 124.193004 78.313336) (xy 123.95 78.265) (xy 121.05 78.265) (xy 120.806996 78.313336) (xy 120.600987 78.450987) (xy 120.325387 78.726587) (xy 120.187736 78.932596) (xy 120.1394 79.1756) (xy 120.1394 79.402716) (xy 119.91969 79.402716) (xy 119.771031 79.432286) (xy 119.645004 79.516494) (xy 119.560796 79.642521) (xy 119.531226 79.79118) (xy 119.531226 80.090238) (xy 119.48916 80.30172) (xy 119.531226 80.513202) (xy 119.531226 80.81226) (xy 119.560796 80.960919) (xy 119.645004 81.086946) (xy 119.771031 81.171154) (xy 119.91969 81.200724) (xy 120.2184 81.200724) (xy 120.2184 81.4244) (xy 120.246255 81.564437) (xy 120.260723 81.637172) (xy 120.381249 81.817551) (xy 120.757328 82.193631) (xy 120.890864 82.282857) (xy 120.937708 82.314157) (xy 121.15048 82.35648) (xy 121.420178 82.35648) (xy 121.433835 82.370137) (xy 121.39869 82.363146) (xy 119.50131 82.363146) (xy 119.352651 82.392716) (xy 119.226624 82.476924) (xy 119.142416 82.602951) (xy 119.112846 82.75161) (xy 118.65552 82.75161) (xy 118.65552 61.151507) (xy 127.147945 61.151507) (xy 127.433687 61.843055) (xy 127.962322 62.372614) (xy 128.653371 62.659562) (xy 129.401627 62.660215) (xy 130.093175 62.374473) (xy 130.622734 61.845838) (xy 130.909682 61.154789) (xy 130.910335 60.406533) (xy 130.624593 59.714985) (xy 130.095958 59.185426) (xy 129.404909 58.898478) (xy 128.656653 58.897825) (xy 127.965105 59.183567) (xy 127.435546 59.712202) (xy 127.148598 60.403251) (xy 127.147945 61.151507) (xy 118.65552 61.151507) (xy 118.65552 37.672502) (xy 121.118151 37.672502) (xy 121.441893 38.456018) (xy 122.040829 39.056001) (xy 122.823778 39.38111) (xy 123.671542 39.381849) (xy 124.455058 39.058107) (xy 125.055041 38.459171) (xy 125.38015 37.676222) (xy 125.380889 36.828458) (xy 125.2584 36.53201) (xy 130.37247 36.53201) (xy 130.37247 36.887246) (xy 130.437477 37.044186) (xy 130.557594 37.164303) (xy 130.714535 37.22931) (xy 131.06977 37.22931) (xy 131.17652 37.12256) (xy 131.17652 36.42526) (xy 130.47922 36.42526) (xy 130.37247 36.53201) (xy 125.2584 36.53201) (xy 125.057147 36.044942) (xy 124.929702 35.917274) (xy 130.37247 35.917274) (xy 130.37247 36.27251) (xy 130.47922 36.37926) (xy 131.17652 36.37926) (xy 131.17652 35.68196) (xy 131.22252 35.68196) (xy 131.22252 36.37926) (xy 131.91982 36.37926) (xy 132.02657 36.27251) (xy 132.02657 35.917274) (xy 131.961563 35.760334) (xy 131.841446 35.640217) (xy 131.684505 35.57521) (xy 131.32927 35.57521) (xy 131.22252 35.68196) (xy 131.17652 35.68196) (xy 131.06977 35.57521) (xy 130.714535 35.57521) (xy 130.557594 35.640217) (xy 130.437477 35.760334) (xy 130.37247 35.917274) (xy 124.929702 35.917274) (xy 124.458211 35.444959) (xy 123.675262 35.11985) (xy 122.827498 35.119111) (xy 122.043982 35.442853) (xy 121.443999 36.041789) (xy 121.11889 36.824738) (xy 121.118151 37.672502) (xy 118.65552 37.672502) (xy 118.65552 34.05648) (xy 167.74352 34.05648) ) ) (filled_polygon (pts (xy 136.415 101.235216) (xy 136.2212 101.235216) (xy 136.176699 101.244068) (xy 136.062295 101.19668) (xy 135.90391 101.19668) (xy 135.79716 101.30343) (xy 135.79716 102.42618) (xy 135.81716 102.42618) (xy 135.81716 102.47218) (xy 135.79716 102.47218) (xy 135.79716 103.59493) (xy 135.90391 103.70168) (xy 136.062295 103.70168) (xy 136.176699 103.654292) (xy 136.2212 103.663144) (xy 136.465 103.663144) (xy 136.465 104.236536) (xy 136.35 104.236536) (xy 136.201341 104.266106) (xy 136.075314 104.350314) (xy 135.991106 104.476341) (xy 135.963464 104.615307) (xy 135.963464 104.05) (xy 135.933894 103.901341) (xy 135.849686 103.775314) (xy 135.723659 103.691106) (xy 135.70492 103.687379) (xy 135.70492 103.64117) (xy 135.75116 103.59493) (xy 135.75116 102.47218) (xy 135.73116 102.47218) (xy 135.73116 102.42618) (xy 135.75116 102.42618) (xy 135.75116 101.30343) (xy 135.64441 101.19668) (xy 135.486025 101.19668) (xy 135.371621 101.244068) (xy 135.32712 101.235216) (xy 134.98422 101.235216) (xy 134.98422 101.07622) (xy 134.945551 100.881817) (xy 134.945551 100.881816) (xy 134.83543 100.717009) (xy 133.20921 99.09079) (xy 133.044403 98.980669) (xy 132.85 98.942) (xy 130.090191 98.942) (xy 130.113464 98.825) (xy 130.113464 98.71) (xy 136.415 98.71) ) ) (filled_polygon (pts (xy 146.725346 94.308793) (xy 147.0325 94.436334) (xy 147.365081 94.436625) (xy 147.672457 94.309619) (xy 147.873948 94.10848) (xy 151.242 94.10848) (xy 151.242 98.23193) (xy 150.018399 98.23193) (xy 150.03168 98.199866) (xy 150.03168 97.91968) (xy 149.92493 97.81293) (xy 149.09768 97.81293) (xy 149.09768 97.83293) (xy 149.05168 97.83293) (xy 149.05168 97.81293) (xy 149.03168 97.81293) (xy 149.03168 97.76693) (xy 149.05168 97.76693) (xy 149.05168 97.14468) (xy 149.09768 97.14468) (xy 149.09768 97.76693) (xy 149.92493 97.76693) (xy 150.03168 97.66018) (xy 150.03168 97.379994) (xy 149.966673 97.223054) (xy 149.846556 97.102937) (xy 149.689615 97.03793) (xy 149.20443 97.03793) (xy 149.09768 97.14468) (xy 149.05168 97.14468) (xy 148.94493 97.03793) (xy 148.60968 97.03793) (xy 148.60968 96.59193) (xy 149.09493 96.59193) (xy 149.20168 96.48518) (xy 149.20168 95.56293) (xy 149.24768 95.56293) (xy 149.24768 96.48518) (xy 149.35443 96.59193) (xy 150.059615 96.59193) (xy 150.216556 96.526923) (xy 150.336673 96.406806) (xy 150.40168 96.249866) (xy 150.40168 95.66968) (xy 150.29493 95.56293) (xy 149.24768 95.56293) (xy 149.20168 95.56293) (xy 149.18168 95.56293) (xy 149.18168 95.51693) (xy 149.20168 95.51693) (xy 149.20168 94.59468) (xy 149.24768 94.59468) (xy 149.24768 95.51693) (xy 150.29493 95.51693) (xy 150.40168 95.41018) (xy 150.40168 94.829994) (xy 150.336673 94.673054) (xy 150.216556 94.552937) (xy 150.059615 94.48793) (xy 149.35443 94.48793) (xy 149.24768 94.59468) (xy 149.20168 94.59468) (xy 149.09493 94.48793) (xy 148.389745 94.48793) (xy 148.232804 94.552937) (xy 148.112687 94.673054) (xy 148.04768 94.829994) (xy 148.04768 95.41018) (xy 148.154428 95.516928) (xy 148.099704 95.516928) (xy 147.863144 95.280368) (xy 147.863144 94.91493) (xy 147.833574 94.766271) (xy 147.749366 94.640244) (xy 147.623339 94.556036) (xy 147.47468 94.526466) (xy 145.97468 94.526466) (xy 145.826021 94.556036) (xy 145.699994 94.640244) (xy 145.615786 94.766271) (xy 145.586216 94.91493) (xy 145.586216 95.988046) (xy 145.079791 95.481621) (xy 145.085854 95.46702) (xy 145.086145 95.134439) (xy 144.959139 94.827063) (xy 144.724174 94.591687) (xy 144.41702 94.464146) (xy 144.084439 94.463855) (xy 143.777063 94.590861) (xy 143.541687 94.825826) (xy 143.414146 95.13298) (xy 143.413855 95.465561) (xy 143.540861 95.772937) (xy 143.775826 96.008313) (xy 144.08298 96.135854) (xy 144.297372 96.136042) (xy 145.956216 97.794886) (xy 145.956216 98.11493) (xy 145.985786 98.263589) (xy 146.069994 98.389616) (xy 146.196021 98.473824) (xy 146.34468 98.503394) (xy 147.16319 98.503394) (xy 146.690118 98.976466) (xy 146.34468 98.976466) (xy 146.196021 99.006036) (xy 146.122845 99.05493) (xy 143.266304 99.05493) (xy 143.385854 98.76702) (xy 143.386145 98.434439) (xy 143.375014 98.407499) (xy 143.375826 98.408313) (xy 143.68298 98.535854) (xy 144.015561 98.536145) (xy 144.322937 98.409139) (xy 144.558313 98.174174) (xy 144.685854 97.86702) (xy 144.686145 97.534439) (xy 144.559139 97.227063) (xy 144.324174 96.991687) (xy 144.01702 96.864146) (xy 143.684439 96.863855) (xy 143.377063 96.990861) (xy 143.189738 97.177858) (xy 142.476664 96.464784) (xy 142.47722 96.464784) (xy 142.625879 96.435214) (xy 142.751906 96.351006) (xy 142.836114 96.224979) (xy 142.865684 96.07632) (xy 142.865684 94.42532) (xy 142.844573 94.319187) (xy 143.05528 94.10848) (xy 146.525383 94.10848) ) ) (filled_polygon (pts (xy 123.6184 84.554702) (xy 123.6184 85.296695) (xy 123.561451 85.158867) (xy 123.342287 84.93932) (xy 123.055788 84.820355) (xy 122.745573 84.820085) (xy 122.458867 84.938549) (xy 122.23932 85.157713) (xy 122.120355 85.444212) (xy 122.120085 85.754427) (xy 122.17218 85.880508) (xy 122.091356 86.001471) (xy 122.061786 86.15013) (xy 122.061786 86.54891) (xy 122.087683 86.679102) (xy 122.063056 86.80291) (xy 122.063056 87.20169) (xy 122.087813 87.32615) (xy 122.063056 87.45061) (xy 122.063056 87.84939) (xy 122.087813 87.97385) (xy 122.063056 88.09831) (xy 122.063056 88.49709) (xy 122.073273 88.548455) (xy 122.02452 88.666155) (xy 122.02452 88.82073) (xy 122.13127 88.92748) (xy 122.727676 88.92748) (xy 122.616347 88.97348) (xy 122.13127 88.97348) (xy 122.02452 89.08023) (xy 122.02452 89.234805) (xy 122.089527 89.391746) (xy 122.156044 89.458263) (xy 122.120355 89.544212) (xy 122.120085 89.854427) (xy 122.238549 90.141133) (xy 122.457713 90.36068) (xy 122.744212 90.479645) (xy 123.054427 90.479915) (xy 123.341133 90.361451) (xy 123.56068 90.142287) (xy 123.679645 89.855788) (xy 123.679888 89.57687) (xy 123.882656 89.57687) (xy 124.039596 89.511863) (xy 124.121709 89.42975) (xy 125.898 89.42975) (xy 125.898 90.134935) (xy 125.963007 90.291876) (xy 126.083124 90.411993) (xy 126.240064 90.477) (xy 126.82025 90.477) (xy 126.927 90.37025) (xy 126.927 89.323) (xy 126.973 89.323) (xy 126.973 90.37025) (xy 127.07975 90.477) (xy 127.659936 90.477) (xy 127.816876 90.411993) (xy 127.936993 90.291876) (xy 128.002 90.134935) (xy 128.002 90.104947) (xy 128.038007 90.191876) (xy 128.158124 90.311993) (xy 128.315064 90.377) (xy 128.92025 90.377) (xy 129.027 90.27025) (xy 129.027 89.223) (xy 128.07975 89.223) (xy 127.973 89.32975) (xy 127.973 89.40075) (xy 127.89525 89.323) (xy 126.973 89.323) (xy 126.927 89.323) (xy 126.00475 89.323) (xy 125.898 89.42975) (xy 124.121709 89.42975) (xy 124.159713 89.391746) (xy 124.22472 89.234805) (xy 124.22472 89.08023) (xy 124.11797 88.97348) (xy 123.183727 88.97348) (xy 123.072947 88.92748) (xy 123.10162 88.92748) (xy 123.10162 88.90748) (xy 123.14762 88.90748) (xy 123.14762 88.92748) (xy 124.11797 88.92748) (xy 124.22472 88.82073) (xy 124.22472 88.666155) (xy 124.175967 88.548455) (xy 124.186184 88.49709) (xy 124.186184 88.158) (xy 126.155567 88.158) (xy 126.083124 88.188007) (xy 125.963007 88.308124) (xy 125.898 88.465065) (xy 125.898 89.17025) (xy 126.00475 89.277) (xy 126.927 89.277) (xy 126.927 89.257) (xy 126.973 89.257) (xy 126.973 89.277) (xy 127.89525 89.277) (xy 128.002 89.17025) (xy 128.002 89.09925) (xy 128.07975 89.177) (xy 129.027 89.177) (xy 129.027 89.157) (xy 129.073 89.157) (xy 129.073 89.177) (xy 129.093 89.177) (xy 129.093 89.223) (xy 129.073 89.223) (xy 129.073 90.27025) (xy 129.17975 90.377) (xy 129.784936 90.377) (xy 129.941876 90.311993) (xy 130.060879 90.19299) (xy 130.275826 90.408313) (xy 130.58298 90.535854) (xy 130.915561 90.536145) (xy 131.222937 90.409139) (xy 131.295758 90.336445) (xy 131.21415 90.53298) (xy 131.213859 90.865561) (xy 131.340865 91.172937) (xy 131.415004 91.247206) (xy 131.415004 92.03697) (xy 130.686974 92.765) (xy 130.065589 92.765) (xy 130.088464 92.65) (xy 130.088464 91.15) (xy 130.058894 91.001341) (xy 129.974686 90.875314) (xy 129.848659 90.791106) (xy 129.7 90.761536) (xy 128.4 90.761536) (xy 128.251341 90.791106) (xy 128.125314 90.875314) (xy 128.041106 91.001341) (xy 128.011536 91.15) (xy 128.011536 91.265) (xy 127.963464 91.265) (xy 127.963464 91.05) (xy 127.933894 90.901341) (xy 127.849686 90.775314) (xy 127.723659 90.691106) (xy 127.575 90.661536) (xy 126.325 90.661536) (xy 126.176341 90.691106) (xy 126.050314 90.775314) (xy 125.966106 90.901341) (xy 125.953503 90.9647) (xy 121.787154 90.9647) (xy 121.787154 90.65101) (xy 121.757584 90.502351) (xy 121.673376 90.376324) (xy 121.547349 90.292116) (xy 121.39869 90.262546) (xy 121.085 90.262546) (xy 121.085 90.186034) (xy 121.39869 90.186034) (xy 121.547349 90.156464) (xy 121.673376 90.072256) (xy 121.757584 89.946229) (xy 121.787154 89.79757) (xy 121.787154 87.90019) (xy 121.757584 87.751531) (xy 121.689744 87.65) (xy 121.757584 87.548469) (xy 121.787154 87.39981) (xy 121.787154 85.50243) (xy 121.757584 85.353771) (xy 121.673376 85.227744) (xy 121.547349 85.143536) (xy 121.39869 85.113966) (xy 121.085 85.113966) (xy 121.085 85.037454) (xy 121.39869 85.037454) (xy 121.547349 85.007884) (xy 121.673376 84.923676) (xy 121.757584 84.797649) (xy 121.787154 84.64899) (xy 121.787154 82.75161) (xy 121.780163 82.716465) ) ) (filled_polygon (pts (xy 140.309779 81.564437) (xy 140.199658 81.729244) (xy 140.160989 81.923647) (xy 140.160989 88.770591) (xy 138.635859 90.295721) (xy 138.37714 90.295721) (xy 138.37714 89.88147) (xy 138.27039 89.77472) (xy 137.838224 89.77472) (xy 137.838224 89.72872) (xy 138.27039 89.72872) (xy 138.37714 89.62197) (xy 138.37714 88.941784) (xy 138.312133 88.784844) (xy 138.192016 88.664727) (xy 138.035075 88.59972) (xy 137.93003 88.59972) (xy 137.823282 88.706468) (xy 137.823282 88.59972) (xy 137.8079 88.59972) (xy 137.8079 87.9499) (xy 137.769231 87.755497) (xy 137.65911 87.59069) (xy 137.440737 87.372317) (xy 137.45691 87.36151) (xy 138.15949 86.65893) (xy 138.269611 86.494124) (xy 138.30828 86.29972) (xy 138.30828 86.024027) (xy 138.309034 86.022899) (xy 138.338604 85.87424) (xy 138.338604 84.42424) (xy 138.309034 84.275581) (xy 138.224826 84.149554) (xy 138.098799 84.065346) (xy 137.95014 84.035776) (xy 137.732644 84.035776) (xy 140.460421 81.308) (xy 140.566216 81.308) ) ) (filled_polygon (pts (xy 143.29836 64.17792) (xy 143.31836 64.17792) (xy 143.31836 64.22392) (xy 143.29836 64.22392) (xy 143.29836 65.2565) (xy 143.40511 65.36325) (xy 143.569845 65.36325) (xy 143.680129 65.317569) (xy 143.71605 65.324714) (xy 144.13515 65.324714) (xy 144.25072 65.301726) (xy 144.36629 65.324714) (xy 144.78539 65.324714) (xy 144.90096 65.301726) (xy 145.01653 65.324714) (xy 145.43563 65.324714) (xy 145.54993 65.301978) (xy 145.66423 65.324714) (xy 146.08333 65.324714) (xy 146.231989 65.295144) (xy 146.245391 65.286189) (xy 144.86687 66.66471) (xy 144.756749 66.829517) (xy 144.71808 67.02392) (xy 144.71808 68.670206) (xy 144.35613 68.670206) (xy 144.24564 68.692184) (xy 144.13515 68.670206) (xy 143.71605 68.670206) (xy 143.671844 68.678999) (xy 143.569845 68.63675) (xy 143.40511 68.63675) (xy 143.29836 68.7435) (xy 143.29836 69.77608) (xy 143.31836 69.77608) (xy 143.31836 69.82208) (xy 143.29836 69.82208) (xy 143.29836 70.85466) (xy 143.40511 70.96141) (xy 143.4176 70.96141) (xy 143.4176 71.0756) (xy 143.456269 71.270003) (xy 143.56639 71.43481) (xy 144.29079 72.15921) (xy 144.455596 72.269331) (xy 144.48785 72.275746) (xy 144.65 72.308) (xy 145.765648 72.308) (xy 145.521648 72.552) (xy 143.220421 72.552) (xy 143.13312 72.4647) (xy 143.13312 70.96141) (xy 143.14561 70.96141) (xy 143.25236 70.85466) (xy 143.25236 69.82208) (xy 143.23236 69.82208) (xy 143.23236 69.77608) (xy 143.25236 69.77608) (xy 143.25236 68.7435) (xy 143.14561 68.63675) (xy 142.980875 68.63675) (xy 142.870591 68.682431) (xy 142.83467 68.675286) (xy 142.481383 68.675286) (xy 142.444211 68.488409) (xy 142.33409 68.323602) (xy 142.156546 68.146058) (xy 142.255561 68.146145) (xy 142.562937 68.019139) (xy 142.798313 67.784174) (xy 142.925854 67.47702) (xy 142.926145 67.144439) (xy 142.799139 66.837063) (xy 142.564174 66.601687) (xy 142.25702 66.474146) (xy 142.075645 66.473987) (xy 141.90564 66.303982) (xy 141.90564 65.324714) (xy 142.18443 65.324714) (xy 142.3 65.301726) (xy 142.41557 65.324714) (xy 142.83467 65.324714) (xy 142.870591 65.317569) (xy 142.980875 65.36325) (xy 143.14561 65.36325) (xy 143.25236 65.2565) (xy 143.25236 64.22392) (xy 143.23236 64.22392) (xy 143.23236 64.17792) (xy 143.25236 64.17792) (xy 143.25236 64.15792) (xy 143.29836 64.15792) ) ) (filled_polygon (pts (xy 154.692507 44.399493) (xy 154.898516 44.537144) (xy 155.14152 44.58548) (xy 155.551756 44.58548) (xy 155.551756 44.80519) (xy 155.581326 44.953849) (xy 155.665534 45.079876) (xy 155.791561 45.164084) (xy 155.94022 45.193654) (xy 156.126413 45.193654) (xy 156.228901 45.262134) (xy 156.45124 45.30636) (xy 156.673579 45.262134) (xy 156.776067 45.193654) (xy 156.9613 45.193654) (xy 157.109959 45.164084) (xy 157.235986 45.079876) (xy 157.320194 44.953849) (xy 157.349764 44.80519) (xy 157.349764 44.63548) (xy 161.952161 44.63548) (xy 162.025346 44.708793) (xy 162.3325 44.836334) (xy 162.665081 44.836625) (xy 162.972457 44.709619) (xy 163.207833 44.474654) (xy 163.335374 44.1675) (xy 163.335665 43.834919) (xy 163.208659 43.527543) (xy 163.18915 43.508) (xy 164.497512 43.508) (xy 165.993021 45.003511) (xy 165.993021 45.883938) (xy 165.796793 45.590262) (xy 165.42987 45.345092) (xy 164.997055 45.259) (xy 164.442945 45.259) (xy 164.01013 45.345092) (xy 163.643207 45.590262) (xy 163.398037 45.957185) (xy 163.311945 46.39) (xy 163.384885 46.756695) (xy 163.04958 47.092) (xy 162.822099 47.092) (xy 163.001963 46.822815) (xy 163.088055 46.39) (xy 163.001963 45.957185) (xy 162.756793 45.590262) (xy 162.38987 45.345092) (xy 161.957055 45.259) (xy 161.402945 45.259) (xy 160.97013 45.345092) (xy 160.603207 45.590262) (xy 160.408274 45.882) (xy 158.46 45.882) (xy 158.265597 45.920669) (xy 158.10079 46.03079) (xy 151.99079 52.14079) (xy 151.880669 52.305597) (xy 151.842 52.5) (xy 151.842 58.38958) (xy 147.774245 62.457335) (xy 146.845512 62.457335) (xy 147.60873 61.694117) (xy 147.718851 61.52931) (xy 147.75752 61.334907) (xy 147.75752 53.50048) (xy 148.516056 53.50048) (xy 148.516056 55.50048) (xy 148.545626 55.649139) (xy 148.629834 55.775166) (xy 148.755861 55.859374) (xy 148.90452 55.888944) (xy 150.35452 55.888944) (xy 150.503179 55.859374) (xy 150.629206 55.775166) (xy 150.713414 55.649139) (xy 150.742984 55.50048) (xy 150.742984 53.50048) (xy 150.713414 53.351821) (xy 150.629206 53.225794) (xy 150.503179 53.141586) (xy 150.35452 53.112016) (xy 148.90452 53.112016) (xy 148.755861 53.141586) (xy 148.629834 53.225794) (xy 148.545626 53.351821) (xy 148.516056 53.50048) (xy 147.75752 53.50048) (xy 147.75752 49.917462) (xy 147.798179 49.909374) (xy 147.924206 49.825166) (xy 148.008414 49.699139) (xy 148.037984 49.55048) (xy 148.037984 48.05048) (xy 148.008414 47.901821) (xy 147.924206 47.775794) (xy 147.798179 47.691586) (xy 147.64952 47.662016) (xy 146.84952 47.662016) (xy 146.700861 47.691586) (xy 146.69952 47.692482) (xy 146.698179 47.691586) (xy 146.54952 47.662016) (xy 145.74952 47.662016) (xy 145.667079 47.678415) (xy 145.534455 47.62348) (xy 145.17927 47.62348) (xy 145.07252 47.73023) (xy 145.07252 48.77748) (xy 145.09252 48.77748) (xy 145.09252 48.82348) (xy 145.07252 48.82348) (xy 145.07252 49.87073) (xy 145.17927 49.97748) (xy 145.534455 49.97748) (xy 145.64152 49.933132) (xy 145.64152 60.832545) (xy 145.648035 60.865298) (xy 145.648035 61.549314) (xy 144.727 61.549314) (xy 144.727 61.12975) (xy 144.62025 61.023) (xy 143.573 61.023) (xy 143.573 61.043) (xy 143.527 61.043) (xy 143.527 61.023) (xy 143.507 61.023) (xy 143.507 60.977) (xy 143.527 60.977) (xy 143.527 60.05475) (xy 143.573 60.05475) (xy 143.573 60.977) (xy 144.62025 60.977) (xy 144.727 60.87025) (xy 144.727 60.290064) (xy 144.661993 60.133124) (xy 144.541876 60.013007) (xy 144.384935 59.948) (xy 143.67975 59.948) (xy 143.573 60.05475) (xy 143.527 60.05475) (xy 143.42025 59.948) (xy 143.02042 59.948) (xy 144.308731 58.65969) (xy 144.418851 58.494883) (xy 144.45752 58.30048) (xy 144.45752 49.933132) (xy 144.564585 49.97748) (xy 144.91977 49.97748) (xy 145.02652 49.87073) (xy 145.02652 48.82348) (xy 145.00652 48.82348) (xy 145.00652 48.77748) (xy 145.02652 48.77748) (xy 145.02652 47.73023) (xy 144.91977 47.62348) (xy 144.564585 47.62348) (xy 144.431961 47.678415) (xy 144.34952 47.662016) (xy 143.54952 47.662016) (xy 143.48452 47.674945) (xy 143.48452 47.544413) (xy 143.485 47.542) (xy 143.485 45.20048) (xy 148.516056 45.20048) (xy 148.516056 47.20048) (xy 148.545626 47.349139) (xy 148.629834 47.475166) (xy 148.755861 47.559374) (xy 148.90452 47.588944) (xy 150.35452 47.588944) (xy 150.503179 47.559374) (xy 150.629206 47.475166) (xy 150.713414 47.349139) (xy 150.742984 47.20048) (xy 150.742984 45.20048) (xy 150.713414 45.051821) (xy 150.629206 44.925794) (xy 150.503179 44.841586) (xy 150.35452 44.812016) (xy 148.90452 44.812016) (xy 148.755861 44.841586) (xy 148.629834 44.925794) (xy 148.545626 45.051821) (xy 148.516056 45.20048) (xy 143.485 45.20048) (xy 143.485 44.505868) (xy 150.949276 44.505868) (xy 150.949276 44.80519) (xy 150.978846 44.953849) (xy 151.063054 45.079876) (xy 151.189081 45.164084) (xy 151.33774 45.193654) (xy 151.652805 45.193654) (xy 151.654357 45.194691) (xy 151.84876 45.23336) (xy 152.043163 45.194691) (xy 152.044715 45.193654) (xy 152.35882 45.193654) (xy 152.507479 45.164084) (xy 152.633506 45.079876) (xy 152.717714 44.953849) (xy 152.747284 44.80519) (xy 152.747284 44.39625) (xy 152.723285 44.2756) (xy 152.747284 44.15495) (xy 152.747284 43.74601) (xy 152.723285 43.62536) (xy 152.747284 43.50471) (xy 152.747284 43.09577) (xy 152.723285 42.97512) (xy 152.747284 42.85447) (xy 152.747284 42.45427) ) ) (filled_polygon (pts (xy 165.993021 48.423938) (xy 165.796793 48.130262) (xy 165.42987 47.885092) (xy 164.997055 47.799) (xy 164.442945 47.799) (xy 164.01013 47.885092) (xy 163.643207 48.130262) (xy 163.398037 48.497185) (xy 163.311945 48.93) (xy 163.384885 49.296695) (xy 163.18257 49.49901) (xy 162.936671 49.49901) (xy 163.026208 49.359169) (xy 163.088689 49.136805) (xy 163.000003 48.953) (xy 161.703 48.953) (xy 161.703 48.973) (xy 161.657 48.973) (xy 161.657 48.953) (xy 160.359997 48.953) (xy 160.271311 49.136805) (xy 160.333792 49.359169) (xy 160.423329 49.49901) (xy 158.54299 49.49901) (xy 158.348587 49.537679) (xy 158.18378 49.6478) (xy 153.358 54.47358) (xy 153.358 53.51042) (xy 158.76042 48.108) (xy 160.590081 48.108) (xy 160.581472 48.113999) (xy 160.333792 48.500831) (xy 160.271311 48.723195) (xy 160.359997 48.907) (xy 161.657 48.907) (xy 161.657 48.887) (xy 161.703 48.887) (xy 161.703 48.907) (xy 163.000003 48.907) (xy 163.088689 48.723195) (xy 163.026208 48.500831) (xy 162.778528 48.113999) (xy 162.769919 48.108) (xy 163.26 48.108) (xy 163.454403 48.069331) (xy 163.61921 47.95921) (xy 164.121383 47.457038) (xy 164.442945 47.521) (xy 164.997055 47.521) (xy 165.42987 47.434908) (xy 165.796793 47.189738) (xy 165.993021 46.896062) ) ) (filled_polygon (pts (xy 130.765648 52.292) (xy 125.759919 52.292) (xy 125.768528 52.286001) (xy 126.016208 51.899169) (xy 126.078689 51.676805) (xy 125.990003 51.493) (xy 124.693 51.493) (xy 124.693 51.513) (xy 124.647 51.513) (xy 124.647 51.493) (xy 124.627 51.493) (xy 124.627 51.447) (xy 124.647 51.447) (xy 124.647 51.427) (xy 124.693 51.427) (xy 124.693 51.447) (xy 125.990003 51.447) (xy 126.078689 51.263195) (xy 126.016208 51.040831) (xy 125.803104 50.708) (xy 129.181648 50.708) ) ) (filled_polygon (pts (xy 153.27247 35.915494) (xy 153.27247 36.27073) (xy 153.37922 36.37748) (xy 154.07652 36.37748) (xy 154.07652 36.35748) (xy 154.12252 36.35748) (xy 154.12252 36.37748) (xy 154.81982 36.37748) (xy 154.91444 36.28286) (xy 155.52358 36.892) (xy 154.923864 36.892) (xy 154.92657 36.885466) (xy 154.92657 36.53023) (xy 154.81982 36.42348) (xy 154.12252 36.42348) (xy 154.12252 36.44348) (xy 154.07652 36.44348) (xy 154.07652 36.42348) (xy 153.37922 36.42348) (xy 153.27247 36.53023) (xy 153.27247 36.885466) (xy 153.293217 36.935553) (xy 153.13572 37.040789) (xy 152.79031 37.3862) (xy 152.680189 37.551007) (xy 152.664921 37.627764) (xy 152.600811 37.640516) (xy 152.474784 37.724724) (xy 152.390576 37.850751) (xy 152.361006 37.99941) (xy 152.361006 38.79951) (xy 152.390576 38.948169) (xy 152.474784 39.074196) (xy 152.600811 39.158404) (xy 152.74947 39.187974) (xy 153.54957 39.187974) (xy 153.698229 39.158404) (xy 153.824256 39.074196) (xy 153.908464 38.948169) (xy 153.938034 38.79951) (xy 153.938034 37.99941) (xy 153.919851 37.908) (xy 154.279189 37.908) (xy 154.261006 37.99941) (xy 154.261006 38.79951) (xy 154.290576 38.948169) (xy 154.374784 39.074196) (xy 154.46852 39.136828) (xy 154.46852 39.446604) (xy 154.424834 39.475794) (xy 154.340626 39.601821) (xy 154.311056 39.75048) (xy 154.311056 41.05048) (xy 154.340626 41.199139) (xy 154.424834 41.325166) (xy 154.550861 41.409374) (xy 154.69952 41.438944) (xy 154.924162 41.438944) (xy 155.038691 41.610349) (xy 155.638959 42.210617) (xy 155.581326 42.296871) (xy 155.551756 42.44553) (xy 155.551756 42.85447) (xy 155.575755 42.97512) (xy 155.551756 43.09577) (xy 155.551756 43.31548) (xy 155.404546 43.31548) (xy 153.523283 41.434217) (xy 153.648179 41.409374) (xy 153.774206 41.325166) (xy 153.858414 41.199139) (xy 153.887984 41.05048) (xy 153.887984 39.75048) (xy 153.858414 39.601821) (xy 153.774206 39.475794) (xy 153.648179 39.391586) (xy 153.49952 39.362016) (xy 151.99952 39.362016) (xy 151.850861 39.391586) (xy 151.724834 39.475794) (xy 151.640626 39.601821) (xy 151.611056 39.75048) (xy 151.611056 41.05048) (xy 151.640626 41.199139) (xy 151.724834 41.325166) (xy 151.850861 41.409374) (xy 151.99952 41.438944) (xy 152.11452 41.438944) (xy 152.11452 41.55848) (xy 152.162856 41.801484) (xy 152.300507 42.007493) (xy 152.35008 42.057066) (xy 151.33774 42.057066) (xy 151.189081 42.086636) (xy 151.063054 42.170844) (xy 150.978846 42.296871) (xy 150.949276 42.44553) (xy 150.949276 42.85447) (xy 150.973275 42.97512) (xy 150.949276 43.09577) (xy 150.949276 43.235868) (xy 134.336504 43.235868) (xy 134.336504 43.016158) (xy 134.312505 42.895508) (xy 134.336504 42.774858) (xy 134.336504 42.365918) (xy 134.306934 42.217259) (xy 134.222726 42.091232) (xy 134.096699 42.007024) (xy 133.94804 41.977454) (xy 133.060925 41.977454) (xy 133.086294 41.939487) (xy 133.13052 41.717148) (xy 133.13052 41.438944) (xy 133.29952 41.438944) (xy 133.448179 41.409374) (xy 133.574206 41.325166) (xy 133.658414 41.199139) (xy 133.687984 41.05048) (xy 133.687984 39.75048) (xy 133.658414 39.601821) (xy 133.574206 39.475794) (xy 133.448179 39.391586) (xy 133.29952 39.362016) (xy 132.73052 39.362016) (xy 132.73052 39.138608) (xy 132.824256 39.075976) (xy 132.908464 38.949949) (xy 132.938034 38.80129) (xy 132.938034 38.00119) (xy 132.908464 37.852531) (xy 132.824256 37.726504) (xy 132.698229 37.642296) (xy 132.54957 37.612726) (xy 132.267752 37.612726) (xy 133.972478 35.908) (xy 153.275574 35.908) ) ) ) (zone (net 2) (net_name GND) (layer B.Cu) (tstamp 56424D85) (hatch edge 0.508) (connect_pads (clearance 0.508)) (min_thickness 0.254) (fill yes (arc_segments 16) (thermal_gap 0.3) (thermal_bridge_width 0.3) (smoothing fillet)) (polygon (pts (xy 168.19952 147.60048) (xy 118.19952 147.60048) (xy 118.19952 33.60048) (xy 168.19952 33.60048) ) ) (filled_polygon (pts (xy 167.48952 146.89048) (xy 118.90952 146.89048) (xy 118.90952 144.422325) (xy 120.864587 144.422325) (xy 121.226916 145.299229) (xy 121.897242 145.970726) (xy 122.773513 146.334585) (xy 123.722325 146.335413) (xy 124.599229 145.973084) (xy 125.270726 145.302758) (xy 125.634585 144.426487) (xy 125.635413 143.477675) (xy 125.442174 143.01) (xy 126.643572 143.01) (xy 126.643572 146.83) (xy 143.356429 146.83) (xy 143.356429 144.422325) (xy 160.864587 144.422325) (xy 161.226916 145.299229) (xy 161.897242 145.970726) (xy 162.773513 146.334585) (xy 163.722325 146.335413) (xy 164.599229 145.973084) (xy 165.270726 145.302758) (xy 165.634585 144.426487) (xy 165.635413 143.477675) (xy 165.273084 142.600771) (xy 164.602758 141.929274) (xy 163.726487 141.565415) (xy 162.777675 141.564587) (xy 161.900771 141.926916) (xy 161.229274 142.597242) (xy 160.865415 143.473513) (xy 160.864587 144.422325) (xy 143.356429 144.422325) (xy 143.356429 143.01) (xy 141.982143 143.01) (xy 141.982143 139.57) (xy 127.697857 139.57) (xy 127.697857 143.01) (xy 126.643572 143.01) (xy 125.442174 143.01) (xy 125.273084 142.600771) (xy 124.602758 141.929274) (xy 123.726487 141.565415) (xy 122.777675 141.564587) (xy 121.900771 141.926916) (xy 121.229274 142.597242) (xy 120.865415 143.473513) (xy 120.864587 144.422325) (xy 118.90952 144.422325) (xy 118.90952 137.923305) (xy 121.214194 137.923305) (xy 121.500563 138.616372) (xy 122.030359 139.147093) (xy 122.722925 139.434672) (xy 123.472825 139.435326) (xy 124.165892 139.148957) (xy 124.696613 138.619161) (xy 124.984192 137.926595) (xy 124.984846 137.176695) (xy 124.756191 136.623305) (xy 128.814194 136.623305) (xy 129.100563 137.316372) (xy 129.630359 137.847093) (xy 130.322925 138.134672) (xy 131.072825 138.135326) (xy 131.765892 137.848957) (xy 132.296613 137.319161) (xy 132.584192 136.626595) (xy 132.584194 136.623305) (xy 133.814194 136.623305) (xy 134.100563 137.316372) (xy 134.630359 137.847093) (xy 135.322925 138.134672) (xy 136.072825 138.135326) (xy 136.765892 137.848957) (xy 137.296613 137.319161) (xy 137.584192 136.626595) (xy 137.584194 136.623305) (xy 138.814194 136.623305) (xy 139.100563 137.316372) (xy 139.630359 137.847093) (xy 140.322925 138.134672) (xy 141.072825 138.135326) (xy 141.765892 137.848957) (xy 142.296613 137.319161) (xy 142.584192 136.626595) (xy 142.584846 135.876695) (xy 142.298477 135.183628) (xy 141.768681 134.652907) (xy 141.076115 134.365328) (xy 140.326215 134.364674) (xy 139.633148 134.651043) (xy 139.102427 135.180839) (xy 138.814848 135.873405) (xy 138.814194 136.623305) (xy 137.584194 136.623305) (xy 137.584846 135.876695) (xy 137.298477 135.183628) (xy 136.768681 134.652907) (xy 136.076115 134.365328) (xy 135.326215 134.364674) (xy 134.633148 134.651043) (xy 134.102427 135.180839) (xy 133.814848 135.873405) (xy 133.814194 136.623305) (xy 132.584194 136.623305) (xy 132.584846 135.876695) (xy 132.298477 135.183628) (xy 131.768681 134.652907) (xy 131.076115 134.365328) (xy 130.326215 134.364674) (xy 129.633148 134.651043) (xy 129.102427 135.180839) (xy 128.814848 135.873405) (xy 128.814194 136.623305) (xy 124.756191 136.623305) (xy 124.698477 136.483628) (xy 124.168681 135.952907) (xy 123.476115 135.665328) (xy 122.726215 135.664674) (xy 122.033148 135.951043) (xy 121.502427 136.480839) (xy 121.214848 137.173405) (xy 121.214194 137.923305) (xy 118.90952 137.923305) (xy 118.90952 132.923305) (xy 121.214194 132.923305) (xy 121.500563 133.616372) (xy 122.030359 134.147093) (xy 122.722925 134.434672) (xy 123.472825 134.435326) (xy 124.165892 134.148957) (xy 124.696613 133.619161) (xy 124.984192 132.926595) (xy 124.984846 132.176695) (xy 124.698477 131.483628) (xy 124.168681 130.952907) (xy 123.476115 130.665328) (xy 122.726215 130.664674) (xy 122.033148 130.951043) (xy 121.502427 131.480839) (xy 121.214848 132.173405) (xy 121.214194 132.923305) (xy 118.90952 132.923305) (xy 118.90952 127.923305) (xy 121.214194 127.923305) (xy 121.500563 128.616372) (xy 122.030359 129.147093) (xy 122.722925 129.434672) (xy 123.472825 129.435326) (xy 124.106965 129.173305) (xy 128.814194 129.173305) (xy 129.100563 129.866372) (xy 129.630359 130.397093) (xy 130.322925 130.684672) (xy 131.072825 130.685326) (xy 131.765892 130.398957) (xy 132.296613 129.869161) (xy 132.584192 129.176595) (xy 132.584194 129.173305) (xy 133.814194 129.173305) (xy 134.100563 129.866372) (xy 134.630359 130.397093) (xy 135.322925 130.684672) (xy 136.072825 130.685326) (xy 136.765892 130.398957) (xy 137.296613 129.869161) (xy 137.584192 129.176595) (xy 137.584194 129.173305) (xy 138.814194 129.173305) (xy 139.100563 129.866372) (xy 139.630359 130.397093) (xy 140.322925 130.684672) (xy 141.072825 130.685326) (xy 141.765892 130.398957) (xy 142.296613 129.869161) (xy 142.584192 129.176595) (xy 142.584846 128.426695) (xy 142.298477 127.733628) (xy 141.768681 127.202907) (xy 141.076115 126.915328) (xy 140.326215 126.914674) (xy 139.633148 127.201043) (xy 139.102427 127.730839) (xy 138.814848 128.423405) (xy 138.814194 129.173305) (xy 137.584194 129.173305) (xy 137.584846 128.426695) (xy 137.298477 127.733628) (xy 136.768681 127.202907) (xy 136.076115 126.915328) (xy 135.326215 126.914674) (xy 134.633148 127.201043) (xy 134.102427 127.730839) (xy 133.814848 128.423405) (xy 133.814194 129.173305) (xy 132.584194 129.173305) (xy 132.584846 128.426695) (xy 132.298477 127.733628) (xy 131.768681 127.202907) (xy 131.076115 126.915328) (xy 130.326215 126.914674) (xy 129.633148 127.201043) (xy 129.102427 127.730839) (xy 128.814848 128.423405) (xy 128.814194 129.173305) (xy 124.106965 129.173305) (xy 124.165892 129.148957) (xy 124.696613 128.619161) (xy 124.984192 127.926595) (xy 124.984846 127.176695) (xy 124.698477 126.483628) (xy 124.168681 125.952907) (xy 123.476115 125.665328) (xy 122.726215 125.664674) (xy 122.033148 125.951043) (xy 121.502427 126.480839) (xy 121.214848 127.173405) (xy 121.214194 127.923305) (xy 118.90952 127.923305) (xy 118.90952 124.80946) (xy 148.106519 124.80946) (xy 148.106519 134.545999) (xy 148.17419 134.886205) (xy 148.220962 134.956204) (xy 148.366901 135.174617) (xy 148.888446 135.696162) (xy 148.814848 135.873405) (xy 148.814194 136.623305) (xy 149.100563 137.316372) (xy 149.630359 137.847093) (xy 150.322925 138.134672) (xy 151.072825 138.135326) (xy 151.765892 137.848957) (xy 152.296613 137.319161) (xy 152.584192 136.626595) (xy 152.584846 135.876695) (xy 152.298477 135.183628) (xy 151.768681 134.652907) (xy 151.076115 134.365328) (xy 150.326215 134.364674) (xy 150.145924 134.439168) (xy 149.884519 134.177763) (xy 149.884519 130.2729) (xy 150.322763 130.467829) (xy 150.989693 130.485052) (xy 151.612446 130.245741) (xy 151.685848 130.196695) (xy 151.816706 129.949712) (xy 150.69952 128.832527) (xy 150.685378 128.846669) (xy 150.652851 128.814142) (xy 150.666993 128.8) (xy 150.732047 128.8) (xy 151.849232 129.917186) (xy 152.096215 129.786328) (xy 152.367349 129.176757) (xy 152.384572 128.509827) (xy 152.145261 127.887074) (xy 152.096215 127.813672) (xy 151.849232 127.682814) (xy 150.732047 128.8) (xy 150.666993 128.8) (xy 150.652851 128.785858) (xy 150.685378 128.753331) (xy 150.69952 128.767473) (xy 151.816706 127.650288) (xy 151.685848 127.403305) (xy 151.076277 127.132171) (xy 150.409347 127.114948) (xy 149.884519 127.316628) (xy 149.884519 125.260931) (xy 150.226629 125.119575) (xy 150.533518 124.81322) (xy 150.580755 124.69946) (xy 153.106519 124.69946) (xy 153.106519 134.615999) (xy 153.17419 134.956205) (xy 153.364377 135.240839) (xy 153.366901 135.244617) (xy 153.878446 135.756162) (xy 153.804848 135.933405) (xy 153.804194 136.683305) (xy 154.090563 137.376372) (xy 154.620359 137.907093) (xy 155.312925 138.194672) (xy 156.062825 138.195326) (xy 156.721167 137.923305) (xy 161.414194 137.923305) (xy 161.700563 138.616372) (xy 162.230359 139.147093) (xy 162.922925 139.434672) (xy 163.672825 139.435326) (xy 164.365892 139.148957) (xy 164.896613 138.619161) (xy 165.184192 137.926595) (xy 165.184846 137.176695) (xy 164.898477 136.483628) (xy 164.368681 135.952907) (xy 163.676115 135.665328) (xy 162.926215 135.664674) (xy 162.233148 135.951043) (xy 161.702427 136.480839) (xy 161.414848 137.173405) (xy 161.414194 137.923305) (xy 156.721167 137.923305) (xy 156.755892 137.908957) (xy 157.286613 137.379161) (xy 157.574192 136.686595) (xy 157.574846 135.936695) (xy 157.288477 135.243628) (xy 156.758681 134.712907) (xy 156.066115 134.425328) (xy 155.316215 134.424674) (xy 155.135924 134.499168) (xy 154.884519 134.247763) (xy 154.884519 132.923305) (xy 161.414194 132.923305) (xy 161.700563 133.616372) (xy 162.230359 134.147093) (xy 162.922925 134.434672) (xy 163.672825 134.435326) (xy 164.365892 134.148957) (xy 164.896613 133.619161) (xy 165.184192 132.926595) (xy 165.184846 132.176695) (xy 164.898477 131.483628) (xy 164.368681 130.952907) (xy 163.676115 130.665328) (xy 162.926215 130.664674) (xy 162.233148 130.951043) (xy 161.702427 131.480839) (xy 161.414848 132.173405) (xy 161.414194 132.923305) (xy 154.884519 132.923305) (xy 154.884519 130.2729) (xy 155.322763 130.467829) (xy 155.989693 130.485052) (xy 156.612446 130.245741) (xy 156.685848 130.196695) (xy 156.816706 129.949712) (xy 155.69952 128.832527) (xy 155.685378 128.846669) (xy 155.652851 128.814142) (xy 155.666993 128.8) (xy 155.732047 128.8) (xy 156.849232 129.917186) (xy 157.096215 129.786328) (xy 157.367349 129.176757) (xy 157.384572 128.509827) (xy 157.159184 127.923305) (xy 161.414194 127.923305) (xy 161.700563 128.616372) (xy 162.230359 129.147093) (xy 162.922925 129.434672) (xy 163.672825 129.435326) (xy 164.365892 129.148957) (xy 164.896613 128.619161) (xy 165.184192 127.926595) (xy 165.184846 127.176695) (xy 164.898477 126.483628) (xy 164.368681 125.952907) (xy 163.676115 125.665328) (xy 162.926215 125.664674) (xy 162.233148 125.951043) (xy 161.702427 126.480839) (xy 161.414848 127.173405) (xy 161.414194 127.923305) (xy 157.159184 127.923305) (xy 157.145261 127.887074) (xy 157.096215 127.813672) (xy 156.849232 127.682814) (xy 155.732047 128.8) (xy 155.666993 128.8) (xy 155.652851 128.785858) (xy 155.685378 128.753331) (xy 155.69952 128.767473) (xy 156.816706 127.650288) (xy 156.685848 127.403305) (xy 156.076277 127.132171) (xy 155.409347 127.114948) (xy 154.884519 127.316628) (xy 154.884519 125.21548) (xy 155.116629 125.119575) (xy 155.423518 124.81322) (xy 155.58981 124.412745) (xy 155.590188 123.979116) (xy 155.424596 123.57835) (xy 155.118241 123.271461) (xy 154.717766 123.105169) (xy 154.284137 123.104791) (xy 153.883371 123.270383) (xy 153.576482 123.576738) (xy 153.41019 123.977213) (xy 153.410146 124.027597) (xy 153.366901 124.070842) (xy 153.17419 124.359254) (xy 153.106519 124.69946) (xy 150.580755 124.69946) (xy 150.69981 124.412745) (xy 150.700188 123.979116) (xy 150.534596 123.57835) (xy 150.228241 123.271461) (xy 149.827766 123.105169) (xy 149.394137 123.104791) (xy 148.993371 123.270383) (xy 148.686482 123.576738) (xy 148.52019 123.977213) (xy 148.520146 124.027597) (xy 148.366901 124.180842) (xy 148.17419 124.469254) (xy 148.106519 124.80946) (xy 118.90952 124.80946) (xy 118.90952 114.22048) (xy 119.982488 114.22048) (xy 120.087915 114.750497) (xy 120.388145 115.199823) (xy 120.823144 115.49048) (xy 120.388145 115.781137) (xy 120.087915 116.230463) (xy 119.982488 116.76048) (xy 120.087915 117.290497) (xy 120.388145 117.739823) (xy 120.823144 118.03048) (xy 120.388145 118.321137) (xy 120.087915 118.770463) (xy 119.982488 119.30048) (xy 120.087915 119.830497) (xy 120.388145 120.279823) (xy 120.837471 120.580053) (xy 121.367488 120.68548) (xy 121.931552 120.68548) (xy 122.461569 120.580053) (xy 122.910895 120.279823) (xy 123.16952 119.892763) (xy 123.428145 120.279823) (xy 123.877471 120.580053) (xy 124.407488 120.68548) (xy 124.971552 120.68548) (xy 125.501569 120.580053) (xy 125.950895 120.279823) (xy 126.251125 119.830497) (xy 126.356552 119.30048) (xy 126.251125 118.770463) (xy 125.950895 118.321137) (xy 125.515896 118.03048) (xy 125.950895 117.739823) (xy 126.251125 117.290497) (xy 126.356552 116.76048) (xy 126.251125 116.230463) (xy 125.950895 115.781137) (xy 125.515896 115.49048) (xy 125.950895 115.199823) (xy 126.251125 114.750497) (xy 126.356552 114.22048) (xy 126.251125 113.690463) (xy 125.950895 113.241137) (xy 125.515896 112.95048) (xy 125.950895 112.659823) (xy 126.251125 112.210497) (xy 126.356552 111.68048) (xy 159.982488 111.68048) (xy 160.087915 112.210497) (xy 160.388145 112.659823) (xy 160.823144 112.95048) (xy 160.388145 113.241137) (xy 160.087915 113.690463) (xy 159.982488 114.22048) (xy 160.087915 114.750497) (xy 160.388145 115.199823) (xy 160.823144 115.49048) (xy 160.388145 115.781137) (xy 160.087915 116.230463) (xy 159.982488 116.76048) (xy 160.087915 117.290497) (xy 160.388145 117.739823) (xy 160.823144 118.03048) (xy 160.388145 118.321137) (xy 160.087915 118.770463) (xy 159.982488 119.30048) (xy 160.087915 119.830497) (xy 160.388145 120.279823) (xy 160.837471 120.580053) (xy 161.367488 120.68548) (xy 161.931552 120.68548) (xy 162.461569 120.580053) (xy 162.910895 120.279823) (xy 163.04714 120.075918) (xy 163.091363 120.298245) (xy 163.231711 120.508289) (xy 163.441755 120.648637) (xy 163.68952 120.69792) (xy 165.68952 120.69792) (xy 165.937285 120.648637) (xy 166.147329 120.508289) (xy 166.287677 120.298245) (xy 166.33696 120.05048) (xy 166.33696 118.55048) (xy 166.287677 118.302715) (xy 166.147329 118.092671) (xy 165.937285 117.952323) (xy 165.7027 117.905662) (xy 165.950895 117.739823) (xy 166.251125 117.290497) (xy 166.356552 116.76048) (xy 166.251125 116.230463) (xy 165.950895 115.781137) (xy 165.515896 115.49048) (xy 165.950895 115.199823) (xy 166.251125 114.750497) (xy 166.356552 114.22048) (xy 166.251125 113.690463) (xy 165.950895 113.241137) (xy 165.515896 112.95048) (xy 165.950895 112.659823) (xy 166.251125 112.210497) (xy 166.356552 111.68048) (xy 166.251125 111.150463) (xy 165.950895 110.701137) (xy 165.501569 110.400907) (xy 164.971552 110.29548) (xy 164.407488 110.29548) (xy 163.877471 110.400907) (xy 163.428145 110.701137) (xy 163.16952 111.088197) (xy 162.910895 110.701137) (xy 162.461569 110.400907) (xy 161.931552 110.29548) (xy 161.367488 110.29548) (xy 160.837471 110.400907) (xy 160.388145 110.701137) (xy 160.087915 111.150463) (xy 159.982488 111.68048) (xy 126.356552 111.68048) (xy 126.251125 111.150463) (xy 125.950895 110.701137) (xy 125.501569 110.400907) (xy 124.971552 110.29548) (xy 124.407488 110.29548) (xy 123.877471 110.400907) (xy 123.428145 110.701137) (xy 123.2919 110.905042) (xy 123.247677 110.682715) (xy 123.107329 110.472671) (xy 122.897285 110.332323) (xy 122.64952 110.28304) (xy 120.64952 110.28304) (xy 120.401755 110.332323) (xy 120.191711 110.472671) (xy 120.051363 110.682715) (xy 120.00208 110.93048) (xy 120.00208 112.43048) (xy 120.051363 112.678245) (xy 120.191711 112.888289) (xy 120.401755 113.028637) (xy 120.63634 113.075298) (xy 120.388145 113.241137) (xy 120.087915 113.690463) (xy 119.982488 114.22048) (xy 118.90952 114.22048) (xy 118.90952 103.715863) (xy 130.959812 103.715863) (xy 131.125404 104.116629) (xy 131.431759 104.423518) (xy 131.832234 104.58981) (xy 132.265863 104.590188) (xy 132.666629 104.424596) (xy 132.702287 104.389) (xy 137.1 104.389) (xy 137.440206 104.321329) (xy 137.728618 104.128618) (xy 140.478618 101.378618) (xy 140.671329 101.090206) (xy 140.739 100.75) (xy 140.739 100.352699) (xy 140.773518 100.318241) (xy 140.93981 99.917766) (xy 140.940188 99.484137) (xy 140.774596 99.083371) (xy 140.739 99.047713) (xy 140.739 98.815863) (xy 141.459812 98.815863) (xy 141.625404 99.216629) (xy 141.931759 99.523518) (xy 142.332234 99.68981) (xy 142.56238 99.690011) (xy 142.688 99.815631) (xy 142.688 103.520522) (xy 142.526482 103.681759) (xy 142.36019 104.082234) (xy 142.359812 104.515863) (xy 142.525404 104.916629) (xy 142.831759 105.223518) (xy 143.232234 105.38981) (xy 143.665863 105.390188) (xy 144.066629 105.224596) (xy 144.250051 105.041493) (xy 144.431759 105.223518) (xy 144.832234 105.38981) (xy 145.265863 105.390188) (xy 145.666629 105.224596) (xy 145.973518 104.918241) (xy 146.13981 104.517766) (xy 146.140188 104.084137) (xy 145.974596 103.683371) (xy 145.668241 103.376482) (xy 145.267766 103.21019) (xy 145.066999 103.210015) (xy 145.066999 98.154999) (xy 145.008995 97.863394) (xy 144.942833 97.764376) (xy 144.939947 97.760057) (xy 144.940188 97.484137) (xy 144.774596 97.083371) (xy 144.468241 96.776482) (xy 144.067766 96.61019) (xy 143.634137 96.609812) (xy 143.233371 96.775404) (xy 142.926482 97.081759) (xy 142.76019 97.482234) (xy 142.760166 97.510183) (xy 142.334137 97.509812) (xy 141.933371 97.675404) (xy 141.626482 97.981759) (xy 141.46019 98.382234) (xy 141.459812 98.815863) (xy 140.739 98.815863) (xy 140.739 95.515863) (xy 143.159812 95.515863) (xy 143.325404 95.916629) (xy 143.631759 96.223518) (xy 144.032234 96.38981) (xy 144.465863 96.390188) (xy 144.866629 96.224596) (xy 145.173518 95.918241) (xy 145.33981 95.517766) (xy 145.340188 95.084137) (xy 145.174596 94.683371) (xy 145.012 94.520492) (xy 145.012 93.715632) (xy 145.237644 93.489989) (xy 145.465865 93.490188) (xy 145.866631 93.324596) (xy 146.17352 93.018241) (xy 146.339812 92.617766) (xy 146.34019 92.184137) (xy 146.174598 91.783371) (xy 145.868243 91.476482) (xy 145.467768 91.31019) (xy 145.034139 91.309812) (xy 144.633373 91.475404) (xy 144.326484 91.781759) (xy 144.160192 92.182234) (xy 144.159991 92.41238) (xy 143.711185 92.861187) (xy 143.546004 93.108397) (xy 143.488 93.400002) (xy 143.488 94.520522) (xy 143.326482 94.681759) (xy 143.16019 95.082234) (xy 143.159812 95.515863) (xy 140.739 95.515863) (xy 140.739 93.968236) (xy 145.278618 89.428618) (xy 145.471329 89.140206) (xy 145.539 88.8) (xy 145.539 78.7) (xy 145.471329 78.359794) (xy 145.278618 78.071382) (xy 142.979 75.771764) (xy 142.979 69.617567) (xy 145.661516 69.617567) (xy 145.827108 70.018333) (xy 146.133463 70.325222) (xy 146.388 70.430915) (xy 146.388 73.970522) (xy 146.226482 74.131759) (xy 146.06019 74.532234) (xy 146.059812 74.965863) (xy 146.225404 75.366629) (xy 146.388 75.529508) (xy 146.388 92.870436) (xy 146.276002 92.982239) (xy 146.10971 93.382714) (xy 146.109332 93.816343) (xy 146.274924 94.217109) (xy 146.581279 94.523998) (xy 146.981754 94.69029) (xy 147.415383 94.690668) (xy 147.816149 94.525076) (xy 148.123038 94.218721) (xy 148.28933 93.818246) (xy 148.289708 93.384617) (xy 148.124116 92.983851) (xy 147.912 92.771365) (xy 147.912 75.529478) (xy 148.073518 75.368241) (xy 148.23981 74.967766) (xy 148.240188 74.534137) (xy 148.074596 74.133371) (xy 147.912 73.970492) (xy 147.912 69.8) (xy 147.853996 69.508395) (xy 147.841627 69.489883) (xy 147.841892 69.185841) (xy 147.6763 68.785075) (xy 147.369945 68.478186) (xy 146.96947 68.311894) (xy 146.535841 68.311516) (xy 146.135075 68.477108) (xy 145.828186 68.783463) (xy 145.661894 69.183938) (xy 145.661516 69.617567) (xy 142.979 69.617567) (xy 142.979 67.962699) (xy 143.013518 67.928241) (xy 143.17981 67.527766) (xy 143.180188 67.094137) (xy 143.027102 66.723638) (xy 153.22487 66.723638) (xy 153.435366 67.233077) (xy 153.651947 67.450037) (xy 153.436736 67.664873) (xy 153.225351 68.173944) (xy 153.22487 68.725158) (xy 153.435366 69.234597) (xy 153.824793 69.624704) (xy 154.007004 69.700365) (xy 153.826843 69.774806) (xy 153.436736 70.164233) (xy 153.225351 70.673304) (xy 153.22487 71.224518) (xy 153.435366 71.733957) (xy 153.824793 72.124064) (xy 154.333864 72.335449) (xy 154.885078 72.33593) (xy 155.394517 72.125434) (xy 155.784624 71.736007) (xy 155.996009 71.226936) (xy 155.99649 70.675722) (xy 155.785994 70.166283) (xy 155.396567 69.776176) (xy 155.214356 69.700515) (xy 155.394517 69.626074) (xy 155.784624 69.236647) (xy 155.996009 68.727576) (xy 155.99649 68.176362) (xy 155.785994 67.666923) (xy 155.569413 67.449963) (xy 155.784624 67.235127) (xy 155.996009 66.726056) (xy 155.99649 66.174842) (xy 155.785994 65.665403) (xy 155.396567 65.275296) (xy 154.939718 65.085596) (xy 155.257509 64.961389) (xy 155.297662 64.934559) (xy 155.367742 64.739469) (xy 154.61068 63.982407) (xy 153.853618 64.739469) (xy 153.923698 64.934559) (xy 154.275387 65.088591) (xy 153.826843 65.273926) (xy 153.436736 65.663353) (xy 153.225351 66.172424) (xy 153.22487 66.723638) (xy 143.027102 66.723638) (xy 143.014596 66.693371) (xy 142.708241 66.386482) (xy 142.307766 66.22019) (xy 141.874137 66.219812) (xy 141.473371 66.385404) (xy 141.166482 66.691759) (xy 141.00019 67.092234) (xy 140.999812 67.525863) (xy 141.165404 67.926629) (xy 141.201 67.962287) (xy 141.201 76.14) (xy 141.268671 76.480206) (xy 141.461382 76.768618) (xy 143.761 79.068236) (xy 143.761 88.431764) (xy 139.221382 92.971382) (xy 139.028671 93.259794) (xy 138.961 93.6) (xy 138.961 99.047301) (xy 138.926482 99.081759) (xy 138.76019 99.482234) (xy 138.759812 99.915863) (xy 138.925404 100.316629) (xy 138.961 100.352287) (xy 138.961 100.381764) (xy 136.731764 102.611) (xy 132.702699 102.611) (xy 132.668241 102.576482) (xy 132.267766 102.41019) (xy 131.834137 102.409812) (xy 131.433371 102.575404) (xy 131.126482 102.881759) (xy 130.96019 103.282234) (xy 130.959812 103.715863) (xy 118.90952 103.715863) (xy 118.90952 102.104729) (xy 121.866041 102.104729) (xy 122.023093 102.484824) (xy 122.313646 102.775885) (xy 122.693466 102.9336) (xy 123.104729 102.933959) (xy 123.484824 102.776907) (xy 123.775885 102.486354) (xy 123.9336 102.106534) (xy 123.933959 101.695271) (xy 123.776907 101.315176) (xy 123.486354 101.024115) (xy 123.106534 100.8664) (xy 122.695271 100.866041) (xy 122.315176 101.023093) (xy 122.024115 101.313646) (xy 121.8664 101.693466) (xy 121.866041 102.104729) (xy 118.90952 102.104729) (xy 118.90952 98.004729) (xy 121.866041 98.004729) (xy 122.023093 98.384824) (xy 122.313646 98.675885) (xy 122.693466 98.8336) (xy 123.104729 98.833959) (xy 123.484824 98.676907) (xy 123.775885 98.386354) (xy 123.9336 98.006534) (xy 123.933959 97.595271) (xy 123.776907 97.215176) (xy 123.486354 96.924115) (xy 123.106534 96.7664) (xy 122.695271 96.766041) (xy 122.315176 96.923093) (xy 122.024115 97.213646) (xy 121.8664 97.593466) (xy 121.866041 98.004729) (xy 118.90952 98.004729) (xy 118.90952 89.904729) (xy 121.866041 89.904729) (xy 122.023093 90.284824) (xy 122.313646 90.575885) (xy 122.693466 90.7336) (xy 123.104729 90.733959) (xy 123.484824 90.576907) (xy 123.775885 90.286354) (xy 123.9336 89.906534) (xy 123.933959 89.495271) (xy 123.776907 89.115176) (xy 123.486354 88.824115) (xy 123.106534 88.6664) (xy 122.695271 88.666041) (xy 122.315176 88.823093) (xy 122.024115 89.113646) (xy 121.8664 89.493466) (xy 121.866041 89.904729) (xy 118.90952 89.904729) (xy 118.90952 85.804729) (xy 121.866041 85.804729) (xy 122.023093 86.184824) (xy 122.313646 86.475885) (xy 122.693466 86.6336) (xy 123.104729 86.633959) (xy 123.484824 86.476907) (xy 123.545974 86.415863) (xy 129.659812 86.415863) (xy 129.825404 86.816629) (xy 129.988 86.979508) (xy 129.988 88.920522) (xy 129.826482 89.081759) (xy 129.66019 89.482234) (xy 129.659812 89.915863) (xy 129.825404 90.316629) (xy 130.131759 90.623518) (xy 130.532234 90.78981) (xy 130.959926 90.790183) (xy 130.959816 90.915863) (xy 131.125408 91.316629) (xy 131.431763 91.623518) (xy 131.832238 91.78981) (xy 132.265867 91.790188) (xy 132.666633 91.624596) (xy 132.973522 91.318241) (xy 133.139814 90.917766) (xy 133.140192 90.484137) (xy 132.9746 90.083371) (xy 132.939004 90.047713) (xy 132.939004 89.13034) (xy 133.181759 89.373518) (xy 133.582234 89.53981) (xy 134.015863 89.540188) (xy 134.416629 89.374596) (xy 134.723518 89.068241) (xy 134.88981 88.667766) (xy 134.890188 88.234137) (xy 134.724596 87.833371) (xy 134.562 87.670492) (xy 134.562 86.829478) (xy 134.723518 86.668241) (xy 134.88981 86.267766) (xy 134.890188 85.834137) (xy 134.724596 85.433371) (xy 134.418241 85.126482) (xy 134.017766 84.96019) (xy 133.584137 84.959812) (xy 133.521573 84.985663) (xy 135.717091 82.790145) (xy 135.765863 82.790188) (xy 136.166629 82.624596) (xy 136.473518 82.318241) (xy 136.63981 81.917766) (xy 136.640188 81.484137) (xy 136.474596 81.083371) (xy 136.168241 80.776482) (xy 135.767766 80.61019) (xy 135.334137 80.609812) (xy 134.933371 80.775404) (xy 134.626482 81.081759) (xy 134.46019 81.482234) (xy 134.460146 81.532618) (xy 131.421386 84.571378) (xy 131.228675 84.85979) (xy 131.162762 85.191159) (xy 130.967766 85.11019) (xy 130.534137 85.109812) (xy 130.133371 85.275404) (xy 129.826482 85.581759) (xy 129.66019 85.982234) (xy 129.659812 86.415863) (xy 123.545974 86.415863) (xy 123.775885 86.186354) (xy 123.9336 85.806534) (xy 123.933959 85.395271) (xy 123.776907 85.015176) (xy 123.486354 84.724115) (xy 123.106534 84.5664) (xy 122.695271 84.566041) (xy 122.315176 84.723093) (xy 122.024115 85.013646) (xy 121.8664 85.393466) (xy 121.866041 85.804729) (xy 118.90952 85.804729) (xy 118.90952 78.515863) (xy 125.959812 78.515863) (xy 126.125404 78.916629) (xy 126.431759 79.223518) (xy 126.832234 79.38981) (xy 127.265863 79.390188) (xy 127.666629 79.224596) (xy 127.702287 79.189) (xy 135.181764 79.189) (xy 138.721382 82.728618) (xy 139.009795 82.92133) (xy 139.35 82.989) (xy 140.997301 82.989) (xy 141.031759 83.023518) (xy 141.432234 83.18981) (xy 141.865863 83.190188) (xy 142.266629 83.024596) (xy 142.573518 82.718241) (xy 142.73981 82.317766) (xy 142.740188 81.884137) (xy 142.574596 81.483371) (xy 142.268241 81.176482) (xy 141.867766 81.01019) (xy 141.434137 81.009812) (xy 141.033371 81.175404) (xy 140.997713 81.211) (xy 139.718236 81.211) (xy 136.178618 77.671382) (xy 135.890206 77.478671) (xy 135.55 77.411) (xy 127.702699 77.411) (xy 127.668241 77.376482) (xy 127.267766 77.21019) (xy 126.834137 77.209812) (xy 126.433371 77.375404) (xy 126.126482 77.681759) (xy 125.96019 78.082234) (xy 125.959812 78.515863) (xy 118.90952 78.515863) (xy 118.90952 61.201809) (xy 126.8939 61.201809) (xy 127.21823 61.986747) (xy 127.818254 62.58782) (xy 128.14014 62.721479) (xy 128.14014 71.978375) (xy 127.821413 72.11007) (xy 127.22034 72.710094) (xy 126.894641 73.494465) (xy 126.8939 74.343769) (xy 127.21823 75.128707) (xy 127.818254 75.72978) (xy 128.602625 76.055479) (xy 129.451929 76.05622) (xy 130.236867 75.73189) (xy 130.83794 75.131866) (xy 131.163639 74.347495) (xy 131.16438 73.498191) (xy 130.84005 72.713253) (xy 130.240026 72.11218) (xy 129.91814 71.978521) (xy 129.91814 71.639709) (xy 130.982258 71.639709) (xy 131.052338 71.834799) (xy 131.481452 72.022742) (xy 131.949824 72.032164) (xy 132.386149 71.861629) (xy 132.426302 71.834799) (xy 132.496382 71.639709) (xy 131.73932 70.882647) (xy 130.982258 71.639709) (xy 129.91814 71.639709) (xy 129.91814 71.060624) (xy 130.557276 71.060624) (xy 130.727811 71.496949) (xy 130.754641 71.537102) (xy 130.949731 71.607182) (xy 131.706793 70.85012) (xy 131.771847 70.85012) (xy 132.528909 71.607182) (xy 132.723999 71.537102) (xy 132.911942 71.107988) (xy 132.921364 70.639616) (xy 132.750829 70.203291) (xy 132.723999 70.163138) (xy 132.528909 70.093058) (xy 131.771847 70.85012) (xy 131.706793 70.85012) (xy 130.949731 70.093058) (xy 130.754641 70.163138) (xy 130.566698 70.592252) (xy 130.557276 71.060624) (xy 129.91814 71.060624) (xy 129.91814 64.124278) (xy 130.35351 64.124278) (xy 130.564006 64.633717) (xy 130.953433 65.023824) (xy 131.135644 65.099485) (xy 130.955483 65.173926) (xy 130.565376 65.563353) (xy 130.353991 66.072424) (xy 130.35351 66.623638) (xy 130.564006 67.133077) (xy 130.780587 67.350037) (xy 130.565376 67.564873) (xy 130.353991 68.073944) (xy 130.35351 68.625158) (xy 130.564006 69.134597) (xy 130.953433 69.524704) (xy 131.410282 69.714404) (xy 131.092491 69.838611) (xy 131.052338 69.865441) (xy 130.982258 70.060531) (xy 131.73932 70.817593) (xy 132.496382 70.060531) (xy 132.426302 69.865441) (xy 132.074613 69.711409) (xy 132.523157 69.526074) (xy 132.913264 69.136647) (xy 133.124649 68.627576) (xy 133.12513 68.076362) (xy 132.914634 67.566923) (xy 132.698053 67.349963) (xy 132.913264 67.135127) (xy 133.124649 66.626056) (xy 133.12513 66.074842) (xy 132.914634 65.565403) (xy 132.525207 65.175296) (xy 132.342996 65.099635) (xy 132.523157 65.025194) (xy 132.913264 64.635767) (xy 133.11066 64.160384) (xy 153.428636 64.160384) (xy 153.599171 64.596709) (xy 153.626001 64.636862) (xy 153.821091 64.706942) (xy 154.578153 63.94988) (xy 154.643207 63.94988) (xy 155.400269 64.706942) (xy 155.595359 64.636862) (xy 155.783302 64.207748) (xy 155.792724 63.739376) (xy 155.622189 63.303051) (xy 155.595359 63.262898) (xy 155.400269 63.192818) (xy 154.643207 63.94988) (xy 154.578153 63.94988) (xy 153.821091 63.192818) (xy 153.626001 63.262898) (xy 153.438058 63.692012) (xy 153.428636 64.160384) (xy 133.11066 64.160384) (xy 133.124649 64.126696) (xy 133.12513 63.575482) (xy 132.953577 63.160291) (xy 153.853618 63.160291) (xy 154.61068 63.917353) (xy 155.367742 63.160291) (xy 155.297662 62.965201) (xy 154.868548 62.777258) (xy 154.400176 62.767836) (xy 153.963851 62.938371) (xy 153.923698 62.965201) (xy 153.853618 63.160291) (xy 132.953577 63.160291) (xy 132.914634 63.066043) (xy 132.525207 62.675936) (xy 132.016136 62.464551) (xy 131.464922 62.46407) (xy 130.955483 62.674566) (xy 130.565376 63.063993) (xy 130.353991 63.573064) (xy 130.35351 64.124278) (xy 129.91814 64.124278) (xy 129.91814 62.721625) (xy 130.236867 62.58993) (xy 130.83794 61.989906) (xy 131.123662 61.301809) (xy 155.18562 61.301809) (xy 155.50995 62.086747) (xy 156.109974 62.68782) (xy 156.43186 62.821479) (xy 156.43186 72.078375) (xy 156.113133 72.21007) (xy 155.51206 72.810094) (xy 155.186361 73.594465) (xy 155.18562 74.443769) (xy 155.50995 75.228707) (xy 156.109974 75.82978) (xy 156.894345 76.155479) (xy 157.743649 76.15622) (xy 158.528587 75.83189) (xy 159.12966 75.231866) (xy 159.455359 74.447495) (xy 159.4561 73.598191) (xy 159.13177 72.813253) (xy 158.531746 72.21218) (xy 158.20986 72.078521) (xy 158.20986 62.821625) (xy 158.528587 62.68993) (xy 159.12966 62.089906) (xy 159.455359 61.305535) (xy 159.4561 60.456231) (xy 159.13177 59.671293) (xy 158.531746 59.07022) (xy 157.747375 58.744521) (xy 156.898071 58.74378) (xy 156.113133 59.06811) (xy 155.51206 59.668134) (xy 155.186361 60.452505) (xy 155.18562 61.301809) (xy 131.123662 61.301809) (xy 131.163639 61.205535) (xy 131.16438 60.356231) (xy 130.84005 59.571293) (xy 130.240026 58.97022) (xy 129.455655 58.644521) (xy 128.606351 58.64378) (xy 127.821413 58.96811) (xy 127.22034 59.568134) (xy 126.894641 60.352505) (xy 126.8939 61.201809) (xy 118.90952 61.201809) (xy 118.90952 57.215864) (xy 131.459811 57.215864) (xy 131.625403 57.61663) (xy 131.931758 57.923519) (xy 132.332233 58.089811) (xy 132.765862 58.090189) (xy 133.166628 57.924597) (xy 133.329507 57.762001) (xy 134.570519 57.762001) (xy 134.731755 57.923518) (xy 135.13223 58.08981) (xy 135.565859 58.090188) (xy 135.966625 57.924596) (xy 136.273514 57.618241) (xy 136.439806 57.217766) (xy 136.440184 56.784137) (xy 136.274592 56.383371) (xy 135.968237 56.076482) (xy 135.567762 55.91019) (xy 135.134133 55.909812) (xy 134.733367 56.075404) (xy 134.570487 56.238001) (xy 133.329477 56.238001) (xy 133.16824 56.076483) (xy 132.767765 55.910191) (xy 132.334136 55.909813) (xy 131.93337 56.075405) (xy 131.626481 56.38176) (xy 131.460189 56.782235) (xy 131.459811 57.215864) (xy 118.90952 57.215864) (xy 118.90952 48.93) (xy 119.962968 48.93) (xy 120.068395 49.460017) (xy 120.368625 49.909343) (xy 120.803624 50.2) (xy 120.368625 50.490657) (xy 120.068395 50.939983) (xy 119.962968 51.47) (xy 120.068395 52.000017) (xy 120.368625 52.449343) (xy 120.803624 52.74) (xy 120.368625 53.030657) (xy 120.068395 53.479983) (xy 119.962968 54.01) (xy 120.068395 54.540017) (xy 120.368625 54.989343) (xy 120.817951 55.289573) (xy 121.347968 55.395) (xy 121.912032 55.395) (xy 122.442049 55.289573) (xy 122.891375 54.989343) (xy 123.15 54.602283) (xy 123.408625 54.989343) (xy 123.857951 55.289573) (xy 124.387968 55.395) (xy 124.952032 55.395) (xy 125.482049 55.289573) (xy 125.931375 54.989343) (xy 126.231605 54.540017) (xy 126.296083 54.215863) (xy 157.359812 54.215863) (xy 157.525404 54.616629) (xy 157.831759 54.923518) (xy 158.232234 55.08981) (xy 158.665863 55.090188) (xy 159.066629 54.924596) (xy 159.373518 54.618241) (xy 159.53981 54.217766) (xy 159.540011 53.987619) (xy 159.83264 53.69499) (xy 160.075627 53.69499) (xy 160.012968 54.01) (xy 160.118395 54.540017) (xy 160.418625 54.989343) (xy 160.867951 55.289573) (xy 161.397968 55.395) (xy 161.962032 55.395) (xy 162.492049 55.289573) (xy 162.941375 54.989343) (xy 163.07762 54.785438) (xy 163.121843 55.007765) (xy 163.262191 55.217809) (xy 163.472235 55.358157) (xy 163.72 55.40744) (xy 165.72 55.40744) (xy 165.967765 55.358157) (xy 166.177809 55.217809) (xy 166.318157 55.007765) (xy 166.36744 54.76) (xy 166.36744 53.26) (xy 166.318157 53.012235) (xy 166.177809 52.802191) (xy 165.967765 52.661843) (xy 165.73318 52.615182) (xy 165.981375 52.449343) (xy 166.281605 52.000017) (xy 166.387032 51.47) (xy 166.281605 50.939983) (xy 165.981375 50.490657) (xy 165.546376 50.2) (xy 165.981375 49.909343) (xy 166.281605 49.460017) (xy 166.387032 48.93) (xy 166.281605 48.399983) (xy 165.981375 47.950657) (xy 165.546376 47.66) (xy 165.981375 47.369343) (xy 166.281605 46.920017) (xy 166.387032 46.39) (xy 166.281605 45.859983) (xy 165.981375 45.410657) (xy 165.532049 45.110427) (xy 165.002032 45.005) (xy 164.437968 45.005) (xy 164.02301 45.08754) (xy 164.02301 44.63497) (xy 163.955339 44.294764) (xy 163.762628 44.006352) (xy 163.589665 43.833389) (xy 163.589708 43.784617) (xy 163.424116 43.383851) (xy 163.117761 43.076962) (xy 162.717286 42.91067) (xy 162.283657 42.910292) (xy 161.882891 43.075884) (xy 161.576002 43.382239) (xy 161.40971 43.782714) (xy 161.409332 44.216343) (xy 161.574924 44.617109) (xy 161.881279 44.923998) (xy 162.181473 45.048649) (xy 161.962032 45.005) (xy 161.397968 45.005) (xy 160.867951 45.110427) (xy 160.418625 45.410657) (xy 160.118395 45.859983) (xy 160.012968 46.39) (xy 160.118395 46.920017) (xy 160.418625 47.369343) (xy 160.867951 47.669573) (xy 161.3501 47.765479) (xy 160.958332 47.851396) (xy 160.581472 48.113999) (xy 160.333792 48.500831) (xy 160.271311 48.723195) (xy 160.359997 48.907) (xy 161.657 48.907) (xy 161.657 48.887) (xy 161.703 48.887) (xy 161.703 48.907) (xy 161.723 48.907) (xy 161.723 48.953) (xy 161.703 48.953) (xy 161.703 48.973) (xy 161.657 48.973) (xy 161.657 48.953) (xy 160.359997 48.953) (xy 160.271311 49.136805) (xy 160.333792 49.359169) (xy 160.581472 49.746001) (xy 160.958332 50.008604) (xy 161.3501 50.094521) (xy 160.867951 50.190427) (xy 160.418625 50.490657) (xy 160.118395 50.939983) (xy 160.012968 51.47) (xy 160.118395 52.000017) (xy 160.232635 52.17099) (xy 159.51701 52.17099) (xy 159.225405 52.228994) (xy 159.030838 52.359) (xy 158.978195 52.394175) (xy 158.462359 52.910011) (xy 158.234137 52.909812) (xy 157.833371 53.075404) (xy 157.526482 53.381759) (xy 157.36019 53.782234) (xy 157.359812 54.215863) (xy 126.296083 54.215863) (xy 126.337032 54.01) (xy 126.231605 53.479983) (xy 125.931375 53.030657) (xy 125.482049 52.730427) (xy 124.9999 52.634521) (xy 125.391668 52.548604) (xy 125.768528 52.286001) (xy 126.016208 51.899169) (xy 126.078689 51.676805) (xy 125.990003 51.493) (xy 124.693 51.493) (xy 124.693 51.513) (xy 124.647 51.513) (xy 124.647 51.493) (xy 124.627 51.493) (xy 124.627 51.447) (xy 124.647 51.447) (xy 124.647 51.427) (xy 124.693 51.427) (xy 124.693 51.447) (xy 125.990003 51.447) (xy 126.078689 51.263195) (xy 126.016208 51.040831) (xy 125.768528 50.653999) (xy 125.391668 50.391396) (xy 124.9999 50.305479) (xy 125.482049 50.209573) (xy 125.931375 49.909343) (xy 126.231605 49.460017) (xy 126.337032 48.93) (xy 126.231605 48.399983) (xy 125.931375 47.950657) (xy 125.496376 47.66) (xy 125.931375 47.369343) (xy 126.231605 46.920017) (xy 126.337032 46.39) (xy 126.231605 45.859983) (xy 125.931375 45.410657) (xy 125.482049 45.110427) (xy 124.952032 45.005) (xy 124.387968 45.005) (xy 123.857951 45.110427) (xy 123.408625 45.410657) (xy 123.27238 45.614562) (xy 123.228157 45.392235) (xy 123.087809 45.182191) (xy 122.877765 45.041843) (xy 122.63 44.99256) (xy 120.63 44.99256) (xy 120.382235 45.041843) (xy 120.172191 45.182191) (xy 120.031843 45.392235) (xy 119.98256 45.64) (xy 119.98256 47.14) (xy 120.031843 47.387765) (xy 120.172191 47.597809) (xy 120.382235 47.738157) (xy 120.61682 47.784818) (xy 120.368625 47.950657) (xy 120.068395 48.399983) (xy 119.962968 48.93) (xy 118.90952 48.93) (xy 118.90952 37.722805) (xy 120.864107 37.722805) (xy 121.226436 38.599709) (xy 121.896762 39.271206) (xy 122.773033 39.635065) (xy 123.721845 39.635893) (xy 124.598749 39.273564) (xy 125.270246 38.603238) (xy 125.634105 37.726967) (xy 125.634108 37.722805) (xy 160.864587 37.722805) (xy 161.226916 38.599709) (xy 161.897242 39.271206) (xy 162.773513 39.635065) (xy 163.722325 39.635893) (xy 164.599229 39.273564) (xy 165.270726 38.603238) (xy 165.634585 37.726967) (xy 165.635413 36.778155) (xy 165.273084 35.901251) (xy 164.602758 35.229754) (xy 163.726487 34.865895) (xy 162.777675 34.865067) (xy 161.900771 35.227396) (xy 161.229274 35.897722) (xy 160.865415 36.773993) (xy 160.864587 37.722805) (xy 125.634108 37.722805) (xy 125.634933 36.778155) (xy 125.272604 35.901251) (xy 124.602278 35.229754) (xy 123.726007 34.865895) (xy 122.777195 34.865067) (xy 121.900291 35.227396) (xy 121.228794 35.897722) (xy 120.864935 36.773993) (xy 120.864107 37.722805) (xy 118.90952 37.722805) (xy 118.90952 34.31048) (xy 167.48952 34.31048) ) ) ) ) sd-mux-ctrl-0.0.4/doc/hardware/main-board/sd-mux.pro000066400000000000000000000027721506653766500222370ustar00rootroot00000000000000update=Mon 14 Nov 2016 09:04:37 AM CET version=1 last_client=kicad [pcbnew] version=1 LastNetListRead= UseCmpFile=1 PadDrill=0.600000000000 PadDrillOvalY=0.600000000000 PadSizeH=1.500000000000 PadSizeV=1.500000000000 PcbTextSizeV=1.500000000000 PcbTextSizeH=1.500000000000 PcbTextThickness=0.300000000000 ModuleTextSizeV=1.000000000000 ModuleTextSizeH=1.000000000000 ModuleTextSizeThickness=0.150000000000 SolderMaskClearance=0.000000000000 SolderMaskMinWidth=0.000000000000 DrawSegmentWidth=0.200000000000 BoardOutlineThickness=0.100000000000 ModuleOutlineThickness=0.150000000000 [cvpcb] version=1 NetIExt=net [general] version=1 [schematic_editor] version=1 PageLayoutDescrFile= PlotDirectoryName= SubpartIdSeparator=0 SubpartFirstId=65 NetFmtName= SpiceForceRefPrefix=0 SpiceUseNetNumbers=0 LabSize=60 ERC_TestSimilarLabels=1 [eeschema] version=1 LibDir= [eeschema/libraries] LibName1=sd-mux-rescue LibName2=sd-relay LibName3=power LibName4=device LibName5=transistors LibName6=conn LibName7=linear LibName8=regul LibName9=74xx LibName10=cmos4000 LibName11=adc-dac LibName12=memory LibName13=xilinx LibName14=microcontrollers LibName15=dsp LibName16=microchip LibName17=analog_switches LibName18=motorola LibName19=texas LibName20=intel LibName21=audio LibName22=interface LibName23=digital-audio LibName24=philips LibName25=display LibName26=cypress LibName27=siliconi LibName28=opto LibName29=atmel LibName30=contrib LibName31=valves LibName32=SDCARD LibName33=ftdi LibName34=ft245RL LibName35=switch-ic LibName36=induction sd-mux-ctrl-0.0.4/doc/hardware/main-board/sd-mux.sch000066400000000000000000001133161506653766500222110ustar00rootroot00000000000000EESchema Schematic File Version 2 LIBS:sd-mux-rescue LIBS:sd-relay LIBS:power LIBS:device LIBS:transistors LIBS:conn LIBS:linear LIBS:regul LIBS:74xx LIBS:cmos4000 LIBS:adc-dac LIBS:memory LIBS:xilinx LIBS:microcontrollers LIBS:dsp LIBS:microchip LIBS:analog_switches LIBS:motorola LIBS:texas LIBS:intel LIBS:audio LIBS:interface LIBS:digital-audio LIBS:philips LIBS:display LIBS:cypress LIBS:siliconi LIBS:opto LIBS:atmel LIBS:contrib LIBS:valves LIBS:SDCARD LIBS:ftdi LIBS:ft245RL LIBS:switch-ic LIBS:induction LIBS:sd-mux-cache EELAYER 25 0 EELAYER END $Descr A3 16535 11693 encoding utf-8 Sheet 1 1 Title "sd-mux" Date "2016-11-14" Rev "2.1" Comp "SRPOL" Comment1 "Author: Adam Malinowski " Comment2 "Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved" Comment3 "" Comment4 "" $EndDescr $Comp L TS3A27518E U4 U 1 1 55F68CCE P 12700 5300 F 0 "U4" H 12450 6450 60 0000 C CNN F 1 "TS3A27518E" H 12700 4150 60 0000 C CNN F 2 "footprints:tssop-24" H 13000 5000 60 0001 C CNN F 3 "" H 13000 5000 60 0000 C CNN 1 12700 5300 1 0 0 -1 $EndComp $Comp L GND #PWR01 U 1 1 55F69193 P 14200 5100 F 0 "#PWR01" H 14200 4850 50 0001 C CNN F 1 "GND" H 14200 4950 50 0000 C CNN F 2 "" H 14200 5100 60 0000 C CNN F 3 "" H 14200 5100 60 0000 C CNN 1 14200 5100 -1 0 0 -1 $EndComp $Comp L GND #PWR02 U 1 1 55F691AD P 13400 6300 F 0 "#PWR02" H 13400 6050 50 0001 C CNN F 1 "GND" H 13400 6150 50 0000 C CNN F 2 "" H 13400 6300 60 0000 C CNN F 3 "" H 13400 6300 60 0000 C CNN 1 13400 6300 1 0 0 -1 $EndComp $Comp L GND #PWR03 U 1 1 55F6933A P 8500 10650 F 0 "#PWR03" H 8500 10400 50 0001 C CNN F 1 "GND" H 8500 10500 50 0000 C CNN F 2 "" H 8500 10650 60 0000 C CNN F 3 "" H 8500 10650 60 0000 C CNN 1 8500 10650 1 0 0 -1 $EndComp $Comp L C C6 U 1 1 55F69366 P 8500 10450 F 0 "C6" H 8525 10550 50 0000 L CNN F 1 "100n" H 8525 10350 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 8538 10300 30 0001 C CNN F 3 "" H 8500 10450 60 0000 C CNN 1 8500 10450 1 0 0 -1 $EndComp $Comp L IRF7606PBF Q4 U 1 1 55F69957 P 12650 2700 F 0 "Q4" H 12450 3000 50 0000 L CNN F 1 "IRF7606PBF" H 12450 2450 50 0000 L CNN F 2 "footprints:msoic-8" H 12650 2900 50 0001 C CIN F 3 "" V 12650 2700 50 0000 L CNN 1 12650 2700 1 0 0 -1 $EndComp $Comp L IRF7606PBF Q3 U 1 1 55F69E32 P 12650 1650 F 0 "Q3" H 12450 1950 50 0000 L CNN F 1 "IRF7606PBF" H 12450 1400 50 0000 L CNN F 2 "footprints:msoic-8" H 12650 1850 50 0001 C CIN F 3 "" V 12650 1650 50 0000 L CNN 1 12650 1650 1 0 0 -1 $EndComp $Comp L 74AHC1G14 U3 U 1 1 55F6A3A2 P 11200 3150 F 0 "U3" H 11345 3265 40 0000 C CNN F 1 "74AHC1G14" H 11400 3050 40 0000 C CNN F 2 "TO_SOT_Packages_SMD:SOT-23-5" H 11295 3015 30 0001 C CNN F 3 "" H 11345 3265 60 0000 C CNN 1 11200 3150 1 0 0 -1 $EndComp Text Label 11300 1450 0 60 ~ 0 VDD_TS Text Label 11300 2500 0 60 ~ 0 VDD_DUT Text Notes 9700 2300 0 60 ~ 0 0 - DUT, 1 - TS $Comp L GND #PWR04 U 1 1 55F6B588 P 12000 6400 F 0 "#PWR04" H 12000 6150 50 0001 C CNN F 1 "GND" H 12000 6250 50 0000 C CNN F 2 "" H 12000 6400 60 0000 C CNN F 3 "" H 12000 6400 60 0000 C CNN 1 12000 6400 -1 0 0 -1 $EndComp $Comp L GND #PWR05 U 1 1 55F6C0B2 P 8850 10650 F 0 "#PWR05" H 8850 10400 50 0001 C CNN F 1 "GND" H 8850 10500 50 0000 C CNN F 2 "" H 8850 10650 60 0000 C CNN F 3 "" H 8850 10650 60 0000 C CNN 1 8850 10650 1 0 0 -1 $EndComp $Comp L C C7 U 1 1 55F6C0BE P 8850 10450 F 0 "C7" H 8875 10550 50 0000 L CNN F 1 "100n" H 8875 10350 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 8888 10300 30 0001 C CNN F 3 "" H 8850 10450 60 0000 C CNN 1 8850 10450 1 0 0 -1 $EndComp $Comp L GND #PWR06 U 1 1 55F6C5F7 P 11150 3450 F 0 "#PWR06" H 11150 3200 50 0001 C CNN F 1 "GND" H 11150 3300 50 0000 C CNN F 2 "" H 11150 3450 60 0000 C CNN F 3 "" H 11150 3450 60 0000 C CNN 1 11150 3450 -1 0 0 -1 $EndComp Text Label 11400 5500 0 60 ~ 0 DAT3_DUT Text Label 11000 5600 0 60 ~ 0 DAT3_TS Text Label 11400 5200 0 60 ~ 0 CMD_DUT Text Label 11000 5300 0 60 ~ 0 CMD_TS Text Label 11400 4600 0 60 ~ 0 DAT0_DUT Text Label 11000 4700 0 60 ~ 0 DAT0_TS Text Label 11400 4900 0 60 ~ 0 CLK_DUT Text Label 11000 5000 0 60 ~ 0 CLK_TS Text Label 11400 4300 0 60 ~ 0 DAT1_DUT Text Label 11000 4400 0 60 ~ 0 DAT1_TS Text Label 11400 5800 0 60 ~ 0 DAT2_DUT Text Label 11000 5900 0 60 ~ 0 DAT2_TS $Comp L FT245RL U2 U 1 1 55F7090C P 3250 1850 F 0 "U2" H 2750 2700 61 0000 C CNN F 1 "FT245RL" H 3600 1050 60 0000 C CNN F 2 "footprints:ssop-28" H 2550 1500 60 0001 C CNN F 3 "" H 2550 1500 60 0000 C CNN 1 3250 1850 1 0 0 -1 $EndComp $Comp L GND #PWR07 U 1 1 55F7119F P 3000 3150 F 0 "#PWR07" H 3000 2900 50 0001 C CNN F 1 "GND" H 3000 3000 50 0000 C CNN F 2 "" H 3000 3150 60 0000 C CNN F 3 "" H 3000 3150 60 0000 C CNN 1 3000 3150 1 0 0 -1 $EndComp $Comp L GND #PWR08 U 1 1 55F714DF P 2300 2650 F 0 "#PWR08" H 2300 2400 50 0001 C CNN F 1 "GND" H 2300 2500 50 0000 C CNN F 2 "" H 2300 2650 60 0000 C CNN F 3 "" H 2300 2650 60 0000 C CNN 1 2300 2650 1 0 0 -1 $EndComp $Comp L C C3 U 1 1 55F714EB P 2300 2450 F 0 "C3" H 2325 2550 50 0000 L CNN F 1 "100n" H 2325 2350 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 2338 2300 30 0001 C CNN F 3 "" H 2300 2450 60 0000 C CNN 1 2300 2450 1 0 0 -1 $EndComp $Comp L GND #PWR09 U 1 1 55F71861 P 9200 10650 F 0 "#PWR09" H 9200 10400 50 0001 C CNN F 1 "GND" H 9200 10500 50 0000 C CNN F 2 "" H 9200 10650 60 0000 C CNN F 3 "" H 9200 10650 60 0000 C CNN 1 9200 10650 1 0 0 -1 $EndComp $Comp L C C8 U 1 1 55F7186D P 9200 10450 F 0 "C8" H 9225 10550 50 0000 L CNN F 1 "100n" H 9225 10350 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 9238 10300 30 0001 C CNN F 3 "" H 9200 10450 60 0000 C CNN 1 9200 10450 1 0 0 -1 $EndComp $Comp L CP C9 U 1 1 55F718DB P 9550 10450 F 0 "C9" H 9575 10550 50 0000 L CNN F 1 "4.7u" H 9575 10350 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 9588 10300 30 0001 C CNN F 3 "" H 9550 10450 60 0000 C CNN 1 9550 10450 1 0 0 -1 $EndComp $Comp L GND #PWR010 U 1 1 55F71943 P 9550 10650 F 0 "#PWR010" H 9550 10400 50 0001 C CNN F 1 "GND" H 9550 10500 50 0000 C CNN F 2 "" H 9550 10650 60 0000 C CNN F 3 "" H 9550 10650 60 0000 C CNN 1 9550 10650 1 0 0 -1 $EndComp $Comp L R R5 U 1 1 55F7212F P 4400 2200 F 0 "R5" V 4300 2200 50 0000 C CNN F 1 "10K" V 4500 2200 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 4330 2200 30 0001 C CNN F 3 "" H 4400 2200 30 0000 C CNN 1 4400 2200 1 0 0 -1 $EndComp $Comp L VDD #PWR011 U 1 1 55F7231C P 4400 2000 F 0 "#PWR011" H 4400 1850 50 0001 C CNN F 1 "VDD" H 4400 2150 50 0000 C CNN F 2 "" H 4400 2000 60 0000 C CNN F 3 "" H 4400 2000 60 0000 C CNN 1 4400 2000 1 0 0 -1 $EndComp $Comp L USB_OTG-RESCUE-sd-mux P1 U 1 1 55F72E39 P 850 1550 F 0 "P1" V 550 1650 50 0000 C CNN F 1 "USB_OTG" V 1150 1450 50 0000 C CNN F 2 "footprints:conn_usb_B_micro" V 800 1450 60 0001 C CNN F 3 "" V 800 1450 60 0000 C CNN 1 850 1550 0 -1 1 0 $EndComp $Comp L GND #PWR012 U 1 1 55F73467 P 1250 1850 F 0 "#PWR012" H 1250 1600 50 0001 C CNN F 1 "GND" H 1250 1700 50 0000 C CNN F 2 "" H 1250 1850 60 0000 C CNN F 3 "" H 1250 1850 60 0000 C CNN 1 1250 1850 1 0 0 -1 $EndComp $Comp L C C1 U 1 1 55F73E2B P 600 2350 F 0 "C1" H 625 2450 50 0000 L CNN F 1 "27p" H 625 2250 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 638 2200 30 0001 C CNN F 3 "" H 600 2350 60 0000 C CNN 1 600 2350 1 0 0 -1 $EndComp $Comp L R R1 U 1 1 55F73F08 P 900 2350 F 0 "R1" V 800 2350 50 0000 C CNN F 1 "4.7K" V 1000 2350 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 830 2350 30 0001 C CNN F 3 "" H 900 2350 30 0000 C CNN 1 900 2350 1 0 0 -1 $EndComp $Comp L GND #PWR013 U 1 1 55F7425A P 750 2700 F 0 "#PWR013" H 750 2450 50 0001 C CNN F 1 "GND" H 750 2550 50 0000 C CNN F 2 "" H 750 2700 60 0000 C CNN F 3 "" H 750 2700 60 0000 C CNN 1 750 2700 1 0 0 -1 $EndComp $Comp L MI0805K400R-10 FB1 U 1 1 55F74995 P 1650 1250 F 0 "FB1" V 1550 1250 60 0000 C CNN F 1 "MI0805K400R-10" V 1750 1300 60 0001 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" H 1650 1250 60 0001 C CNN F 3 "" H 1650 1250 60 0000 C CNN 1 1650 1250 0 1 1 0 $EndComp Text Label 4500 1150 0 60 ~ 0 SOCKET_SEL Text Label 4500 1550 0 60 ~ 0 POWER_SW_ON Text Label 11000 6100 0 60 ~ 0 SOCKET_SEL $Comp L VDD #PWR014 U 1 1 55F7B969 P 2300 900 F 0 "#PWR014" H 2300 750 50 0001 C CNN F 1 "VDD" H 2300 1050 50 0000 C CNN F 2 "" H 2300 900 60 0000 C CNN F 3 "" H 2300 900 60 0000 C CNN 1 2300 900 1 0 0 -1 $EndComp $Comp L CONN_02X04 P5 U 1 1 55F7EFAC P 9500 4800 F 0 "P5" H 9500 5050 50 0000 C CNN F 1 "IDC_02X04" H 9500 4550 50 0000 C CNN F 2 "footprints:PSB_IDC_4x2" H 9500 3600 60 0001 C CNN F 3 "" H 9500 3600 60 0000 C CNN 1 9500 4800 1 0 0 -1 $EndComp Text Label 8650 4650 0 60 ~ 0 DAT2_DUT Text Label 9900 4650 0 60 ~ 0 DAT3_DUT Text Label 8650 4750 0 60 ~ 0 CMD_DUT Text Label 9900 4750 0 60 ~ 0 VDD_DUT Text Label 8650 4850 0 60 ~ 0 CLK_DUT $Comp L GND #PWR015 U 1 1 55F81DB8 P 9850 5050 F 0 "#PWR015" H 9850 4800 50 0001 C CNN F 1 "GND" H 9850 4900 50 0000 C CNN F 2 "" H 9850 5050 60 0000 C CNN F 3 "" H 9850 5050 60 0000 C CNN 1 9850 5050 -1 0 0 -1 $EndComp Text Label 8650 4950 0 60 ~ 0 DAT0_DUT Text Label 9900 4950 0 60 ~ 0 DAT1_DUT $Comp L CONN_02X04 P6 U 1 1 55F82556 P 9500 5750 F 0 "P6" H 9500 6000 50 0000 C CNN F 1 "IDC_02X04" H 9500 5500 50 0000 C CNN F 2 "footprints:PSB_IDC_4x2" H 9500 4550 60 0001 C CNN F 3 "" H 9500 4550 60 0000 C CNN 1 9500 5750 1 0 0 -1 $EndComp Text Label 8650 5600 0 60 ~ 0 DAT2_TS Text Label 9900 5600 0 60 ~ 0 DAT3_TS Text Label 8650 5700 0 60 ~ 0 CMD_TS Text Label 9900 5700 0 60 ~ 0 VDD_TS Text Label 8650 5800 0 60 ~ 0 CLK_TS $Comp L GND #PWR016 U 1 1 55F82568 P 9850 6000 F 0 "#PWR016" H 9850 5750 50 0001 C CNN F 1 "GND" H 9850 5850 50 0000 C CNN F 2 "" H 9850 6000 60 0000 C CNN F 3 "" H 9850 6000 60 0000 C CNN 1 9850 6000 -1 0 0 -1 $EndComp Text Label 8650 5900 0 60 ~ 0 DAT0_TS Text Label 9900 5900 0 60 ~ 0 DAT1_TS $Comp L G2RK-2 RL1 U 1 1 55F8C327 P 12750 8600 F 0 "RL1" H 13300 8850 50 0000 L CNN F 1 "G2RK-2" H 13350 8350 50 0000 L CNN F 2 "footprints:G2RK-2" H 12450 8600 60 0001 C CNN F 3 "" H 12450 8600 60 0000 C CNN 1 12750 8600 1 0 0 -1 $EndComp $Comp L IRF7606PBF Q1 U 1 1 55F8C5E8 P 11850 7700 F 0 "Q1" H 11650 8000 50 0000 L CNN F 1 "IRF7606PBF" H 11650 7450 50 0000 L CNN F 2 "footprints:msoic-8" H 11850 7900 50 0001 C CIN F 3 "" V 11850 7700 50 0000 L CNN 1 11850 7700 1 0 0 -1 $EndComp $Comp L GND #PWR017 U 1 1 55F8DC3E P 12250 9200 F 0 "#PWR017" H 12250 8950 50 0001 C CNN F 1 "GND" H 12250 9050 50 0000 C CNN F 2 "" H 12250 9200 60 0000 C CNN F 3 "" H 12250 9200 60 0000 C CNN 1 12250 9200 -1 0 0 -1 $EndComp $Comp L GND #PWR018 U 1 1 55F8DC85 P 13250 9200 F 0 "#PWR018" H 13250 8950 50 0001 C CNN F 1 "GND" H 13250 9050 50 0000 C CNN F 2 "" H 13250 9200 60 0000 C CNN F 3 "" H 13250 9200 60 0000 C CNN 1 13250 9200 -1 0 0 -1 $EndComp $Comp L IRF7606PBF Q2 U 1 1 55F8FBDC P 12850 7700 F 0 "Q2" H 12650 8000 50 0000 L CNN F 1 "IRF7606PBF" H 12650 7450 50 0000 L CNN F 2 "footprints:msoic-8" H 12850 7900 50 0001 C CIN F 3 "" V 12850 7700 50 0000 L CNN 1 12850 7700 1 0 0 -1 $EndComp $Comp L VDD #PWR019 U 1 1 55F90564 P 11450 7400 F 0 "#PWR019" H 11450 7250 50 0001 C CNN F 1 "VDD" H 11450 7550 50 0000 C CNN F 2 "" H 11450 7400 60 0000 C CNN F 3 "" H 11450 7400 60 0000 C CNN 1 11450 7400 1 0 0 -1 $EndComp $Comp L VDD #PWR020 U 1 1 55F916C6 P 12450 7400 F 0 "#PWR020" H 12450 7250 50 0001 C CNN F 1 "VDD" H 12450 7550 50 0000 C CNN F 2 "" H 12450 7400 60 0000 C CNN F 3 "" H 12450 7400 60 0000 C CNN 1 12450 7400 1 0 0 -1 $EndComp Text Label 4500 1350 0 60 ~ 0 POWER_SW_OFF Text Label 10050 8000 0 60 ~ 0 POWER_SW_ON Text Label 10050 7850 0 60 ~ 0 POWER_SW_OFF $Comp L D D2 U 1 1 55F977AF P 13750 8600 F 0 "D2" H 13750 8700 50 0000 C CNN F 1 "ES1AL" H 13750 8500 50 0000 C CNN F 2 "footprints:do219ab" H 13750 8600 60 0001 C CNN F 3 "http://www.farnell.com/datasheets/1706585.pdf" H 13750 8600 60 0001 C CNN 1 13750 8600 0 1 1 0 $EndComp $Comp L D D1 U 1 1 55F992F8 P 11800 8600 F 0 "D1" H 11800 8700 50 0000 C CNN F 1 "ES1AL" H 11800 8500 50 0000 C CNN F 2 "footprints:do219ab" H 11800 8600 60 0001 C CNN F 3 "http://www.farnell.com/datasheets/1706585.pdf" H 11800 8600 60 0001 C CNN 1 11800 8600 0 1 1 0 $EndComp $Comp L R R7 U 1 1 55F9CDCB P 11200 7600 F 0 "R7" V 11100 7600 50 0000 C CNN F 1 "10K" V 11300 7600 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 11130 7600 30 0001 C CNN F 3 "" H 11200 7600 30 0000 C CNN 1 11200 7600 1 0 0 -1 $EndComp $Comp L R R6 U 1 1 55F9D342 P 10850 7600 F 0 "R6" V 10750 7600 50 0000 C CNN F 1 "10K" V 10950 7600 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 10780 7600 30 0001 C CNN F 3 "" H 10850 7600 30 0000 C CNN 1 10850 7600 1 0 0 -1 $EndComp $Comp L VDD #PWR021 U 1 1 55F9D664 P 11200 7400 F 0 "#PWR021" H 11200 7250 50 0001 C CNN F 1 "VDD" H 11200 7550 50 0000 C CNN F 2 "" H 11200 7400 60 0000 C CNN F 3 "" H 11200 7400 60 0000 C CNN 1 11200 7400 1 0 0 -1 $EndComp $Comp L VDD #PWR022 U 1 1 55F9D6BA P 10850 7400 F 0 "#PWR022" H 10850 7250 50 0001 C CNN F 1 "VDD" H 10850 7550 50 0000 C CNN F 2 "" H 10850 7400 60 0000 C CNN F 3 "" H 10850 7400 60 0000 C CNN 1 10850 7400 1 0 0 -1 $EndComp $Comp L R R8 U 1 1 55F9E16A P 11350 1900 F 0 "R8" V 11250 1900 50 0000 C CNN F 1 "10K" V 11450 1900 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 11280 1900 30 0001 C CNN F 3 "" H 11350 1900 30 0000 C CNN 1 11350 1900 1 0 0 -1 $EndComp NoConn ~ 12500 8300 NoConn ~ 12500 8900 $Comp L VDD #PWR023 U 1 1 55F71867 P 9200 10200 F 0 "#PWR023" H 9200 10050 50 0001 C CNN F 1 "VDD" H 9200 10350 50 0000 C CNN F 2 "" H 9200 10200 60 0000 C CNN F 3 "" H 9200 10200 60 0000 C CNN 1 9200 10200 1 0 0 -1 $EndComp $Comp L VDD #PWR024 U 1 1 55F7196F P 9550 10200 F 0 "#PWR024" H 9550 10050 50 0001 C CNN F 1 "VDD" H 9550 10350 50 0000 C CNN F 2 "" H 9550 10200 60 0000 C CNN F 3 "" H 9550 10200 60 0000 C CNN 1 9550 10200 1 0 0 -1 $EndComp NoConn ~ 2400 1750 NoConn ~ 2400 1850 NoConn ~ 2400 1950 NoConn ~ 4100 2350 NoConn ~ 4100 2250 NoConn ~ 4100 2150 NoConn ~ 4100 2050 NoConn ~ 4100 1850 NoConn ~ 4100 1750 NoConn ~ 4100 1650 NoConn ~ 4100 1250 NoConn ~ 1150 1650 $Comp L CONN_02X02 P9 U 1 1 55FAB923 P 14250 8600 F 0 "P9" V 14250 8450 50 0000 C CNN F 1 "CONN_02X02" H 14250 8450 50 0001 C CNN F 2 "footprints:PSB_IDC_4x2" H 14250 7400 60 0001 C CNN F 3 "" H 14250 7400 60 0000 C CNN 1 14250 8600 0 1 1 0 $EndComp $Comp L CONN_01X03 P10 U 1 1 55FAC530 P 15050 8600 F 0 "P10" H 15050 8800 50 0000 C CNN F 1 "MKDS 1,5/3" H 15050 8400 50 0000 C CNN F 2 "footprints:cons_1,5x3" H 15050 8600 60 0001 C CNN F 3 "http://www.farnell.com/datasheets/1698833.pdf" H 15050 8600 60 0001 C CNN 1 15050 8600 1 0 0 -1 $EndComp $Comp L CONN_01X03 P7 U 1 1 55FACECA P 10550 8600 F 0 "P7" H 10550 8800 50 0000 C CNN F 1 "MKDS 1,5/3" H 10550 8400 50 0000 C CNN F 2 "footprints:cons_1,5x3" H 10550 8600 60 0001 C CNN F 3 "http://www.farnell.com/datasheets/1698833.pdf" H 10550 8600 60 0001 C CNN 1 10550 8600 -1 0 0 -1 $EndComp $Comp L CONN_02X02 P8 U 1 1 55FAD020 P 11350 8600 F 0 "P8" V 11350 8450 50 0000 C CNN F 1 "CONN_02X02" H 11350 8450 50 0001 C CNN F 2 "footprints:PSB_IDC_4x2" H 11350 8750 60 0001 C CNN F 3 "" H 11350 7400 60 0000 C CNN 1 11350 8600 0 1 1 0 $EndComp $Comp L USB_OTG-RESCUE-sd-mux P2 U 1 1 55FB52CC P 1600 6450 F 0 "P2" V 1300 6550 50 0000 C CNN F 1 "629105136821" H 1600 6650 50 0001 C CNN F 2 "footprints:conn_usb_B_micro" V 1550 6350 60 0001 C CNN F 3 "" V 1550 6350 60 0000 C CNN 1 1600 6450 0 -1 1 0 $EndComp $Comp L GND #PWR025 U 1 1 55FB52D2 P 2000 6750 F 0 "#PWR025" H 2000 6500 50 0001 C CNN F 1 "GND" H 2000 6600 50 0000 C CNN F 2 "" H 2000 6750 60 0000 C CNN F 3 "" H 2000 6750 60 0000 C CNN 1 2000 6750 1 0 0 -1 $EndComp $Comp L C C2 U 1 1 55FB52D8 P 1350 7250 F 0 "C2" H 1375 7350 50 0000 L CNN F 1 "27p" H 1375 7150 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 1388 7100 30 0001 C CNN F 3 "" H 1350 7250 60 0000 C CNN 1 1350 7250 1 0 0 -1 $EndComp $Comp L R R2 U 1 1 55FB52DE P 1650 7250 F 0 "R2" V 1550 7250 50 0000 C CNN F 1 "4.7K" V 1750 7250 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 1580 7250 30 0001 C CNN F 3 "" H 1650 7250 30 0000 C CNN 1 1650 7250 1 0 0 -1 $EndComp $Comp L GND #PWR026 U 1 1 55FB52E4 P 1500 7600 F 0 "#PWR026" H 1500 7350 50 0001 C CNN F 1 "GND" H 1500 7450 50 0000 C CNN F 2 "" H 1500 7600 60 0000 C CNN F 3 "" H 1500 7600 60 0000 C CNN 1 1500 7600 1 0 0 -1 $EndComp NoConn ~ 1900 6550 $Comp L USB_A-RESCUE-sd-mux P3 U 1 1 55FB5556 P 6200 6450 F 0 "P3" V 5900 6350 50 0000 C CNN F 1 "61400416021" H 6150 6650 50 0001 C CNN F 2 "footprints:conn_usb_A" V 6150 6350 60 0001 C CNN F 3 "http://www.farnell.com/cad/1442181.pdf" V 6150 6350 60 0001 C CNN 1 6200 6450 0 1 1 0 $EndComp $Comp L C C4 U 1 1 55FB5847 P 6150 7100 F 0 "C4" H 6175 7200 50 0000 L CNN F 1 "27p" H 6175 7000 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 6188 6950 30 0001 C CNN F 3 "" H 6150 7100 60 0000 C CNN 1 6150 7100 1 0 0 -1 $EndComp $Comp L R R3 U 1 1 55FB584D P 6450 7100 F 0 "R3" V 6350 7100 50 0000 C CNN F 1 "4.7K" V 6550 7100 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 6380 7100 30 0001 C CNN F 3 "" H 6450 7100 30 0000 C CNN 1 6450 7100 1 0 0 -1 $EndComp $Comp L GND #PWR027 U 1 1 55FB5853 P 6300 7450 F 0 "#PWR027" H 6300 7200 50 0001 C CNN F 1 "GND" H 6300 7300 50 0000 C CNN F 2 "" H 6300 7450 60 0000 C CNN F 3 "" H 6300 7450 60 0000 C CNN 1 6300 7450 1 0 0 -1 $EndComp $Comp L GND #PWR028 U 1 1 55FB5AC1 P 5800 6650 F 0 "#PWR028" H 5800 6400 50 0001 C CNN F 1 "GND" H 5800 6500 50 0000 C CNN F 2 "" H 5800 6650 60 0000 C CNN F 3 "" H 5800 6650 60 0000 C CNN 1 5800 6650 1 0 0 -1 $EndComp $Comp L USB_A-RESCUE-sd-mux P4 U 1 1 55FC51B0 P 6200 8000 F 0 "P4" V 5900 7900 50 0000 C CNN F 1 "61400416021" H 6150 8200 50 0001 C CNN F 2 "footprints:conn_usb_A" V 6150 7900 60 0001 C CNN F 3 "http://www.farnell.com/cad/1442181.pdf" V 6150 7900 60 0001 C CNN 1 6200 8000 0 1 1 0 $EndComp $Comp L C C5 U 1 1 55FC51B6 P 6150 8650 F 0 "C5" H 6175 8750 50 0000 L CNN F 1 "27p" H 6175 8550 50 0000 L CNN F 2 "Capacitors_SMD:C_0805_HandSoldering" H 6188 8500 30 0001 C CNN F 3 "" H 6150 8650 60 0000 C CNN 1 6150 8650 1 0 0 -1 $EndComp $Comp L R R4 U 1 1 55FC51BC P 6450 8650 F 0 "R4" V 6350 8650 50 0000 C CNN F 1 "4.7K" V 6550 8650 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 6380 8650 30 0001 C CNN F 3 "" H 6450 8650 30 0000 C CNN 1 6450 8650 1 0 0 -1 $EndComp $Comp L GND #PWR029 U 1 1 55FC51C2 P 6300 9000 F 0 "#PWR029" H 6300 8750 50 0001 C CNN F 1 "GND" H 6300 8850 50 0000 C CNN F 2 "" H 6300 9000 60 0000 C CNN F 3 "" H 6300 9000 60 0000 C CNN 1 6300 9000 1 0 0 -1 $EndComp $Comp L GND #PWR030 U 1 1 55FC51D2 P 5800 8200 F 0 "#PWR030" H 5800 7950 50 0001 C CNN F 1 "GND" H 5800 8050 50 0000 C CNN F 2 "" H 5800 8200 60 0000 C CNN F 3 "" H 5800 8200 60 0000 C CNN 1 5800 8200 1 0 0 -1 $EndComp Text Label 4500 1450 0 60 ~ 0 USB_SEL $Comp L TS3USB30EDGSR U1 U 1 1 55FCF590 P 2900 6750 F 0 "U1" H 2700 7300 60 0000 C CNN F 1 "TS3USB30EDGSR" H 2900 6150 60 0000 C CNN F 2 "footprints:msoic-10" H 2900 6050 60 0001 C CNN F 3 "" H 690 5640 60 0000 C CNN 1 2900 6750 1 0 0 -1 $EndComp $Comp L GND #PWR031 U 1 1 55FD1DB0 P 3550 7300 F 0 "#PWR031" H 3550 7050 50 0001 C CNN F 1 "GND" H 3550 7150 50 0000 C CNN F 2 "" H 3550 7300 60 0000 C CNN F 3 "" H 3550 7300 60 0000 C CNN 1 3550 7300 1 0 0 -1 $EndComp $Comp L VDD #PWR032 U 1 1 55FD2ADD P 3550 7000 F 0 "#PWR032" H 3550 6850 50 0001 C CNN F 1 "VDD" H 3550 7150 50 0000 C CNN F 2 "" H 3550 7000 60 0000 C CNN F 3 "" H 3550 7000 60 0000 C CNN 1 3550 7000 1 0 0 -1 $EndComp $Comp L GND #PWR033 U 1 1 55FD3482 P 2250 7300 F 0 "#PWR033" H 2250 7050 50 0001 C CNN F 1 "GND" H 2250 7150 50 0000 C CNN F 2 "" H 2250 7300 60 0000 C CNN F 3 "" H 2250 7300 60 0000 C CNN 1 2250 7300 1 0 0 -1 $EndComp Wire Wire Line 13300 5800 14100 5800 Wire Wire Line 14100 5800 14100 4800 Wire Wire Line 14100 4800 14300 4800 Wire Wire Line 14300 5000 14200 5000 Wire Wire Line 14200 5000 14200 5100 Wire Wire Line 13300 6200 13400 6200 Wire Wire Line 13400 6200 13400 6300 Wire Wire Line 13300 6100 13400 6100 Wire Wire Line 13400 6100 13400 6000 Wire Wire Line 8500 10200 8500 10300 Wire Wire Line 8500 10600 8500 10650 Wire Wire Line 13050 2500 12950 2500 Wire Wire Line 13750 4150 14300 4150 Wire Wire Line 13050 2600 12950 2600 Connection ~ 13050 2600 Wire Wire Line 13050 2700 12950 2700 Connection ~ 13050 2700 Wire Wire Line 12950 1450 13050 1450 Connection ~ 13050 2500 Wire Wire Line 12950 1550 13050 1550 Connection ~ 13050 1550 Wire Wire Line 13050 1650 12950 1650 Connection ~ 13050 1650 Wire Wire Line 13050 1750 12950 1750 Connection ~ 13050 1750 Wire Wire Line 11350 2100 11350 2050 Wire Wire Line 12250 1650 12350 1650 Wire Wire Line 11250 1450 12350 1450 Wire Wire Line 12250 1450 12250 1650 Connection ~ 12250 1450 Wire Wire Line 12350 1550 12250 1550 Connection ~ 12250 1550 Wire Wire Line 12250 2700 12350 2700 Wire Wire Line 11250 2500 12350 2500 Wire Wire Line 12250 2500 12250 2700 Connection ~ 12250 2500 Wire Wire Line 12350 2600 12250 2600 Connection ~ 12250 2600 Wire Wire Line 12000 6200 12100 6200 Connection ~ 12000 6100 Wire Wire Line 12100 6300 12000 6300 Wire Wire Line 12000 6300 12000 6400 Wire Wire Line 8850 10200 8850 10300 Wire Wire Line 8850 10600 8850 10650 Wire Wire Line 11150 3350 11150 3450 Wire Wire Line 11150 2850 11150 2950 Wire Wire Line 12100 4300 10950 4300 Wire Wire Line 12100 4400 10950 4400 Wire Wire Line 12100 4600 10950 4600 Wire Wire Line 12100 4700 10950 4700 Wire Wire Line 12100 4900 10950 4900 Wire Wire Line 12100 5000 10950 5000 Wire Wire Line 12100 5200 10950 5200 Wire Wire Line 12100 5300 10950 5300 Wire Wire Line 12100 5500 10950 5500 Wire Wire Line 12100 5600 10950 5600 Wire Wire Line 12100 5800 10950 5800 Wire Wire Line 12100 5900 10950 5900 Wire Wire Line 2800 2900 2800 3000 Wire Wire Line 2800 3000 3200 3000 Wire Wire Line 3200 3000 3200 2900 Wire Wire Line 2900 2900 2900 3000 Connection ~ 2900 3000 Wire Wire Line 3000 2900 3000 3150 Connection ~ 3000 3000 Wire Wire Line 3100 2900 3100 3000 Connection ~ 3100 3000 Wire Wire Line 2300 2600 2300 2650 Wire Wire Line 2300 2300 2300 2200 Wire Wire Line 2200 2200 2400 2200 Wire Wire Line 9200 10200 9200 10300 Wire Wire Line 9200 10600 9200 10650 Wire Wire Line 9550 10200 9550 10300 Wire Wire Line 9550 10600 9550 10650 Wire Wire Line 4400 2350 4400 2450 Wire Wire Line 4400 2000 4400 2050 Wire Wire Line 4400 2450 4100 2450 Wire Wire Line 1150 1450 2400 1450 Wire Wire Line 1150 1550 2400 1550 Wire Wire Line 1150 1750 1250 1750 Wire Wire Line 1250 1750 1250 1850 Wire Wire Line 900 2100 900 2200 Wire Wire Line 600 2100 900 2100 Wire Wire Line 600 2500 600 2600 Wire Wire Line 600 2600 900 2600 Wire Wire Line 900 2600 900 2500 Wire Wire Line 750 2700 750 2600 Connection ~ 750 2600 Wire Wire Line 1150 1350 1400 1350 Wire Wire Line 1400 1350 1400 1250 Wire Wire Line 1400 1250 1500 1250 Wire Wire Line 1800 1250 2400 1250 Wire Wire Line 2400 1150 2300 1150 Wire Wire Line 2300 900 2300 1250 Connection ~ 2300 1250 Wire Wire Line 4100 1150 5250 1150 Wire Wire Line 4100 1550 5250 1550 Connection ~ 2300 1150 Wire Wire Line 600 2100 600 2200 Wire Wire Line 750 1950 750 2100 Connection ~ 750 2100 Wire Wire Line 8600 4650 9250 4650 Wire Wire Line 9250 4750 8600 4750 Wire Wire Line 9250 4850 8600 4850 Wire Wire Line 9250 4950 8600 4950 Wire Wire Line 9750 4750 10400 4750 Wire Wire Line 9750 4650 10400 4650 Wire Wire Line 9750 4950 10400 4950 Wire Wire Line 9750 4850 9850 4850 Wire Wire Line 9850 4850 9850 5050 Wire Wire Line 8600 5600 9250 5600 Wire Wire Line 9250 5700 8600 5700 Wire Wire Line 9250 5800 8600 5800 Wire Wire Line 9250 5900 8600 5900 Wire Wire Line 9750 5700 10400 5700 Wire Wire Line 9750 5600 10400 5600 Wire Wire Line 9750 5900 10400 5900 Wire Wire Line 9750 5800 9850 5800 Wire Wire Line 9850 5800 9850 6000 Wire Wire Line 12250 8900 12250 9200 Wire Wire Line 13250 8900 13250 9200 Wire Wire Line 12750 9100 12750 8900 Wire Wire Line 10950 9100 12750 9100 Wire Wire Line 12750 8100 12750 8300 Wire Wire Line 10950 8100 12750 8100 Wire Wire Line 12150 7500 12250 7500 Wire Wire Line 12150 7600 12250 7600 Wire Wire Line 12250 7800 12150 7800 Wire Wire Line 12250 7500 12250 8300 Connection ~ 12250 7600 Connection ~ 12250 7800 Wire Wire Line 12150 7700 12250 7700 Connection ~ 12250 7700 Wire Wire Line 13150 7500 13250 7500 Wire Wire Line 13150 7600 13250 7600 Wire Wire Line 13250 7800 13150 7800 Wire Wire Line 13250 7500 13250 8300 Connection ~ 13250 7600 Connection ~ 13250 7800 Wire Wire Line 13150 7700 13250 7700 Connection ~ 13250 7700 Wire Wire Line 11450 7400 11450 7700 Wire Wire Line 11450 7700 11550 7700 Wire Wire Line 11550 7600 11450 7600 Connection ~ 11450 7600 Wire Wire Line 11550 7500 11450 7500 Connection ~ 11450 7500 Wire Wire Line 12450 7400 12450 7700 Wire Wire Line 12450 7700 12550 7700 Wire Wire Line 12550 7600 12450 7600 Connection ~ 12450 7600 Wire Wire Line 12550 7500 12450 7500 Connection ~ 12450 7500 Wire Wire Line 10050 7850 11550 7850 Wire Wire Line 12550 7850 12450 7850 Wire Wire Line 12450 7850 12450 8000 Wire Wire Line 12450 8000 10050 8000 Wire Wire Line 4100 1350 5250 1350 Wire Wire Line 13250 9000 13750 9000 Wire Wire Line 13750 9000 13750 8750 Connection ~ 13250 9000 Wire Wire Line 13750 8450 13750 8200 Wire Wire Line 13750 8200 13250 8200 Connection ~ 13250 8200 Wire Wire Line 11800 8450 11800 8200 Wire Wire Line 11800 8200 12250 8200 Connection ~ 12250 8200 Wire Wire Line 11800 8750 11800 9000 Wire Wire Line 11800 9000 12250 9000 Connection ~ 12250 9000 Wire Wire Line 10850 7750 10850 7850 Connection ~ 10850 7850 Wire Wire Line 11200 7750 11200 8000 Connection ~ 11200 8000 Wire Wire Line 10850 7400 10850 7450 Wire Wire Line 11200 7400 11200 7450 Wire Wire Line 11350 1750 11350 1750 Connection ~ 11350 2100 Wire Wire Line 10950 6100 12100 6100 Wire Wire Line 14650 8100 14650 8700 Wire Wire Line 14550 9100 14550 8500 Wire Wire Line 10950 8100 10950 8500 Wire Wire Line 10950 9100 10950 8700 Wire Wire Line 11300 8100 11300 8350 Connection ~ 11300 8100 Wire Wire Line 11400 8100 11400 8350 Connection ~ 11400 8100 Wire Wire Line 11300 8850 11300 9100 Connection ~ 11300 9100 Wire Wire Line 11400 8850 11400 9100 Connection ~ 11400 9100 Wire Wire Line 14200 8100 14200 8350 Connection ~ 14200 8100 Wire Wire Line 14300 8100 14300 8350 Connection ~ 14300 8100 Wire Wire Line 14200 8850 14200 9100 Connection ~ 14200 9100 Wire Wire Line 14300 9100 14300 8850 Connection ~ 14300 9100 Wire Wire Line 10750 8600 10850 8600 Wire Wire Line 10850 8600 10850 9150 Wire Wire Line 10850 9150 14750 9150 Wire Wire Line 14750 9150 14750 8600 Wire Wire Line 14750 8600 14850 8600 Wire Wire Line 1900 6650 2000 6650 Wire Wire Line 2000 6650 2000 6750 Wire Wire Line 1650 7000 1650 7100 Wire Wire Line 1350 7000 1650 7000 Wire Wire Line 1350 7400 1350 7500 Wire Wire Line 1350 7500 1650 7500 Wire Wire Line 1650 7500 1650 7400 Wire Wire Line 1500 7600 1500 7500 Connection ~ 1500 7500 Wire Wire Line 1350 7000 1350 7100 Wire Wire Line 1500 6850 1500 7000 Connection ~ 1500 7000 Wire Wire Line 6450 6850 6450 6950 Wire Wire Line 6150 6850 6450 6850 Wire Wire Line 6150 7350 6150 7250 Wire Wire Line 6150 7350 6450 7350 Wire Wire Line 6450 7350 6450 7250 Wire Wire Line 6300 7450 6300 7350 Connection ~ 6300 7350 Wire Wire Line 6150 6850 6150 6950 Connection ~ 6300 6850 Wire Wire Line 5900 6550 5800 6550 Wire Wire Line 5800 6550 5800 6650 Wire Wire Line 6450 8400 6450 8500 Wire Wire Line 6150 8400 6450 8400 Wire Wire Line 6150 8900 6150 8800 Wire Wire Line 6150 8900 6450 8900 Wire Wire Line 6450 8900 6450 8800 Wire Wire Line 6300 9000 6300 8900 Connection ~ 6300 8900 Wire Wire Line 6150 8400 6150 8500 Connection ~ 6300 8400 Wire Wire Line 5900 8100 5800 8100 Wire Wire Line 5800 8100 5800 8200 Wire Wire Line 4100 1450 5250 1450 Wire Wire Line 1900 6350 2350 6350 Wire Wire Line 1900 6450 2250 6450 Wire Wire Line 2250 6450 2250 6650 Wire Wire Line 2250 6650 2350 6650 Wire Wire Line 3450 6350 5900 6350 Wire Wire Line 3450 6650 3900 6650 Wire Wire Line 3900 6650 3900 6450 Wire Wire Line 3900 6450 5900 6450 Wire Wire Line 3450 6450 3800 6450 Wire Wire Line 3800 6450 3800 7900 Wire Wire Line 3450 6750 3700 6750 Wire Wire Line 3700 6750 3700 8000 Wire Wire Line 3700 8000 5900 8000 Wire Wire Line 3800 7900 5900 7900 Wire Wire Line 3450 7200 3550 7200 Wire Wire Line 3550 7200 3550 7300 Wire Wire Line 1900 6250 2000 6250 Wire Wire Line 2000 6250 2000 5700 Wire Wire Line 3450 7100 3550 7100 Wire Wire Line 3550 7100 3550 7000 Wire Wire Line 2250 7300 2250 7200 Wire Wire Line 2250 7200 2350 7200 Wire Wire Line 6300 6750 6300 6850 Wire Wire Line 6300 8300 6300 8400 Wire Wire Line 13300 4300 13900 4300 Wire Wire Line 13900 4300 13900 4700 Wire Wire Line 13900 4700 14300 4700 Wire Wire Line 14300 4300 14000 4300 Wire Wire Line 14000 4300 14000 5500 Wire Wire Line 14000 5500 13300 5500 Wire Wire Line 14300 4500 13500 4500 Wire Wire Line 13500 4500 13500 4600 Wire Wire Line 13500 4600 13300 4600 Wire Wire Line 14300 4400 13400 4400 Wire Wire Line 13400 4400 13400 5200 Wire Wire Line 13400 5200 13300 5200 Wire Wire Line 14300 4600 13600 4600 Wire Wire Line 13600 4600 13600 4900 Wire Wire Line 13600 4900 13300 4900 Wire Wire Line 13000 9100 14550 9100 Wire Wire Line 13000 9100 13000 8900 Wire Wire Line 13000 8100 14650 8100 Wire Wire Line 13000 8300 13000 8100 Wire Wire Line 14650 8700 14850 8700 Wire Wire Line 14550 8500 14850 8500 Wire Wire Line 10950 8500 10750 8500 Wire Wire Line 10950 8700 10750 8700 $Comp L +3V3 #PWR034 U 1 1 56426AA3 P 2200 2150 F 0 "#PWR034" H 2200 2000 50 0001 C CNN F 1 "+3V3" H 2200 2290 50 0000 C CNN F 2 "" H 2200 2150 60 0000 C CNN F 3 "" H 2200 2150 60 0000 C CNN 1 2200 2150 1 0 0 -1 $EndComp Wire Wire Line 2200 2200 2200 2150 Connection ~ 2300 2200 $Comp L +3V3 #PWR035 U 1 1 564287DB P 13400 6000 F 0 "#PWR035" H 13400 5850 50 0001 C CNN F 1 "+3V3" H 13400 6140 50 0000 C CNN F 2 "" H 13400 6000 60 0000 C CNN F 3 "" H 13400 6000 60 0000 C CNN 1 13400 6000 1 0 0 -1 $EndComp $Comp L +3V3 #PWR036 U 1 1 5642ADDD P 8500 10200 F 0 "#PWR036" H 8500 10050 50 0001 C CNN F 1 "+3V3" H 8500 10340 50 0000 C CNN F 2 "" H 8500 10200 60 0000 C CNN F 3 "" H 8500 10200 60 0000 C CNN 1 8500 10200 1 0 0 -1 $EndComp $Comp L USDCARD J1 U 1 1 564C4A57 P 14800 4600 F 0 "J1" H 14650 5200 60 0000 C CNN F 1 "USDCARD" H 14800 4050 60 0000 C CNN F 2 "footprints:microsd_socket" H 14800 3900 60 0001 C CNN F 3 "" H 14800 4600 60 0000 C CNN 1 14800 4600 1 0 0 -1 $EndComp Wire Wire Line 12000 6200 12000 6100 Text Label 13850 4150 0 60 ~ 0 USD_VDD Text Label 13100 2150 0 60 ~ 0 USD_VDD $Comp L R R9 U 1 1 56502CC1 P 11850 1800 F 0 "R9" V 11750 1800 50 0000 C CNN F 1 "10K" V 11950 1800 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 11780 1800 30 0001 C CNN F 3 "" H 11850 1800 30 0000 C CNN 1 11850 1800 0 -1 -1 0 $EndComp Wire Wire Line 11700 1800 11600 1800 Wire Wire Line 11600 1800 11600 1450 Connection ~ 11600 1450 Wire Wire Line 12000 1800 12350 1800 $Comp L R R10 U 1 1 56503BE6 P 11850 2850 F 0 "R10" V 11750 2850 50 0000 C CNN F 1 "10K" V 11950 2850 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 11780 2850 30 0001 C CNN F 3 "" H 11850 2850 30 0000 C CNN 1 11850 2850 0 -1 -1 0 $EndComp Wire Wire Line 11700 2850 11600 2850 Wire Wire Line 11600 2850 11600 2500 Connection ~ 11600 2500 Wire Wire Line 12000 2850 12350 2850 Wire Wire Line 13050 2150 13750 2150 Connection ~ 13050 2150 Wire Wire Line 13050 1450 13050 2800 Wire Wire Line 13050 2800 12950 2800 $Comp L +3V3 #PWR037 U 1 1 56509DD4 P 11150 2850 F 0 "#PWR037" H 11150 2700 50 0001 C CNN F 1 "+3V3" H 11150 2990 50 0000 C CNN F 2 "" H 11150 2850 60 0000 C CNN F 3 "" H 11150 2850 60 0000 C CNN 1 11150 2850 1 0 0 -1 $EndComp $Comp L Q_NMOS_GDS Q5 U 1 1 5650BBA3 P 12050 2100 F 0 "Q5" H 12350 2150 50 0000 R CNN F 1 "2N7002" H 12550 2000 50 0000 R CNN F 2 "TO_SOT_Packages_SMD:SOT-23" H 12250 2200 29 0001 C CNN F 3 "" H 12050 2100 60 0000 C CNN 1 12050 2100 1 0 0 -1 $EndComp $Comp L GND #PWR038 U 1 1 5650C07E P 12150 2300 F 0 "#PWR038" H 12150 2050 50 0001 C CNN F 1 "GND" H 12150 2150 50 0000 C CNN F 2 "" H 12150 2300 60 0000 C CNN F 3 "" H 12150 2300 60 0000 C CNN 1 12150 2300 1 0 0 -1 $EndComp Wire Wire Line 12150 1900 12150 1800 Connection ~ 12150 1800 $Comp L Q_NMOS_GDS Q6 U 1 1 5650C4BC P 12050 3150 F 0 "Q6" H 12350 3200 50 0000 R CNN F 1 "2N7002" H 12550 3100 50 0000 R CNN F 2 "TO_SOT_Packages_SMD:SOT-23" H 12250 3250 29 0001 C CNN F 3 "" H 12050 3150 60 0000 C CNN 1 12050 3150 1 0 0 -1 $EndComp $Comp L GND #PWR039 U 1 1 5650C4C2 P 12150 3350 F 0 "#PWR039" H 12150 3100 50 0001 C CNN F 1 "GND" H 12150 3200 50 0000 C CNN F 2 "" H 12150 3350 60 0000 C CNN F 3 "" H 12150 3350 60 0000 C CNN 1 12150 3350 1 0 0 -1 $EndComp Wire Wire Line 12150 2950 12150 2850 Connection ~ 12150 2850 Wire Wire Line 11650 3150 11850 3150 Wire Wire Line 9850 2100 11850 2100 Wire Wire Line 10750 3150 10650 3150 Wire Wire Line 10650 3150 10650 2100 Connection ~ 10650 2100 Text Label 9850 2100 0 60 ~ 0 SOCKET_SEL Wire Wire Line 13750 2150 13750 4150 $Comp L IRF7606PBF Q7 U 1 1 56520582 P 5500 5900 F 0 "Q7" H 5300 6200 50 0000 L CNN F 1 "IRF7606PBF" H 5300 5650 50 0000 L CNN F 2 "footprints:msoic-8" H 5500 6100 50 0001 C CIN F 3 "" V 5500 5900 50 0000 L CNN 1 5500 5900 1 0 0 -1 $EndComp Wire Wire Line 5800 5700 5900 5700 Wire Wire Line 5800 5800 5900 5800 Wire Wire Line 5900 6000 5800 6000 Wire Wire Line 5900 5700 5900 6250 Connection ~ 5900 5800 Connection ~ 5900 6000 Wire Wire Line 5800 5900 5900 5900 Connection ~ 5900 5900 Wire Wire Line 5100 5900 5200 5900 Wire Wire Line 5200 5800 5100 5800 Connection ~ 5100 5800 Wire Wire Line 2000 5700 5200 5700 Connection ~ 5100 5700 $Comp L IRF7606PBF Q8 U 1 1 56520E3D P 5500 7450 F 0 "Q8" H 5300 7750 50 0000 L CNN F 1 "IRF7606PBF" H 5300 7200 50 0000 L CNN F 2 "footprints:msoic-8" H 5500 7650 50 0001 C CIN F 3 "" V 5500 7450 50 0000 L CNN 1 5500 7450 1 0 0 -1 $EndComp Wire Wire Line 5800 7250 5900 7250 Wire Wire Line 5800 7350 5900 7350 Wire Wire Line 5900 7550 5800 7550 Wire Wire Line 5900 7250 5900 7800 Connection ~ 5900 7350 Connection ~ 5900 7550 Wire Wire Line 5800 7450 5900 7450 Connection ~ 5900 7450 Wire Wire Line 5100 7450 5200 7450 Wire Wire Line 5200 7350 5100 7350 Connection ~ 5100 7350 Wire Wire Line 4500 7250 5200 7250 Connection ~ 5100 7250 $Comp L 74AHC1G14 U5 U 1 1 565228E4 P 4550 8500 F 0 "U5" H 4695 8615 40 0000 C CNN F 1 "74AHC1G14" H 4750 8400 40 0000 C CNN F 2 "TO_SOT_Packages_SMD:SOT-23-5" H 4645 8365 30 0001 C CNN F 3 "" H 4695 8615 60 0000 C CNN 1 4550 8500 1 0 0 -1 $EndComp $Comp L GND #PWR040 U 1 1 565228EA P 4500 8750 F 0 "#PWR040" H 4500 8500 50 0001 C CNN F 1 "GND" H 4500 8600 50 0000 C CNN F 2 "" H 4500 8750 60 0000 C CNN F 3 "" H 4500 8750 60 0000 C CNN 1 4500 8750 -1 0 0 -1 $EndComp Wire Wire Line 4500 8700 4500 8750 Wire Wire Line 4500 5700 4500 8300 Text Label 1000 8500 0 60 ~ 0 USB_SEL Wire Wire Line 1000 8500 4100 8500 Wire Wire Line 5000 8500 5100 8500 Wire Wire Line 5100 8500 5100 7600 Wire Wire Line 5100 7600 5200 7600 Wire Wire Line 5200 6050 4000 6050 Wire Wire Line 4000 6050 4000 8500 Connection ~ 4000 8500 Wire Wire Line 2350 7100 2100 7100 Wire Wire Line 2100 7100 2100 8500 Connection ~ 2100 8500 $Comp L R R11 U 1 1 56534182 P 1650 8250 F 0 "R11" V 1550 8250 50 0000 C CNN F 1 "10K" V 1750 8250 50 0000 C CNN F 2 "Resistors_SMD:R_0805_HandSoldering" V 1580 8250 30 0001 C CNN F 3 "" H 1650 8250 30 0000 C CNN 1 1650 8250 1 0 0 -1 $EndComp $Comp L VDD #PWR041 U 1 1 56534188 P 1650 8100 F 0 "#PWR041" H 1650 7950 50 0001 C CNN F 1 "VDD" H 1650 8250 50 0000 C CNN F 2 "" H 1650 8100 60 0000 C CNN F 3 "" H 1650 8100 60 0000 C CNN 1 1650 8100 1 0 0 -1 $EndComp Wire Wire Line 1650 8100 1650 8100 Wire Wire Line 1650 8400 1650 8500 Connection ~ 1650 8500 $Comp L +3V3 #PWR042 U 1 1 56535F81 P 8850 10200 F 0 "#PWR042" H 8850 10050 50 0001 C CNN F 1 "+3V3" H 8850 10340 50 0000 C CNN F 2 "" H 8850 10200 60 0000 C CNN F 3 "" H 8850 10200 60 0000 C CNN 1 8850 10200 1 0 0 -1 $EndComp $Comp L +3V3 #PWR043 U 1 1 5653649E P 11350 1750 F 0 "#PWR043" H 11350 1600 50 0001 C CNN F 1 "+3V3" H 11350 1890 50 0000 C CNN F 2 "" H 11350 1750 60 0000 C CNN F 3 "" H 11350 1750 60 0000 C CNN 1 11350 1750 1 0 0 -1 $EndComp Wire Wire Line 5100 5700 5100 5900 Connection ~ 4500 5700 Wire Wire Line 5100 7250 5100 7450 Connection ~ 4500 7250 $EndSCHEMATC sd-mux-ctrl-0.0.4/doc/hardware/main-board/sd-relay.dcm000066400000000000000000000000601506653766500224710ustar00rootroot00000000000000EESchema-DOCLIB Version 2.0 # #End Doc Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/sd-relay.lib000066400000000000000000000035771506653766500225140ustar00rootroot00000000000000EESchema-LIBRARY Version 2.3 #encoding utf-8 # # G2RK-2 # DEF G2RK-2 RL 0 40 Y Y 1 F N F0 "RL" 550 250 50 H V L CNN F1 "G2RK-2" 600 -250 50 H V L CNN F2 "" -300 0 60 H V C CNN F3 "" -300 0 60 H V C CNN DRAW T 0 -400 -150 60 0 0 0 R Normal 0 C C T 0 600 -150 60 0 0 0 S Normal 0 C C S -700 200 700 -200 0 0 0 f P 2 0 0 20 0 -200 -50 -100 N P 2 0 0 20 0 200 -50 100 N P 3 0 0 20 -250 -200 -250 -100 -100 -100 N P 3 0 0 20 -250 200 -250 100 -100 100 N P 3 0 0 20 100 -100 250 -100 250 -200 N P 3 0 0 20 250 200 250 100 100 100 N P 5 0 0 0 -240 40 -340 40 -310 60 -310 20 -340 40 N P 5 1 0 0 240 40 340 40 310 60 310 20 340 40 N C -50 0 10 0 1 0 F S -625 75 -375 -75 0 1 10 N S 375 75 625 -75 0 1 10 N P 2 0 1 10 -600 -75 -400 75 N P 2 0 1 0 -500 -200 -500 -75 N P 2 0 1 0 -500 200 -500 75 N P 2 0 1 0 -485 110 -445 110 N P 2 0 1 0 -465 130 -465 90 N P 2 0 1 10 -375 0 -350 0 N P 2 0 1 10 -325 0 -300 0 N P 2 0 1 10 -275 0 -250 0 N P 2 0 1 10 -225 0 -200 0 N P 2 0 1 10 -175 0 -150 0 N P 2 0 1 10 -125 0 -100 0 N P 2 0 1 10 -75 0 -50 0 N P 2 0 1 10 -50 -80 -50 -50 N P 2 0 1 10 -50 -30 -50 0 N P 2 0 1 10 -50 0 -50 30 N P 2 0 1 10 -50 50 -50 80 N P 2 0 1 10 -25 0 0 0 N P 2 0 1 10 25 0 50 0 N P 2 0 1 10 75 0 100 0 N P 2 0 1 10 125 0 150 0 N P 2 0 1 10 175 0 200 0 N P 2 0 1 10 225 0 250 0 N P 2 0 1 10 275 0 300 0 N P 2 0 1 10 325 0 350 0 N P 2 0 1 10 400 -75 600 75 N P 2 0 1 0 500 -200 500 -75 N P 2 0 1 0 500 200 500 75 N P 2 0 1 0 515 110 555 110 N P 2 0 1 0 535 130 535 90 N X ~ 1 500 300 100 D 50 50 1 1 P X ~ 2 -500 300 100 D 50 50 1 1 P X ~ 3 -250 300 100 D 50 50 1 1 P X ~ 4 0 300 100 D 50 50 1 1 P X ~ 5 250 300 100 D 50 50 1 1 P X ~ 6 250 -300 100 U 50 50 1 1 P X ~ 7 0 -300 100 U 50 50 1 1 P X ~ 8 -250 -300 100 U 50 50 1 1 P X ~ 9 -500 -300 100 U 50 50 1 1 P X ~ 10 500 -300 100 U 50 50 1 1 P ENDDRAW ENDDEF # #End Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/switch-ic.dcm000066400000000000000000000007021506653766500226460ustar00rootroot00000000000000EESchema-DOCLIB Version 2.0 # $CMP TS3A27518E D 6-BIT, 1-of-2 MULTIPLEXER/DEMULTIPLEXER WITH INTEGRATED IEC L-4 ESD AND 1.8-V LOGIC COMPATIBLE CONTROL INPUTS K MULTIPLEXER DEMULTIPLEXER F http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf $ENDCMP # $CMP TS3USB30EDGSR D HIGH-SPEED USB 2.0 (480-Mbps) 1:2 MULTIPLEXER/DEMULTIPLEXER K MULTIPLEXER DEMULTIPLEXER USB 2.0 HIGH-SPEED F http://www.farnell.com/datasheets/1882195.pdf $ENDCMP # #End Doc Library sd-mux-ctrl-0.0.4/doc/hardware/main-board/switch-ic.lib000066400000000000000000000033001506653766500226460ustar00rootroot00000000000000EESchema-LIBRARY Version 2.3 #encoding utf-8 # # TS3A27518E # DEF TS3A27518E U 0 40 Y Y 1 F N F0 "U" -250 1150 60 H V C CNN F1 "TS3A27518E" 0 -1150 60 H V C CNN F2 "" 300 -300 60 H V C CNN F3 "" 300 -300 60 H V C CNN DRAW S -300 1100 300 -1100 0 1 0 f X NC2 1 -600 700 300 R 50 50 1 1 B X NC1 2 -600 1000 300 R 50 50 1 1 B X N.C. 3 600 -1000 300 L 50 50 1 1 N N X COM1 4 600 1000 300 L 50 50 1 1 B X GND 5 600 -900 300 L 50 50 1 1 P X COM2 6 600 700 300 L 50 50 1 1 B X COM3 7 600 400 300 L 50 50 1 1 B X V+ 8 600 -800 300 L 50 50 1 1 P X COM4 9 600 100 300 L 50 50 1 1 B X COM5 10 600 -200 300 L 50 50 1 1 B X EN 20 -600 -1000 300 R 50 50 1 1 I I X NO1 11 -600 900 300 R 50 50 1 1 B X NC4 21 -600 100 300 R 50 50 1 1 B X COM6 12 600 -500 300 L 50 50 1 1 B X NC6 22 -600 -500 300 R 50 50 1 1 B X NO2 13 -600 600 300 R 50 50 1 1 B X NC3 23 -600 400 300 R 50 50 1 1 B X IN2 14 -600 -900 300 R 50 50 1 1 I X IN1 24 -600 -800 300 R 50 50 1 1 B X NO3 15 -600 300 300 R 50 50 1 1 B X NO6 16 -600 -600 300 R 50 50 1 1 B X NO4 17 -600 0 300 R 50 50 1 1 B X NO5 18 -600 -300 300 R 50 50 1 1 B X NC5 19 -600 -200 300 R 50 50 1 1 B ENDDRAW ENDDEF # # TS3USB30EDGSR # DEF TS3USB30EDGSR U 0 40 Y Y 1 F N F0 "U" -200 550 60 H V C CNN F1 "TS3USB30EDGSR" 0 -600 60 H V C CNN F2 "" -2210 -1110 60 H V C CNN F3 "" -2210 -1110 60 H V C CNN DRAW S -250 500 250 -550 0 1 0 f X S 1 -550 -350 300 R 50 50 1 1 I X D1+ 2 550 100 300 L 50 50 1 1 B X D2+ 3 550 0 300 L 50 50 1 1 B X D+ 4 -550 100 300 R 50 50 1 1 B X GND 5 550 -450 300 L 50 50 1 1 P X D- 6 -550 400 300 R 50 50 1 1 B X D2- 7 550 300 300 L 50 50 1 1 B X D1- 8 550 400 300 L 50 50 1 1 B X EN 9 -550 -450 300 R 50 50 1 1 I I X VCC 10 550 -350 300 L 50 50 1 1 P ENDDRAW ENDDEF # #End Library sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/000077500000000000000000000000001506653766500204705ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/connectors.pretty/000077500000000000000000000000001506653766500241735ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/connectors.pretty/strip_2x4_1.27.kicad_mod000066400000000000000000000031301506653766500303310ustar00rootroot00000000000000(module strip_2x4_1.27 (layer F.Cu) (tedit 561E02E5) (descr "Pin strip 8pin") (tags "CONN DEV") (fp_text reference STRIP_2x4_1.27 (at 4.16 2.57) (layer F.SilkS) (effects (font (size 1.016 1.016) (thickness 0.2032))) ) (fp_text value Val** (at 3.76 -4.87) (layer F.SilkS) hide (effects (font (size 1.016 0.889) (thickness 0.2032))) ) (fp_line (start -1.27 -3.87) (end 10.16 -3.87) (layer F.SilkS) (width 0.3048)) (fp_line (start 10.16 -3.87) (end 10.16 1.27) (layer F.SilkS) (width 0.3048)) (fp_line (start 10.16 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.3048)) (fp_line (start -1.27 1.27) (end -1.27 -3.87) (layer F.SilkS) (width 0.3048)) (pad 1 thru_hole rect (at 0 0) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) (pad 2 thru_hole oval (at 1.27 -2.6) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) (pad 3 thru_hole oval (at 2.54 0) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) (pad 4 thru_hole oval (at 3.81 -2.6) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) (pad 5 thru_hole oval (at 5.08 0) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) (pad 6 thru_hole oval (at 6.35 -2.6) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) (pad 7 thru_hole oval (at 7.62 0) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) (pad 8 thru_hole oval (at 8.89 -2.6) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)) (model walter/pin_strip/pin_strip_8.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/connectors.pretty/usd.kicad_mod000066400000000000000000000015311506653766500266220ustar00rootroot00000000000000(module usd (layer F.Cu) (tedit 561CF09A) (fp_text reference REF** (at 3.79 2.35) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value usd (at 3.64 -2.55) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (pad 8 smd rect (at 7.7 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask)) (pad 7 smd rect (at 6.6 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask)) (pad 6 smd rect (at 5.5 -0.15) (size 0.8 3.2) (layers F.Cu F.Paste F.Mask)) (pad 5 smd rect (at 4.4 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask)) (pad 4 smd rect (at 3.3 -0.15) (size 0.8 3.2) (layers F.Cu F.Paste F.Mask)) (pad 3 smd rect (at 2.2 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at 1.1 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask)) (pad 1 smd rect (at 0 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask)) ) sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/usd-adapter.kicad_pcb000066400000000000000000001322661506653766500245340ustar00rootroot00000000000000(kicad_pcb (version 20171130) (host pcbnew no-vcs-found-ac9fc94~61~ubuntu14.04.1) (general (thickness 1.6) (drawings 37) (tracks 351) (zones 0) (modules 2) (nets 9) ) (page A4) (title_block (title "Micro SD card adapter") (date 2016-02-26) (rev 1) (company SRPOL) (comment 1 "Author: Adam Malinowski ") (comment 2 "Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved") ) (layers (0 F.Cu signal) (31 B.Cu signal) (32 B.Adhes user) (33 F.Adhes user) (34 B.Paste user) (35 F.Paste user) (36 B.SilkS user) (37 F.SilkS user) (38 B.Mask user) (39 F.Mask user) (40 Dwgs.User user) (41 Cmts.User user) (42 Eco1.User user) (43 Eco2.User user) (44 Edge.Cuts user) (45 Margin user) (46 B.CrtYd user) (47 F.CrtYd user) (48 B.Fab user) (49 F.Fab user) ) (setup (last_trace_width 0.25) (trace_clearance 0.2) (zone_clearance 0.508) (zone_45_only no) (trace_min 0.2) (segment_width 0.15) (edge_width 0.15) (via_size 0.6) (via_drill 0.4) (via_min_size 0.4) (via_min_drill 0.3) (uvia_size 0.3) (uvia_drill 0.1) (uvias_allowed no) (uvia_min_size 0.2) (uvia_min_drill 0.1) (pcb_text_width 0.3) (pcb_text_size 1.5 1.5) (mod_edge_width 0.15) (mod_text_size 1 1) (mod_text_width 0.15) (pad_size 0.8 2.9) (pad_drill 0) (pad_to_mask_clearance 0.2) (aux_axis_origin 146.07 110.06) (grid_origin 146.07 110.06) (visible_elements FFFFFF7F) (pcbplotparams (layerselection 0x01100_00000001) (usegerberextensions false) (usegerberattributes false) (usegerberadvancedattributes false) (creategerberjobfile false) (excludeedgelayer true) (linewidth 0.100000) (plotframeref false) (viasonmask false) (mode 1) (useauxorigin false) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15) (psnegative false) (psa4output false) (plotreference true) (plotvalue true) (plotinvisibletext false) (padsonsilk false) (subtractmaskfromsilk false) (outputformat 1) (mirror false) (drillshape 0) (scaleselection 1) (outputdirectory fabr)) ) (net 0 "") (net 1 /N8) (net 2 /N7) (net 3 /N6) (net 4 /N5) (net 5 /N4) (net 6 /N3) (net 7 /N2) (net 8 /N1) (net_class Default "This is the default net class." (clearance 0.2) (trace_width 0.25) (via_dia 0.6) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) (add_net /N1) (add_net /N2) (add_net /N3) (add_net /N4) (add_net /N5) (add_net /N6) (add_net /N7) (add_net /N8) ) (module connectors:usd (layer F.Cu) (tedit 561E0908) (tstamp 5A844DA4) (at 147.3 87.58) (path /561E06AA) (fp_text reference J1 (at 3.79 2.35) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value usd-plug (at 3.64 -2.55) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (pad 8 smd rect (at 7.7 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask) (net 1 /N8)) (pad 7 smd rect (at 6.6 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask) (net 2 /N7)) (pad 6 smd rect (at 5.5 -0.15) (size 0.8 3.2) (layers F.Cu F.Paste F.Mask) (net 3 /N6)) (pad 5 smd rect (at 4.4 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask) (net 4 /N5)) (pad 4 smd rect (at 3.3 -0.15) (size 0.8 3.2) (layers F.Cu F.Paste F.Mask) (net 5 /N4)) (pad 3 smd rect (at 2.2 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask) (net 6 /N3)) (pad 2 smd rect (at 1.1 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask) (net 7 /N2)) (pad 1 smd rect (at 0 0) (size 0.8 2.9) (layers F.Cu F.Paste F.Mask) (net 8 /N1)) ) (module connectors:strip_2x4_1.27 (layer F.Cu) (tedit 561E090B) (tstamp 5A844DD5) (at 146.07 110.06) (descr "Pin strip 8pin") (tags "CONN DEV") (path /561E0431) (fp_text reference P1 (at 4.16 2.57) (layer F.SilkS) hide (effects (font (size 1.016 1.016) (thickness 0.2032))) ) (fp_text value CONN_02X04 (at 3.76 -4.87) (layer F.SilkS) hide (effects (font (size 1.016 0.889) (thickness 0.2032))) ) (fp_line (start -1.27 -3.87) (end 10.16 -3.87) (layer F.SilkS) (width 0.3048)) (fp_line (start 10.16 -3.87) (end 10.16 1.27) (layer F.SilkS) (width 0.3048)) (fp_line (start 10.16 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.3048)) (fp_line (start -1.27 1.27) (end -1.27 -3.87) (layer F.SilkS) (width 0.3048)) (pad 1 thru_hole rect (at 0 0) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS) (net 8 /N1)) (pad 2 thru_hole oval (at 1.27 -2.6) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS) (net 7 /N2)) (pad 3 thru_hole oval (at 2.54 0) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS) (net 6 /N3)) (pad 4 thru_hole oval (at 3.81 -2.6) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS) (net 5 /N4)) (pad 5 thru_hole oval (at 5.08 0) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS) (net 4 /N5)) (pad 6 thru_hole oval (at 6.35 -2.6) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS) (net 3 /N6)) (pad 7 thru_hole oval (at 7.62 0) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS) (net 2 /N7)) (pad 8 thru_hole oval (at 8.89 -2.6) (size 1.524 2.19964) (drill 1.00076) (layers *.Cu *.Mask F.SilkS) (net 1 /N8)) ) (gr_text "uSD Adapter" (at 150.52 113.26) (layer F.Cu) (effects (font (size 1.5 1.3) (thickness 0.2))) ) (gr_line (start 156.4 84.95) (end 157.3 84.6) (layer Cmts.User) (width 0.15) (tstamp 5A844E3F)) (gr_line (start 156.4 84.95) (end 156.75 84.05) (layer Cmts.User) (width 0.15) (tstamp 5A844E3C)) (gr_text "2. Contacts finished with gold" (at 179.53 78.39) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.1))) ) (gr_line (start 161.63 79.59) (end 197.73 79.59) (layer Cmts.User) (width 0.15)) (gr_line (start 156.38 84.94) (end 161.63 79.59) (layer Cmts.User) (width 0.15)) (gr_line (start 156.75 84.55) (end 145.75 84.55) (layer Cmts.User) (width 0.15) (tstamp 5A844D79)) (gr_line (start 156.75 89.55) (end 156.75 84.55) (layer Cmts.User) (width 0.15) (tstamp 5A844D76)) (gr_line (start 145.75 89.55) (end 156.75 89.55) (layer Cmts.User) (width 0.15) (tstamp 5A844D73)) (gr_line (start 145.75 84.55) (end 145.75 89.55) (layer Cmts.User) (width 0.15) (tstamp 5A844D70)) (gr_text "1. Board thickness: 0.8mm" (at 177.601428 75.91) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.1))) ) (dimension 30.000013 (width 0.3) (layer Dwgs.User) (tstamp 5A844D92) (gr_text "30.000 mm" (at 139.010001 100.015364 270.0381972) (layer Dwgs.User) (tstamp 5A844D93) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 147.07 115.01) (xy 137.670002 115.016267))) (feature2 (pts (xy 147.05 85.009994) (xy 137.650002 85.016261))) (crossbar (pts (xy 140.350001 85.014461) (xy 140.370001 115.014467))) (arrow1a (pts (xy 140.370001 115.014467) (xy 139.782829 113.888354))) (arrow1b (pts (xy 140.370001 115.014467) (xy 140.955671 113.887573))) (arrow2a (pts (xy 140.350001 85.014461) (xy 139.764331 86.141355))) (arrow2b (pts (xy 140.350001 85.014461) (xy 140.937173 86.140574))) ) (dimension 14.2 (width 0.3) (layer Dwgs.User) (tstamp 5A844D8C) (gr_text "14.200 mm" (at 150.52 119.01) (layer Dwgs.User) (tstamp 5A844D8D) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 157.62 114.16) (xy 157.62 120.36))) (feature2 (pts (xy 143.42 114.16) (xy 143.42 120.36))) (crossbar (pts (xy 143.42 117.66) (xy 157.62 117.66))) (arrow1a (pts (xy 157.62 117.66) (xy 156.493496 118.246421))) (arrow1b (pts (xy 157.62 117.66) (xy 156.493496 117.073579))) (arrow2a (pts (xy 143.42 117.66) (xy 144.546504 118.246421))) (arrow2b (pts (xy 143.42 117.66) (xy 144.546504 117.073579))) ) (gr_line (start 145.82 105.05) (end 155.215 105.05) (angle 90) (layer F.SilkS) (width 0.15) (tstamp 5A844D85)) (gr_arc (start 145.815 104.25) (end 145.815 105.05) (angle 90) (layer F.SilkS) (width 0.15) (tstamp 5A844D82)) (gr_arc (start 155.215 104.25) (end 156.015 104.25) (angle 90) (layer F.SilkS) (width 0.15) (tstamp 5A844E00)) (gr_arc (start 156.82 114.21) (end 157.62 114.21) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844DFD)) (gr_line (start 157.62 105.805) (end 157.62 114.21) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844DFA)) (gr_arc (start 144.22 114.21) (end 144.22 115.01) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844DF7)) (gr_line (start 143.42 105.805) (end 143.42 114.21) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844DF4)) (gr_arc (start 156.82 105.81) (end 156.82 105.01) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E57)) (gr_arc (start 144.22 105.805) (end 143.42 105.805) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E54)) (gr_arc (start 145.52 93.11) (end 145.72 93.11) (angle -90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E51)) (gr_line (start 146.27 90.16) (end 146.27 85.81) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E4E)) (gr_line (start 145.72 94.11) (end 145.02 94.81) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E4B)) (gr_line (start 145.72 93.11) (end 145.72 94.11) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E66)) (gr_line (start 145.02 92.91) (end 145.52 92.91) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E63)) (gr_line (start 145.02 91.41) (end 145.02 92.91) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E60)) (gr_line (start 146.27 90.16) (end 145.02 91.41) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E5D)) (gr_arc (start 156.82 104.21) (end 156.82 105.01) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E5A)) (gr_arc (start 144.22 104.205) (end 145.02 104.205) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E2A)) (gr_arc (start 147.07 85.81) (end 147.07 85.01) (angle -90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E27)) (gr_arc (start 155.22 85.81) (end 156.02 85.81) (angle -90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844E24)) (gr_line (start 156.02 104.21) (end 156.02 85.81) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A8512EB)) (gr_line (start 144.215 115.01) (end 156.82 115.01) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A8511B7)) (gr_line (start 145.02 94.844519) (end 145.02 104.21) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844DC4)) (gr_line (start 155.22 85.01) (end 147.09 85.01) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5A844DC1)) (segment (start 155.392076 104.257311) (end 155.430315 104.219072) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155 92.58) (end 155 87.58) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.459087 104.173281) (end 155.476949 104.122237) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.296706 104.740165) (end 154.274518 104.676756) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.346285 104.286083) (end 155.392076 104.257311) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.50024 104.317521) (end 154.566996 104.31) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.266996 104.61) (end 154.274518 104.543243) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.430315 104.219072) (end 155.459087 104.173281) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.332447 104.797046) (end 154.296706 104.740165) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.274518 104.543243) (end 154.296706 104.479834) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.436831 104.88029) (end 154.37995 104.844549) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.023916 103.573281) (end 155.006054 103.522237) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.436831 104.339709) (end 154.50024 104.317521) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.112953 105.57545) (end 155.169834 105.539709) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.566996 104.91) (end 154.50024 104.902478) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.274518 104.676756) (end 154.266996 104.61) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.533004 104.91) (end 154.566996 104.91) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.59976 104.917521) (end 155.533004 104.91) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.06545 105.622953) (end 155.112953 105.57545) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.029709 105.679834) (end 155.06545 105.622953) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.295241 104.303945) (end 155.346285 104.286083) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.825482 105.276756) (end 155.833004 105.21) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.663169 104.939709) (end 155.59976 104.917521) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.007521 105.743243) (end 155.029709 105.679834) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.483004 104.068498) (end 155.483004 103.951502) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.3 105.51) (end 155.533004 105.51) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.50024 104.902478) (end 154.436831 104.88029) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.833004 105.21) (end 155.825482 105.143243) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.169834 105.539709) (end 155.233243 105.517521) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.459087 103.846718) (end 155.430315 103.800927) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.241502 104.31) (end 155.295241 104.303945) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.803294 105.340165) (end 155.825482 105.276756) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.767553 105.022953) (end 155.72005 104.97545) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155 107.42) (end 155 105.81) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.533004 105.51) (end 155.59976 105.502478) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.296706 104.479834) (end 154.332447 104.422953) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.767553 105.397046) (end 155.803294 105.340165) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155 105.81) (end 155.007521 105.743243) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.332447 104.422953) (end 154.37995 104.37545) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.825482 105.143243) (end 155.803294 105.079834) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.37995 104.844549) (end 154.332447 104.797046) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.59976 105.502478) (end 155.663169 105.48029) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.72005 105.444549) (end 155.767553 105.397046) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.37995 104.37545) (end 154.436831 104.339709) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.663169 105.48029) (end 155.72005 105.444549) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.233243 105.517521) (end 155.3 105.51) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.803294 105.079834) (end 155.767553 105.022953) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.566996 104.31) (end 155.241502 104.31) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.96 107.46) (end 155 107.42) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.72005 104.97545) (end 155.663169 104.939709) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155 103.468498) (end 155 92.58) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.476949 104.122237) (end 155.483004 104.068498) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.483004 103.951502) (end 155.476949 103.897762) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.476949 103.897762) (end 155.459087 103.846718) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.430315 103.800927) (end 155.392076 103.762688) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.392076 103.762688) (end 155.346285 103.733916) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.346285 103.733916) (end 155.295241 103.716054) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.295241 103.716054) (end 155.187762 103.703945) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.187762 103.703945) (end 155.136718 103.686083) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.136718 103.686083) (end 155.090927 103.657311) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.090927 103.657311) (end 155.052688 103.619072) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.052688 103.619072) (end 155.023916 103.573281) (width 0.25) (layer F.Cu) (net 1)) (segment (start 155.006054 103.522237) (end 155 103.468498) (width 0.25) (layer F.Cu) (net 1)) (segment (start 154.05438 105.234523) (end 154.011825 105.207783) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.011825 105.76333) (end 154.05438 105.73659) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.116659 105.312617) (end 154.089919 105.270062) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.133258 105.360056) (end 154.116659 105.312617) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.774505 105.13659) (end 153.738966 105.101051) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.138886 105.41) (end 154.133258 105.360056) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.138886 105.561114) (end 154.138886 105.41) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.133258 105.611057) (end 154.138886 105.561114) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.695627 105.011057) (end 153.69 104.961114) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.05438 105.73659) (end 154.089919 105.701051) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.712226 105.912617) (end 153.738966 105.870062) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.011825 105.207783) (end 153.964386 105.191184) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.964386 105.779929) (end 154.011825 105.76333) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.69 110.06) (end 153.69 106.01) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.69 106.01) (end 153.695627 105.960056) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.695627 105.960056) (end 153.712226 105.912617) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.089919 105.701051) (end 154.116659 105.658496) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.738966 105.870062) (end 153.774505 105.834523) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.964386 105.191184) (end 153.864499 105.179929) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.81706 105.807783) (end 153.864499 105.791184) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.864499 105.791184) (end 153.964386 105.779929) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.089919 105.270062) (end 154.05438 105.234523) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.774505 105.834523) (end 153.81706 105.807783) (width 0.25) (layer F.Cu) (net 2)) (segment (start 154.116659 105.658496) (end 154.133258 105.611057) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.864499 105.179929) (end 153.81706 105.16333) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.738966 105.101051) (end 153.712226 105.058496) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.81706 105.16333) (end 153.774505 105.13659) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.712226 105.058496) (end 153.695627 105.011057) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.69 104.961114) (end 153.69 94.77) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.69 94.77) (end 153.9 94.56) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.9 94.56) (end 153.9 87.58) (width 0.25) (layer F.Cu) (net 2)) (segment (start 153.052417 104.076756) (end 153.059939 104.01) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.013305 104.902478) (end 151.949896 104.88029) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.030229 104.140165) (end 153.052417 104.076756) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.890104 104.28029) (end 152.946985 104.244549) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.826695 104.302478) (end 152.890104 104.28029) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.759939 104.31) (end 152.826695 104.302478) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.845512 104.797046) (end 151.809771 104.740165) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.013305 104.317521) (end 152.080061 104.31) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.809771 104.479834) (end 151.845512 104.422953) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.780061 104.61) (end 151.787583 104.543243) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.893015 104.844549) (end 151.845512 104.797046) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.759939 104.91) (end 152.080061 104.91) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.809771 104.740165) (end 151.787583 104.676756) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.994488 105.397046) (end 153.030229 105.340165) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.949896 104.88029) (end 151.893015 104.844549) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.946985 103.77545) (end 152.890104 103.739709) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.826695 104.917521) (end 152.759939 104.91) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.949896 104.339709) (end 152.013305 104.317521) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.826695 103.717521) (end 152.759939 103.71) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.759939 105.51) (end 152.826695 105.502478) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.787583 104.543243) (end 151.809771 104.479834) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.030229 105.079834) (end 152.994488 105.022953) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.946985 104.244549) (end 152.994488 104.197046) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.653243 105.517521) (end 152.72 105.51) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.893015 104.37545) (end 151.949896 104.339709) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.890104 105.48029) (end 152.946985 105.444549) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.589834 103.68029) (end 152.532953 103.644549) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.589834 105.539709) (end 152.653243 105.517521) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.052417 105.276756) (end 153.059939 105.21) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.994488 104.197046) (end 153.030229 104.140165) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.059939 105.21) (end 153.052417 105.143243) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.946985 105.444549) (end 152.994488 105.397046) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.532953 103.644549) (end 152.48545 103.597046) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.532953 105.57545) (end 152.589834 105.539709) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.449709 105.679834) (end 152.48545 105.622953) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.427521 105.743243) (end 152.449709 105.679834) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.080061 104.31) (end 152.759939 104.31) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.080061 104.91) (end 152.013305 104.902478) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.48545 105.622953) (end 152.532953 105.57545) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.72 105.51) (end 152.759939 105.51) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.42 107.46) (end 152.42 105.81) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.826695 105.502478) (end 152.890104 105.48029) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.42 105.81) (end 152.427521 105.743243) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.052417 103.943243) (end 153.030229 103.879834) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.946985 104.97545) (end 152.890104 104.939709) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.030229 105.340165) (end 153.052417 105.276756) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.787583 104.676756) (end 151.780061 104.61) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.030229 103.879834) (end 152.994488 103.822953) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.994488 105.022953) (end 152.946985 104.97545) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.052417 105.143243) (end 153.030229 105.079834) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.845512 104.422953) (end 151.893015 104.37545) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.890104 104.939709) (end 152.826695 104.917521) (width 0.25) (layer F.Cu) (net 3)) (segment (start 153.059939 104.01) (end 153.052417 103.943243) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.994488 103.822953) (end 152.946985 103.77545) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.8 94.57) (end 152.8 87.43) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.890104 103.739709) (end 152.826695 103.717521) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.759939 103.71) (end 152.72 103.71) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.72 103.71) (end 152.653243 103.702478) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.653243 103.702478) (end 152.589834 103.68029) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.48545 103.597046) (end 152.449709 103.540165) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.449709 103.540165) (end 152.427521 103.476756) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.427521 103.476756) (end 152.42 103.41) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.42 103.41) (end 152.42 94.95) (width 0.25) (layer F.Cu) (net 3)) (segment (start 152.42 94.95) (end 152.8 94.57) (width 0.25) (layer F.Cu) (net 3)) (segment (start 151.354907 105.196591) (end 151.280314 105.188186) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.186567 105.855496) (end 151.213107 105.828956) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.448654 105.255496) (end 151.422114 105.228956) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.390334 105.208987) (end 151.354907 105.196591) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.485222 105.624778) (end 151.485222 105.36) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.468623 105.287276) (end 151.448654 105.255496) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.481019 105.322703) (end 151.468623 105.287276) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.166598 105.097501) (end 151.154202 105.062074) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.485222 105.36) (end 151.481019 105.322703) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.280314 105.796591) (end 151.354907 105.788186) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.422114 105.228956) (end 151.390334 105.208987) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.481019 105.662074) (end 151.485222 105.624778) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.422114 105.755821) (end 151.448654 105.729281) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.448654 105.729281) (end 151.468623 105.697501) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.15 105.96) (end 151.154202 105.922703) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.468623 105.697501) (end 151.481019 105.662074) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.213107 105.828956) (end 151.244887 105.808987) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.154202 105.922703) (end 151.166598 105.887276) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.244887 105.808987) (end 151.280314 105.796591) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.166598 105.887276) (end 151.186567 105.855496) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.354907 105.788186) (end 151.390334 105.77579) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.15 110.06) (end 151.15 105.96) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.390334 105.77579) (end 151.422114 105.755821) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.280314 105.188186) (end 151.244887 105.17579) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.244887 105.17579) (end 151.213107 105.155821) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.154202 105.062074) (end 151.15 105.024778) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.213107 105.155821) (end 151.186567 105.129281) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.186567 105.129281) (end 151.166598 105.097501) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.15 105.024778) (end 151.15 95.11) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.15 95.11) (end 151.7 94.56) (width 0.25) (layer F.Cu) (net 4)) (segment (start 151.7 94.56) (end 151.7 87.58) (width 0.25) (layer F.Cu) (net 4)) (segment (start 150.263223 104.302478) (end 150.326632 104.28029) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.049834 103.68029) (end 149.992953 103.644549) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.196467 104.31) (end 150.263223 104.302478) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.563533 104.31) (end 150.196467 104.31) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.431016 105.022953) (end 150.383513 104.97545) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.376487 104.37545) (end 149.433368 104.339709) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.488945 104.076756) (end 150.496467 104.01) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.293243 104.479834) (end 149.328984 104.422953) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.263533 104.61) (end 149.271055 104.543243) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.271055 104.676756) (end 149.263533 104.61) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.496777 104.317521) (end 149.563533 104.31) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.328984 104.797046) (end 149.293243 104.740165) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.496467 105.21) (end 150.488945 105.143243) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.376487 104.844549) (end 149.328984 104.797046) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.328984 104.422953) (end 149.376487 104.37545) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.466757 104.140165) (end 150.488945 104.076756) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.433368 104.88029) (end 149.376487 104.844549) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.293243 104.740165) (end 149.271055 104.676756) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.563533 104.91) (end 149.496777 104.902478) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.196467 104.91) (end 149.563533 104.91) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.431016 105.397046) (end 150.466757 105.340165) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.496777 104.902478) (end 149.433368 104.88029) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.887521 105.743243) (end 149.909709 105.679834) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.18 105.51) (end 150.196467 105.51) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.431016 104.197046) (end 150.466757 104.140165) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.488945 105.143243) (end 150.466757 105.079834) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.113243 105.517521) (end 150.18 105.51) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.263223 105.502478) (end 150.326632 105.48029) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.049834 105.539709) (end 150.113243 105.517521) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.94545 105.622953) (end 149.992953 105.57545) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.326632 104.939709) (end 150.263223 104.917521) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.18 103.71) (end 150.113243 103.702478) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.326632 104.28029) (end 150.383513 104.244549) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.196467 105.51) (end 150.263223 105.502478) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.466757 105.079834) (end 150.431016 105.022953) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.271055 104.543243) (end 149.293243 104.479834) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.466757 105.340165) (end 150.488945 105.276756) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.383513 104.244549) (end 150.431016 104.197046) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.909709 105.679834) (end 149.94545 105.622953) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.94545 103.597046) (end 149.909709 103.540165) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.992953 105.57545) (end 150.049834 105.539709) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.88 107.46) (end 149.88 105.81) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.488945 103.943243) (end 150.466757 103.879834) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.383513 105.444549) (end 150.431016 105.397046) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.88 105.81) (end 149.887521 105.743243) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.488945 105.276756) (end 150.496467 105.21) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.433368 104.339709) (end 149.496777 104.317521) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.263223 104.917521) (end 150.196467 104.91) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.326632 105.48029) (end 150.383513 105.444549) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.383513 104.97545) (end 150.326632 104.939709) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.496467 104.01) (end 150.488945 103.943243) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.466757 103.879834) (end 150.431016 103.822953) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.431016 103.822953) (end 150.383513 103.77545) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.383513 103.77545) (end 150.326632 103.739709) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.326632 103.739709) (end 150.263223 103.717521) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.263223 103.717521) (end 150.196467 103.71) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.196467 103.71) (end 150.18 103.71) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.113243 103.702478) (end 150.049834 103.68029) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.992953 103.644549) (end 149.94545 103.597046) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.909709 103.540165) (end 149.887521 103.476756) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.887521 103.476756) (end 149.88 103.41) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.88 103.41) (end 149.88 95.28) (width 0.25) (layer F.Cu) (net 5)) (segment (start 149.88 95.28) (end 150.6 94.56) (width 0.25) (layer F.Cu) (net 5)) (segment (start 150.6 94.56) (end 150.6 87.43) (width 0.25) (layer F.Cu) (net 5)) (segment (start 148.732211 105.56254) (end 148.687721 105.557527) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.61 95.46) (end 149.5 94.57) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.772294 105.581843) (end 148.75334 105.569933) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.800033 105.616626) (end 148.788123 105.597672) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.788123 105.597672) (end 148.772294 105.581843) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.807426 106.082312) (end 148.809933 106.060068) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.809933 105.66) (end 148.807426 105.637755) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.61 106.26) (end 148.612506 106.237755) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.809933 106.060068) (end 148.809933 105.66) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.75334 105.569933) (end 148.732211 105.56254) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.631809 105.522395) (end 148.619899 105.503441) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.772294 106.138224) (end 148.788123 106.122395) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.807426 105.637755) (end 148.800033 105.616626) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.800033 106.103441) (end 148.807426 106.082312) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.647638 106.181843) (end 148.666592 106.169933) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.61 110.06) (end 148.61 106.26) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.788123 106.122395) (end 148.800033 106.103441) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.619899 106.216626) (end 148.631809 106.197672) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.666592 105.550134) (end 148.647638 105.538224) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.687721 106.16254) (end 148.732211 106.157527) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.687721 105.557527) (end 148.666592 105.550134) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.612506 106.237755) (end 148.619899 106.216626) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.631809 106.197672) (end 148.647638 106.181843) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.666592 106.169933) (end 148.687721 106.16254) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.732211 106.157527) (end 148.75334 106.150134) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.75334 106.150134) (end 148.772294 106.138224) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.647638 105.538224) (end 148.631809 105.522395) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.619899 105.503441) (end 148.612506 105.482312) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.612506 105.482312) (end 148.61 105.460068) (width 0.25) (layer F.Cu) (net 6)) (segment (start 148.61 105.460068) (end 148.61 95.46) (width 0.25) (layer F.Cu) (net 6)) (segment (start 149.5 94.57) (end 149.5 87.58) (width 0.25) (layer F.Cu) (net 6)) (segment (start 147.928285 104.390165) (end 147.950473 104.326756) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.022005 104.56) (end 147.657995 104.56) (width 0.25) (layer F.Cu) (net 7)) (segment (start 148.4 94.56) (end 148.4 87.58) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.950473 104.326756) (end 147.957995 104.26) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.955249 104.567521) (end 147.022005 104.56) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.729527 104.793243) (end 146.751715 104.729834) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.845041 105.694549) (end 147.892544 105.647046) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.729527 104.926756) (end 146.722005 104.86) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.751715 104.729834) (end 146.787456 104.672953) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.787456 105.047046) (end 146.751715 104.990165) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.34 107.46) (end 147.34 106.06) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.955249 105.152478) (end 146.89184 105.13029) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.724751 104.552478) (end 147.78816 104.53029) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.787456 104.672953) (end 146.834959 104.62545) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.724751 105.167521) (end 147.657995 105.16) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.892544 104.447046) (end 147.928285 104.390165) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.022005 105.16) (end 146.955249 105.152478) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.64 103.96) (end 147.573243 103.952478) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.78816 104.53029) (end 147.845041 104.494549) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.724751 105.752478) (end 147.78816 105.73029) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.657995 104.56) (end 147.724751 104.552478) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.722005 104.86) (end 146.729527 104.793243) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.452953 103.894549) (end 147.40545 103.847046) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.657995 105.76) (end 147.724751 105.752478) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.573243 105.767521) (end 147.64 105.76) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.509834 105.789709) (end 147.573243 105.767521) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.892544 105.272953) (end 147.845041 105.22545) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.657995 105.16) (end 147.022005 105.16) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.950473 105.526756) (end 147.957995 105.46) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.928285 105.329834) (end 147.892544 105.272953) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.452953 105.82545) (end 147.509834 105.789709) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.78816 105.73029) (end 147.845041 105.694549) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.892544 105.647046) (end 147.928285 105.590165) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.369709 105.929834) (end 147.40545 105.872953) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.40545 105.872953) (end 147.452953 105.82545) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.834959 104.62545) (end 146.89184 104.589709) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.845041 104.494549) (end 147.892544 104.447046) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.957995 105.46) (end 147.950473 105.393243) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.834959 105.094549) (end 146.787456 105.047046) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.89184 105.13029) (end 146.834959 105.094549) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.347521 105.993243) (end 147.369709 105.929834) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.34 106.06) (end 147.347521 105.993243) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.78816 105.189709) (end 147.724751 105.167521) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.40545 103.847046) (end 147.369709 103.790165) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.89184 104.589709) (end 146.955249 104.567521) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.928285 105.590165) (end 147.950473 105.526756) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.64 105.76) (end 147.657995 105.76) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.957995 104.26) (end 147.950473 104.193243) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.950473 105.393243) (end 147.928285 105.329834) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.751715 104.990165) (end 146.729527 104.926756) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.845041 105.22545) (end 147.78816 105.189709) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.950473 104.193243) (end 147.928285 104.129834) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.928285 104.129834) (end 147.892544 104.072953) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.509834 103.93029) (end 147.452953 103.894549) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.892544 104.072953) (end 147.845041 104.02545) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.845041 104.02545) (end 147.78816 103.989709) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.78816 103.989709) (end 147.724751 103.967521) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.724751 103.967521) (end 147.657995 103.96) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.657995 103.96) (end 147.64 103.96) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.573243 103.952478) (end 147.509834 103.93029) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.369709 103.790165) (end 147.347521 103.726756) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.347521 103.726756) (end 147.34 103.66) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.34 103.66) (end 147.34 95.62) (width 0.25) (layer F.Cu) (net 7)) (segment (start 147.34 95.62) (end 148.4 94.56) (width 0.25) (layer F.Cu) (net 7)) (segment (start 146.07 110.06) (end 146.07 95.79) (width 0.25) (layer F.Cu) (net 8)) (segment (start 146.07 95.79) (end 147.3 94.56) (width 0.25) (layer F.Cu) (net 8)) (segment (start 147.3 94.56) (end 147.3 87.58) (width 0.25) (layer F.Cu) (net 8)) ) sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/usd-adapter.pro000066400000000000000000000023031506653766500234210ustar00rootroot00000000000000update=Wed 14 Oct 2015 09:36:39 AM CEST version=1 last_client=kicad [pcbnew] version=1 LastNetListRead= UseCmpFile=1 PadDrill=0.600000000000 PadDrillOvalY=0.600000000000 PadSizeH=1.500000000000 PadSizeV=1.500000000000 PcbTextSizeV=1.500000000000 PcbTextSizeH=1.500000000000 PcbTextThickness=0.300000000000 ModuleTextSizeV=1.000000000000 ModuleTextSizeH=1.000000000000 ModuleTextSizeThickness=0.150000000000 SolderMaskClearance=0.000000000000 SolderMaskMinWidth=0.000000000000 DrawSegmentWidth=0.200000000000 BoardOutlineThickness=0.100000000000 ModuleOutlineThickness=0.150000000000 [cvpcb] version=1 NetIExt=net [general] version=1 [eeschema] version=1 LibDir= [eeschema/libraries] LibName1=power LibName2=device LibName3=transistors LibName4=conn LibName5=linear LibName6=regul LibName7=74xx LibName8=cmos4000 LibName9=adc-dac LibName10=memory LibName11=xilinx LibName12=microcontrollers LibName13=dsp LibName14=microchip LibName15=analog_switches LibName16=motorola LibName17=texas LibName18=intel LibName19=audio LibName20=interface LibName21=digital-audio LibName22=philips LibName23=display LibName24=cypress LibName25=siliconi LibName26=opto LibName27=atmel LibName28=contrib LibName29=valves LibName30=usd-plug sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/usd-adapter.sch000066400000000000000000000046751506653766500234140ustar00rootroot00000000000000EESchema Schematic File Version 2 LIBS:power LIBS:device LIBS:transistors LIBS:conn LIBS:linear LIBS:regul LIBS:74xx LIBS:cmos4000 LIBS:adc-dac LIBS:memory LIBS:xilinx LIBS:microcontrollers LIBS:dsp LIBS:microchip LIBS:analog_switches LIBS:motorola LIBS:texas LIBS:intel LIBS:audio LIBS:interface LIBS:digital-audio LIBS:philips LIBS:display LIBS:cypress LIBS:siliconi LIBS:opto LIBS:atmel LIBS:contrib LIBS:valves LIBS:usd-plug LIBS:usd-adapter-cache EELAYER 25 0 EELAYER END $Descr A4 11693 8268 encoding utf-8 Sheet 1 1 Title "Micro SD card adapter" Date "2016-02-26" Rev "1" Comp "SRPOL" Comment1 "Author: Adam Malinowski " Comment2 "Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved" Comment3 "" Comment4 "" $EndDescr $Comp L CONN_02X04 P1 U 1 1 561E0431 P 7000 3200 F 0 "P1" H 7000 3450 50 0000 C CNN F 1 "CONN_02X04" H 7000 2950 50 0000 C CNN F 2 "connectors:strip_2x4_1.27" H 7000 2000 60 0001 C CNN F 3 "" H 7000 2000 60 0000 C CNN 1 7000 3200 1 0 0 -1 $EndComp $Comp L usd-plug J1 U 1 1 561E06AA P 5650 3000 F 0 "J1" H 5850 3250 60 0000 C CNN F 1 "usd-plug" H 5800 2350 60 0000 C CNN F 2 "connectors:usd" H 5650 3000 60 0001 C CNN F 3 "" H 5650 3000 60 0000 C CNN 1 5650 3000 -1 0 0 -1 $EndComp Wire Wire Line 5850 2850 6100 2850 Text Label 5950 2850 0 60 ~ 0 N1 Wire Wire Line 5850 2950 6100 2950 Text Label 5950 2950 0 60 ~ 0 N2 Wire Wire Line 5850 3050 6100 3050 Text Label 5950 3050 0 60 ~ 0 N3 Wire Wire Line 5850 3150 6100 3150 Text Label 5950 3150 0 60 ~ 0 N4 Wire Wire Line 5850 3250 6100 3250 Text Label 5950 3250 0 60 ~ 0 N5 Wire Wire Line 5850 3350 6100 3350 Text Label 5950 3350 0 60 ~ 0 N6 Wire Wire Line 5850 3450 6100 3450 Text Label 5950 3450 0 60 ~ 0 N7 Wire Wire Line 5850 3550 6100 3550 Text Label 5950 3550 0 60 ~ 0 N8 Wire Wire Line 6500 3050 6750 3050 Text Label 6600 3050 0 60 ~ 0 N1 Wire Wire Line 7250 3050 7500 3050 Text Label 7350 3050 0 60 ~ 0 N2 Wire Wire Line 6500 3150 6750 3150 Text Label 6600 3150 0 60 ~ 0 N3 Wire Wire Line 7250 3150 7500 3150 Text Label 7350 3150 0 60 ~ 0 N4 Wire Wire Line 6500 3250 6750 3250 Text Label 6600 3250 0 60 ~ 0 N5 Wire Wire Line 7250 3250 7500 3250 Text Label 7350 3250 0 60 ~ 0 N6 Wire Wire Line 6500 3350 6750 3350 Text Label 6600 3350 0 60 ~ 0 N7 Wire Wire Line 7250 3350 7500 3350 Text Label 7350 3350 0 60 ~ 0 N8 $EndSCHEMATC sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/usd-plug.dcm000066400000000000000000000000601506653766500227110ustar00rootroot00000000000000EESchema-DOCLIB Version 2.0 # #End Doc Library sd-mux-ctrl-0.0.4/doc/hardware/usd-adapter/usd-plug.lib000066400000000000000000000010161506653766500227160ustar00rootroot00000000000000EESchema-LIBRARY Version 2.3 #encoding utf-8 # # usd-plug # DEF usd-plug J 0 40 N Y 1 F N F0 "J" 0 300 60 H V C CNN F1 "usd-plug" 150 -650 60 H V C CNN F2 "" 0 0 60 H V C CNN F3 "" 0 0 60 H V C CNN DRAW S 0 200 300 -600 0 1 0 f X 1 1 -200 150 200 R 50 50 1 1 I X 2 2 -200 50 200 R 50 50 1 1 I X 3 3 -200 -50 200 R 50 50 1 1 I X 4 4 -200 -150 200 R 50 50 1 1 I X 5 5 -200 -250 200 R 50 50 1 1 I X 6 6 -200 -350 200 R 50 50 1 1 I X 7 7 -200 -450 200 R 50 50 1 1 I X 8 8 -200 -550 200 R 50 50 1 1 I ENDDRAW ENDDEF # #End Library sd-mux-ctrl-0.0.4/doc/man/000077500000000000000000000000001506653766500152355ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/doc/man/sd-mux-ctrl.1000066400000000000000000000220541506653766500175010ustar00rootroot00000000000000.TH SD-MUX-CTRL 1 "March 2018" Tizen "SD MUX User Manual" .SH NAME .PP sd-mux-ctrl - control software for sd-mux devices .SH SYNOPSIS .PP .B sd-mux-ctrl [-liuortdspcmvexn?] [-l|--list] [-i|--info] [-u|--status] [-o|--show-serial] [-r|--set-serial=STRING] [-t|--init] [-d|--dut] .B [-s|--ts] [-p|--pins=INT] [-c|--tick] [-y|--dyper1=STRING] [-z|--dyper2=STRING] [-m|--tick-time=INT] [-v|--device-id=INT] .B [-e|--device-serial=STRING] [-x|--vendor=INT] [-a|--product=INT] [-k|--device-type=STRING] [-n|--invert] [-?|--help] [--usage] .SH DESCRIPTION .PP \fIsd-mux-ctrl\fR is a tool for controlling multiple sd-mux devices. This tool along with the device supports the following actions: .RS 2 1. \fBconnect\fR SD card to DUT (Device Under Test) or to TS (Test Server) .RE .RS 2 2. \fBconnect\fR one USB port to DUT or TS .RE .RS 2 3. \fBpower\fR off/on connected DUT .RE .RS 2 4. \fBreset\fR connected DUT by power disconnecting and reconnecting after specified timeout .RE .PP After manufacturing, each new sd-mux device has VENDOR ID set to 0x0403 which is the ID of FTDI company of whose chip (FT245RL) the device is based. Before first real use, the device should be given a unique serial number. To do that \fB--set-serial\fR command must be executed. \fB--set-serial\fR command writes additional information and one of them is VENDOR ID. Since then the device may be used without using \fB--vendor\fR option which is necessary until the correct VENDOR ID is set. .\" =========================================================================== .\" Global options .\" =========================================================================== .SH OPTIONS .PP -m, \-\-tick-time .RS 2 Set period (in milliseconds) for \fB--tick\fR command. .RE .PP -v, \-\-device-id .RS 2 Point at device which is to be used with selected command. Argument for this option is an integer number which is the ID of wanted device. It may be found in the result of \fB--list\fR command. This method is not recommended for common usage as the ID may change after disconnecting and reconnecting devices. This method may be helpful in particular situations when serial number is not a reliable way of device addressing. .RE .PP \-e, \-\-device-serial .RS 2 Point at device which is to be used with selected command. Argument for this option is a string which is the serial number of wanted device. It may be found in the result of \fB--list\fR command. This is the recommended way of addressing devices. .RE .PP \-x, \-\-vendor .RS 2 Set VENDOR ID of devices which are to be used by sd-mux-ctrl. Default value is 0x04e8 which is assigned to SAMSUNG Electronics Company. Default PRODUCT ID is equal to 0x6001 - the default FTDI value. .RE .PP \-a, \-\-product .RS 2 Set PRODUCT ID of devices which are to be used by sd-mux-ctrl. Default value is 0x6001. .RE .PP \-k, \-\-device-type .RS 2 Set device type of sd-mux. It can be either "sd-mux" or "sd-wire". This setting is used to distinguish one type of SD-MUX from another. "sd-mux" is a type of standard, full-sized SD-MUX board, while "sd-wire" is a type of miniaturized version of SD-MUX with functionality reduced to SD card multiplexing only. .RE .PP \-n, \-\-invert .RS 2 Invert bits given in argument of \fB--pins\fR command. Useful for debugging purposes. .RE .PP \-h, \-\-help .RS 2 Print short help and exit. .RE .PP \-\-usage .RS 2 Print list of command and options and exit. .RE .\" =========================================================================== .\" Commands descriptions .\" =========================================================================== .SH COMMANDS .SS \fB\-l, \-\-list\fR .RS 2 Print list of all connected sd-mux devices and exit. It takes optional \fB--vendor --product\fR arguments that allow one to use other VENDOR and PRODUCT IDs then the default ones. The default value is 0x04e8:6001 which belongs to SAMSUNG Electronics Company. VENDOR and PRODUCT IDs are used to discover all connected sd-mux devices. This is very important in post production (sd-mux device) phase, before first use. .RE .SS \fB\-i, \-\-info\fR .RS 2 Print detailed information about selected device (\fB--device-serial\fR). Sample output of this command: .nf \& VID: 0x04e8 \& PID: 0x6001 \& Release: 0x0600 \& Bus Powered: 90 mA \& Manufacturer: SRPOL \& Product: sd-mux \& Serial: odroid_u3_1 \& Checksum : ea57 \& Internal EEPROM \& PNP: 1 \& Channel A has Mode UART VCP \& C0 Function: TXLED \& C1 Function: RXLED \& C2 Function: TXDEN \& C3 Function: PWREN \& C4 Function: SLEEP .fi Shape of this output depends on libftdi library so may change along with library changes. .RE .SS \fB\-u, \-\-status\fR .RS 2 Print current state of selected device. Example command with output: .nf $ \fBsd-mux-ctrl --status --device-serial odroid_u3_1 USB connected to: DUT SD connected to: DUT\fR $ Or: $ \fBsd-mux-ctrl --status --device-serial odroid_u3_1 Device not initialized!\fR $ when the device is not initialized after connecting to a host. .fi .SS \fB\-o, \-\-show-serial\fR .RS 2 Print serial number of selected device. Use \fB--device-id\fR to select wanted device. This command outputs only serial number, without end of line. This command is useful actually only for scripts. Example command with output: .nf [sd-mux-ctrl-0.0.1]$ \fBsudo sd-mux-ctrl --device-id=0 --show-serial minnow_max_1\fR[sd-mux-ctrl-0.0.1]$ .fi .SS \fB\-r, \-\-set-serial\fR .RS 2 Set serial number of selected device. Use \fB--device-id\fR or \fB--device-serial\fR to select wanted device. Following example changes device's serial number from \fBAL018T40\fR to \fBodroid_u3_1\fR : .nf [rpm]$ \fBsudo sd-mux-ctrl --device-serial=AL018T40 --vendor=0x403 --set-serial=odroid_u3_1\fR .fi \fB--set-serial\fR command does actually a little bit more than setting a serial number. It also writes new values of VENDOR ID, Product and Manufacturer. \fBVENDOR ID (VID)\fR is set to \fB0x04e8\fR (SAMSUNG Electronics Company), Product is set to \fBsd-mux\fR and \fBManufacturer\fR is set to \fBSRPOL\fR which is a short name of Samsung R&D Poland. .SS \fB\-t, \-\-init\fR .RS 2 Set connected device into well defined state. After powering up, sd-mux device is in random state. SD card and USB may be connected either to DUT or TS. SD card and USB are not tied together so one of them may be connected to DUT and the other one may be connected to TS. All combinations are possible. The most important thing here is power steering. As we use bistable, two-coil relay we have to make sure that in stable state both coils are disconnected from power. Unfortunately after connecting sd-mux to USB host, state of power control lines is unknown so we have to set them into correct one. Init command powers off DUT and connects USB and SD card to TS. Example: .nf [rpm]$ \fBsudo sd-mux-ctrl --device-serial=odroid_u3_1 --init\fR .fi .SS \fB\-d, \-\-dut\fR .RS 2 Connect USB port and SD card to a DUT (Device Under Test) and power it on. After executing this command the DUT should start and load image from SD card mounted in the sd-mux device. .PP \fBNote\fR that some devices won't (re)start after execution of this command. This is caused by SD multiplexer chip. When SD is connected to TS then it is actually connected to USB SD card reader. The reader powers up SD card and some part of the voltage is transmitted to the DUT through SD mux chip. To force restart one must invoke \fB--tick\fR command after \fB--dut\fR is executed. Odroid U3 is an example of device with such behavior. .nf $ \fBsudo sd-mux-ctrl --device-serial=odroid_u3_1 --dut\fR $ \fBsudo sd-mux-ctrl --device-serial=odroid_u3_1 --tick\fR .fi .SS \fB\-s, \-\-ts\fR .RS 2 Connect USB port and SD card to a TS (Test Server) and powers off the DUT (Device Under Test). After executing this command SD card is connected to SD card reader at the TS side. .PP .nf $ \fBsudo sd-mux-ctrl --device-serial=odroid_u3_1 --ts\fR .fi .SS \fB\-p, \-\-pins\fR .RS 2 Set FTDI chip (FT245RL) pins to given state. \fB--pins\fR takes 8 bit word as an argument and optional \fB--invert\fR argument inverts all bits in the given word. This value, after optional inverting, is written to FT245RL D0-D7 pins. .PP .nf $ \fBsudo sd-mux-ctrl --device-serial=odroid_u3_1 --pins=0x69 --invert\fR .fi .SS \fB\-c, \-\-tick\fR .RS 2 Disconnect power from the Device Under Test and reconnect again after 1000 ms. If \fB--tick-time\fR is used, then 1000ms is replaced with number of milliseconds given in \fB--tick-time\fR argument. .PP .nf $ \fBsudo sd-mux-ctrl --device-serial=odroid_u3_1 --tick --tick-time=2000\fR .fi .SS \fB\-y, \-\-dyper1\fR .RS 2 Disconnect or connect terminals of dynamic jumper. Argument "on" connects and "off" disconnects the terminals. .PP .nf $ \fBsudo sd-mux-ctrl --device-serial=odroid_u3_1 --dyper1 on\fR .fi .SS \fB\-z, \-\-dyper2\fR .RS 2 Disconnect or connect terminals of dynamic jumper. Argument "on" connects and "off" disconnects the terminals. .PP .nf $ \fBsudo sd-mux-ctrl --device-serial=odroid_u3_1 --dyper2 on\fR .fi .SH AUTHOR Adam Malinowski . .SH REPORTING BUGS Please, report bugs to Adam Malinowski . sd-mux-ctrl-0.0.4/etc/000077500000000000000000000000001506653766500144705ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/etc/bash_completion.d/000077500000000000000000000000001506653766500200605ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/etc/bash_completion.d/sd-mux-ctrl000066400000000000000000000032271506653766500221660ustar00rootroot00000000000000# Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved # # 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 # # http://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. # # @file etc/bash_completion.d/sd-mux-ctrl # @author Adam Malinowski # _sdmux() { local cur prev opts COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" opts="--help --usage --list --device-serial --device-id --show-serial --set-serial --info --status --init --tick --dyper1 --dyper2 --tick-time --dut --ts --vendor --product --device-type --pins --invert" case "${prev}" in --device-serial) local running=$(sd-mux-ctrl -l | awk '/Serial/ {sub(",$", "", $6); print $6}') COMPREPLY=( $(compgen -W "${running}" -- ${cur}) ) return 0 ;; --device-id) local running=$(sd-mux-ctrl -l | awk '/Serial/ {sub(",$", "", $2); print $2}') COMPREPLY=( $(compgen -W "${running}" -- ${cur}) ) return 0 ;; *) ;; esac COMPREPLY=($(compgen -W "${opts}" -- ${cur})) return 0 } complete -F _sdmux sd-mux-ctrl sd-mux-ctrl-0.0.4/packaging/000077500000000000000000000000001506653766500156415ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/packaging/sd-mux-ctrl.changes000066400000000000000000000002501506653766500213470ustar00rootroot00000000000000* Fri Jul 01 2016 Adam Malinowski 0.0.2 * Tue Feb 16 2016 Adam Malinowski 0.0.1 - Initial release sd-mux-ctrl-0.0.4/packaging/sd-mux-ctrl.spec000066400000000000000000000024421506653766500206760ustar00rootroot00000000000000%define rc_version 0 %if 0%{?rc_version} %define release_prefix 0.rc%{rc_version}. %endif Name: sd-mux-ctrl Summary: Control software for sd-mux devices. Version: 0.0.2 Release: %{?release_prefix}%{?opensuse_bs:.}%{!?opensuse_bs:0} Group: Development/Tools License: Apache-2.0 URL: http://www.tizen.org Source0: %{name}_%{version}.tar.gz BuildRequires: cmake Requires: libftdi >= 1.2 Requires: popt Requires: awk BuildRoot: %{_tmppath}/%{name}_%{version}-build %description Tool for controlling multiple sd-mux devices. This tool allows: to connect SD card to DUT (Device Under Test) or to TS (Test Server) to connect one USB port to DUT or TS to power off or on DUT to reset DUT through power disconnecting and reconnecting %prep %setup -q -n %{name}-%{version} %build cmake -DCMAKE_INSTALL_PREFIX=/usr %__make %install rm -rf %{buildroot} %make_install mkdir -p %{buildroot}/%{_mandir}/man1 install -m644 docs/man/%{name}.1 %{buildroot}/%{_mandir}/man1 install -d -m0755 %{buildroot}/%{_sysconfdir}/bash_completion.d/ install -Dp -m0755 etc/bash_completion.d/%{name} %{buildroot}/%{_sysconfdir}/bash_completion.d/ %files %{_bindir}/%{name} %{_mandir}/man1/* %{_sysconfdir}/bash_completion.d/* sd-mux-ctrl-0.0.4/src/000077500000000000000000000000001506653766500145045ustar00rootroot00000000000000sd-mux-ctrl-0.0.4/src/CMakeLists.txt000066400000000000000000000023231506653766500172440ustar00rootroot00000000000000# Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved # # 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 # # http://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. # # @file src/CMakeLists.txt # @author Adam Malinowski # FIND_PACKAGE(PkgConfig) PKG_CHECK_MODULES(SDMUX_DEP REQUIRED libftdi1>=1.4 popt ) SET(SDMUXCTRL_PATH ${PROJECT_SOURCE_DIR}/src ) SET(SDMUXCTRL_SOURCES ${SDMUXCTRL_PATH}/main.cpp ) INCLUDE_DIRECTORIES( ${SDMUXCTRL_PATH} ${FTD2XX_PATH} ) ADD_EXECUTABLE(${TARGET_SDMUXCTRL} ${SDMUXCTRL_SOURCES}) TARGET_LINK_LIBRARIES(${TARGET_SDMUXCTRL} ${SDMUX_DEP_LIBRARIES} ) INSTALL(TARGETS ${TARGET_SDMUXCTRL} DESTINATION ${BIN_INSTALL_DIR}) sd-mux-ctrl-0.0.4/src/main.cpp000066400000000000000000000600771506653766500161460ustar00rootroot00000000000000/* * Copyright (c) 2016 -2018 Samsung Electronics Co., Ltd All Rights Reserved * * 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 * * http://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 */ /** * @file src/main.cpp * @author Adam Malinowski * @brief Main sd-mux-ctrl file */ #include #include #include #include #include #include #define PRODUCT 0x6001 #define SAMSUNG_VENDOR 0x04e8 // SDMUX specific definitions #define SOCKET_SEL (0x01 << 0x00) #define USB_SEL (0x01 << 0x03) #define POWER_SW_OFF (0x01 << 0x02) #define POWER_SW_ON (0x01 << 0x04) #define DYPER1 (0x01 << 0x05) #define DYPER2 (0x01 << 0x06) // USBMUX specific definitions #define UM_SOCKET_SEL (0x01 << 0x00) #define UM_DEVICE_PWR (0x01 << 0x01) #define UM_DUT_LED (0x01 << 0x02) #define UM_GP_LED (0x01 << 0x03) #define DELAY_100MS 100000 #define DELAY_500MS 500000 #define CCDT_SDMUX_STR "sd-mux" #define CCDT_SDWIRE_STR "sd-wire" #define CCDT_USBMUX_STR "usb-mux" #define STRING_SIZE 128 enum CCCommand { CCC_List, CCC_DUT, CCC_TS, CCC_Tick, CCC_Pins, CCC_Info, CCC_ShowSerial, CCC_SetSerial, CCC_Init, CCC_Status, CCC_DyPer1, CCC_DyPer2, CCC_None }; enum Target { T_DUT, T_TS }; enum CCDeviceType { CCDT_SDMUX, CCDT_SDWIRE, CCDT_USBMUX, CCDT_MAX }; enum CCFeature { CCF_SDMUX, CCF_POWERSWITCH, CCF_USBMUX, CCF_DYPERS, CCF_MAX }; enum CCOption { CCO_DeviceId, CCO_DeviceSerial, CCO_TickTime, CCO_BitsInvert, CCO_Vendor, CCO_Product, CCO_DyPer, CCO_DeviceType, CCO_MAX }; union CCOptionValue { int argn; char *args; }; int doPower(bool off, bool on, CCOptionValue options[]); int selectTarget(Target target, CCOptionValue options[]); CCDeviceType getDeviceTypeFromString(char *deviceTypeStr) { if (strcmp(CCDT_SDMUX_STR, deviceTypeStr) == 0) { return CCDT_SDMUX; } if (strcmp(CCDT_SDWIRE_STR, deviceTypeStr) == 0) { return CCDT_SDWIRE; } if (strcmp(CCDT_USBMUX_STR, deviceTypeStr) == 0) { return CCDT_USBMUX; } return CCDT_MAX; } bool hasFeature(CCDeviceType deviceType, CCFeature feature) { static const bool featureMatrix[CCDT_MAX][CCF_MAX] = { {true, true, true, true}, // SD-MUX features {true, false, false, false}, // SDWire features {false, false, true, false}, // SDWire features }; if (deviceType >= CCDT_MAX || feature >= CCF_MAX) return false; return featureMatrix[deviceType][feature]; } int listDevices(CCOptionValue options[]) { int fret, i; struct ftdi_context *ftdi; struct ftdi_device_list *devlist, *curdev; char manufacturer[STRING_SIZE + 1], description[STRING_SIZE + 1], serial[STRING_SIZE + 1]; int retval = EXIT_SUCCESS; if ((ftdi = ftdi_new()) == 0) { fprintf(stderr, "ftdi_new failed\n"); return EXIT_FAILURE; } if ((fret = ftdi_usb_find_all(ftdi, &devlist, options[CCO_Vendor].argn, options[CCO_Product].argn)) < 0) { fprintf(stderr, "ftdi_usb_find_all failed: %d (%s)\n", fret, ftdi_get_error_string(ftdi)); ftdi_free(ftdi); return EXIT_FAILURE; } if (options[CCO_DeviceId].argn == -1) { printf("Number of FTDI devices found: %d\n", fret); } i = 0; for (curdev = devlist; curdev != NULL; i++) { if (options[CCO_DeviceId].argn == -1 || options[CCO_DeviceId].argn == i) { if ((fret = ftdi_usb_get_strings(ftdi, curdev->dev, manufacturer, STRING_SIZE, description, STRING_SIZE, serial, STRING_SIZE)) < 0) { fprintf(stderr, "ftdi_usb_get_strings failed: %d (%s)\n", fret, ftdi_get_error_string(ftdi)); retval = EXIT_FAILURE; goto finish_him; } if (options[CCO_DeviceId].argn == -1) { printf("Dev: %d, Manufacturer: %s, Serial: %s, Description: %s\n", i, manufacturer, serial, description); } else { printf("%s", serial); } } curdev = curdev->next; } finish_him: ftdi_list_free(&devlist); ftdi_free(ftdi); return retval; } struct ftdi_context* openDevice(CCOptionValue options[], CCDeviceType *deviceType) { struct ftdi_context *ftdi = NULL; int fret; char product[STRING_SIZE + 1]; CCDeviceType tmpDeviceType; if ((options[CCO_DeviceSerial].args == NULL) && (options[CCO_DeviceId].argn < 0)) { fprintf(stderr, "No serial number or device id provided!\n"); return NULL; } if ((ftdi = ftdi_new()) == 0) { fprintf(stderr, "ftdi_new failed\n"); return NULL; } if (options[CCO_DeviceSerial].args != NULL) { fret = ftdi_usb_open_desc_index(ftdi, options[CCO_Vendor].argn, options[CCO_Product].argn, NULL, options[CCO_DeviceSerial].args, 0); } else { fret = ftdi_usb_open_desc_index(ftdi, options[CCO_Vendor].argn, options[CCO_Product].argn, NULL, NULL, options[CCO_DeviceId].argn); } if (fret < 0) { fprintf(stderr, "Unable to open ftdi device: %d (%s)\n", fret, ftdi_get_error_string(ftdi)); goto error; } fret = ftdi_read_eeprom(ftdi); if (fret < 0) { fprintf(stderr, "Unable to read ftdi eeprom: %d (%s)\n", fret, ftdi_get_error_string(ftdi)); goto error; } fret = ftdi_eeprom_decode(ftdi, 0); if (fret < 0) { fprintf(stderr, "Unable to decode ftdi eeprom: %d (%s)\n", fret, ftdi_get_error_string(ftdi)); goto error; } if (deviceType != NULL) { ftdi_eeprom_get_strings(ftdi, NULL, 0, product, sizeof(product), NULL, 0); tmpDeviceType = getDeviceTypeFromString(product); if (tmpDeviceType == CCDT_MAX) { fprintf(stderr, "Invalid device type. Device probably not configured!\n"); goto error; } *deviceType = tmpDeviceType; } return ftdi; error: ftdi_usb_close(ftdi); ftdi_free(ftdi); return NULL; } int showInfo(CCOptionValue options[]) { struct ftdi_context *ftdi; int fret, ret = EXIT_SUCCESS; ftdi = openDevice(options, NULL); if (ftdi == NULL) { return EXIT_FAILURE; } fret = ftdi_eeprom_decode(ftdi, 1); if (fret < 0) { fprintf(stderr, "Unable to decode ftdi eeprom: %d (%s)\n", fret, ftdi_get_error_string(ftdi)); ret = EXIT_FAILURE; ftdi_usb_close(ftdi); ftdi_free(ftdi); } return ret; } int doInit(CCOptionValue options[]) { if (doPower(true, false, options) != EXIT_SUCCESS) { return EXIT_FAILURE; } if (selectTarget(T_TS, options) != EXIT_SUCCESS) { return EXIT_FAILURE; } return EXIT_SUCCESS; } int setSerial(char *serialNumber, CCOptionValue options[]) { struct ftdi_context *ftdi; int f, ret = EXIT_FAILURE; char *type = options[CCO_DeviceType].args; if (!type) { fprintf(stderr, "Device type not specified\n"); return EXIT_FAILURE; } ftdi = openDevice(options, NULL); if (ftdi == NULL) { return EXIT_FAILURE; } f = ftdi_eeprom_initdefaults(ftdi, (char *)"SRPOL", type, serialNumber); if (f < 0) { fprintf(stderr, "Unable to set eeprom strings: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } f = ftdi_set_eeprom_value(ftdi, VENDOR_ID, SAMSUNG_VENDOR); if (f < 0) { fprintf(stderr, "Unable to set eeprom strings: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } f = ftdi_set_eeprom_value(ftdi, PRODUCT_ID, PRODUCT); if (f < 0) { fprintf(stderr, "Unable to set eeprom strings: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } if (getDeviceTypeFromString(type) == CCDT_SDWIRE) { f = ftdi_set_eeprom_value(ftdi, CBUS_FUNCTION_0, CBUSH_IOMODE); if (f < 0) { fprintf(stderr, "Unable to set eeprom value: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } } if (getDeviceTypeFromString(type) == CCDT_USBMUX) { f = ftdi_set_eeprom_value(ftdi, CBUS_FUNCTION_0, CBUSH_IOMODE); if (f < 0) { fprintf(stderr, "Unable to set eeprom value: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } f = ftdi_set_eeprom_value(ftdi, CBUS_FUNCTION_1, CBUSH_IOMODE); if (f < 0) { fprintf(stderr, "Unable to set eeprom value: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } f = ftdi_set_eeprom_value(ftdi, CBUS_FUNCTION_2, CBUSH_IOMODE); if (f < 0) { fprintf(stderr, "Unable to set eeprom value: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } f = ftdi_set_eeprom_value(ftdi, CBUS_FUNCTION_3, CBUSH_IOMODE); if (f < 0) { fprintf(stderr, "Unable to set eeprom value: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } } f = ftdi_eeprom_build(ftdi); if (f < 0) { fprintf(stderr, "Unable to build eeprom: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } f = ftdi_write_eeprom(ftdi); if (f < 0) { fprintf(stderr, "Unable to write eeprom into device: %d (%s)\n", f, ftdi_get_error_string(ftdi)); goto finish_him; } ret = EXIT_SUCCESS; finish_him: ftdi_usb_close(ftdi); ftdi_free(ftdi); return ret; } int writePins(struct ftdi_context *ftdi, unsigned char pins) { int f = ftdi_write_data(ftdi, &pins, 1); if (f < 0) { fprintf(stderr,"write failed for 0x%x, error %d (%s)\n", pins, f, ftdi_get_error_string(ftdi)); return EXIT_FAILURE; } return EXIT_SUCCESS; } struct ftdi_context* prepareDevice(CCOptionValue options[], unsigned char *pins, CCDeviceType *deviceType) { struct ftdi_context *ftdi; int f; ftdi = openDevice(options, deviceType); if (ftdi == NULL) { return NULL; } if (*deviceType == CCDT_SDWIRE || *deviceType == CCDT_USBMUX) { return ftdi; // None of the following steps need to be performed for this type of device. } f = ftdi_set_bitmode(ftdi, 0xFF, BITMODE_BITBANG); if (f < 0) { fprintf(stderr, "Unable to enable bitbang mode: %d (%s)\n", f, ftdi_get_error_string(ftdi)); ftdi_usb_close(ftdi); ftdi_free(ftdi); return NULL; } if (pins != NULL) { f = ftdi_read_data(ftdi, pins, 1); if (f < 0) { fprintf(stderr,"read failed, error %d (%s)\n", f, ftdi_get_error_string(ftdi)); ftdi_usb_close(ftdi); ftdi_free(ftdi); return NULL; } } return ftdi; } int powerOff(struct ftdi_context *ftdi, unsigned char *pins) { // Turn on the coil *pins |= POWER_SW_ON; *pins &= ~(POWER_SW_OFF); if (writePins(ftdi, *pins) != EXIT_SUCCESS) return EXIT_FAILURE; // Wait for 100ms usleep(DELAY_100MS); // Turn off the coil *pins |= POWER_SW_OFF; if (writePins(ftdi, *pins) != EXIT_SUCCESS) return EXIT_FAILURE; return EXIT_SUCCESS; } int powerOn(struct ftdi_context *ftdi, unsigned char *pins) { // Turn on the coil *pins |= POWER_SW_OFF; *pins &= ~(POWER_SW_ON); if (writePins(ftdi, *pins) != EXIT_SUCCESS) return EXIT_FAILURE; // Wait for 100ms usleep(DELAY_100MS); // Turn off the coil *pins |= POWER_SW_ON; if (writePins(ftdi, *pins) != EXIT_SUCCESS) return EXIT_FAILURE; return EXIT_SUCCESS; } int doPower(bool off, bool on, CCOptionValue options[]) { unsigned char pins; CCDeviceType deviceType; int ret = EXIT_SUCCESS; int period = 1000; if (options[CCO_TickTime].argn > 0) { period = options[CCO_TickTime].argn; } struct ftdi_context *ftdi = prepareDevice(options, &pins, &deviceType); if (ftdi == NULL) return EXIT_FAILURE; if (!hasFeature(deviceType, CCF_POWERSWITCH)) { fprintf(stderr,"Power switching is not available on this device.\n"); ret = EXIT_FAILURE; goto finish_him; } ret = powerOff(ftdi, &pins); if (off && (ret != EXIT_SUCCESS)) { ret = EXIT_FAILURE; goto finish_him; } // Wait for specified period in ms usleep(period * 1000); ret = powerOn(ftdi, &pins); if (on && (ret != EXIT_SUCCESS)) { ret = EXIT_FAILURE; goto finish_him; } finish_him: ftdi_usb_close(ftdi); ftdi_free(ftdi); return ret; } int selectTarget(Target target, CCOptionValue options[]) { unsigned char pins; CCDeviceType deviceType; int ret = EXIT_SUCCESS; struct ftdi_context *ftdi = prepareDevice(options, &pins, &deviceType); if (ftdi == NULL) return EXIT_FAILURE; if (deviceType == CCDT_SDWIRE) { unsigned char pinState = 0x00; pinState |= 0xF0; // Upper half of the byte sets all pins to output (SDWire has only one bit - 0) pinState |= target == T_DUT ? 0x00 : 0x01; // Lower half of the byte sets state of output pins. // In this particular case we care only of bit 0. ret |= ftdi_set_bitmode(ftdi, pinState, BITMODE_CBUS); goto finish_him; } if (deviceType == CCDT_USBMUX) { unsigned char pinState = 0xF0; if (target == T_DUT) { pinState &= ~UM_DEVICE_PWR; ret |= ftdi_set_bitmode(ftdi, pinState, BITMODE_CBUS); usleep(DELAY_500MS); pinState |= UM_DEVICE_PWR; ret |= ftdi_set_bitmode(ftdi, pinState, BITMODE_CBUS); usleep(DELAY_100MS); pinState |= UM_DUT_LED; pinState &= ~UM_SOCKET_SEL; pinState &= ~UM_GP_LED; ret |= ftdi_set_bitmode(ftdi, pinState, BITMODE_CBUS); } else { pinState &= ~UM_DUT_LED; pinState &= ~UM_DEVICE_PWR; ret |= ftdi_set_bitmode(ftdi, pinState, BITMODE_CBUS); usleep(DELAY_500MS); pinState |= UM_DEVICE_PWR; ret |= ftdi_set_bitmode(ftdi, pinState, BITMODE_CBUS); usleep(DELAY_100MS); pinState |= UM_SOCKET_SEL; pinState |= UM_GP_LED; ret |= ftdi_set_bitmode(ftdi, pinState, BITMODE_CBUS); } goto finish_him; } // Currently only old SD-MUX is the other device so do the job in its style. if (target == T_DUT) { pins &= ~(USB_SEL); pins &= ~(SOCKET_SEL); if (powerOn(ftdi, &pins) != EXIT_SUCCESS) { // Also selects USB and SD ret = EXIT_FAILURE; goto finish_him; } } else { pins |= USB_SEL; pins |= SOCKET_SEL; if (powerOff(ftdi, &pins) != EXIT_SUCCESS) { // Also selects USB and SD ret = EXIT_FAILURE; goto finish_him; } } finish_him: ftdi_usb_close(ftdi); ftdi_free(ftdi); return ret; } int setPins(unsigned char pins, CCOptionValue options[]) { CCDeviceType deviceType; struct ftdi_context *ftdi = prepareDevice(options, NULL, &deviceType); if (ftdi == NULL) return EXIT_FAILURE; if (options[CCO_DeviceSerial].args) { pins = ~pins; } if (deviceType == CCDT_SDWIRE) { // SDWire has only one pin already controlled by selectTarget function. // There is no use to repeat this functionality here. return EXIT_FAILURE; } printf("Write data: 0x%x\n", pins); int ret = writePins(ftdi, pins); ftdi_usb_close(ftdi); ftdi_free(ftdi); return ret; } int showStatus(CCOptionValue options[]) { int ret = 0; unsigned char pins; CCDeviceType deviceType; struct ftdi_context *ftdi = prepareDevice(options, &pins, &deviceType); if (ftdi == NULL) return EXIT_FAILURE; if (deviceType == CCDT_SDWIRE) { if (ftdi_read_pins(ftdi, &pins) != 0) { fprintf(stderr, "Error reading pins state.\n"); ret = EXIT_FAILURE; goto finish_him; } fprintf(stdout, "SD connected to: %s\n", pins & SOCKET_SEL ? "TS" : "DUT"); goto finish_him; } if (deviceType == CCDT_USBMUX) { if (ftdi_read_pins(ftdi, &pins) != 0) { fprintf(stderr, "Error reading pins state.\n"); ret = EXIT_FAILURE; goto finish_him; } if (pins == 0xff) { fprintf(stdout, "Device not initialized!\n"); goto finish_him; } fprintf(stdout, "SD connected to: %s\n", pins & UM_SOCKET_SEL ? "TS" : "DUT"); goto finish_him; } // Currently only old SD-MUX is the other device so do the job in its style. if (!((pins & POWER_SW_ON) && (pins & POWER_SW_OFF))) { fprintf(stdout, "Device not initialized!\n"); goto finish_him; } fprintf(stdout, "USB connected to: %s\n", pins & USB_SEL ? "TS" : "DUT"); fprintf(stdout, "SD connected to: %s\n", pins & SOCKET_SEL ? "TS" : "DUT"); finish_him: ftdi_usb_close(ftdi); ftdi_free(ftdi); return ret; } int setDyPer(CCCommand cmd, CCOptionValue options[]) { unsigned char pins; bool switchOn; CCDeviceType deviceType; int ret = EXIT_SUCCESS, dyper; struct ftdi_context *ftdi = prepareDevice(options, &pins, &deviceType); if (ftdi == NULL) return EXIT_FAILURE; if (!hasFeature(deviceType, CCF_DYPERS)) { fprintf(stderr,"DyPers are not available on this device.\n"); return EXIT_FAILURE; } #define STRON "ON" #define STROFF "OFF" if (strcasecmp(STRON, options[CCO_DyPer].args) == 0) { switchOn = true; } else if (strcasecmp(STROFF, options[CCO_DyPer].args) == 0) { switchOn = false; } else { fprintf(stderr,"Invalid DyPer argument! Use \"on\" or \"off\".\n"); goto finish_him; } dyper = cmd == CCC_DyPer1 ? DYPER1 : DYPER2; pins = switchOn ? pins | dyper : pins & ~dyper; if (writePins(ftdi, pins) != EXIT_SUCCESS) ret = EXIT_FAILURE; finish_him: ftdi_usb_close(ftdi); ftdi_free(ftdi); return ret; } int parseArguments(int argc, const char **argv, CCCommand *cmd, int *arg, char *args, size_t argsLen, CCOptionValue options[]) { int c; char *serial = NULL; poptContext optCon; struct poptOption optionsTable[] = { // Commands { "list", 'l', POPT_ARG_NONE, NULL, 'l', "lists all sd-mux devices connected to PC", NULL }, { "info", 'i', POPT_ARG_NONE, NULL, 'i', "displays info about device", "serial number" }, { "show-serial", 'o', POPT_ARG_NONE, NULL, 'o', "displays serial number of given device", NULL }, { "set-serial", 'r', POPT_ARG_STRING, &serial, 'r', "writes serial number to given device", NULL }, { "init", 't', POPT_ARG_NONE, NULL, 't', "initialize target board", NULL }, { "dut", 'd', POPT_ARG_NONE, NULL, 'd', "connects SD card and USB to the target board", NULL }, { "ts", 's', POPT_ARG_NONE, NULL, 's', "connects SD card and USB to the test server", NULL }, { "pins", 'p', POPT_ARG_INT, arg, 'p', "write pin state in bitbang mode", NULL }, { "tick", 'c', POPT_ARG_NONE, NULL, 'c', "turn off and on power supply of DUT", NULL }, { "status", 'u', POPT_ARG_NONE, NULL, 'u', "show current status: DUT or TS or NOINIT", NULL }, { "dyper1", 'y', POPT_ARG_STRING, &options[CCO_DyPer].args, 'y', "Connect or disconnect terminals of 1st dynamic jumper; STRING = \"on\" or \"off\"", NULL }, { "dyper2", 'z', POPT_ARG_STRING, &options[CCO_DyPer].args, 'z', "Connect or disconnect terminals of 2nd dynamic jumper; STRING = \"on\" or \"off\"", NULL }, // Options { "tick-time", 'm', POPT_ARG_INT, &options[CCO_TickTime].argn, 'm', "set time delay for 'tick' command", NULL }, { "device-id", 'v', POPT_ARG_INT, &options[CCO_DeviceId].argn, 'v', "use device with given id", NULL }, { "device-serial", 'e', POPT_ARG_STRING, &options[CCO_DeviceSerial].args, 'e', "use device with given serial number", NULL }, { "device-type", 'k', POPT_ARG_STRING, &options[CCO_DeviceType].args, 'k', "make the device of this type", NULL }, { "vendor", 'x', POPT_ARG_INT, &options[CCO_Vendor].argn, 'x', "use device with given vendor id", NULL }, { "product", 'a', POPT_ARG_INT, &options[CCO_Product].argn, 'a', "use device with given product id", NULL }, { "invert", 'n', POPT_ARG_NONE, NULL, 'n', "invert bits for --pins command", NULL }, POPT_AUTOHELP { NULL, 0, 0, NULL, 0, NULL, NULL } }; optCon = poptGetContext(NULL, argc, argv, optionsTable, 0); poptSetOtherOptionHelp(optCon, "command"); if (argc < 2) { poptPrintUsage(optCon, stderr, 0); poptFreeContext(optCon); return EXIT_SUCCESS; } /* Now do options processing, get portname */ while ((c = poptGetNextOpt(optCon)) >= 0) { switch (c) { case 'l': *cmd = CCC_List; break; case 'i': *cmd = CCC_Info; break; case 'o': *cmd = CCC_ShowSerial; break; case 'r': *cmd = CCC_SetSerial; break; case 't': *cmd = CCC_Init; break; case 'd': *cmd = CCC_DUT; break; case 's': *cmd = CCC_TS; break; case 'p': *cmd = CCC_Pins; break; case 'c': *cmd = CCC_Tick; break; case 'u': *cmd = CCC_Status; break; case 'y': *cmd = CCC_DyPer1; break; case 'z': *cmd = CCC_DyPer2; break; case 'n': options[CCO_BitsInvert].argn = 1; break; } } if (serial) snprintf(args, argsLen, "%s", serial); free(serial); if (c < -1) { fprintf(stderr, "%s: %s\n", poptBadOption(optCon, POPT_BADOPTION_NOALIAS), poptStrerror(c)); poptFreeContext(optCon); return EXIT_FAILURE; } poptFreeContext(optCon); return EXIT_SUCCESS; } int main(int argc, const char **argv) { CCCommand cmd = CCC_None; int arg; char args[64]; CCOptionValue options[CCO_MAX]; memset(&options, 0, sizeof(options)); options[CCO_DeviceId].argn = -1; options[CCO_Vendor].argn = SAMSUNG_VENDOR; options[CCO_Product].argn = PRODUCT; if (parseArguments(argc, argv, &cmd, &arg, args, sizeof(args), options) != EXIT_SUCCESS) { return EXIT_FAILURE; } switch (cmd) { case CCC_None: fprintf(stderr, "No command specified\n"); return EXIT_FAILURE; case CCC_List: return listDevices(options); case CCC_Info: return showInfo(options); case CCC_ShowSerial: return listDevices(options); case CCC_SetSerial: return setSerial(args, options); case CCC_Init: return doInit(options); case CCC_DUT: return selectTarget(T_DUT, options); case CCC_TS: return selectTarget(T_TS, options); case CCC_Tick: return doPower(true, true, options); case CCC_Pins: return setPins((unsigned char)arg, options); case CCC_DyPer1: case CCC_DyPer2: return setDyPer(cmd, options); case CCC_Status: return showStatus(options); } return EXIT_SUCCESS; }