commit 38861c60cff307cf2fc995067fff7ee9b2eabdff Author: Kyle Brown Date: Thu Jun 1 19:20:22 2023 -0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..effafe4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# ---> KiCad +# For PCBs designed using KiCad: http://www.kicad-pcb.org/ +# Format documentation: http://kicad-pcb.org/help/file-formats/ + +# Temporary files +*.000 +*.bak +*.bck +*.kicad_pcb-bak +*.sch-bak +*~ +_autosave-* +*.tmp +*-save.pro +*-save.kicad_pcb +fp-info-cache + +# Netlist files (exported from Eeschema) +*.net + +# Autorouter files (exported from Pcbnew) +*.dsn +*.ses + +# Exported BOM files +*.xml +*.csv + +# moreKicad cruft +*-backups +*-cache +*-bak +jlcpcb +production + +# Mac cruft +.DS_Store + +# Editor files +*.swp diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a343ccd --- /dev/null +++ b/LICENSE @@ -0,0 +1,119 @@ +Creative Commons Legal Code + +CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES +NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE +AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION +ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE +OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS +LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION +OR WORKS PROVIDED HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer exclusive +Copyright and Related Rights (defined below) upon the creator and subsequent +owner(s) (each and all, an "owner") of an original work of authorship and/or +a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for the +purpose of contributing to a commons of creative, cultural and scientific +works ("Commons") that the public can reliably and without fear of later claims +of infringement build upon, modify, incorporate in other works, reuse and +redistribute as freely as possible in any form whatsoever and for any purposes, +including without limitation commercial purposes. These owners may contribute +to the Commons to promote the ideal of a free culture and the further production +of creative, cultural and scientific works, or to gain reputation or greater +distribution for their Work in part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any expectation +of additional consideration or compensation, the person associating CC0 with +a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright +and Related Rights in the Work, voluntarily elects to apply CC0 to the Work +and publicly distribute the Work under its terms, with knowledge of his or +her Copyright and Related Rights in the Work and the meaning and intended +legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be protected +by copyright and related or neighboring rights ("Copyright and Related Rights"). +Copyright and Related Rights include, but are not limited to, the following: + +i. the right to reproduce, adapt, distribute, perform, display, communicate, +and translate a Work; + + ii. moral rights retained by the original author(s) and/or performer(s); + +iii. publicity and privacy rights pertaining to a person's image or likeness +depicted in a Work; + +iv. rights protecting against unfair competition in regards to a Work, subject +to the limitations in paragraph 4(a), below; + +v. rights protecting the extraction, dissemination, use and reuse of data +in a Work; + +vi. database rights (such as those arising under Directive 96/9/EC of the +European Parliament and of the Council of 11 March 1996 on the legal protection +of databases, and under any national implementation thereof, including any +amended or successor version of such directive); and + +vii. other similar, equivalent or corresponding rights throughout the world +based on applicable law or treaty, and any national implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention of, +applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and +unconditionally waives, abandons, and surrenders all of Affirmer's Copyright +and Related Rights and associated claims and causes of action, whether now +known or unknown (including existing as well as future claims and causes of +action), in the Work (i) in all territories worldwide, (ii) for the maximum +duration provided by applicable law or treaty (including future time extensions), +(iii) in any current or future medium and for any number of copies, and (iv) +for any purpose whatsoever, including without limitation commercial, advertising +or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the +benefit of each member of the public at large and to the detriment of Affirmer's +heirs and successors, fully intending that such Waiver shall not be subject +to revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason be +judged legally invalid or ineffective under applicable law, then the Waiver +shall be preserved to the maximum extent permitted taking into account Affirmer's +express Statement of Purpose. In addition, to the extent the Waiver is so +judged Affirmer hereby grants to each affected person a royalty-free, non +transferable, non sublicensable, non exclusive, irrevocable and unconditional +license to exercise Affirmer's Copyright and Related Rights in the Work (i) +in all territories worldwide, (ii) for the maximum duration provided by applicable +law or treaty (including future time extensions), (iii) in any current or +future medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional purposes +(the "License"). The License shall be deemed effective as of the date CC0 +was applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder of +the License, and in such case Affirmer hereby affirms that he or she will +not (i) exercise any of his or her remaining Copyright and Related Rights +in the Work or (ii) assert any associated claims and causes of action with +respect to the Work, in either case contrary to Affirmer's express Statement +of Purpose. + + 4. Limitations and Disclaimers. + +a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, +licensed or otherwise affected by this document. + +b. Affirmer offers the Work as-is and makes no representations or warranties +of any kind concerning the Work, express, implied, statutory or otherwise, +including without limitation warranties of title, merchantability, fitness +for a particular purpose, non infringement, or the absence of latent or other +defects, accuracy, or the present or absence of errors, whether or not discoverable, +all to the greatest extent permissible under applicable law. + +c. Affirmer disclaims responsibility for clearing rights of other persons +that may apply to the Work or any use thereof, including without limitation +any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims +responsibility for obtaining any necessary consents, permissions or other +rights required for any use of the Work. + +d. Affirmer understands and acknowledges that Creative Commons is not a party +to this document and has no duty or obligation with respect to this CC0 or +use of the Work. diff --git a/README.md b/README.md new file mode 100644 index 0000000..5cdf42e --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# TinyTemp + +TinyTemp is the second in the series of the EightEquals boards. + +Tinytemp has one job. Add 4 thermistors. This could be to +measure your hotend, bed temp, or even 4 Z extrusions to get +a better idea of your frame temperature. It's all up to you. +Extra pins from the RP2040-Zero were broken out if you have +some sort of idea what you want to do. Buttons maybe? There's +nothing left to ramble about as it's truly just that simple. + +![Board](images/rev0.png) diff --git a/TinyTemp.kicad_pcb b/TinyTemp.kicad_pcb new file mode 100644 index 0000000..b6b422b --- /dev/null +++ b/TinyTemp.kicad_pcb @@ -0,0 +1,5956 @@ +(kicad_pcb (version 20221018) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + + (net 0 "") + (net 1 "/Thermistor0") + (net 2 "GND1") + (net 3 "/Thermistor2") + (net 4 "/Thermistor1") + (net 5 "/Thermistor3") + (net 6 "/3.3v") + (net 7 "unconnected-(U1-5V-Pad23)") + (net 8 "Net-(J1-Pin_27)") + (net 9 "Net-(J1-Pin_29)") + (net 10 "Net-(J1-Pin_31)") + (net 11 "Net-(J1-Pin_1)") + (net 12 "Net-(J1-Pin_3)") + (net 13 "Net-(J1-Pin_5)") + (net 14 "Net-(J1-Pin_7)") + (net 15 "Net-(J1-Pin_9)") + (net 16 "Net-(J1-Pin_11)") + (net 17 "Net-(J1-Pin_13)") + (net 18 "Net-(J1-Pin_15)") + (net 19 "Net-(J1-Pin_17)") + (net 20 "Net-(J1-Pin_19)") + (net 21 "Net-(J1-Pin_21)") + (net 22 "Net-(J1-Pin_23)") + (net 23 "Net-(J1-Pin_25)") + + (footprint "mcu:rp2040-zero-tht" (layer "F.Cu") + (tstamp 0e6ba03e-5a1e-49d9-8eff-a49763deebd2) + (at 44.1 30.24) + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (path "/abbbe3ef-66de-4d09-9dd2-83bf3f3cc4bf") + (attr through_hole exclude_from_pos_files) + (fp_text reference "U1" (at -16.3989 -16.53268) (layer "F.SilkS") hide + (effects (font (size 0.889 0.889) (thickness 0.1016))) + (tstamp 9ba0c392-616b-4a5c-9bf1-a31f5b819522) + ) + (fp_text value "rp2040-zero" (at -16.8434 -5.54718) (layer "F.SilkS") hide + (effects (font (size 0.6096 0.6096) (thickness 0.0762))) + (tstamp 8e424cc9-ffb5-40af-bb69-24fbdf62721e) + ) + (fp_rect (start -9 -11.75) (end 9 11.75) + (stroke (width 0.12) (type solid)) (fill none) (layer "Dwgs.User") (tstamp 09ea141c-f695-4775-a9f8-d67000f5d1ca)) + (fp_line (start -6 -11.75) (end -6 9.25) + (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 1a53c9b8-2862-4290-80bb-56fb4cd59918)) + (fp_line (start -6 9.25) (end 6 9.25) + (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp a198ae84-8dfa-4965-acaf-47b58effcd47)) + (fp_line (start 6 9.25) (end 6 -11.75) + (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp df13a3ff-4724-436a-afb5-d37ba50d096a)) + (pad "1" thru_hole oval (at 7.62 -10.16 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 11 "Net-(J1-Pin_1)") (pinfunction "0") (pintype "bidirectional") (tstamp db4188bf-64e9-4872-9793-88085b0bf13e)) + (pad "2" thru_hole oval (at 7.62 -7.62 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 12 "Net-(J1-Pin_3)") (pinfunction "1") (pintype "bidirectional") (tstamp 47a03042-b251-4c08-8042-2a18c76623a6)) + (pad "3" thru_hole oval (at 7.62 -5.08 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 13 "Net-(J1-Pin_5)") (pinfunction "2") (pintype "bidirectional") (tstamp d4fdef3f-4ece-4d70-b1ef-8fa8d9a2e468)) + (pad "4" thru_hole oval (at 7.62 -2.54 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 14 "Net-(J1-Pin_7)") (pinfunction "3") (pintype "bidirectional") (tstamp b310e27c-6161-47d1-8886-66eec494172b)) + (pad "5" thru_hole oval (at 7.62 0 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 15 "Net-(J1-Pin_9)") (pinfunction "4") (pintype "bidirectional") (tstamp 5e8ac211-a78f-4df4-a633-5c6d251b9740)) + (pad "6" thru_hole oval (at 7.62 2.54 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 16 "Net-(J1-Pin_11)") (pinfunction "5") (pintype "bidirectional") (tstamp a615e9d1-1b9d-468f-8168-273f53ba7e5c)) + (pad "7" thru_hole oval (at 7.62 5.08 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 17 "Net-(J1-Pin_13)") (pinfunction "6") (pintype "bidirectional") (tstamp 3308438c-aa6c-495d-b5ea-de528d116387)) + (pad "8" thru_hole oval (at 7.62 7.62 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 18 "Net-(J1-Pin_15)") (pinfunction "7") (pintype "bidirectional") (tstamp 61fdcefa-8edb-4e96-ad96-9e63ccb9ac96)) + (pad "9" thru_hole oval (at 7.62 10.16 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 19 "Net-(J1-Pin_17)") (pinfunction "8") (pintype "bidirectional") (tstamp d89ac30f-46c6-4b84-a88b-d64439fcef33)) + (pad "10" thru_hole oval (at 5.08 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 20 "Net-(J1-Pin_19)") (pinfunction "9") (pintype "bidirectional") (tstamp 330191bd-a456-4195-a396-5f9d1c59e83b)) + (pad "11" thru_hole oval (at 2.54 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 21 "Net-(J1-Pin_21)") (pinfunction "10") (pintype "bidirectional") (tstamp d97289ae-6a8b-4caf-a05b-b117a8773fee)) + (pad "12" thru_hole oval (at 0 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 22 "Net-(J1-Pin_23)") (pinfunction "11") (pintype "bidirectional") (tstamp 86130f62-116d-42f3-893b-e69cb9eac5e8)) + (pad "13" thru_hole oval (at -2.54 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 23 "Net-(J1-Pin_25)") (pinfunction "12") (pintype "bidirectional") (tstamp 2b2e2f8e-85c5-4d6d-9a79-53076bc1ca14)) + (pad "14" thru_hole oval (at -5.08 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 8 "Net-(J1-Pin_27)") (pinfunction "13") (pintype "bidirectional") (tstamp ac5b4f11-7343-4968-a365-d674fa165db9)) + (pad "15" thru_hole oval (at -7.62 10.16) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 9 "Net-(J1-Pin_29)") (pinfunction "14") (pintype "bidirectional") (tstamp ca41770c-8939-459b-8f62-55c381395f3c)) + (pad "16" thru_hole oval (at -7.62 7.62) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 10 "Net-(J1-Pin_31)") (pinfunction "15") (pintype "bidirectional") (tstamp 55d504db-99b7-4f03-a12e-2c239c6b6bae)) + (pad "17" thru_hole oval (at -7.62 5.08) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 5 "/Thermistor3") (pinfunction "26") (pintype "bidirectional") (tstamp d2544b3f-04d0-4fbe-95ad-7ffd92804ac7)) + (pad "18" thru_hole oval (at -7.62 2.54) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 3 "/Thermistor2") (pinfunction "27") (pintype "bidirectional") (tstamp d9787102-91b4-464f-84e6-e57c0ba2f960)) + (pad "19" thru_hole oval (at -7.62 0) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 4 "/Thermistor1") (pinfunction "28") (pintype "bidirectional") (tstamp caf0f270-1eb1-4aa8-8be8-ea9a70a4828e)) + (pad "20" thru_hole oval (at -7.62 -2.54) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 1 "/Thermistor0") (pinfunction "29") (pintype "bidirectional") (tstamp 56bd7b0b-142e-408a-b168-c6d0cb37d9d3)) + (pad "21" thru_hole oval (at -7.62 -5.08) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 6 "/3.3v") (pinfunction "3V3") (pintype "power_out") (tstamp 40cfb78a-27f2-4dad-beb7-576ef625e9a9)) + (pad "22" thru_hole oval (at -7.62 -7.62) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "GND") (pintype "power_out") (tstamp cfec85b5-9b3b-4dd7-a704-f59c90cddf13)) + (pad "23" thru_hole oval (at -7.62 -10.16) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 7 "unconnected-(U1-5V-Pad23)") (pinfunction "5V") (pintype "power_out") (tstamp 74b7f3cc-0c9e-46dd-b067-f27e49d8deb4)) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (layer "F.Cu") + (tstamp 0f6cc2b2-60ac-4e99-b0d7-8a8e7da9b10b) + (at 30.14 21.4 180) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor symbol for simulation only") + (property "ki_keywords" "resistor simulation") + (path "/ba43f430-f95e-4bc5-83cb-ebe697130cab") + (attr through_hole) + (fp_text reference "T1R1" (at 2.54 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bc0babe3-1663-4fe8-bf0e-6f0cb0f14463) + ) + (fp_text value "4.7k" (at 2.54 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b9ba4e07-65da-4f3a-bc7e-9c9177b70061) + ) + (fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp f95d2ee7-3906-4f5b-b044-a82dbf9fef41) + ) + (fp_line (start 0.62 -0.92) (end 4.46 -0.92) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59964856-d25d-4889-b070-0e6555c27b7f)) + (fp_line (start 0.62 0.92) (end 4.46 0.92) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87796779-c752-492d-a756-19319bf14739)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5c00d8f-d8fe-4a24-8075-6eeaf2ef54bf)) + (fp_line (start -0.95 1.05) (end 6.03 1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a99e2a6e-748b-42d4-9150-3e3292bf39ea)) + (fp_line (start 6.03 -1.05) (end -0.95 -1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b3ea2f8-2a5f-4263-860d-41014472b870)) + (fp_line (start 6.03 1.05) (end 6.03 -1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4af2d82d-171b-4884-aa63-547d50a40d94)) + (fp_line (start 0 0) (end 0.74 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9545d1f5-83f4-4c43-96bd-295e64a149ce)) + (fp_line (start 0.74 -0.8) (end 0.74 0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 006eb65e-ebbe-48e7-bf99-4d8b8ded1674)) + (fp_line (start 0.74 0.8) (end 4.34 0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4fa08915-8517-4a7f-8154-6ff16d9e0314)) + (fp_line (start 4.34 -0.8) (end 0.74 -0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0468235-113b-47e7-b752-ded77c9cb647)) + (fp_line (start 4.34 0.8) (end 4.34 -0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de7eb797-f2c4-4bfe-8258-b5e39987360a)) + (fp_line (start 5.08 0) (end 4.34 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2a8f2c5-b9bc-4a7a-98bd-0fbf5e33e4ba)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 6 "/3.3v") (pintype "passive") (tstamp 309a4b4e-2ac0-4b90-9c90-eb7360c3179d)) + (pad "2" thru_hole oval (at 5.08 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 1 "/Thermistor0") (pintype "passive") (tstamp bf47bd4b-d1f3-4f16-b5d2-5dec31f44db1)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 336fc91d-efd0-46f5-8a7e-8b3cb177753c) + (at 20.1 31.9 -90) + (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Temperature dependent resistor, negative temperature coefficient") + (property "ki_keywords" "thermistor NTC resistor sensor RTD") + (path "/400e609a-bba4-4e5a-ae93-533c1e27c86d") + (attr through_hole) + (fp_text reference "TH3" (at 1.25 -3.55 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d5cfc15d-8ee3-422f-aa24-626a34faefe8) + ) + (fp_text value "Thermistor_NTC_100k" (at 1.25 4.6 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1adc6a8a-985d-4957-813b-8ac6d3fba823) + ) + (fp_text user "${REFERENCE}" (at 1.25 2.7 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 050fb134-6d88-4867-8485-152721208700) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d334fb1-2ea3-4846-83ff-67588a114fa4)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da5fd5f4-f730-4049-ba32-0418e7c667f9)) + (fp_line (start -2.56 3.51) (end 5.06 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36f9b3e1-a84d-462a-b464-b6b455154666)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a43add1-4f77-4b4e-9536-5e895535b5e3)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e18db3a4-2665-4d9f-a516-79fe6fd2a8f8)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06e402c9-3c8b-475a-82ab-d9af31626776)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9b24142-5556-4d50-8d6e-bca03e5e34e9)) + (fp_line (start -1.8 2.75) (end 1.25 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e73c8a9-5314-400a-b076-9ef60866ad14)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e910576-6f11-428b-a132-2f03c28739e9)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78435476-5577-460f-8692-5a03858d7682)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69867e2b-1a90-43e5-b221-003b50ed5a72)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5bfc7856-c68a-4bfd-905f-87c1188eaf04)) + (fp_line (start 0.75 -1.7) (end 1.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b6f1ea1-dddf-4746-b65e-90e1ffa14a23)) + (fp_line (start 1.75 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dfb3b5b-8fe7-4a06-9b95-45dc71793a09)) + (fp_line (start 1.75 -1.7) (end 1.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 252b62e0-89c4-4228-a63b-c138e9834151)) + (fp_line (start 3.25 -2.45) (end 3.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbd57acb-fd63-4cc5-a05c-6b87551195b9)) + (fp_line (start 3.25 -1.7) (end 5.05 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ded18493-8609-4eb9-b439-dcf34d22a25c)) + (fp_line (start 4.3 -0.2) (end 4.3 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81281105-8e7c-4fbe-a80e-e9d6766f8c59)) + (fp_line (start 4.3 2.75) (end 1.25 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9667d23-0a9d-4b98-8d73-8b6ab283b9b5)) + (fp_line (start 5.05 -2.45) (end 3.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp caccaf70-0f0f-44bd-9984-a538920e8926)) + (fp_line (start 5.05 -1.7) (end 5.05 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5af9724c-e16f-414c-b113-57db3880767f)) + (fp_line (start 5.05 -0.2) (end 4.3 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0fa3814-d338-45ed-9fcf-af90c4c73b73)) + (fp_line (start 5.06 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82d680e9-1cc6-431a-b674-803d3e6d44b2)) + (fp_line (start 5.06 3.51) (end 5.06 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c63ea541-21b6-4a17-8fe2-55cd44c8d2fe)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f733665d-12ec-422b-a421-918aebd3b0cf)) + (fp_line (start -2.95 3.9) (end 5.45 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a308d98f-3238-4077-97a0-08e1b01efb7a)) + (fp_line (start 5.45 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff8fa1a5-22ed-47c2-bb86-7ba11528c96b)) + (fp_line (start 5.45 3.9) (end 5.45 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87880810-ba18-4b4e-a761-b047bf8de9c1)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0dfac95-c264-4826-b5b6-dd5687e5f4ee)) + (fp_line (start -2.45 3.4) (end 4.95 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cd83258-e304-4cae-bd49-b811e2f5187c)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b767f414-ac42-4898-8b2b-e025ceb1be01)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f77c771-9616-4223-b4a9-f02c720b9d56)) + (fp_line (start 4.95 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09e8cc90-ec23-46ae-a33c-13076831ceec)) + (fp_line (start 4.95 3.4) (end 4.95 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0622776a-2476-449b-978f-e3341c0bee7d)) + (pad "1" thru_hole roundrect (at 0 0 270) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 4 "/Thermistor1") (pintype "passive") (tstamp a6f24147-91ae-4b6a-a280-3b02a5b6c022)) + (pad "2" thru_hole oval (at 2.5 0 270) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pintype "passive") (tstamp b1f0a21b-7fd4-42b9-b679-c5c7c9d0985a)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (layer "F.Cu") + (tstamp 438e19a0-2994-4113-8d44-2baf365de1cd) + (at 30 48 180) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor symbol for simulation only") + (property "ki_keywords" "resistor simulation") + (path "/bcc0ba37-995e-4315-bb4d-066a32ae862f") + (attr through_hole) + (fp_text reference "T1R4" (at 2.54 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ae84a08f-9bcd-47eb-9e23-190c3a26089d) + ) + (fp_text value "4.7k" (at 2.54 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eb0c3c1d-be63-44d8-8ad9-23ad25e8d00e) + ) + (fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 13f789fa-155c-47ad-8366-f1e0e32951a1) + ) + (fp_line (start 0.62 -0.92) (end 4.46 -0.92) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 851a48b1-0d39-46eb-9189-3c4dd00e4620)) + (fp_line (start 0.62 0.92) (end 4.46 0.92) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d559bbad-d5d2-4463-8c0b-0a4533bfaebc)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c756de7-864a-4a3d-a94e-812ac6466025)) + (fp_line (start -0.95 1.05) (end 6.03 1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03c3b335-496b-4b21-b412-cf1e5c59a541)) + (fp_line (start 6.03 -1.05) (end -0.95 -1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3d6d459-e479-4997-b7b3-25497d3d50f3)) + (fp_line (start 6.03 1.05) (end 6.03 -1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a5c959a-38d7-4086-bcca-a6866c29ce47)) + (fp_line (start 0 0) (end 0.74 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84b84695-51cc-4b01-8638-7288bbd853ce)) + (fp_line (start 0.74 -0.8) (end 0.74 0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c64ee206-017a-4d4a-a9b5-cde883c72850)) + (fp_line (start 0.74 0.8) (end 4.34 0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a5ee3e6-c96f-4129-9465-8a6d992fccf2)) + (fp_line (start 4.34 -0.8) (end 0.74 -0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3552179a-f76e-459b-97cb-bbd8b8931009)) + (fp_line (start 4.34 0.8) (end 4.34 -0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b95925c-3dfb-4fae-9616-61d54b3d0a36)) + (fp_line (start 5.08 0) (end 4.34 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed1e8173-5574-4605-bd15-91a16fcb5218)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 6 "/3.3v") (pintype "passive") (tstamp 5a550207-d0c4-49ba-9a00-6040ce609b90)) + (pad "2" thru_hole oval (at 5.08 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 5 "/Thermistor3") (pintype "passive") (tstamp 760ea480-896b-4c32-b00e-3df538506a00)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (layer "F.Cu") + (tstamp 46539a64-1f8e-4119-9663-4eba5c18d0f1) + (at 30 30 180) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor symbol for simulation only") + (property "ki_keywords" "resistor simulation") + (path "/21328443-3099-43b1-b489-b41fae2e2487") + (attr through_hole) + (fp_text reference "T1R3" (at 2.54 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 18d71a91-09e2-4c36-b7ce-efe82238a26e) + ) + (fp_text value "4.7k" (at 2.54 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9a0f9bb9-d470-4f3d-94fd-4396a87b53b7) + ) + (fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 67f562c4-e7ab-4bd7-9fd9-a7948a326489) + ) + (fp_line (start 0.62 -0.92) (end 4.46 -0.92) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff0d2f5c-ba17-4636-a5e2-6a817d285204)) + (fp_line (start 0.62 0.92) (end 4.46 0.92) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d39027a-c232-433c-aa7d-201336255ad8)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17fd5ba4-c834-41a7-832f-98b65042fc48)) + (fp_line (start -0.95 1.05) (end 6.03 1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68d7cbf5-4807-4e54-9215-5cb0997b10c1)) + (fp_line (start 6.03 -1.05) (end -0.95 -1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 549b5a75-1467-4d65-bf83-76267c478031)) + (fp_line (start 6.03 1.05) (end 6.03 -1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2bdc8540-743d-4df3-9009-1485b968ab13)) + (fp_line (start 0 0) (end 0.74 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69833eb4-3d5a-4fdc-8452-e103baa22aae)) + (fp_line (start 0.74 -0.8) (end 0.74 0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ddb67fa-23f5-4917-82d6-0c9bb0f02fad)) + (fp_line (start 0.74 0.8) (end 4.34 0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e1842af-b6df-4cdb-8f10-47ebba245348)) + (fp_line (start 4.34 -0.8) (end 0.74 -0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 100e0d3a-62bf-453a-938f-ebbf3370269b)) + (fp_line (start 4.34 0.8) (end 4.34 -0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06c21c21-25e3-4491-9989-ce8c4e51ecb3)) + (fp_line (start 5.08 0) (end 4.34 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b9d0706-b690-4234-96c4-f699ba5a7dc6)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 6 "/3.3v") (pintype "passive") (tstamp 07d8411a-14d4-47db-98c4-cc1448affb0c)) + (pad "2" thru_hole oval (at 5.08 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 4 "/Thermistor1") (pintype "passive") (tstamp 0a488077-0c73-4637-bdb4-5442bb4ce8ad)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu") + (tstamp 46660f30-5564-4fd6-b5c5-99c9e6b487e4) + (at 29.6 25.4 -90) + (descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Unpolarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/9595bf9b-8c95-4b95-9434-8585eb0e96bb") + (attr through_hole) + (fp_text reference "C1" (at 0.75 -3.25 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 56aa203f-32eb-4dbb-a38b-fa55d99ddd30) + ) + (fp_text value "4.7uF" (at 0.75 3.25 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7c017df5-f952-43ce-8499-48c82768a985) + ) + (fp_text user "${REFERENCE}" (at 0.75 0 90) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp 8f194eab-e0f2-4a81-9c82-8dbfd43cf1b5) + ) + (fp_line (start -1.519801 -1.195) (end -1.119801 -1.195) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6371428-1b2f-472e-ac04-55309963f57b)) + (fp_line (start -1.319801 -1.395) (end -1.319801 -0.995) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 104db301-195c-4a76-a379-10d140a41949)) + (fp_line (start 0.75 -2.08) (end 0.75 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee01c817-e69b-4116-aef0-28cf30b49ce2)) + (fp_line (start 0.75 0.84) (end 0.75 2.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbe15323-557f-4cc2-bde0-055d3b9686c2)) + (fp_line (start 0.79 -2.08) (end 0.79 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e60e1ae7-bf58-42e0-8ef1-f2d67f5544a1)) + (fp_line (start 0.79 0.84) (end 0.79 2.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 738778a2-e5d6-4482-828e-fae9ff37e3d9)) + (fp_line (start 0.83 -2.079) (end 0.83 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1dc1e3e6-3165-4dfa-92d4-4b37140c5e55)) + (fp_line (start 0.83 0.84) (end 0.83 2.079) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 166a9974-9d21-4c47-997b-e7fc688673f4)) + (fp_line (start 0.87 -2.077) (end 0.87 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9fd01a0-85f2-4d9f-ab15-69fdf8e33a20)) + (fp_line (start 0.87 0.84) (end 0.87 2.077) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fbd2d98-c106-4b12-a70e-c8fe5cb69c8d)) + (fp_line (start 0.91 -2.074) (end 0.91 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a5043ac-5c2b-42df-b6b5-1fbb7fe8d1ba)) + (fp_line (start 0.91 0.84) (end 0.91 2.074) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a03e3d0c-74a7-42a4-9136-38c00da4ffa9)) + (fp_line (start 0.95 -2.071) (end 0.95 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8016cd44-1259-4431-9aaf-365aa3b020b3)) + (fp_line (start 0.95 0.84) (end 0.95 2.071) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f12bb3ed-e22d-48b2-8a25-972a15c06dd0)) + (fp_line (start 0.99 -2.067) (end 0.99 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 561a6cac-d39c-4f5d-90ab-2cecf3124cdd)) + (fp_line (start 0.99 0.84) (end 0.99 2.067) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 780211c9-9699-4a6f-b780-993e1fb7fe94)) + (fp_line (start 1.03 -2.062) (end 1.03 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5db22bb1-5211-4f0e-b5b1-989888b992c4)) + (fp_line (start 1.03 0.84) (end 1.03 2.062) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bedfede3-8fcc-490a-9fba-cf6fd1b6d6a0)) + (fp_line (start 1.07 -2.056) (end 1.07 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a8e8fa1-6eab-4a8c-b03b-cd282c07a8ed)) + (fp_line (start 1.07 0.84) (end 1.07 2.056) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6d35535-279f-4d5f-ae9c-7cc363178b5b)) + (fp_line (start 1.11 -2.05) (end 1.11 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a90c7c7a-ee3d-4aef-a9af-72f34d5e2fa3)) + (fp_line (start 1.11 0.84) (end 1.11 2.05) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c753c6c-6bdf-49a6-87bd-73313c7b2088)) + (fp_line (start 1.15 -2.042) (end 1.15 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77417a8b-74f8-4594-b6e1-65ca474c0f53)) + (fp_line (start 1.15 0.84) (end 1.15 2.042) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f9da70e-3635-45d9-9161-cd687f9bbc1c)) + (fp_line (start 1.19 -2.034) (end 1.19 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c359a19-2f8a-48a6-a3d4-7328bf4bda55)) + (fp_line (start 1.19 0.84) (end 1.19 2.034) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ccdc94c-7450-48e3-be10-61db1cabe955)) + (fp_line (start 1.23 -2.025) (end 1.23 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d319c2d-437b-4507-908c-e50c582fe2d3)) + (fp_line (start 1.23 0.84) (end 1.23 2.025) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b625775f-b6d7-47c9-bee2-41fdcbed154c)) + (fp_line (start 1.27 -2.016) (end 1.27 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c46d6989-0017-4d7d-adea-ebf0266c3a22)) + (fp_line (start 1.27 0.84) (end 1.27 2.016) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b972cd78-10a8-403f-9384-14dde4fd4625)) + (fp_line (start 1.31 -2.005) (end 1.31 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dfd331c8-16f5-4284-9a64-4236ffd9b1ae)) + (fp_line (start 1.31 0.84) (end 1.31 2.005) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bce515a3-7f06-42d4-bcd4-6b516d075270)) + (fp_line (start 1.35 -1.994) (end 1.35 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fd2cf3d-65a3-46dd-8e41-19a21642f255)) + (fp_line (start 1.35 0.84) (end 1.35 1.994) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2536096e-b49c-4c29-b42a-75b8ec41550f)) + (fp_line (start 1.39 -1.982) (end 1.39 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 121bcb70-6061-4536-80c0-707b45bad340)) + (fp_line (start 1.39 0.84) (end 1.39 1.982) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40095537-c32f-4867-a655-564fbbf11fdf)) + (fp_line (start 1.43 -1.968) (end 1.43 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 737eafb7-3705-4c75-a525-01e2432b59f7)) + (fp_line (start 1.43 0.84) (end 1.43 1.968) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b222c171-5b41-4bf1-a602-7728d125b89e)) + (fp_line (start 1.471 -1.954) (end 1.471 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76a40e4d-e1cc-45f9-9507-d5a52d13b5ef)) + (fp_line (start 1.471 0.84) (end 1.471 1.954) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30817c01-f125-4d58-a4da-e3956f584c2a)) + (fp_line (start 1.511 -1.94) (end 1.511 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp edaa500a-b77f-4fd3-ac43-bb40579a489d)) + (fp_line (start 1.511 0.84) (end 1.511 1.94) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a224f4a6-52ed-4ea3-938a-785c3ffa3baf)) + (fp_line (start 1.551 -1.924) (end 1.551 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da6b3537-e128-4c23-8939-d961b40cc0a9)) + (fp_line (start 1.551 0.84) (end 1.551 1.924) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d44d8342-4d1d-4925-a048-33bf9532c118)) + (fp_line (start 1.591 -1.907) (end 1.591 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98d757b2-8b38-4685-9ef8-611e6003bd34)) + (fp_line (start 1.591 0.84) (end 1.591 1.907) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37b1a5dc-8057-48f5-8ee1-d3c0e8ebc359)) + (fp_line (start 1.631 -1.889) (end 1.631 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81d65a62-ab6d-4180-bb1d-8df9b2300e77)) + (fp_line (start 1.631 0.84) (end 1.631 1.889) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd45442a-f43f-43e4-a782-27e84f22b1ef)) + (fp_line (start 1.671 -1.87) (end 1.671 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5c93e0a-4ce7-439c-9f13-72522b30a34a)) + (fp_line (start 1.671 0.84) (end 1.671 1.87) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2259d81-0690-4d64-b03e-b6e8c6077de1)) + (fp_line (start 1.711 -1.851) (end 1.711 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e74aae0c-afeb-44a2-848d-3f95168388e0)) + (fp_line (start 1.711 0.84) (end 1.711 1.851) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbe34814-6ea7-4cc3-b1d4-dc5d77807585)) + (fp_line (start 1.751 -1.83) (end 1.751 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 039cb548-665f-4fd6-bf3b-706708cbff22)) + (fp_line (start 1.751 0.84) (end 1.751 1.83) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e5d7577-064c-42c8-87da-d67e00f51526)) + (fp_line (start 1.791 -1.808) (end 1.791 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33e2f493-1af1-4b27-af2b-d805db651854)) + (fp_line (start 1.791 0.84) (end 1.791 1.808) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5edadc6b-5c7c-4177-8438-da7798a43de4)) + (fp_line (start 1.831 -1.785) (end 1.831 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bf8230f-bed0-4d54-a7e5-d32dc1ad7039)) + (fp_line (start 1.831 0.84) (end 1.831 1.785) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce2af4c5-c208-4272-994f-44e851ce9c63)) + (fp_line (start 1.871 -1.76) (end 1.871 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77388867-2256-4f10-9a13-75cb9b4b330b)) + (fp_line (start 1.871 0.84) (end 1.871 1.76) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0eba2916-e8bc-4e61-88c3-815e6e879d7d)) + (fp_line (start 1.911 -1.735) (end 1.911 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abd2db05-94c6-4ff1-a7d4-f2250270ffad)) + (fp_line (start 1.911 0.84) (end 1.911 1.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44b197d2-8025-4fc5-9382-5eb2ec321e89)) + (fp_line (start 1.951 -1.708) (end 1.951 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d03ebc0-038d-410c-8781-3d550a729fdb)) + (fp_line (start 1.951 0.84) (end 1.951 1.708) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42da55ac-cfa0-4e08-8a3b-c69dd6563076)) + (fp_line (start 1.991 -1.68) (end 1.991 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfd7953e-fe47-4ea1-abc2-70bbe8695527)) + (fp_line (start 1.991 0.84) (end 1.991 1.68) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 605a61c3-c260-44bf-b9ab-d9ce22be919a)) + (fp_line (start 2.031 -1.65) (end 2.031 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 289d7563-c031-4ecb-99c8-8b26a9bd587c)) + (fp_line (start 2.031 0.84) (end 2.031 1.65) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16d897c5-9b85-4668-b0ab-8717b00ed1ed)) + (fp_line (start 2.071 -1.619) (end 2.071 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a8fe872-0d50-4fc4-9cdd-50f7d57ee5af)) + (fp_line (start 2.071 0.84) (end 2.071 1.619) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64a25785-eaf6-4078-9729-82bce6415a31)) + (fp_line (start 2.111 -1.587) (end 2.111 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b506bc8-5488-44c9-aba3-49e69151038e)) + (fp_line (start 2.111 0.84) (end 2.111 1.587) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c135f2a1-a3c1-41d9-bce5-873508c4ca42)) + (fp_line (start 2.151 -1.552) (end 2.151 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f32912be-ab3a-4f4e-a1f6-863f71cef43b)) + (fp_line (start 2.151 0.84) (end 2.151 1.552) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de312f9e-fc56-43cf-9872-6c0653e2fd4a)) + (fp_line (start 2.191 -1.516) (end 2.191 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6eb7469e-cc79-4b05-bc38-bf1120eb4920)) + (fp_line (start 2.191 0.84) (end 2.191 1.516) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 974c26a6-c05a-4caf-a664-3a04d34eef35)) + (fp_line (start 2.231 -1.478) (end 2.231 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8be425c5-352b-49ff-abcb-12f519e53323)) + (fp_line (start 2.231 0.84) (end 2.231 1.478) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b708707-ecc4-4126-92e8-6c68cce12cba)) + (fp_line (start 2.271 -1.438) (end 2.271 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b9f5bd6-3010-497b-975f-8f8bbbbfba3a)) + (fp_line (start 2.271 0.84) (end 2.271 1.438) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81fa4c4e-5b11-4d90-9af0-590057ee90b3)) + (fp_line (start 2.311 -1.396) (end 2.311 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 128162d9-ae40-42f9-88d5-31ca03072cff)) + (fp_line (start 2.311 0.84) (end 2.311 1.396) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28b2a5b1-f287-428f-9a59-b4289a0c7b4e)) + (fp_line (start 2.351 -1.351) (end 2.351 1.351) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 532e693f-5d75-4980-b1a9-3bee61a2b5f6)) + (fp_line (start 2.391 -1.304) (end 2.391 1.304) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 998af0b1-c71b-4780-9bf7-052f11853814)) + (fp_line (start 2.431 -1.254) (end 2.431 1.254) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65024f5f-7699-4878-839e-37316645a0f6)) + (fp_line (start 2.471 -1.2) (end 2.471 1.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9c67bd9-eed2-4350-8748-ad590de61aca)) + (fp_line (start 2.511 -1.142) (end 2.511 1.142) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4996c77b-fe52-43fa-8687-a0d3429de9c9)) + (fp_line (start 2.551 -1.08) (end 2.551 1.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e78d3af-7059-4af9-b63f-40fe7044772d)) + (fp_line (start 2.591 -1.013) (end 2.591 1.013) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a8a4ab3-a05c-4f04-8b3e-d727527e7b8a)) + (fp_line (start 2.631 -0.94) (end 2.631 0.94) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4584df4-e96e-4e80-8ea9-49a3a4499d94)) + (fp_line (start 2.671 -0.859) (end 2.671 0.859) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2876df7e-1368-425f-8aca-4871748032fb)) + (fp_line (start 2.711 -0.768) (end 2.711 0.768) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c49ee72-d05b-47a7-afbb-3796a76181ba)) + (fp_line (start 2.751 -0.664) (end 2.751 0.664) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f677106-a43f-405c-b2ec-7eaaa9b2df88)) + (fp_line (start 2.791 -0.537) (end 2.791 0.537) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d27cba28-b11c-48ff-be30-ea1c57095a61)) + (fp_line (start 2.831 -0.37) (end 2.831 0.37) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59bb76e6-1281-4a60-87f3-55435d723d9e)) + (fp_circle (center 0.75 0) (end 2.87 0) + (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 3d9f4406-4fc3-458b-9ff5-099a7ff125c0)) + (fp_circle (center 0.75 0) (end 3 0) + (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 949ba2e6-c415-47eb-806b-45026d74454f)) + (fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10c44ac2-db8e-481c-ba5b-c2daebafbd21)) + (fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce503093-ca34-4d58-933e-c509ff02ffa6)) + (fp_circle (center 0.75 0) (end 2.75 0) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 11463c0c-1b9e-4cce-a857-10f006c9baeb)) + (pad "1" thru_hole rect (at 0 0 270) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") + (net 1 "/Thermistor0") (pintype "passive") (tstamp d5a45370-fc5d-4ba8-9a1c-ac3a41e1c7c3)) + (pad "2" thru_hole circle (at 1.5 0 270) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pintype "passive") (tstamp 079b241e-0e7d-4df7-a035-ca07db511fde)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 578e5faa-5fb0-4679-aeed-bb07dbb7a3c1) + (at 20.1 50 -90) + (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Temperature dependent resistor, negative temperature coefficient") + (property "ki_keywords" "thermistor NTC resistor sensor RTD") + (path "/833598b7-80ea-4c00-863e-9e1e91b2c097") + (attr through_hole) + (fp_text reference "TH4" (at 1.25 -3.55 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ede4a6c8-1b44-48ee-8748-eae30f794bed) + ) + (fp_text value "Thermistor_NTC_100k" (at 1.25 4.6 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 139a550b-e791-4a40-bbc2-e6959cf60f33) + ) + (fp_text user "${REFERENCE}" (at 1.25 2.7 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c42653d4-2616-458e-970c-902730ede64d) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87761070-0aff-4970-a65f-63d1ca90f399)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97c004a4-4699-454e-9e9b-a0a81480e6ba)) + (fp_line (start -2.56 3.51) (end 5.06 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 511d1dbe-0375-4ba2-86ca-3510242d9dd2)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34172926-823f-448a-bd22-d706c66b85c0)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e698e6c1-db31-4b21-86e7-3d28b62b451b)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c987a942-12b1-48f3-81fc-3f3a24d8808a)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5520a11-4a7f-4ff7-8bde-7097052735bc)) + (fp_line (start -1.8 2.75) (end 1.25 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d08a0a4-6a92-4f57-b0da-1a6ae375a1b9)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65132313-2de5-487a-8563-bbb437e607c4)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 529b0e2c-3710-45db-af3c-b26c20bfdde8)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48b3f452-5a13-4af1-b749-af52c5379390)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b63def1-ca09-45f8-a047-a16b6982136b)) + (fp_line (start 0.75 -1.7) (end 1.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99c5b114-f71a-4e2d-92b9-f4002b2856cd)) + (fp_line (start 1.75 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27810f15-5244-481e-9775-2eed53c517b6)) + (fp_line (start 1.75 -1.7) (end 1.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c7632b1-b474-4551-aa74-d277069b9e7b)) + (fp_line (start 3.25 -2.45) (end 3.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b2b6994-cb8a-4038-9007-55d3f9a7606e)) + (fp_line (start 3.25 -1.7) (end 5.05 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad49e1c4-2e1d-401e-bea4-873af30f49a6)) + (fp_line (start 4.3 -0.2) (end 4.3 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 020bf537-229c-4bd3-89df-12904f81f32d)) + (fp_line (start 4.3 2.75) (end 1.25 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dad987d1-9b42-479b-a495-7b8a28094958)) + (fp_line (start 5.05 -2.45) (end 3.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f30c7dba-1d4b-4821-8be6-84911e948737)) + (fp_line (start 5.05 -1.7) (end 5.05 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18267a6b-b6ab-425c-9cb6-6c77f2c18ab8)) + (fp_line (start 5.05 -0.2) (end 4.3 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b230a43e-8665-4daa-bd6f-02b681264230)) + (fp_line (start 5.06 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6f724b5-6986-4601-8d80-d9f8064c9fe8)) + (fp_line (start 5.06 3.51) (end 5.06 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5f624b5-d18b-4e7b-a9f1-c50a61fd5a95)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac3a178a-e600-46d2-83c4-6361fb922dff)) + (fp_line (start -2.95 3.9) (end 5.45 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7be4a1b1-06b0-4e9c-a261-7d36be8c07c4)) + (fp_line (start 5.45 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23bac037-8593-4c3d-9908-5eb0aca5b38b)) + (fp_line (start 5.45 3.9) (end 5.45 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d1e6efc-ec91-457c-a8b4-c2041863cd87)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86e97f46-76a0-4952-b5b8-2169b14febe8)) + (fp_line (start -2.45 3.4) (end 4.95 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a094464c-1181-42f9-b275-5508feed0f88)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a1c2e15-8a42-4c22-a138-16f823b745ff)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cb3de89-6f09-46f7-b648-2f08cf2ec6cc)) + (fp_line (start 4.95 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6837cf50-caee-4755-a8e4-ebe572651370)) + (fp_line (start 4.95 3.4) (end 4.95 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46f7a632-963f-49e8-acbe-665c86576d11)) + (pad "1" thru_hole roundrect (at 0 0 270) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 5 "/Thermistor3") (pintype "passive") (tstamp 57955e3e-05b6-44ca-bf14-6b5a2459dd8e)) + (pad "2" thru_hole oval (at 2.5 0 270) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pintype "passive") (tstamp c02622bd-f9e3-42b8-9d55-ae7792357592)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 7e06b305-d785-4bf4-b302-dd3652f964cf) + (at 20 22.9 -90) + (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Temperature dependent resistor, negative temperature coefficient") + (property "ki_keywords" "thermistor NTC resistor sensor RTD") + (path "/35ed76ea-c52c-4af9-af04-0704ca6bbc8e") + (attr through_hole) + (fp_text reference "TH1" (at 1.25 -3.55 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp be92126c-85a7-437a-8cd0-9785d8968b50) + ) + (fp_text value "Thermistor_NTC_100k" (at 1.25 4.6 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bdcf50fa-538e-46b7-98ff-134d36b0c700) + ) + (fp_text user "${REFERENCE}" (at 1.25 2.7 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2c8c9c51-eb0d-4de5-a45b-93d24e7e92dd) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a17a6b5-1df2-4033-b21a-702e6a48a11a)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 259d072b-1747-46cd-a19f-295a34ec64a8)) + (fp_line (start -2.56 3.51) (end 5.06 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0530dbac-7d65-49a1-88cc-e5f1f87b29d6)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 351d7838-ef91-4d23-af87-788bfacdb8d0)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e4ee5e0-acf1-4a8b-9e3f-8307158e0056)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8f95b53-d75a-40e9-ac86-69834ffd7099)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9786ffd2-d75e-4f12-afef-4a152ca5a0e1)) + (fp_line (start -1.8 2.75) (end 1.25 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d4041e8-a40b-4dcc-961f-36e9d1bffcf4)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24dbf909-fc8f-43aa-bb99-de961a86cb30)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6dcea281-2f6e-43f3-8d5e-4efab9fe4e0d)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1512f140-acb5-4f32-81db-08eb7f53ea5b)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9326663-4ecf-448d-b39b-b40e4465443b)) + (fp_line (start 0.75 -1.7) (end 1.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ecad448-9077-4858-b7ab-789404108452)) + (fp_line (start 1.75 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f353108c-e173-4e71-a96b-4b61219004b6)) + (fp_line (start 1.75 -1.7) (end 1.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37891e46-251e-46d6-b75b-2309e88c84ea)) + (fp_line (start 3.25 -2.45) (end 3.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22e3210a-5c9d-472c-be6d-6f578ad4a974)) + (fp_line (start 3.25 -1.7) (end 5.05 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56934a65-3148-44c2-a1b9-ddc499689052)) + (fp_line (start 4.3 -0.2) (end 4.3 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3b97cf4-7d65-4478-a020-04e296a0bea4)) + (fp_line (start 4.3 2.75) (end 1.25 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ba35481-683f-4663-95b9-a49735b6dd0b)) + (fp_line (start 5.05 -2.45) (end 3.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f95aecef-259b-4813-a4b6-e91059f9f5ee)) + (fp_line (start 5.05 -1.7) (end 5.05 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f2eb5de-c09e-4a4e-abe7-398396c96c6a)) + (fp_line (start 5.05 -0.2) (end 4.3 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe554c93-2048-481a-8c3d-35d000141687)) + (fp_line (start 5.06 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc5c1824-c541-44f5-88c5-4de329937d6c)) + (fp_line (start 5.06 3.51) (end 5.06 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e06d70e0-e6cc-41aa-b390-7a213bd47ded)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83ae8d56-7227-401b-b005-9d0c12543a9a)) + (fp_line (start -2.95 3.9) (end 5.45 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1bcda89-3edd-4653-92d0-3216ff1492c9)) + (fp_line (start 5.45 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e2aabba-39ba-4c9c-a563-6bf48c0d9fa6)) + (fp_line (start 5.45 3.9) (end 5.45 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c8f6def-a1c0-42ed-ac80-807a5c53242b)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a42faddd-dbbb-45a4-8f9b-85595d713779)) + (fp_line (start -2.45 3.4) (end 4.95 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01d28d68-22a9-4eae-94ac-2ad59d4c704b)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf09e9b8-f177-4dcb-b18a-dbb6da8ad36f)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0b9599d-6893-4c78-b18f-4eba87329774)) + (fp_line (start 4.95 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 904e2952-eb08-449e-82fe-72b28597269e)) + (fp_line (start 4.95 3.4) (end 4.95 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0742bf3-b012-44ce-bc3b-0cfd6a0b55bf)) + (pad "1" thru_hole roundrect (at 0 0 270) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 1 "/Thermistor0") (pintype "passive") (tstamp 64dde2d5-2b5b-49e4-85d8-7d842d7a37cf)) + (pad "2" thru_hole oval (at 2.5 0 270) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pintype "passive") (tstamp 3f023a40-23ad-4f3b-80a5-df62edc3d78b)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu") + (tstamp 9aa2f5f3-5b04-45d8-b27a-0d0e87614cbf) + (at 29.9 34 -90) + (descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Unpolarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/81e8f931-69e3-4a1b-822c-23fefcdaa628") + (attr through_hole) + (fp_text reference "C3" (at 0.75 -3.25 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f7ba3bec-0856-4d53-bb6b-f9755fcc0279) + ) + (fp_text value "4.7uF" (at 0.75 3.25 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6ebcfd41-f355-4eaa-a94a-0f597e85ed60) + ) + (fp_text user "${REFERENCE}" (at 0.75 0 90) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp 0275602c-562e-4756-8a53-bec0d238880b) + ) + (fp_line (start -1.519801 -1.195) (end -1.119801 -1.195) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cafb4272-1c6c-4313-a230-cc451850cdf2)) + (fp_line (start -1.319801 -1.395) (end -1.319801 -0.995) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a5e7d86-1950-4b17-8f93-66e1b46cfc42)) + (fp_line (start 0.75 -2.08) (end 0.75 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3a1f75c-31fd-43d9-b0ae-791109dc30ba)) + (fp_line (start 0.75 0.84) (end 0.75 2.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp baf32fd7-ba56-4392-b5a2-78cfd9d4026a)) + (fp_line (start 0.79 -2.08) (end 0.79 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 859eaad0-76bc-427d-affc-cbeae49047c8)) + (fp_line (start 0.79 0.84) (end 0.79 2.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp beac998b-a617-4ee3-8939-ea9b69a55fc4)) + (fp_line (start 0.83 -2.079) (end 0.83 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ee31152-d873-4e1a-8c01-ea31a9b1ca06)) + (fp_line (start 0.83 0.84) (end 0.83 2.079) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77a57426-b5e4-4b7d-895a-5e7862c69c53)) + (fp_line (start 0.87 -2.077) (end 0.87 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 056fd63a-e268-4811-b65e-ee4b6013f77a)) + (fp_line (start 0.87 0.84) (end 0.87 2.077) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89852077-9908-40dd-9e21-f301f1c91d4b)) + (fp_line (start 0.91 -2.074) (end 0.91 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b96bd214-7731-4f29-98f6-8b0c3233d28e)) + (fp_line (start 0.91 0.84) (end 0.91 2.074) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00e6543e-7be1-4d3b-a302-0e27b0ffda05)) + (fp_line (start 0.95 -2.071) (end 0.95 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c6d0702-9dba-477e-b130-23228c9b38ae)) + (fp_line (start 0.95 0.84) (end 0.95 2.071) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c284bb8-0ae8-41e1-a119-5081602bcd47)) + (fp_line (start 0.99 -2.067) (end 0.99 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6fa96d6-d63a-4777-8815-94f98a987bc8)) + (fp_line (start 0.99 0.84) (end 0.99 2.067) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8884e076-c4c9-4951-9b89-a6ee9276fac3)) + (fp_line (start 1.03 -2.062) (end 1.03 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 631e8808-c1db-4f09-b935-1c1137d07e8e)) + (fp_line (start 1.03 0.84) (end 1.03 2.062) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30e617e6-a94e-46b6-a6f8-142ac25da6e0)) + (fp_line (start 1.07 -2.056) (end 1.07 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bfaa8fe-c68c-4a0c-a977-c61bf8a9d2df)) + (fp_line (start 1.07 0.84) (end 1.07 2.056) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ea5608a-71da-4d9a-8048-84c2cf310f0c)) + (fp_line (start 1.11 -2.05) (end 1.11 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d9a99bb-572a-47f4-9611-39fa349a9ef4)) + (fp_line (start 1.11 0.84) (end 1.11 2.05) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 976fb521-6916-4142-b8c8-c6319875e965)) + (fp_line (start 1.15 -2.042) (end 1.15 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2a5c041-5faf-4ed4-bbe7-cfa8381024aa)) + (fp_line (start 1.15 0.84) (end 1.15 2.042) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fae5ca40-52ca-4c6d-a96b-79266356f2b8)) + (fp_line (start 1.19 -2.034) (end 1.19 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be3a530e-4e06-41e1-9cc6-8f5a16c3ea47)) + (fp_line (start 1.19 0.84) (end 1.19 2.034) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a632f3f-fc7b-4e9a-92de-1ce8d74c22b6)) + (fp_line (start 1.23 -2.025) (end 1.23 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33bb6414-c2ce-4b9f-89f7-2bc445b3d519)) + (fp_line (start 1.23 0.84) (end 1.23 2.025) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05420fd8-aec0-48db-83dd-bb4c30e32c53)) + (fp_line (start 1.27 -2.016) (end 1.27 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96e2f0df-6937-4ab3-8ad6-3f310760d919)) + (fp_line (start 1.27 0.84) (end 1.27 2.016) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef882eb4-6d46-45b1-b86e-2aa6f7cb8db7)) + (fp_line (start 1.31 -2.005) (end 1.31 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ef26048-41bf-4231-8b36-300e2f199f09)) + (fp_line (start 1.31 0.84) (end 1.31 2.005) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6513c0a6-336a-4492-a46f-3e064da3c11f)) + (fp_line (start 1.35 -1.994) (end 1.35 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47646a86-9f63-4510-863c-f77fd8cc9872)) + (fp_line (start 1.35 0.84) (end 1.35 1.994) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 408a7eaf-1e40-45af-9410-6dbd967a1edc)) + (fp_line (start 1.39 -1.982) (end 1.39 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fda8e611-abc0-43b9-866f-e8fed46311e9)) + (fp_line (start 1.39 0.84) (end 1.39 1.982) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d691dcb-1f98-4442-9195-db0093e314e5)) + (fp_line (start 1.43 -1.968) (end 1.43 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5635104-db65-4fde-bf40-ef777c13c3da)) + (fp_line (start 1.43 0.84) (end 1.43 1.968) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e6f250e-5b42-4c03-a18e-1ec75b2f64d4)) + (fp_line (start 1.471 -1.954) (end 1.471 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb5fe9a2-96b0-4616-8178-b73be63def0c)) + (fp_line (start 1.471 0.84) (end 1.471 1.954) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e517f60-1695-443c-930d-a5f7e37dfba7)) + (fp_line (start 1.511 -1.94) (end 1.511 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7aeca990-a59a-4e75-819a-d8c0cbab24ac)) + (fp_line (start 1.511 0.84) (end 1.511 1.94) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49b13c3b-46b1-4c4e-b754-5776ea804323)) + (fp_line (start 1.551 -1.924) (end 1.551 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8cb4d6b-fb25-4c4a-99a7-935d9725b17e)) + (fp_line (start 1.551 0.84) (end 1.551 1.924) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f577d519-31f3-40f3-9e65-6c6f8981492c)) + (fp_line (start 1.591 -1.907) (end 1.591 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9ed08fb-c1c3-4cc2-ba7b-7c549315ffe3)) + (fp_line (start 1.591 0.84) (end 1.591 1.907) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 774fd80d-1123-4466-bca8-d74f7bb25216)) + (fp_line (start 1.631 -1.889) (end 1.631 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b21100b-33ae-499c-b2b3-71778169812b)) + (fp_line (start 1.631 0.84) (end 1.631 1.889) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f46b536-6b73-4a81-a4d1-5f4db9ea6cd2)) + (fp_line (start 1.671 -1.87) (end 1.671 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70919bda-016a-4985-9e92-878b73f62034)) + (fp_line (start 1.671 0.84) (end 1.671 1.87) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8ca850e-717b-401d-b567-13ca352a0ebf)) + (fp_line (start 1.711 -1.851) (end 1.711 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dbb3ad0d-d36b-4669-b041-480f2babed5f)) + (fp_line (start 1.711 0.84) (end 1.711 1.851) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c63dda5f-c5f5-4c7d-a7c7-f7cab3a22ffa)) + (fp_line (start 1.751 -1.83) (end 1.751 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af2e8f0d-52fd-47a0-b390-595cdcdedfc6)) + (fp_line (start 1.751 0.84) (end 1.751 1.83) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e038c2a5-cdb0-47c0-bcbc-f5a88399ee1f)) + (fp_line (start 1.791 -1.808) (end 1.791 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a57237e-ba53-4877-a1f0-d0be3988982f)) + (fp_line (start 1.791 0.84) (end 1.791 1.808) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f43bae8e-8ab0-4e7a-9705-36b5ebbbac4b)) + (fp_line (start 1.831 -1.785) (end 1.831 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5a92000-6711-4c9f-abfb-d9eeb682e4ea)) + (fp_line (start 1.831 0.84) (end 1.831 1.785) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 107cd62b-f44c-421d-81cf-6c299599da39)) + (fp_line (start 1.871 -1.76) (end 1.871 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d091971-65ea-496d-9127-312a77dd5acf)) + (fp_line (start 1.871 0.84) (end 1.871 1.76) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 064c4925-bca1-45dc-9a7d-ba3e94ee097a)) + (fp_line (start 1.911 -1.735) (end 1.911 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42ade215-b719-4f06-a89a-48798da2444c)) + (fp_line (start 1.911 0.84) (end 1.911 1.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4b27f99-f22e-4ae4-a18f-de0a16163b64)) + (fp_line (start 1.951 -1.708) (end 1.951 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2add52f-b664-4b8d-bafa-8154f79fc728)) + (fp_line (start 1.951 0.84) (end 1.951 1.708) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a30a96b4-477b-4c5b-9f1f-d3f20955bb0c)) + (fp_line (start 1.991 -1.68) (end 1.991 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c176e61-8e96-491a-9309-f51d101ff6cd)) + (fp_line (start 1.991 0.84) (end 1.991 1.68) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75efe750-cbfe-47aa-a407-626bbac54ac3)) + (fp_line (start 2.031 -1.65) (end 2.031 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8be006b-1338-494e-bad0-f183b3e79ef3)) + (fp_line (start 2.031 0.84) (end 2.031 1.65) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13942a78-0b98-4bcb-b2d4-441224d75bb1)) + (fp_line (start 2.071 -1.619) (end 2.071 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 251f487d-6b84-4a7f-8b25-c0154f6cb752)) + (fp_line (start 2.071 0.84) (end 2.071 1.619) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07f6660a-1a15-413b-be87-49c52b60cb6c)) + (fp_line (start 2.111 -1.587) (end 2.111 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e852ac8-1a4f-437d-91df-b9384a8ca9ec)) + (fp_line (start 2.111 0.84) (end 2.111 1.587) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20915dfc-fc83-4314-9831-c61e9e478e7c)) + (fp_line (start 2.151 -1.552) (end 2.151 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6273d68-c52e-4e77-94cd-f377ba7ddacc)) + (fp_line (start 2.151 0.84) (end 2.151 1.552) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1f2e321-0b89-49ae-980a-572791c626d8)) + (fp_line (start 2.191 -1.516) (end 2.191 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 011dd8ba-308a-4e1b-9aa8-ae820ba37b7d)) + (fp_line (start 2.191 0.84) (end 2.191 1.516) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31e303b6-dd44-4cff-9742-fe5d26ba6845)) + (fp_line (start 2.231 -1.478) (end 2.231 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9231f70c-c885-4d4c-8ce2-716dd1d693fc)) + (fp_line (start 2.231 0.84) (end 2.231 1.478) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e30b71b4-57eb-4b27-8880-b1b0d7eca941)) + (fp_line (start 2.271 -1.438) (end 2.271 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b6d5364-252b-430e-aed6-509734e304b2)) + (fp_line (start 2.271 0.84) (end 2.271 1.438) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4d42ba2-6811-4c26-82ec-8ad8abaf7b6c)) + (fp_line (start 2.311 -1.396) (end 2.311 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0bb3872-95e3-4207-8d43-a94c0e70d865)) + (fp_line (start 2.311 0.84) (end 2.311 1.396) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50d39f70-f1b5-40a1-be58-bd1a55a7082c)) + (fp_line (start 2.351 -1.351) (end 2.351 1.351) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 357d70ba-1f08-4217-a457-1e93ab558560)) + (fp_line (start 2.391 -1.304) (end 2.391 1.304) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2edbeaf-ba0a-48f6-8106-cef069f51f57)) + (fp_line (start 2.431 -1.254) (end 2.431 1.254) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b80933bb-b285-4b03-8fed-61fc56960de6)) + (fp_line (start 2.471 -1.2) (end 2.471 1.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c0bf569-6a79-4e9e-8144-033a591c0aed)) + (fp_line (start 2.511 -1.142) (end 2.511 1.142) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 909e3ccc-1dfd-4844-a59f-ae51ec3aceb1)) + (fp_line (start 2.551 -1.08) (end 2.551 1.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2835419-0401-4cba-9919-5b6bbc504385)) + (fp_line (start 2.591 -1.013) (end 2.591 1.013) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 905b8885-a63e-41e0-a6be-ccf02f0a765b)) + (fp_line (start 2.631 -0.94) (end 2.631 0.94) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d83cf546-d687-49e4-80c7-be9d93d7cd9b)) + (fp_line (start 2.671 -0.859) (end 2.671 0.859) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a468c98a-86cf-475f-a06b-0ef8b73de21b)) + (fp_line (start 2.711 -0.768) (end 2.711 0.768) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15192538-255a-4831-870c-fbea40f6eb38)) + (fp_line (start 2.751 -0.664) (end 2.751 0.664) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47c6f926-6725-4e24-80c7-e799f9268b52)) + (fp_line (start 2.791 -0.537) (end 2.791 0.537) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87185e00-fd8c-46f3-a3ad-00e0a1f7a645)) + (fp_line (start 2.831 -0.37) (end 2.831 0.37) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 066a91bb-cb9c-4c9d-ac0a-d693d7981173)) + (fp_circle (center 0.75 0) (end 2.87 0) + (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 693d3f1a-ae1e-443c-a1a3-572555b7c2d5)) + (fp_circle (center 0.75 0) (end 3 0) + (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp b67decdd-d58a-4615-a474-6b9523979c8d)) + (fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07ce1210-50e9-4ea6-9983-f7ca14f5287a)) + (fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0fbf354-a71f-419f-873b-69ec216c5ed8)) + (fp_circle (center 0.75 0) (end 2.75 0) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e699f2fa-aa39-4f29-9af0-ccc632aa20e2)) + (pad "1" thru_hole rect (at 0 0 270) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") + (net 4 "/Thermistor1") (pintype "passive") (tstamp b5517fdc-beba-4214-9aba-4d1669756b0a)) + (pad "2" thru_hole circle (at 1.5 0 270) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pintype "passive") (tstamp b1bb5927-8e04-497f-89d5-b21ed21f48ab)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu") + (tstamp b2e563de-21a9-4b46-b015-84626a25d53f) + (at 29.8 43.1 -90) + (descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Unpolarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/936a1237-6553-437f-99c4-c69cbe5a50ac") + (attr through_hole) + (fp_text reference "C2" (at 0.75 -3.25 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0980befa-8736-4034-8aeb-620fc46b9e00) + ) + (fp_text value "4.7uF" (at 0.75 3.25 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 337e1c5f-f001-4f3b-9575-501ae8e243df) + ) + (fp_text user "${REFERENCE}" (at 0.75 0 90) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp e7aac893-e547-4a3b-9f23-ef0a52dc3c1d) + ) + (fp_line (start -1.519801 -1.195) (end -1.119801 -1.195) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e002efc8-9800-4d3c-a190-d17272b8f48a)) + (fp_line (start -1.319801 -1.395) (end -1.319801 -0.995) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d97ccd3e-6117-448a-b300-1182fe18c008)) + (fp_line (start 0.75 -2.08) (end 0.75 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43106c41-5894-4893-8f3f-ebd4fbb453d5)) + (fp_line (start 0.75 0.84) (end 0.75 2.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19c75061-cdd6-4eef-8b83-818b53124527)) + (fp_line (start 0.79 -2.08) (end 0.79 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efd26eb5-0d47-4f20-a0c3-1f32b6dce0df)) + (fp_line (start 0.79 0.84) (end 0.79 2.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dd6d431-8531-4a75-88df-234e5596f869)) + (fp_line (start 0.83 -2.079) (end 0.83 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef0d90e7-0480-402c-aef4-2a5dc58d035a)) + (fp_line (start 0.83 0.84) (end 0.83 2.079) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b081fe2a-d039-4ded-a074-70723895e295)) + (fp_line (start 0.87 -2.077) (end 0.87 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aabdebb7-7c5f-4497-b8ad-d97472b225d8)) + (fp_line (start 0.87 0.84) (end 0.87 2.077) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ac2d849-8b60-49a6-896a-e8146962d049)) + (fp_line (start 0.91 -2.074) (end 0.91 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad0f0f86-82b3-413d-9b21-1a88840517fc)) + (fp_line (start 0.91 0.84) (end 0.91 2.074) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2940cfed-31f2-48d9-8ee8-ca6a5e1183ec)) + (fp_line (start 0.95 -2.071) (end 0.95 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a304b973-64a4-4aea-88d7-bfef15c6b312)) + (fp_line (start 0.95 0.84) (end 0.95 2.071) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a35fa584-a71f-454e-b0a4-5286a484254c)) + (fp_line (start 0.99 -2.067) (end 0.99 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f5bc133-20e9-4693-8549-9a4c028ece72)) + (fp_line (start 0.99 0.84) (end 0.99 2.067) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 924874a5-f79e-4030-b107-c79a27d4f556)) + (fp_line (start 1.03 -2.062) (end 1.03 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b6c950a-2074-435b-9bfc-3fdde3ea119e)) + (fp_line (start 1.03 0.84) (end 1.03 2.062) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd96fcd7-0ef8-4521-8451-9bad7e6bf356)) + (fp_line (start 1.07 -2.056) (end 1.07 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 251699fe-0d47-4603-9276-54a78c2371e4)) + (fp_line (start 1.07 0.84) (end 1.07 2.056) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 316390d2-7b40-44e1-834e-9caf74d1edc1)) + (fp_line (start 1.11 -2.05) (end 1.11 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45c134a8-c120-4c0b-8f27-2236e2bf0817)) + (fp_line (start 1.11 0.84) (end 1.11 2.05) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0c490b4-92b7-4eba-90be-32f45c69011d)) + (fp_line (start 1.15 -2.042) (end 1.15 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f9f2b93-e277-43e9-89c9-3bae0c80d680)) + (fp_line (start 1.15 0.84) (end 1.15 2.042) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b720f687-600e-4e2d-8519-f45bbfa1e366)) + (fp_line (start 1.19 -2.034) (end 1.19 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ed8228e-29bd-49dd-b6f1-1f780bf555ce)) + (fp_line (start 1.19 0.84) (end 1.19 2.034) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26da472f-d49b-4c6b-85c9-a89669e7f10c)) + (fp_line (start 1.23 -2.025) (end 1.23 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bff5942c-73cb-47cd-a7e1-198b777b673a)) + (fp_line (start 1.23 0.84) (end 1.23 2.025) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63df9e04-26cf-44c6-95e4-81d2e7fa62e0)) + (fp_line (start 1.27 -2.016) (end 1.27 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b53ccec4-5c68-4772-8b1a-89190884cfd8)) + (fp_line (start 1.27 0.84) (end 1.27 2.016) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 523bf72e-f547-4b53-a317-275a46cf8d8a)) + (fp_line (start 1.31 -2.005) (end 1.31 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 873ecde0-01ee-4fdf-920d-07107d5b0f56)) + (fp_line (start 1.31 0.84) (end 1.31 2.005) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f583a4b-b3bf-4cc7-9ce3-63a2238de3b4)) + (fp_line (start 1.35 -1.994) (end 1.35 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c046c1a3-2033-457e-a0b3-68a9917f6c6a)) + (fp_line (start 1.35 0.84) (end 1.35 1.994) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce2a91f2-8600-47d5-8f18-9d445e084d57)) + (fp_line (start 1.39 -1.982) (end 1.39 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70580e02-f8bf-43c2-94e9-8841cc638524)) + (fp_line (start 1.39 0.84) (end 1.39 1.982) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0ca4d5d-5cdd-4f52-816c-b61b126ce31a)) + (fp_line (start 1.43 -1.968) (end 1.43 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c94f4048-525c-46d7-b9b2-8e2d7f545719)) + (fp_line (start 1.43 0.84) (end 1.43 1.968) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1583a1b0-06ca-4646-9df2-b27ac04fd36b)) + (fp_line (start 1.471 -1.954) (end 1.471 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd7fdd50-e3b7-4ede-afa0-6f17132c78cf)) + (fp_line (start 1.471 0.84) (end 1.471 1.954) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc59e5cf-5520-40c1-a220-33dc99a6e386)) + (fp_line (start 1.511 -1.94) (end 1.511 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 921e801d-7623-4cb2-b50d-84df06c2d4cc)) + (fp_line (start 1.511 0.84) (end 1.511 1.94) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f4ee0f8-7bc0-4438-8b6a-18d70b1cee13)) + (fp_line (start 1.551 -1.924) (end 1.551 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 431c879c-e479-4083-9c10-5078b45a9881)) + (fp_line (start 1.551 0.84) (end 1.551 1.924) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6467e2f9-81c0-459f-91d7-8b812f02e083)) + (fp_line (start 1.591 -1.907) (end 1.591 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37fe9af6-2fc9-4144-a719-308e1874a502)) + (fp_line (start 1.591 0.84) (end 1.591 1.907) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24acf77d-c928-4935-8fa4-4b603f066e5f)) + (fp_line (start 1.631 -1.889) (end 1.631 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28bef6ee-6cb8-4627-a3ff-c9865e658340)) + (fp_line (start 1.631 0.84) (end 1.631 1.889) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3f08c8a-e63d-4230-b595-b6804514c188)) + (fp_line (start 1.671 -1.87) (end 1.671 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad9669ec-e83e-46a3-b533-9bf41fab941a)) + (fp_line (start 1.671 0.84) (end 1.671 1.87) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ac7b530-a607-4410-b8a2-214b65ff8e49)) + (fp_line (start 1.711 -1.851) (end 1.711 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 547866d8-b45b-4ce0-8925-fe58ee71ec32)) + (fp_line (start 1.711 0.84) (end 1.711 1.851) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b214d19-70ae-472c-9597-815be53f651b)) + (fp_line (start 1.751 -1.83) (end 1.751 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 904900b1-f1b0-47d2-aa41-90e57ce7c733)) + (fp_line (start 1.751 0.84) (end 1.751 1.83) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff863fae-f901-4872-8eb4-74005e5b3efd)) + (fp_line (start 1.791 -1.808) (end 1.791 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 146d4783-d53b-4ab2-a21c-2526e43238e7)) + (fp_line (start 1.791 0.84) (end 1.791 1.808) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96fc9d88-0695-4eb2-8fd3-35e93e82148e)) + (fp_line (start 1.831 -1.785) (end 1.831 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 165aa4fd-9f42-4aa0-a288-b60b14a42585)) + (fp_line (start 1.831 0.84) (end 1.831 1.785) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 266428ed-ee38-4b1d-9c4c-f8981b607f23)) + (fp_line (start 1.871 -1.76) (end 1.871 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac1161c3-141f-456d-9bd2-273801cf98d7)) + (fp_line (start 1.871 0.84) (end 1.871 1.76) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf33785d-e118-4872-9b12-dba96ed92837)) + (fp_line (start 1.911 -1.735) (end 1.911 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aeff4fe6-8ea3-4901-bf8b-855834cfc54a)) + (fp_line (start 1.911 0.84) (end 1.911 1.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db375fab-60cd-4bf1-9ede-652c08a4be92)) + (fp_line (start 1.951 -1.708) (end 1.951 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp baf96171-36fc-4145-91cd-525ddca3fbcf)) + (fp_line (start 1.951 0.84) (end 1.951 1.708) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba34389b-fdca-48b3-ae02-5714197a6e0c)) + (fp_line (start 1.991 -1.68) (end 1.991 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f81e8816-ce79-4560-b65a-e984ea3f1dfe)) + (fp_line (start 1.991 0.84) (end 1.991 1.68) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62a33ab6-009f-4d8d-9efb-1ee4fa8a4ab6)) + (fp_line (start 2.031 -1.65) (end 2.031 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a1fc994-0601-45ac-98a9-8f1cf69aa672)) + (fp_line (start 2.031 0.84) (end 2.031 1.65) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f47b2360-5410-420c-a770-ed4dcfc79b70)) + (fp_line (start 2.071 -1.619) (end 2.071 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd17604c-6fa6-442f-88d9-14d5aa6ff7ca)) + (fp_line (start 2.071 0.84) (end 2.071 1.619) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af3c7f9e-16b1-42a2-bf51-a0b82adac15e)) + (fp_line (start 2.111 -1.587) (end 2.111 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0fb8e73-242b-4047-9f90-98e0b04aea67)) + (fp_line (start 2.111 0.84) (end 2.111 1.587) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33f5a495-3f7f-425d-825a-a79ed92db86b)) + (fp_line (start 2.151 -1.552) (end 2.151 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2aafe8a-d869-47c6-804e-90ec02cb9f43)) + (fp_line (start 2.151 0.84) (end 2.151 1.552) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a1716ba-434c-4048-b849-0ac7fae89891)) + (fp_line (start 2.191 -1.516) (end 2.191 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a55dd1fa-9b90-4295-9c51-690589100616)) + (fp_line (start 2.191 0.84) (end 2.191 1.516) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e92256d-3031-40b9-8de2-8e206b818252)) + (fp_line (start 2.231 -1.478) (end 2.231 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d05eee29-2f9d-4a27-9130-7249bf0748cc)) + (fp_line (start 2.231 0.84) (end 2.231 1.478) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43759663-be32-48fe-9eab-ca4ed13560e6)) + (fp_line (start 2.271 -1.438) (end 2.271 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32c81f8e-6fa9-498d-a089-3f1d02e799d1)) + (fp_line (start 2.271 0.84) (end 2.271 1.438) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3cd3b498-5192-4cd8-8757-9042e96edd7c)) + (fp_line (start 2.311 -1.396) (end 2.311 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cb4adc3-8b6c-47a6-8c00-5172c2e9bbcf)) + (fp_line (start 2.311 0.84) (end 2.311 1.396) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 806a7344-dade-47bf-ad8a-e9b0776834d6)) + (fp_line (start 2.351 -1.351) (end 2.351 1.351) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c55d8f81-2942-42b5-b9a5-cd242ea1cbf6)) + (fp_line (start 2.391 -1.304) (end 2.391 1.304) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7852ae13-1647-4a74-a8d7-94ddd3fdbbdd)) + (fp_line (start 2.431 -1.254) (end 2.431 1.254) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bdca2208-f3c4-401b-bfbb-e9c78908ae69)) + (fp_line (start 2.471 -1.2) (end 2.471 1.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76660a69-1b2d-48de-88fa-15941904e488)) + (fp_line (start 2.511 -1.142) (end 2.511 1.142) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21deecf8-24c0-40a7-8af4-197d42d5b68f)) + (fp_line (start 2.551 -1.08) (end 2.551 1.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3434d680-65eb-4365-8ba7-60a9d1bb682b)) + (fp_line (start 2.591 -1.013) (end 2.591 1.013) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 886d99ed-c671-4a72-b92b-31240b70ee30)) + (fp_line (start 2.631 -0.94) (end 2.631 0.94) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e5d246c-113f-48c2-a7f7-ce3f8b4ec6fb)) + (fp_line (start 2.671 -0.859) (end 2.671 0.859) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6194f84e-9d4b-429b-9037-6bbfaf881f8e)) + (fp_line (start 2.711 -0.768) (end 2.711 0.768) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0177609-e3ea-4c06-94bd-41f46195649d)) + (fp_line (start 2.751 -0.664) (end 2.751 0.664) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a9d9bf2-b672-406b-b314-9dadec97798d)) + (fp_line (start 2.791 -0.537) (end 2.791 0.537) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05721d48-6ea8-481f-9072-68eea3c732ce)) + (fp_line (start 2.831 -0.37) (end 2.831 0.37) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f47dfb4-f884-4ad2-8b8e-4c0b598c6100)) + (fp_circle (center 0.75 0) (end 2.87 0) + (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5375b7b5-7f08-4bb8-8704-524d22846f65)) + (fp_circle (center 0.75 0) (end 3 0) + (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 383650f6-4396-4e7b-a210-aa640e426242)) + (fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 327b99e5-135a-4e06-8982-67173008af9c)) + (fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a57e3ae8-a40e-4727-a71c-f9f7805cb705)) + (fp_circle (center 0.75 0) (end 2.75 0) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp c81fc1f4-157e-4793-b0c6-959d4c7210ad)) + (pad "1" thru_hole rect (at 0 0 270) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") + (net 3 "/Thermistor2") (pintype "passive") (tstamp 4f518754-4226-4893-bb1d-e5c7f9a7c4b2)) + (pad "2" thru_hole circle (at 1.5 0 270) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pintype "passive") (tstamp 02200da0-7989-4332-adf5-ad0273aee2ce)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_2x13_P2.54mm_Vertical" (layer "F.Cu") + (tstamp b2fb348a-d955-42df-9da7-f055591440f8) + (at 54.68 58.16 -90) + (descr "Through hole straight pin header, 2x13, 2.54mm pitch, double rows") + (tags "Through hole pin header THT 2x13 2.54mm double row") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, double row, 02x16, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)") + (property "ki_keywords" "connector") + (path "/82d28cde-a9a2-4692-b138-6ff72a7c0c14") + (attr through_hole) + (fp_text reference "J1" (at 1.27 -2.33 -90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a87dcff3-891f-4c84-bcd2-50e5af307a1b) + ) + (fp_text value "Conn_02x16_Top_Bottom" (at 1.27 32.81 -90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 381bdf83-cde8-41e2-be6c-bca8086fb039) + ) + (fp_text user "${REFERENCE}" (at 1.27 15.24) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0ef5b0ef-883e-4be8-be79-38a0e84a29fa) + ) + (fp_line (start -1.33 -1.33) (end 0 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b8c8cdd-4198-4e4c-9f11-3fd920b8104b)) + (fp_line (start -1.33 0) (end -1.33 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80093028-70aa-48f0-8412-e4ea8d6f71e0)) + (fp_line (start -1.33 1.27) (end -1.33 31.81) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3a314d0-b718-44c7-9046-000f3be1eae7)) + (fp_line (start -1.33 1.27) (end 1.27 1.27) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbf9bc93-45b4-4352-a479-dfad87111b8d)) + (fp_line (start -1.33 31.81) (end 3.87 31.81) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56a8fff1-653a-406c-a750-a30013e2c71a)) + (fp_line (start 1.27 -1.33) (end 3.87 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf515d39-f947-4936-9d22-25fe17531402)) + (fp_line (start 1.27 1.27) (end 1.27 -1.33) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3934f508-c185-4941-bd21-34a107b8c901)) + (fp_line (start 3.87 -1.33) (end 3.87 31.81) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ac5d650-2848-4fd6-9997-d9cea599fded)) + (fp_line (start -1.8 -1.8) (end -1.8 32.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78837492-1272-4255-a92d-416e534460e1)) + (fp_line (start -1.8 32.25) (end 4.35 32.25) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a1ba632-6198-4ee9-a757-15a05adad361)) + (fp_line (start 4.35 -1.8) (end -1.8 -1.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61600a76-9b27-4668-af39-0e9299102ef3)) + (fp_line (start 4.35 32.25) (end 4.35 -1.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ac7b464-1905-4370-9f94-9d7f7db00728)) + (fp_line (start -1.27 0) (end 0 -1.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65d1e747-8921-48a3-acaa-2f53687cbb59)) + (fp_line (start -1.27 31.75) (end -1.27 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8100a14c-6f56-47ac-a61f-57a8837d124f)) + (fp_line (start 0 -1.27) (end 3.81 -1.27) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eeaaaf84-7f38-4b44-8ecd-878c05259299)) + (fp_line (start 3.81 -1.27) (end 3.81 31.75) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94b4b36f-dff8-4b09-a111-4511e25a4a4a)) + (fp_line (start 3.81 31.75) (end -1.27 31.75) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0165a6d8-c90c-4943-bc94-dbfe56cdd4a4)) + (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 11 "Net-(J1-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 3be087e0-b345-41d2-b4c5-e92b2fca91f9)) + (pad "2" thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_2") (pintype "passive") (tstamp a4dec7b9-6bdf-43ce-86e9-df31f992a36a)) + (pad "3" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 12 "Net-(J1-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 3805e6f8-c205-46d9-95c0-0d42dd8e6ba9)) + (pad "4" thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_4") (pintype "passive") (tstamp 79b9dc84-4498-4b4a-b788-e326f2e266bd)) + (pad "5" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 13 "Net-(J1-Pin_5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 916e48cb-6e55-41a0-b1a8-d71a0c5058f9)) + (pad "6" thru_hole oval (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_6") (pintype "passive") (tstamp 5bcc3f03-675b-4308-89ad-626c4986ec4c)) + (pad "7" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 14 "Net-(J1-Pin_7)") (pinfunction "Pin_7") (pintype "passive") (tstamp fe9ce93a-a14d-44fd-8a8b-2e4de0b68347)) + (pad "8" thru_hole oval (at 2.54 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_8") (pintype "passive") (tstamp afc0c60a-4174-44e3-a58e-d7dd0b8a8a72)) + (pad "9" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 15 "Net-(J1-Pin_9)") (pinfunction "Pin_9") (pintype "passive") (tstamp f0459571-17ed-46a0-87ce-e2a32459513b)) + (pad "10" thru_hole oval (at 2.54 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_10") (pintype "passive") (tstamp c935699c-b293-4e17-a0a0-31bc01adfc22)) + (pad "11" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 16 "Net-(J1-Pin_11)") (pinfunction "Pin_11") (pintype "passive") (tstamp 9d1e602f-cbcc-4a51-944d-c7b04bbcab55)) + (pad "12" thru_hole oval (at 2.54 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_12") (pintype "passive") (tstamp ef068e12-6d08-4851-a844-1a2118f9da14)) + (pad "13" thru_hole oval (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 17 "Net-(J1-Pin_13)") (pinfunction "Pin_13") (pintype "passive") (tstamp 6c9dd0f2-833e-4b75-8ffc-f6aedbd0cb65)) + (pad "14" thru_hole oval (at 2.54 15.24 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_14") (pintype "passive") (tstamp e943a3ca-f8ec-40c5-b5e7-d89ee0075049)) + (pad "15" thru_hole oval (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 18 "Net-(J1-Pin_15)") (pinfunction "Pin_15") (pintype "passive") (tstamp aa32cd8e-2c1a-4e1e-86ff-025cda80263a)) + (pad "16" thru_hole oval (at 2.54 17.78 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_16") (pintype "passive") (tstamp 933d328b-e159-4a79-aaf8-3a6e074a7cba)) + (pad "17" thru_hole oval (at 0 20.32 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 19 "Net-(J1-Pin_17)") (pinfunction "Pin_17") (pintype "passive") (tstamp 07d7c2e5-fd6a-4800-b8f7-ddae193380c2)) + (pad "18" thru_hole oval (at 2.54 20.32 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_18") (pintype "passive") (tstamp cbb51075-ed2b-4696-9c3d-4b0346731ec5)) + (pad "19" thru_hole oval (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 20 "Net-(J1-Pin_19)") (pinfunction "Pin_19") (pintype "passive") (tstamp 94eabde0-6d68-487a-8f6d-c3b202e1db15)) + (pad "20" thru_hole oval (at 2.54 22.86 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_20") (pintype "passive") (tstamp d4417ec7-b3a1-499c-b45c-eb3505bd54d2)) + (pad "21" thru_hole oval (at 0 25.4 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 21 "Net-(J1-Pin_21)") (pinfunction "Pin_21") (pintype "passive") (tstamp d6c5dba8-5f4a-4948-aa06-e040be13741d)) + (pad "22" thru_hole oval (at 2.54 25.4 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_22") (pintype "passive") (tstamp 4623e78c-e70c-4595-9d20-b8846e7c7d77)) + (pad "23" thru_hole oval (at 0 27.94 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 22 "Net-(J1-Pin_23)") (pinfunction "Pin_23") (pintype "passive") (tstamp caa5bd4c-6ed4-4af9-9281-37fc20d0d0e3)) + (pad "24" thru_hole oval (at 2.54 27.94 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_24") (pintype "passive") (tstamp 84996ecd-f5e5-4df5-9812-aef8cb46f93d)) + (pad "25" thru_hole oval (at 0 30.48 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 23 "Net-(J1-Pin_25)") (pinfunction "Pin_25") (pintype "passive") (tstamp 7e019b2b-fa8f-441f-8f82-74f61484edab)) + (pad "26" thru_hole oval (at 2.54 30.48 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pinfunction "Pin_26") (pintype "passive") (tstamp 8425b7db-a36b-4b36-8672-af38abe0a61d)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x13_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (layer "F.Cu") + (tstamp b66da096-a6d5-4150-812d-c8f9f0d6f8ce) + (at 30.04 39 180) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Resistor symbol for simulation only") + (property "ki_keywords" "resistor simulation") + (path "/dde6c428-e62b-43b4-8dab-a3d2fe132f76") + (attr through_hole) + (fp_text reference "T1R2" (at 2.54 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2c82357b-a956-440d-9f87-8a42878fb2cb) + ) + (fp_text value "4.7k" (at 2.54 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5a5f06aa-309e-4162-8b73-be1d2394efe9) + ) + (fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp d5f78447-4733-40ec-8248-0832f0a16b77) + ) + (fp_line (start 0.62 -0.92) (end 4.46 -0.92) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d684b7f-2b3b-44aa-ae5b-8c0696930a69)) + (fp_line (start 0.62 0.92) (end 4.46 0.92) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb0eaaae-8764-4646-b825-dafcbdf078d1)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3b48334f-723d-459d-8322-a28a74884e3f)) + (fp_line (start -0.95 1.05) (end 6.03 1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a0451c0-dbbb-413e-9a41-f3347ed61c5a)) + (fp_line (start 6.03 -1.05) (end -0.95 -1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38845e49-d697-4de0-a589-6c5e8bae7d5e)) + (fp_line (start 6.03 1.05) (end 6.03 -1.05) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9961c5a-e242-4bbb-8ea6-c21b832d7b28)) + (fp_line (start 0 0) (end 0.74 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 678f55cb-a22e-4422-9e73-bcf86925691a)) + (fp_line (start 0.74 -0.8) (end 0.74 0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c506450-3abb-4c75-be59-37d4b0f1ac85)) + (fp_line (start 0.74 0.8) (end 4.34 0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8b1f97d-eb49-4301-a390-03cceb4b6b35)) + (fp_line (start 4.34 -0.8) (end 0.74 -0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41a69bd0-8cde-4d69-a7d2-899aeb1b8551)) + (fp_line (start 4.34 0.8) (end 4.34 -0.8) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61f1ad56-74d8-4020-accb-6af599038557)) + (fp_line (start 5.08 0) (end 4.34 0) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00f477a2-cb81-407a-9b9a-db91b7e441ee)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 6 "/3.3v") (pintype "passive") (tstamp aaebcc71-e05b-420b-9bb1-32d42b4dedff)) + (pad "2" thru_hole oval (at 5.08 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") + (net 3 "/Thermistor2") (pintype "passive") (tstamp 9c9b1672-fb53-4a2a-b22c-80356a29f3e3)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu") + (tstamp d6e21483-990b-49ba-8b42-5dda338547e9) + (at 30 52 -90) + (descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Unpolarized capacitor") + (property "ki_keywords" "cap capacitor") + (path "/c78057eb-cff8-4f94-95d0-a1fe2b8e2231") + (attr through_hole) + (fp_text reference "C4" (at 0.75 -3.25 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3b1d6031-0431-4cfb-8f2e-f2868e4cea31) + ) + (fp_text value "4.7uF" (at 0.75 3.25 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 22638b9d-101d-4b1e-85e8-aa004e69a783) + ) + (fp_text user "${REFERENCE}" (at 0.75 0 90) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp 7f952567-2b74-456a-b954-f28ba775b77c) + ) + (fp_line (start -1.519801 -1.195) (end -1.119801 -1.195) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8608a457-7cd9-4493-9489-c13aca4c89c5)) + (fp_line (start -1.319801 -1.395) (end -1.319801 -0.995) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c497e25e-de2d-432c-ae38-3411b4840f0a)) + (fp_line (start 0.75 -2.08) (end 0.75 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40e2c313-c954-46ff-9175-c29fc16d3f21)) + (fp_line (start 0.75 0.84) (end 0.75 2.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4725d38a-7328-4d57-b4f4-6f7d97b1d57d)) + (fp_line (start 0.79 -2.08) (end 0.79 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bcb8ad6b-db81-4468-a6f0-2072898bf11f)) + (fp_line (start 0.79 0.84) (end 0.79 2.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8fee2d2-a59e-4b93-a1df-4b5e2be76b1b)) + (fp_line (start 0.83 -2.079) (end 0.83 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff5b587e-3990-403c-91b1-7b06d6fa3baf)) + (fp_line (start 0.83 0.84) (end 0.83 2.079) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72d2f92e-0389-4cdb-b4dc-883d8f6bf548)) + (fp_line (start 0.87 -2.077) (end 0.87 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11c197fb-11df-4f06-b960-ce079f53b462)) + (fp_line (start 0.87 0.84) (end 0.87 2.077) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4512f5bc-8348-46e9-a5c0-c8e37e1f4fef)) + (fp_line (start 0.91 -2.074) (end 0.91 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26a92948-f5e4-4b11-9f7f-6a445960a1e3)) + (fp_line (start 0.91 0.84) (end 0.91 2.074) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d963a46-7f32-449a-b39d-f96f12cf114f)) + (fp_line (start 0.95 -2.071) (end 0.95 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5be68ee-79ec-441d-b114-1dce766865a5)) + (fp_line (start 0.95 0.84) (end 0.95 2.071) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4cc98dca-9b93-4e4a-9d35-7b1b4f814e1b)) + (fp_line (start 0.99 -2.067) (end 0.99 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce2fcf33-a791-4b90-ac4a-3e15dbfd98f1)) + (fp_line (start 0.99 0.84) (end 0.99 2.067) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83715915-0f3d-45f5-b64b-6e6a3d4d0c1a)) + (fp_line (start 1.03 -2.062) (end 1.03 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9620fde3-1bd2-474d-915f-1bedc4e695ce)) + (fp_line (start 1.03 0.84) (end 1.03 2.062) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a89afaf0-c98a-4b43-a103-03f428dc67fe)) + (fp_line (start 1.07 -2.056) (end 1.07 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11ff24ec-a93c-4e36-ad17-5a0878bc7a2e)) + (fp_line (start 1.07 0.84) (end 1.07 2.056) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp edaae575-dd89-4ef0-9c97-24c160f894c9)) + (fp_line (start 1.11 -2.05) (end 1.11 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb33d6c2-6c1b-434b-9aeb-87ce2acdb14e)) + (fp_line (start 1.11 0.84) (end 1.11 2.05) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d135a8f-35da-4103-ac2d-20a214082141)) + (fp_line (start 1.15 -2.042) (end 1.15 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc4a24dd-af76-433b-b20e-f2b175f2710b)) + (fp_line (start 1.15 0.84) (end 1.15 2.042) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37386b62-52c9-405f-b9a9-e2b116fac935)) + (fp_line (start 1.19 -2.034) (end 1.19 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92d61aaf-0401-4291-bece-5f798e2ee281)) + (fp_line (start 1.19 0.84) (end 1.19 2.034) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd4b636a-e1a7-4f6e-ae92-ed7c8520e682)) + (fp_line (start 1.23 -2.025) (end 1.23 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5db5b926-bf9f-44e7-9c80-180895c02a30)) + (fp_line (start 1.23 0.84) (end 1.23 2.025) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cabd608-ff7c-4933-ba9e-258abcaa7143)) + (fp_line (start 1.27 -2.016) (end 1.27 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 283f6186-238d-4b83-aaea-6d4d74cf5f0c)) + (fp_line (start 1.27 0.84) (end 1.27 2.016) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff94e0a4-092c-485d-86a7-ca86832ecf11)) + (fp_line (start 1.31 -2.005) (end 1.31 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a48de28-3a12-4605-98c6-a175987544e0)) + (fp_line (start 1.31 0.84) (end 1.31 2.005) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 383a403a-e838-4138-b04e-80e9e5e753b0)) + (fp_line (start 1.35 -1.994) (end 1.35 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1109ae3c-da91-4b02-a6e8-9b9439ff846a)) + (fp_line (start 1.35 0.84) (end 1.35 1.994) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7dacd27b-2f30-44d4-a87a-c441c096cd35)) + (fp_line (start 1.39 -1.982) (end 1.39 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d43e7c10-2565-41de-a077-5a8d9d830110)) + (fp_line (start 1.39 0.84) (end 1.39 1.982) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eab8e574-d5d5-4b40-a594-694620b658c4)) + (fp_line (start 1.43 -1.968) (end 1.43 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f93c84d7-227f-4a4d-b9a3-39f6051bb21f)) + (fp_line (start 1.43 0.84) (end 1.43 1.968) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06bcf843-3425-4d3b-bd03-cc025b68ede7)) + (fp_line (start 1.471 -1.954) (end 1.471 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d51d3b8a-2864-48e1-8ab4-2be639935e04)) + (fp_line (start 1.471 0.84) (end 1.471 1.954) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2c51f52-bba8-4b66-918d-26c49c3fde50)) + (fp_line (start 1.511 -1.94) (end 1.511 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0af26e4a-a88c-4693-95b9-9ea23ff3b185)) + (fp_line (start 1.511 0.84) (end 1.511 1.94) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf6b68f9-bba8-4270-a281-0711a4e05b05)) + (fp_line (start 1.551 -1.924) (end 1.551 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20c202ee-fea9-447a-8991-93e2247f176d)) + (fp_line (start 1.551 0.84) (end 1.551 1.924) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8cba998-90ca-4cfa-9df8-57ee5c00d15f)) + (fp_line (start 1.591 -1.907) (end 1.591 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7c230c2-b841-4c06-9478-fb97f81bce3f)) + (fp_line (start 1.591 0.84) (end 1.591 1.907) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9af196a-c441-4e70-b328-a7638e275821)) + (fp_line (start 1.631 -1.889) (end 1.631 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a79516d-7b60-4675-bde3-239e488a1b67)) + (fp_line (start 1.631 0.84) (end 1.631 1.889) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d936b38c-5a44-4a13-a901-e5069950a755)) + (fp_line (start 1.671 -1.87) (end 1.671 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f1591af-1843-43db-902c-5332df34e8f6)) + (fp_line (start 1.671 0.84) (end 1.671 1.87) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d521d55-f84b-421b-b4b3-8c399cf42952)) + (fp_line (start 1.711 -1.851) (end 1.711 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f47643a-1502-4e9b-a415-fe0fa6ab775d)) + (fp_line (start 1.711 0.84) (end 1.711 1.851) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f55fafc7-379b-4c23-8b38-7beb8a128b2e)) + (fp_line (start 1.751 -1.83) (end 1.751 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18efdf27-d216-40f6-9ccf-01f7a393297e)) + (fp_line (start 1.751 0.84) (end 1.751 1.83) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 038e0bd5-05da-428a-8042-254ba74b1fb9)) + (fp_line (start 1.791 -1.808) (end 1.791 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0fcf389-3976-450d-8f63-a7bd0b444250)) + (fp_line (start 1.791 0.84) (end 1.791 1.808) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93b0be0b-03a0-427a-aec0-027b89341327)) + (fp_line (start 1.831 -1.785) (end 1.831 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45f69bce-2df4-4edc-858c-ed3856d1134c)) + (fp_line (start 1.831 0.84) (end 1.831 1.785) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9040aae9-7368-49d7-bb79-ffbc7928f20d)) + (fp_line (start 1.871 -1.76) (end 1.871 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3b424e5-6d43-4928-928b-8157e81c9934)) + (fp_line (start 1.871 0.84) (end 1.871 1.76) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a68be59a-5f78-47b0-8df8-dc402898e1db)) + (fp_line (start 1.911 -1.735) (end 1.911 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31dfcff3-5f4b-4390-899b-58fdb9bdcddb)) + (fp_line (start 1.911 0.84) (end 1.911 1.735) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a43a75d-8a7e-4afb-887c-851f7c89bb11)) + (fp_line (start 1.951 -1.708) (end 1.951 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79b2ea21-1da8-48dc-b269-c6175a89142a)) + (fp_line (start 1.951 0.84) (end 1.951 1.708) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb3b7e24-4b30-432c-a955-fa920a15cbd8)) + (fp_line (start 1.991 -1.68) (end 1.991 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22a84e1e-4b3d-4583-9c8f-7a6dad3a0b7f)) + (fp_line (start 1.991 0.84) (end 1.991 1.68) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp baa60e06-925e-4b00-be63-dda28d7024c8)) + (fp_line (start 2.031 -1.65) (end 2.031 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b562213-e954-49b2-9911-1f56f106411c)) + (fp_line (start 2.031 0.84) (end 2.031 1.65) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aeae900d-20e4-4f9a-a562-fa93f24d9e62)) + (fp_line (start 2.071 -1.619) (end 2.071 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b303d39-22df-4768-8d36-9b778c8d6ff7)) + (fp_line (start 2.071 0.84) (end 2.071 1.619) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7eb3877f-d581-4395-9402-24aee7ea6860)) + (fp_line (start 2.111 -1.587) (end 2.111 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66732f25-8924-49fa-aec2-faf2d90bed08)) + (fp_line (start 2.111 0.84) (end 2.111 1.587) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be43a6c4-ceaa-4f69-a517-751abc886edd)) + (fp_line (start 2.151 -1.552) (end 2.151 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d199511-9924-412e-a449-f21a95dc45cf)) + (fp_line (start 2.151 0.84) (end 2.151 1.552) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8788bec1-0cb4-41bb-b637-81c90e999241)) + (fp_line (start 2.191 -1.516) (end 2.191 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5269668c-724c-46d0-a3cf-4d10c28f8084)) + (fp_line (start 2.191 0.84) (end 2.191 1.516) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2bb08539-edb3-4fdb-91e7-29ccd192ab6a)) + (fp_line (start 2.231 -1.478) (end 2.231 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce96a554-63fb-457b-bd4e-53dbc7b45da2)) + (fp_line (start 2.231 0.84) (end 2.231 1.478) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2e56004-657e-4cf6-b9fb-9956ecce8bc1)) + (fp_line (start 2.271 -1.438) (end 2.271 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce80378b-5501-4105-bac7-9a3e1d3e8b3b)) + (fp_line (start 2.271 0.84) (end 2.271 1.438) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8dbb3d7-fa1c-4bb5-b72b-d460f0aafa43)) + (fp_line (start 2.311 -1.396) (end 2.311 -0.84) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 006bed91-e2c6-4e77-b036-a0c73c43ca70)) + (fp_line (start 2.311 0.84) (end 2.311 1.396) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68d836a8-0cef-4329-b726-82a0af0bf9e9)) + (fp_line (start 2.351 -1.351) (end 2.351 1.351) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c08b875-d297-451c-a349-b3d4f0049183)) + (fp_line (start 2.391 -1.304) (end 2.391 1.304) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11d62a19-80f9-445d-85a0-f739d27b7fed)) + (fp_line (start 2.431 -1.254) (end 2.431 1.254) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5099e018-1424-4341-96ef-3660e592badd)) + (fp_line (start 2.471 -1.2) (end 2.471 1.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd27c87f-114d-4fbd-a963-8648dbdd76fb)) + (fp_line (start 2.511 -1.142) (end 2.511 1.142) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c96a98a-4289-4f3c-bda4-5ac8574a5311)) + (fp_line (start 2.551 -1.08) (end 2.551 1.08) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb2096da-3a91-444b-8e79-e6e291741297)) + (fp_line (start 2.591 -1.013) (end 2.591 1.013) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4bf0814a-909e-43fc-bcae-77bf75bb66f7)) + (fp_line (start 2.631 -0.94) (end 2.631 0.94) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36cd1cf3-cb17-4a67-aa7e-939053f26954)) + (fp_line (start 2.671 -0.859) (end 2.671 0.859) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36d93091-2e51-47a5-a7b5-03ae82d75146)) + (fp_line (start 2.711 -0.768) (end 2.711 0.768) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e140b8bf-ca54-42e7-b76a-480729c46501)) + (fp_line (start 2.751 -0.664) (end 2.751 0.664) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 170bc3a8-dd63-4fc8-a423-e08b77f787e0)) + (fp_line (start 2.791 -0.537) (end 2.791 0.537) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0be6d594-8a54-45ca-8ffd-3a7613448bb1)) + (fp_line (start 2.831 -0.37) (end 2.831 0.37) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cacf040c-8144-46d5-bb4d-57b82376e62b)) + (fp_circle (center 0.75 0) (end 2.87 0) + (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 25d79181-7d26-4765-a919-c8603c5eee94)) + (fp_circle (center 0.75 0) (end 3 0) + (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp d406726d-725c-47de-afd1-390df4829be1)) + (fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b13a3237-ef55-43f2-ae97-284ef9a7a1b1)) + (fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57ea97a3-75a7-49f3-96e1-d60e2a972901)) + (fp_circle (center 0.75 0) (end 2.75 0) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 91596ebe-0d3f-4a4a-b718-447be4be4971)) + (pad "1" thru_hole rect (at 0 0 270) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") + (net 5 "/Thermistor3") (pintype "passive") (tstamp cae3f68b-fd8a-40e0-a7a7-a3ee6c363706)) + (pad "2" thru_hole circle (at 1.5 0 270) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pintype "passive") (tstamp 1ed7df96-f797-4dc0-b284-3c2394ca6f47)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu") + (tstamp ed452c83-4ce0-47e6-876f-8c81fe200b5f) + (at 20.1 40.8 -90) + (descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "Thermistor_Zero.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Temperature dependent resistor, negative temperature coefficient") + (property "ki_keywords" "thermistor NTC resistor sensor RTD") + (path "/126ae5af-b7de-4d1c-b4eb-96ee5b505ee5") + (attr through_hole) + (fp_text reference "TH2" (at 1.25 -3.55 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b1a0dad6-8977-4278-b4b1-42d2e45dfb61) + ) + (fp_text value "Thermistor_NTC_100k" (at 1.25 4.6 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3e003ab4-525e-438e-af2b-d05b22d2079c) + ) + (fp_text user "${REFERENCE}" (at 1.25 2.7 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1926c7f5-904d-46aa-8eba-f28aeba5071d) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e959b57-80cf-4818-9bba-6fec4b1e47f7)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79001a67-2d67-4fe5-a74e-4c07b94e04bc)) + (fp_line (start -2.56 3.51) (end 5.06 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81b3ccd2-8372-4e31-a0a4-a6c39ac0e319)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81f4b6b3-8ccf-4f23-8629-a651ca5e9234)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57585cd8-1f41-4109-85c0-f7757f90c42f)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 659310c7-5f12-4e3e-8dc7-052ce22be772)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70851a75-0805-4573-94a7-6cc118d2e742)) + (fp_line (start -1.8 2.75) (end 1.25 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb4d3918-243b-4005-989a-fffc026eab8f)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d7f3313-84f0-4797-aa1f-61e1056287fb)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 17d6f5cf-770b-448f-8f9c-54f08e843b73)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d8001e2-c9ef-4412-9781-c5cb71780c5d)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fa9791d-df86-4fd7-b018-ececcb62a3fc)) + (fp_line (start 0.75 -1.7) (end 1.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e3fb343-bf66-4b35-92de-c979cabcc7d3)) + (fp_line (start 1.75 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f6ad27b-c378-4e65-9881-488da9ca8e2f)) + (fp_line (start 1.75 -1.7) (end 1.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5e93d2e-473c-4b9f-8ec0-b901d4d4d079)) + (fp_line (start 3.25 -2.45) (end 3.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d46884cc-1ff0-45a3-9302-3befd9d5ae08)) + (fp_line (start 3.25 -1.7) (end 5.05 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a5e7d70-b882-4941-9205-8f9c9f07cc74)) + (fp_line (start 4.3 -0.2) (end 4.3 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04755857-32fc-44ca-8af2-c8a96a79f3b2)) + (fp_line (start 4.3 2.75) (end 1.25 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30de9c77-09af-496b-8eaf-73175564b9b1)) + (fp_line (start 5.05 -2.45) (end 3.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1dcf726b-e1fe-454a-8d8e-9ea453d59fcf)) + (fp_line (start 5.05 -1.7) (end 5.05 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7d5bf33-8827-4e09-8b75-5153b82bf8ac)) + (fp_line (start 5.05 -0.2) (end 4.3 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1d922a4-6f0b-4eea-902c-a03a43a71efe)) + (fp_line (start 5.06 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14931c3e-691e-45b8-b15a-fb26a108b87c)) + (fp_line (start 5.06 3.51) (end 5.06 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16b3b18b-9145-43e1-b222-0cb8e623ec6e)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e845321f-d4f8-4e1d-bde3-7fda001c05dd)) + (fp_line (start -2.95 3.9) (end 5.45 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9b52a1b-f98f-4901-8ec9-05fb1dc819b6)) + (fp_line (start 5.45 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b39ba84-24c5-488b-a7a9-2dac375a10c0)) + (fp_line (start 5.45 3.9) (end 5.45 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a94dbfe-2c74-41a3-be9b-f584bc8c55aa)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9479c0a7-1f00-478c-9e92-864ccc941e9a)) + (fp_line (start -2.45 3.4) (end 4.95 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d77f520-6414-40f8-bbd9-006877206e20)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6152820a-1544-4a8b-8912-679d01690231)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 291538ff-1809-429c-b16d-ec7e938e5cd5)) + (fp_line (start 4.95 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92dcb360-7e42-4ea4-bb4d-7fdd6abe0228)) + (fp_line (start 4.95 3.4) (end 4.95 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e8c59c5-63df-44ee-8f8f-89f72b2bd8e8)) + (pad "1" thru_hole roundrect (at 0 0 270) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 3 "/Thermistor2") (pintype "passive") (tstamp dfac9d7a-09a3-45da-b623-8635ad734c6e)) + (pad "2" thru_hole oval (at 2.5 0 270) (size 1.7 2) (drill 1) (layers "*.Cu" "*.Mask") + (net 2 "GND1") (pintype "passive") (tstamp 3569eb59-30a1-4cda-8122-1fdcfae8a7e1)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_line (start 14.2 69.8) (end 58 69.8) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 303f2e94-fa94-474d-9c6f-c13c35d82603)) + (gr_line (start 14.2 18.5) (end 14.2 65) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 4668cd23-0ebf-43b1-a859-0dfb69002727)) + (gr_circle (center 19.1 66.05) (end 20.65 66.05) + (stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 701dcb81-dd4e-4021-83f8-475fea5c839f)) + (gr_line (start 58 65) (end 58 69.8) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 91554d72-7eb6-4f8f-a06b-3a371be12bc8)) + (gr_line (start 14.2 65) (end 14.2 69.8) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 995105ba-b5f3-4bc5-a9a2-78372881d763)) + (gr_line (start 38.1 18.49) (end 14.2 18.5) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9f4c04e0-0a3c-4fa0-8465-9651779658d4)) + (gr_circle (center 52.3 66) (end 53.85 66) + (stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp a4c69907-9c9f-47e9-8eb7-542ee2ad32d9)) + (gr_line (start 58 65) (end 58 18.5) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp b7dcd3fc-f118-4775-9a42-cecb49334ed3)) + (gr_line (start 58 18.5) (end 50.1 18.49) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp db07bd03-d929-450d-9eaa-1d69398032bd)) + (gr_text "GP4" (at 43.9 57 270) (layer "B.SilkS") (tstamp 19d96e96-8b33-4339-ae15-8004b7508e1c) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP8" (at 33.7 57 270) (layer "B.SilkS") (tstamp 206fab39-2d13-4b2e-a73c-8b7a766ca22f) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP5" (at 41.4 57 270) (layer "B.SilkS") (tstamp 20bb8f09-622a-4a60-962d-f5bebde0c5a9) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "µ" (at 44.2 51.4) (layer "B.SilkS") (tstamp 38aef194-c42e-443e-9f75-7fa25e2bb0e4) + (effects (font (face "Apple Chancery") (size 6 6) (thickness 0.15)) (justify left bottom mirror)) + (render_cache "µ" 0 + (polygon + (pts + (xy 40.848499 46.667997) (xy 40.186113 46.440851) (xy 40.19921 46.502898) (xy 40.211758 46.563743) + (xy 40.223756 46.623386) (xy 40.235205 46.681827) (xy 40.251348 46.767234) (xy 40.266255 46.849937) + (xy 40.279925 46.929934) (xy 40.292358 47.007227) (xy 40.303555 47.081815) (xy 40.313516 47.153698) + (xy 40.32224 47.222877) (xy 40.329727 47.289351) (xy 40.520237 48.968764) (xy 40.54515 49.238408) + (xy 40.570062 49.458227) (xy 40.57463 49.519586) (xy 40.578477 49.586104) (xy 40.580859 49.648775) + (xy 40.581775 49.707599) (xy 40.581786 49.714682) (xy 40.577458 49.781418) (xy 40.56147 49.841825) + (xy 40.523603 49.891876) (xy 40.466261 49.910861) (xy 40.458688 49.911053) (xy 40.398521 49.904459) + (xy 40.337272 49.884675) (xy 40.274942 49.851702) (xy 40.211529 49.80554) (xy 40.147035 49.746189) + (xy 40.103437 49.699295) (xy 40.059359 49.646538) (xy 40.0148 49.58792) (xy 39.96976 49.52344) + (xy 39.924239 49.453098) (xy 39.878238 49.376894) (xy 39.831755 49.294829) (xy 39.784792 49.206901) + (xy 39.76113 49.160739) (xy 39.72146 49.20645) (xy 39.690605 49.258856) (xy 39.679064 49.311681) + (xy 39.686209 49.381863) (xy 39.707641 49.457586) (xy 39.733092 49.518014) (xy 39.76658 49.58156) + (xy 39.808105 49.648223) (xy 39.857667 49.718002) (xy 39.895174 49.766253) (xy 39.936252 49.81589) + (xy 39.980903 49.866912) (xy 40.029125 49.919319) (xy 40.08092 49.973112) (xy 40.136287 50.02829) + (xy 40.192736 50.082237) (xy 40.247776 50.132704) (xy 40.301409 50.17969) (xy 40.353633 50.223196) + (xy 40.404448 50.263221) (xy 40.453856 50.299766) (xy 40.525327 50.348057) (xy 40.59363 50.388517) + (xy 40.658764 50.421147) (xy 40.72073 50.445945) (xy 40.779527 50.462912) (xy 40.852994 50.473354) + (xy 40.870481 50.473789) (xy 40.9457 50.466874) (xy 41.01089 50.446128) (xy 41.066051 50.411553) + (xy 41.111182 50.363147) (xy 41.146285 50.300911) (xy 41.16603 50.245157) (xy 41.180133 50.181625) + (xy 41.188595 50.110312) (xy 41.191416 50.031221) (xy 41.190414 49.962971) (xy 41.18817 49.900437) + (xy 41.184644 49.830851) (xy 41.179836 49.754212) (xy 41.175388 49.692105) (xy 41.170219 49.62603) + (xy 41.164328 49.555989) (xy 41.157716 49.481981) (xy 41.150383 49.404005) (xy 41.116678 49.084535) + (xy 41.080041 48.765066) (xy 41.125423 48.864422) (xy 41.170894 48.960624) (xy 41.216453 49.053672) + (xy 41.262102 49.143566) (xy 41.307838 49.230305) (xy 41.353664 49.313891) (xy 41.399578 49.394322) + (xy 41.445581 49.471599) (xy 41.491673 49.545722) (xy 41.537854 49.616691) (xy 41.584123 49.684506) + (xy 41.630481 49.749166) (xy 41.676927 49.810672) (xy 41.723463 49.869024) (xy 41.770087 49.924222) + (xy 41.8168 49.976266) (xy 41.863602 50.025156) (xy 41.910492 50.070891) (xy 41.957471 50.113472) + (xy 42.004539 50.152899) (xy 42.051695 50.189172) (xy 42.146274 50.252256) (xy 42.241209 50.302722) + (xy 42.336498 50.340572) (xy 42.432142 50.365806) (xy 42.528141 50.378422) (xy 42.576273 50.38) + (xy 42.646541 50.376171) (xy 42.715377 50.364687) (xy 42.782782 50.345546) (xy 42.848756 50.318748) + (xy 42.9133 50.284294) (xy 42.963904 50.251218) (xy 43.001256 50.223196) (xy 43.185903 51.907006) + (xy 43.795533 52.131221) (xy 43.78381 52.046224) (xy 43.750104 51.738478) (xy 43.717864 51.448318) + (xy 43.1903 46.669462) (xy 42.530844 46.440851) (xy 42.543941 46.503619) (xy 42.556489 46.565163) + (xy 42.568488 46.625481) (xy 42.579937 46.684575) (xy 42.590836 46.742443) (xy 42.606155 46.826949) + (xy 42.620237 46.908698) (xy 42.633082 46.987691) (xy 42.644692 47.063928) (xy 42.655064 47.137408) + (xy 42.6642 47.208132) (xy 42.6721 47.2761) (xy 42.674459 47.298143) (xy 42.840055 48.762135) + (xy 42.845966 48.825068) (xy 42.850875 48.88564) (xy 42.855443 48.955209) (xy 42.858568 49.021378) + (xy 42.860251 49.084146) (xy 42.860572 49.124103) (xy 42.858643 49.20804) (xy 42.852855 49.286562) + (xy 42.843209 49.359669) (xy 42.829706 49.427361) (xy 42.812343 49.489637) (xy 42.791123 49.546498) + (xy 42.752058 49.621635) (xy 42.704312 49.684589) (xy 42.647884 49.735357) (xy 42.582776 49.773941) + (xy 42.508987 49.800341) (xy 42.426516 49.814556) (xy 42.366713 49.817264) (xy 42.289613 49.811082) + (xy 42.211638 49.792534) (xy 42.132786 49.761622) (xy 42.079732 49.734145) (xy 42.026289 49.701172) + (xy 41.972456 49.662704) (xy 41.918234 49.61874) (xy 41.863623 49.569281) (xy 41.808623 49.514327) + (xy 41.753233 49.453876) (xy 41.697454 49.387931) (xy 41.641286 49.31649) (xy 41.584728 49.239553) + (xy 41.527781 49.157121) (xy 41.499162 49.113845) (xy 41.44312 49.025528) (xy 41.390031 48.936799) + (xy 41.339897 48.847658) (xy 41.292716 48.758105) (xy 41.248489 48.66814) (xy 41.207216 48.577762) + (xy 41.168896 48.486972) (xy 41.133531 48.395771) (xy 41.101119 48.304157) (xy 41.071661 48.212131) + (xy 41.045157 48.119692) (xy 41.021606 48.026842) (xy 41.00101 47.933579) (xy 40.983367 47.839904) + (xy 40.968678 47.745817) (xy 40.956943 47.651318) + ) + ) + ) + ) + (gr_text "5V" (at 34.5 20.6) (layer "B.SilkS") (tstamp 43302d4b-5634-4dcc-846e-0f1b45a30976) + (effects (font (size 1 1) (thickness 0.1875)) (justify left bottom mirror)) + ) + (gr_text "GP2" (at 49 57 270) (layer "B.SilkS") (tstamp 5047e273-59f2-44ae-8cda-06a81d3e8ca4) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP7" (at 36.3 57 270) (layer "B.SilkS") (tstamp 5673c4fe-c4b7-45e2-bb89-5d54a4b5eb81) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP3" (at 46.5 57 270) (layer "B.SilkS") (tstamp 66a0a617-5563-4ffd-a4e9-6a1db71d02fd) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "EightEquals" (at 43.5 66.8) (layer "B.SilkS") (tstamp 6dd82bb2-d8af-4f8c-b679-966152ecfec7) + (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom mirror)) + ) + (gr_text "GP11" (at 26.2 57 270) (layer "B.SilkS") (tstamp 8e74f70a-49dd-48e2-a2a9-3fceee63660d) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP12" (at 23.5 57 270) (layer "B.SilkS") (tstamp 9410e9d1-0eda-49e6-b67d-6cb8ed25cc26) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP6" (at 38.8 57 270) (layer "B.SilkS") (tstamp 9441f1fa-7648-4587-8990-7b72e87f0cc0) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP1" (at 51.6 57 270) (layer "B.SilkS") (tstamp b6da43e0-c736-4f76-9bb6-2cf98f01934b) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP9" (at 31.2 57 270) (layer "B.SilkS") (tstamp de508bfe-43c4-475f-a106-716b64baf835) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP0" (at 54.1 57 270) (layer "B.SilkS") (tstamp e80ad62e-dfaf-4d79-9ce6-44b4e1f047fc) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "GP10" (at 28.6 57 270) (layer "B.SilkS") (tstamp ead8f836-846d-419d-8046-b95153b41169) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "5V" (at 32.5 20.6) (layer "F.SilkS") (tstamp 02bbbf95-7c44-4cb8-8428-79c65d3fb670) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) + ) + (gr_text "TinyTemp" (at 34.2 50.7) (layer "F.SilkS") (tstamp 6865f834-bf3e-4447-b399-2d8301b77178) + (effects (font (size 3 3) (thickness 0.15)) (justify left bottom)) + ) + (gr_text "V0.1" (at 46.4 68.9) (layer "F.SilkS") (tstamp aca0732d-e8de-4b3a-b8e0-2029611f3c3f) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) + ) + + (segment (start 21.5 21.4) (end 20 22.9) (width 0.25) (layer "F.Cu") (net 1) (tstamp 110c7a68-1869-40ea-b5bf-75464998b99b)) + (segment (start 31.9 27.7) (end 36.48 27.7) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5ba5e80c-64dc-4d89-bdd9-f80172751e24)) + (segment (start 29.6 25.4) (end 29.06 25.4) (width 0.25) (layer "F.Cu") (net 1) (tstamp 76a795a7-9722-4545-a877-d320c229e22f)) + (segment (start 25.06 21.4) (end 21.5 21.4) (width 0.25) (layer "F.Cu") (net 1) (tstamp 804736de-0003-496e-9ff0-039a4c9b7833)) + (segment (start 29.6 25.4) (end 31.9 27.7) (width 0.25) (layer "F.Cu") (net 1) (tstamp 8964f931-9417-412a-9a4d-868084fd9d19)) + (segment (start 29.06 25.4) (end 25.06 21.4) (width 0.25) (layer "F.Cu") (net 1) (tstamp db0f0ee3-80f8-4fdb-8e0e-9a713a929513)) + (segment (start 23.16 40.8) (end 24.96 39) (width 0.25) (layer "F.Cu") (net 3) (tstamp 251b55f8-851c-435c-a2df-f7284a33e155)) + (segment (start 31.065 41.835) (end 29.8 43.1) (width 0.25) (layer "F.Cu") (net 3) (tstamp 8aba2391-c42d-41db-b3ea-4278f8fcee01)) + (segment (start 20.1 40.8) (end 23.16 40.8) (width 0.25) (layer "F.Cu") (net 3) (tstamp a854c75c-0bfb-4ddf-bb7b-7f279e02ceed)) + (segment (start 36.48 32.78) (end 31.065 38.195) (width 0.25) (layer "F.Cu") (net 3) (tstamp af27a41f-d968-474b-ae9b-a019f4c6d614)) + (segment (start 29.06 43.1) (end 24.96 39) (width 0.25) (layer "F.Cu") (net 3) (tstamp d2968956-f5ed-4bde-bb74-66cb3b779b76)) + (segment (start 29.8 43.1) (end 29.06 43.1) (width 0.25) (layer "F.Cu") (net 3) (tstamp d6c8851d-b399-4d37-90f7-aec2c45f047d)) + (segment (start 31.065 38.195) (end 31.065 41.835) (width 0.25) (layer "F.Cu") (net 3) (tstamp e16f8533-1394-45a0-96d2-b28fd9256eac)) + (segment (start 28.92 34) (end 29.9 34) (width 0.25) (layer "F.Cu") (net 4) (tstamp 14ce55a9-788e-47ab-8b5b-9ca1b34490e0)) + (segment (start 23.02 31.9) (end 24.92 30) (width 0.25) (layer "F.Cu") (net 4) (tstamp 382e867c-b375-4a41-8b05-c81e04d2b4bf)) + (segment (start 36.48 30.24) (end 32.72 34) (width 0.25) (layer "F.Cu") (net 4) (tstamp 8a650c0a-910d-481e-94b5-24aa2fce7f3c)) + (segment (start 20.1 31.9) (end 23.02 31.9) (width 0.25) (layer "F.Cu") (net 4) (tstamp 9b9c3846-2963-47a2-994f-fba17013dd95)) + (segment (start 24.92 30) (end 28.92 34) (width 0.25) (layer "F.Cu") (net 4) (tstamp a29b675c-b04f-4ed8-b0d2-e49addfdb923)) + (segment (start 32.72 34) (end 29.9 34) (width 0.25) (layer "F.Cu") (net 4) (tstamp d0b27591-6b80-4a35-b4eb-5901b41b823c)) + (segment (start 22.1 48) (end 24.92 48) (width 0.25) (layer "F.Cu") (net 5) (tstamp 116d6f2e-3a48-47b2-b751-2a785be62bc2)) + (segment (start 28.92 52) (end 24.92 48) (width 0.25) (layer "F.Cu") (net 5) (tstamp 351d8320-de82-4abf-a879-19d8914c130a)) + (segment (start 30 52) (end 34.405 47.595) (width 0.25) (layer "F.Cu") (net 5) (tstamp 36c8090a-e8f5-4d3b-a1eb-a1e5184c9b05)) + (segment (start 34.405 37.395) (end 36.48 35.32) (width 0.25) (layer "F.Cu") (net 5) (tstamp 3a3c3764-eb5e-44a1-bcec-9f184aef5dcb)) + (segment (start 30 52) (end 28.92 52) (width 0.25) (layer "F.Cu") (net 5) (tstamp 44d1b304-9ee8-4d4b-8638-07a8c0517e01)) + (segment (start 34.405 47.595) (end 34.405 37.395) (width 0.25) (layer "F.Cu") (net 5) (tstamp 5b77c570-0c73-4610-ac76-b51df34ad568)) + (segment (start 20.1 50) (end 22.1 48) (width 0.25) (layer "F.Cu") (net 5) (tstamp 9d9a5700-868e-455c-8d82-4f8b89cdaa54)) + (segment (start 33.9 25.16) (end 36.48 25.16) (width 0.25) (layer "F.Cu") (net 6) (tstamp 3402aff3-6eb2-40df-98be-0bbd65565019)) + (segment (start 30.14 21.4) (end 33.9 25.16) (width 0.25) (layer "F.Cu") (net 6) (tstamp 4936b17e-bc71-40d8-b875-2170b24576d4)) + (segment (start 31.64 37.4) (end 31.64 30) (width 0.25) (layer "B.Cu") (net 6) (tstamp 1f7c99e7-f9e1-4500-a3e6-64448ecbca93)) + (segment (start 31.64 30) (end 30 30) (width 0.25) (layer "B.Cu") (net 6) (tstamp 2f65d72d-4596-4a00-a7ad-dde3dcfe1e53)) + (segment (start 31.64 46.36) (end 31.64 37.4) (width 0.25) (layer "B.Cu") (net 6) (tstamp 52559088-b846-4893-abb3-242f01718ca4)) + (segment (start 30 48) (end 31.64 46.36) (width 0.25) (layer "B.Cu") (net 6) (tstamp 99ca8df5-63c7-48ba-81ee-0b74252a940e)) + (segment (start 30.04 39) (end 31.64 37.4) (width 0.25) (layer "B.Cu") (net 6) (tstamp bf04d110-e636-4a0b-9245-0818a302c1df)) + (segment (start 36.48 25.16) (end 31.64 30) (width 0.25) (layer "B.Cu") (net 6) (tstamp df21ea95-a065-4a65-8008-724823610ea9)) + (segment (start 54.68 58.16) (end 55.78 58.16) (width 0.25) (layer "F.Cu") (net 11) (tstamp 041d4317-ff19-432d-bb50-9258aed35017)) + (segment (start 57.35 56.59) (end 57.35 25.71) (width 0.25) (layer "F.Cu") (net 11) (tstamp 4c4c1cc7-080f-4220-a10e-86f10d395eda)) + (segment (start 55.78 58.16) (end 57.35 56.59) (width 0.25) (layer "F.Cu") (net 11) (tstamp 73b69090-0042-45ed-bd76-bb25d00121b8)) + (segment (start 57.35 25.71) (end 51.72 20.08) (width 0.25) (layer "F.Cu") (net 11) (tstamp a8981e6a-ac5e-46b4-8aa2-af348a6400bb)) + (segment (start 56.9 27.8) (end 56.9 55.709188) (width 0.25) (layer "F.Cu") (net 12) (tstamp 7bb2aac9-1343-42f4-878b-8e025ef31542)) + (segment (start 55.709188 56.9) (end 53.4 56.9) (width 0.25) (layer "F.Cu") (net 12) (tstamp 97c001e7-6495-4a23-a866-2d2b8ff7cfa4)) + (segment (start 56.9 55.709188) (end 55.709188 56.9) (width 0.25) (layer "F.Cu") (net 12) (tstamp bd482baa-aa53-4dbc-ac57-a49d66995115)) + (segment (start 51.72 22.62) (end 56.9 27.8) (width 0.25) (layer "F.Cu") (net 12) (tstamp e7004a55-61ee-4edc-9190-659aaf36c5fc)) + (segment (start 53.4 56.9) (end 52.14 58.16) (width 0.25) (layer "F.Cu") (net 12) (tstamp fa9001b0-6083-41b5-99f2-e088135a1f5c)) + (segment (start 56.45 55.522792) (end 56.45 29.89) (width 0.25) (layer "F.Cu") (net 13) (tstamp 471c2715-4ba6-43ef-a6a8-f469129d597e)) + (segment (start 49.6 58.16) (end 51.31 56.45) (width 0.25) (layer "F.Cu") (net 13) (tstamp 49a3281d-4170-467e-a08d-ba28d1a58b60)) + (segment (start 56.45 29.89) (end 51.72 25.16) (width 0.25) (layer "F.Cu") (net 13) (tstamp 7c64d792-7887-497c-93a6-41c21c453991)) + (segment (start 51.31 56.45) (end 55.522792 56.45) (width 0.25) (layer "F.Cu") (net 13) (tstamp 98107197-528e-40c4-aeab-68fcc7d952bf)) + (segment (start 55.522792 56.45) (end 56.45 55.522792) (width 0.25) (layer "F.Cu") (net 13) (tstamp cdeaf4e4-5b81-4479-9977-0ef0a656b8f6)) + (segment (start 55.9 31.88) (end 55.9 55.372792) (width 0.25) (layer "F.Cu") (net 14) (tstamp 108a63b5-6684-46f6-b91d-d10f363621e7)) + (segment (start 55.9 55.372792) (end 55.272792 56) (width 0.25) (layer "F.Cu") (net 14) (tstamp 1f77a057-05c3-4ac3-b490-15845dfc7b33)) + (segment (start 51.72 27.7) (end 55.9 31.88) (width 0.25) (layer "F.Cu") (net 14) (tstamp 74da9266-f51b-48dc-820a-15c361db061c)) + (segment (start 49.22 56) (end 47.06 58.16) (width 0.25) (layer "F.Cu") (net 14) (tstamp 8e41728d-2659-4848-9f50-aff2086bbf27)) + (segment (start 55.272792 56) (end 49.22 56) (width 0.25) (layer "F.Cu") (net 14) (tstamp ecf20ccb-b1d8-435d-8ee2-d00b0e4f8787)) + (segment (start 55.45 33.97) (end 55.45 55.186396) (width 0.25) (layer "F.Cu") (net 15) (tstamp 32af938a-653a-49e7-b5f4-5c6c9cca0317)) + (segment (start 47.13 55.55) (end 44.52 58.16) (width 0.25) (layer "F.Cu") (net 15) (tstamp 4de665a7-161f-4f88-be89-e3bb5e5353de)) + (segment (start 55.086396 55.55) (end 47.13 55.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 754dd072-3a4b-4cf5-b0e7-69aa12a5daac)) + (segment (start 51.72 30.24) (end 55.45 33.97) (width 0.25) (layer "F.Cu") (net 15) (tstamp cc17a596-fa32-4288-a041-6b12aa361dd4)) + (segment (start 55.45 55.186396) (end 55.086396 55.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp dea108b5-3ab3-4833-8eed-e4cf896fdf7e)) + (segment (start 53.18 32.78) (end 55 34.6) (width 0.25) (layer "F.Cu") (net 16) (tstamp 415ad2f4-dfe5-44cb-b5c3-2c6a2e7854cd)) + (segment (start 55 34.6) (end 55 55) (width 0.25) (layer "F.Cu") (net 16) (tstamp 43f28d83-42cc-4ab5-b64a-ee67921cd950)) + (segment (start 51.72 32.78) (end 53.18 32.78) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9182f944-eb3d-48be-bbc5-899017df783e)) + (segment (start 54.9 55.1) (end 45.04 55.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp bf148575-62f8-46dc-9e19-7c2691c87619)) + (segment (start 55 55) (end 54.9 55.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d7c1387c-c673-40ce-8763-a0332593e7f7)) + (segment (start 45.04 55.1) (end 41.98 58.16) (width 0.25) (layer "F.Cu") (net 16) (tstamp fda6c6c2-88d8-46c9-85c1-e735a7bcdfea)) + (segment (start 54.5 54.6) (end 43 54.6) (width 0.25) (layer "F.Cu") (net 17) (tstamp 110212a1-0640-4ba0-b469-b94c455e2058)) + (segment (start 43 54.6) (end 39.44 58.16) (width 0.25) (layer "F.Cu") (net 17) (tstamp 46535b22-a3a8-41cc-98af-ad0a6992f31f)) + (segment (start 51.72 35.32) (end 54.5 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 589c97e5-3ed6-421e-af0e-b95648549d97)) + (segment (start 54.5 38.1) (end 54.5 54.6) (width 0.25) (layer "F.Cu") (net 17) (tstamp eb4f06bf-0f72-4643-8337-90e81352b4f1)) + (segment (start 51.72 37.86) (end 53.795 39.935) (width 0.25) (layer "F.Cu") (net 18) (tstamp 56a74f17-3ec2-46ed-ae20-df00e8588f91)) + (segment (start 53.795 39.935) (end 53.795 53.895) (width 0.25) (layer "F.Cu") (net 18) (tstamp 98fb08a5-26d5-4fc9-bf64-52e07d166827)) + (segment (start 53.795 53.895) (end 53.8 53.9) (width 0.25) (layer "F.Cu") (net 18) (tstamp b1a2de57-0e92-4780-91de-ed18a1dbafd0)) + (segment (start 41.16 53.9) (end 36.9 58.16) (width 0.25) (layer "F.Cu") (net 18) (tstamp b4b1c7d5-1ffa-46eb-856d-fe01c5b45eac)) + (segment (start 53.8 53.9) (end 41.16 53.9) (width 0.25) (layer "F.Cu") (net 18) (tstamp fdda43a1-9cf0-42fe-81ed-6112b53fb079)) + (segment (start 51.72 40.4) (end 51.72 40.8) (width 0.25) (layer "F.Cu") (net 19) (tstamp 740f8e28-9110-4209-a30b-7ef16a74d02c)) + (segment (start 51.72 40.8) (end 34.36 58.16) (width 0.25) (layer "F.Cu") (net 19) (tstamp e23bc1dd-8010-4abf-9aa9-0bf185595d15)) + (segment (start 46.38 43.2) (end 46.38 43.6) (width 0.25) (layer "F.Cu") (net 20) (tstamp 00e0174e-a900-4e06-b1ea-322357c8e3e5)) + (segment (start 49.18 40.4) (end 46.38 43.2) (width 0.25) (layer "F.Cu") (net 20) (tstamp bd4532a0-2767-46a7-ac7c-5152055d490a)) + (segment (start 46.38 43.6) (end 31.82 58.16) (width 0.25) (layer "F.Cu") (net 20) (tstamp c9b7fc36-196c-475d-aaa1-8ece44d7c922)) + (segment (start 46.64 40.8) (end 29.28 58.16) (width 0.25) (layer "F.Cu") (net 21) (tstamp b6954d08-fcff-4026-afa3-3cf9d9f50f0b)) + (segment (start 46.64 40.4) (end 46.64 40.8) (width 0.25) (layer "F.Cu") (net 21) (tstamp e65128e7-8221-408c-965e-04c0e3b2ecae)) + (segment (start 44.1 40.4) (end 44.1 41.344544) (width 0.25) (layer "F.Cu") (net 22) (tstamp 1e07cf21-52a3-4c03-b91d-c96799125b49)) + (segment (start 44.1 41.344544) (end 27.284544 58.16) (width 0.25) (layer "F.Cu") (net 22) (tstamp 68dbe5ba-27ea-45c3-8a7f-d384841b38d5)) + (segment (start 27.284544 58.16) (end 26.74 58.16) (width 0.25) (layer "F.Cu") (net 22) (tstamp c1a8677d-ebca-42fb-8f62-e89408f0b443)) + (segment (start 41.56 43.248148) (end 27.823148 56.985) (width 0.25) (layer "F.Cu") (net 23) (tstamp 0c9dfe63-f35e-4966-9e79-9ee6b8ea5476)) + (segment (start 25.375 56.985) (end 24.2 58.16) (width 0.25) (layer "F.Cu") (net 23) (tstamp 79552ae0-1707-491a-b2d2-0562a08a48d8)) + (segment (start 27.823148 56.985) (end 25.375 56.985) (width 0.25) (layer "F.Cu") (net 23) (tstamp b8f73f28-625b-4428-82f9-55f0356372f7)) + (segment (start 41.56 40.4) (end 41.56 43.248148) (width 0.25) (layer "F.Cu") (net 23) (tstamp ecede8f3-aa47-43f7-a6f4-0950cf309191)) + + (zone (net 0) (net_name "") (layer "B.Cu") (tstamp 252a53b3-c8e2-4614-966b-0f73eb689d58) (hatch edge 0.5) + (connect_pads (clearance 0)) + (min_thickness 0.25) (filled_areas_thickness no) + (keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed)) + (fill (thermal_gap 0.5) (thermal_bridge_width 0.5)) + (polygon + (pts + (xy 33.9 18.5) + (xy 38 18.5) + (xy 38.1 21.5) + (xy 33.9 21.5) + ) + ) + ) + (zone (net 2) (net_name "GND1") (layer "B.Cu") (tstamp ed71ca20-1d8f-4b95-9109-8bbbdb62f94a) (hatch edge 0.5) + (connect_pads (clearance 0.5)) + (min_thickness 0.25) (filled_areas_thickness no) + (fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5)) + (polygon + (pts + (xy 14.2 18.5) + (xy 14.2 69.8) + (xy 58 69.8) + (xy 58 18.5) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 26.280507 60.490156) + (xy 26.24 60.628111) + (xy 26.24 60.771889) + (xy 26.280507 60.909844) + (xy 26.306314 60.95) + (xy 24.633686 60.95) + (xy 24.659493 60.909844) + (xy 24.7 60.771889) + (xy 24.7 60.628111) + (xy 24.659493 60.490156) + (xy 24.633686 60.45) + (xy 26.306314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 28.820507 60.490156) + (xy 28.78 60.628111) + (xy 28.78 60.771889) + (xy 28.820507 60.909844) + (xy 28.846314 60.95) + (xy 27.173686 60.95) + (xy 27.199493 60.909844) + (xy 27.24 60.771889) + (xy 27.24 60.628111) + (xy 27.199493 60.490156) + (xy 27.173686 60.45) + (xy 28.846314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 31.360507 60.490156) + (xy 31.32 60.628111) + (xy 31.32 60.771889) + (xy 31.360507 60.909844) + (xy 31.386314 60.95) + (xy 29.713686 60.95) + (xy 29.739493 60.909844) + (xy 29.78 60.771889) + (xy 29.78 60.628111) + (xy 29.739493 60.490156) + (xy 29.713686 60.45) + (xy 31.386314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 33.900507 60.490156) + (xy 33.86 60.628111) + (xy 33.86 60.771889) + (xy 33.900507 60.909844) + (xy 33.926314 60.95) + (xy 32.253686 60.95) + (xy 32.279493 60.909844) + (xy 32.32 60.771889) + (xy 32.32 60.628111) + (xy 32.279493 60.490156) + (xy 32.253686 60.45) + (xy 33.926314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 36.440507 60.490156) + (xy 36.4 60.628111) + (xy 36.4 60.771889) + (xy 36.440507 60.909844) + (xy 36.466314 60.95) + (xy 34.793686 60.95) + (xy 34.819493 60.909844) + (xy 34.86 60.771889) + (xy 34.86 60.628111) + (xy 34.819493 60.490156) + (xy 34.793686 60.45) + (xy 36.466314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 38.980507 60.490156) + (xy 38.94 60.628111) + (xy 38.94 60.771889) + (xy 38.980507 60.909844) + (xy 39.006314 60.95) + (xy 37.333686 60.95) + (xy 37.359493 60.909844) + (xy 37.4 60.771889) + (xy 37.4 60.628111) + (xy 37.359493 60.490156) + (xy 37.333686 60.45) + (xy 39.006314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 41.520507 60.490156) + (xy 41.48 60.628111) + (xy 41.48 60.771889) + (xy 41.520507 60.909844) + (xy 41.546314 60.95) + (xy 39.873686 60.95) + (xy 39.899493 60.909844) + (xy 39.94 60.771889) + (xy 39.94 60.628111) + (xy 39.899493 60.490156) + (xy 39.873686 60.45) + (xy 41.546314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 44.060507 60.490156) + (xy 44.02 60.628111) + (xy 44.02 60.771889) + (xy 44.060507 60.909844) + (xy 44.086314 60.95) + (xy 42.413686 60.95) + (xy 42.439493 60.909844) + (xy 42.48 60.771889) + (xy 42.48 60.628111) + (xy 42.439493 60.490156) + (xy 42.413686 60.45) + (xy 44.086314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 46.600507 60.490156) + (xy 46.56 60.628111) + (xy 46.56 60.771889) + (xy 46.600507 60.909844) + (xy 46.626314 60.95) + (xy 44.953686 60.95) + (xy 44.979493 60.909844) + (xy 45.02 60.771889) + (xy 45.02 60.628111) + (xy 44.979493 60.490156) + (xy 44.953686 60.45) + (xy 46.626314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 49.140507 60.490156) + (xy 49.1 60.628111) + (xy 49.1 60.771889) + (xy 49.140507 60.909844) + (xy 49.166314 60.95) + (xy 47.493686 60.95) + (xy 47.519493 60.909844) + (xy 47.56 60.771889) + (xy 47.56 60.628111) + (xy 47.519493 60.490156) + (xy 47.493686 60.45) + (xy 49.166314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 51.680507 60.490156) + (xy 51.64 60.628111) + (xy 51.64 60.771889) + (xy 51.680507 60.909844) + (xy 51.706314 60.95) + (xy 50.033686 60.95) + (xy 50.059493 60.909844) + (xy 50.1 60.771889) + (xy 50.1 60.628111) + (xy 50.059493 60.490156) + (xy 50.033686 60.45) + (xy 51.706314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 54.220507 60.490156) + (xy 54.18 60.628111) + (xy 54.18 60.771889) + (xy 54.220507 60.909844) + (xy 54.246314 60.95) + (xy 52.573686 60.95) + (xy 52.599493 60.909844) + (xy 52.64 60.771889) + (xy 52.64 60.628111) + (xy 52.599493 60.490156) + (xy 52.573686 60.45) + (xy 54.246314 60.45) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 33.843039 18.519685) + (xy 33.888794 18.572489) + (xy 33.9 18.624) + (xy 33.9 21.5) + (xy 34.53132 21.5) + (xy 34.598359 21.519685) + (xy 34.644114 21.572489) + (xy 34.654058 21.641647) + (xy 34.625033 21.705203) + (xy 34.620946 21.709692) + (xy 34.498762 21.837486) + (xy 34.374808 22.025266) + (xy 34.286375 22.232169) + (xy 34.286372 22.232178) + (xy 34.254915 22.369999) + (xy 34.254916 22.37) + (xy 36.046314 22.37) + (xy 36.020507 22.410156) + (xy 35.98 22.548111) + (xy 35.98 22.691889) + (xy 36.020507 22.829844) + (xy 36.046314 22.87) + (xy 34.252449 22.87) + (xy 34.256415 22.899278) + (xy 34.325945 23.113268) + (xy 34.432565 23.311401) + (xy 34.432567 23.311404) + (xy 34.572854 23.48732) + (xy 34.742292 23.635352) + (xy 34.7423 23.635359) + (xy 34.935446 23.750759) + (xy 34.935454 23.750763) + (xy 34.994723 23.773007) + (xy 35.050571 23.814992) + (xy 35.074855 23.880506) + (xy 35.059864 23.948748) + (xy 35.010358 23.998053) + (xy 35.004954 24.00082) + (xy 34.836033 24.082167) + (xy 34.836025 24.082171) + (xy 34.653927 24.214473) + (xy 34.653925 24.214474) + (xy 34.498366 24.377176) + (xy 34.374363 24.565033) + (xy 34.285899 24.772004) + (xy 34.285895 24.772017) + (xy 34.23581 24.991457) + (xy 34.235808 24.991468) + (xy 34.22571 25.216325) + (xy 34.22571 25.21633) + (xy 34.255925 25.439387) + (xy 34.255926 25.43939) + (xy 34.325483 25.653465) + (xy 34.432146 25.851678) + (xy 34.432148 25.851681) + (xy 34.57228 26.0274) + (xy 34.598688 26.092087) + (xy 34.585933 26.160782) + (xy 34.563014 26.192394) + (xy 31.417228 29.338181) + (xy 31.355905 29.371666) + (xy 31.329547 29.3745) + (xy 31.093742 29.3745) + (xy 31.026703 29.354815) + (xy 30.994788 29.325227) + (xy 30.890979 29.187761) + (xy 30.726562 29.037876) + (xy 30.72656 29.037874) + (xy 30.537404 28.920754) + (xy 30.537398 28.920752) + (xy 30.32994 28.840382) + (xy 30.111243 28.7995) + (xy 29.888757 28.7995) + (xy 29.67006 28.840382) + (xy 29.538864 28.891207) + (xy 29.462601 28.920752) + (xy 29.462595 28.920754) + (xy 29.273439 29.037874) + (xy 29.273437 29.037876) + (xy 29.10902 29.187761) + (xy 28.974943 29.365308) + (xy 28.974938 29.365316) + (xy 28.875775 29.564461) + (xy 28.875769 29.564476) + (xy 28.814885 29.778462) + (xy 28.814884 29.778464) + (xy 28.794357 29.999999) + (xy 28.794357 30) + (xy 28.814884 30.221535) + (xy 28.814885 30.221537) + (xy 28.875769 30.435523) + (xy 28.875775 30.435538) + (xy 28.974938 30.634683) + (xy 28.974943 30.634691) + (xy 29.10902 30.812238) + (xy 29.273437 30.962123) + (xy 29.273439 30.962125) + (xy 29.462595 31.079245) + (xy 29.462596 31.079245) + (xy 29.462599 31.079247) + (xy 29.67006 31.159618) + (xy 29.888757 31.2005) + (xy 29.888759 31.2005) + (xy 30.111241 31.2005) + (xy 30.111243 31.2005) + (xy 30.32994 31.159618) + (xy 30.537401 31.079247) + (xy 30.726562 30.962124) + (xy 30.806961 30.88883) + (xy 30.869766 30.858213) + (xy 30.939153 30.86641) + (xy 30.993093 30.91082) + (xy 31.014461 30.977342) + (xy 31.0145 30.980467) + (xy 31.0145 32.912227) + (xy 30.994815 32.979266) + (xy 30.942011 33.025021) + (xy 30.872853 33.034965) + (xy 30.816189 33.011494) + (xy 30.805153 33.003233) + (xy 30.742331 32.956204) + (xy 30.742329 32.956203) + (xy 30.742328 32.956202) + (xy 30.607482 32.905908) + (xy 30.607483 32.905908) + (xy 30.547883 32.899501) + (xy 30.547881 32.8995) + (xy 30.547873 32.8995) + (xy 30.547864 32.8995) + (xy 29.252129 32.8995) + (xy 29.252123 32.899501) + (xy 29.192516 32.905908) + (xy 29.057671 32.956202) + (xy 29.057664 32.956206) + (xy 28.942455 33.042452) + (xy 28.942452 33.042455) + (xy 28.856206 33.157664) + (xy 28.856202 33.157671) + (xy 28.805908 33.292517) + (xy 28.799501 33.352116) + (xy 28.7995 33.352135) + (xy 28.7995 34.64787) + (xy 28.799501 34.647876) + (xy 28.805908 34.707483) + (xy 28.856202 34.842328) + (xy 28.856206 34.842335) + (xy 28.895954 34.895431) + (xy 28.920372 34.960895) + (xy 28.907688 35.025013) + (xy 28.869888 35.100925) + (xy 28.869883 35.100936) + (xy 28.814097 35.297007) + (xy 28.814096 35.29701) + (xy 28.795287 35.499999) + (xy 28.795287 35.5) + (xy 28.814096 35.702989) + (xy 28.814097 35.702992) + (xy 28.869883 35.899063) + (xy 28.869886 35.899069) + (xy 28.960754 36.081556) + (xy 28.960755 36.081557) + (xy 28.962533 36.083912) + (xy 29.604654 35.44179) + (xy 29.596105 35.47184) + (xy 29.606454 35.583521) + (xy 29.656448 35.683922) + (xy 29.739334 35.759484) + (xy 29.84392 35.8) + (xy 29.927802 35.8) + (xy 30.01025 35.784588) + (xy 30.10561 35.725543) + (xy 30.173201 35.636038) + (xy 30.203895 35.52816) + (xy 30.195947 35.442394) + (xy 30.837465 36.083912) + (xy 30.881914 36.080828) + (xy 30.950156 36.095823) + (xy 30.999457 36.145332) + (xy 31.0145 36.20453) + (xy 31.0145 37.089546) + (xy 30.994815 37.156585) + (xy 30.978181 37.177227) + (xy 30.369892 37.785515) + (xy 30.308569 37.819) + (xy 30.259426 37.819722) + (xy 30.151243 37.7995) + (xy 29.928757 37.7995) + (xy 29.71006 37.840382) + (xy 29.578864 37.891207) + (xy 29.502601 37.920752) + (xy 29.502595 37.920754) + (xy 29.313439 38.037874) + (xy 29.313437 38.037876) + (xy 29.14902 38.187761) + (xy 29.014943 38.365308) + (xy 29.014938 38.365316) + (xy 28.915775 38.564461) + (xy 28.915769 38.564476) + (xy 28.854885 38.778462) + (xy 28.854884 38.778464) + (xy 28.834357 38.999999) + (xy 28.834357 39) + (xy 28.854884 39.221535) + (xy 28.854885 39.221537) + (xy 28.915769 39.435523) + (xy 28.915775 39.435538) + (xy 29.014938 39.634683) + (xy 29.014943 39.634691) + (xy 29.14902 39.812238) + (xy 29.313437 39.962123) + (xy 29.313439 39.962125) + (xy 29.502595 40.079245) + (xy 29.502596 40.079245) + (xy 29.502599 40.079247) + (xy 29.71006 40.159618) + (xy 29.928757 40.2005) + (xy 29.928759 40.2005) + (xy 30.151241 40.2005) + (xy 30.151243 40.2005) + (xy 30.36994 40.159618) + (xy 30.577401 40.079247) + (xy 30.766562 39.962124) + (xy 30.806961 39.925294) + (xy 30.869765 39.894677) + (xy 30.939152 39.902874) + (xy 30.993092 39.947283) + (xy 31.014461 40.013805) + (xy 31.0145 40.016931) + (xy 31.0145 42.113143) + (xy 30.994815 42.180182) + (xy 30.942011 42.225937) + (xy 30.872853 42.235881) + (xy 30.809297 42.206856) + (xy 30.791234 42.187455) + (xy 30.780613 42.173267) + (xy 30.757546 42.142454) + (xy 30.757544 42.142453) + (xy 30.757544 42.142452) + (xy 30.642335 42.056206) + (xy 30.642328 42.056202) + (xy 30.507482 42.005908) + (xy 30.507483 42.005908) + (xy 30.447883 41.999501) + (xy 30.447881 41.9995) + (xy 30.447873 41.9995) + (xy 30.447864 41.9995) + (xy 29.152129 41.9995) + (xy 29.152123 41.999501) + (xy 29.092516 42.005908) + (xy 28.957671 42.056202) + (xy 28.957664 42.056206) + (xy 28.842455 42.142452) + (xy 28.842452 42.142455) + (xy 28.756206 42.257664) + (xy 28.756202 42.257671) + (xy 28.705908 42.392517) + (xy 28.699501 42.452116) + (xy 28.6995 42.452135) + (xy 28.6995 43.74787) + (xy 28.699501 43.747876) + (xy 28.705908 43.807483) + (xy 28.756202 43.942328) + (xy 28.756206 43.942335) + (xy 28.795954 43.995431) + (xy 28.820372 44.060895) + (xy 28.807688 44.125013) + (xy 28.769888 44.200925) + (xy 28.769883 44.200936) + (xy 28.714097 44.397007) + (xy 28.714096 44.39701) + (xy 28.695287 44.599999) + (xy 28.695287 44.6) + (xy 28.714096 44.802989) + (xy 28.714097 44.802992) + (xy 28.769883 44.999063) + (xy 28.769886 44.999069) + (xy 28.860754 45.181556) + (xy 28.860755 45.181557) + (xy 28.862533 45.183912) + (xy 29.504654 44.54179) + (xy 29.496105 44.57184) + (xy 29.506454 44.683521) + (xy 29.556448 44.783922) + (xy 29.639334 44.859484) + (xy 29.74392 44.9) + (xy 29.827802 44.9) + (xy 29.91025 44.884588) + (xy 30.00561 44.825543) + (xy 30.073201 44.736038) + (xy 30.103895 44.62816) + (xy 30.095947 44.542394) + (xy 30.737465 45.183912) + (xy 30.739247 45.181552) + (xy 30.739248 45.18155) + (xy 30.779498 45.100717) + (xy 30.827 45.049479) + (xy 30.894663 45.032057) + (xy 30.961004 45.053982) + (xy 31.00496 45.108292) + (xy 31.014499 45.155987) + (xy 31.0145 46.049546) + (xy 30.994816 46.116585) + (xy 30.978181 46.137227) + (xy 30.329892 46.785515) + (xy 30.268569 46.819) + (xy 30.219426 46.819722) + (xy 30.111243 46.7995) + (xy 29.888757 46.7995) + (xy 29.67006 46.840382) + (xy 29.64234 46.851121) + (xy 29.462601 46.920752) + (xy 29.462595 46.920754) + (xy 29.273439 47.037874) + (xy 29.273437 47.037876) + (xy 29.10902 47.187761) + (xy 28.974943 47.365308) + (xy 28.974938 47.365316) + (xy 28.875775 47.564461) + (xy 28.875769 47.564476) + (xy 28.814885 47.778462) + (xy 28.814884 47.778464) + (xy 28.794357 47.999999) + (xy 28.794357 48) + (xy 28.814884 48.221535) + (xy 28.814885 48.221537) + (xy 28.875769 48.435523) + (xy 28.875775 48.435538) + (xy 28.974938 48.634683) + (xy 28.974943 48.634691) + (xy 29.10902 48.812238) + (xy 29.273437 48.962123) + (xy 29.273439 48.962125) + (xy 29.462595 49.079245) + (xy 29.462596 49.079245) + (xy 29.462599 49.079247) + (xy 29.67006 49.159618) + (xy 29.888757 49.2005) + (xy 29.888759 49.2005) + (xy 30.111241 49.2005) + (xy 30.111243 49.2005) + (xy 30.32994 49.159618) + (xy 30.537401 49.079247) + (xy 30.726562 48.962124) + (xy 30.890981 48.812236) + (xy 31.025058 48.634689) + (xy 31.124229 48.435528) + (xy 31.185115 48.221536) + (xy 31.205643 48) + (xy 31.185115 47.778464) + (xy 31.185112 47.778454) + (xy 31.184685 47.776167) + (xy 31.184798 47.775046) + (xy 31.184586 47.772755) + (xy 31.185034 47.772713) + (xy 31.191713 47.706651) + (xy 31.218889 47.665699) + (xy 32.023787 46.860802) + (xy 32.036042 46.850986) + (xy 32.035859 46.850764) + (xy 32.041868 46.845791) + (xy 32.041877 46.845786) + (xy 32.088607 46.796022) + (xy 32.089846 46.794743) + (xy 32.11012 46.774471) + (xy 32.114379 46.768978) + (xy 32.118152 46.764561) + (xy 32.150062 46.730582) + (xy 32.159713 46.713024) + (xy 32.170396 46.696761) + (xy 32.182673 46.680936) + (xy 32.201185 46.638153) + (xy 32.203738 46.632941) + (xy 32.226197 46.592092) + (xy 32.23118 46.57268) + (xy 32.237481 46.55428) + (xy 32.245437 46.535896) + (xy 32.252729 46.489852) + (xy 32.253906 46.484171) + (xy 32.2655 46.439019) + (xy 32.2655 46.418982) + (xy 32.267027 46.399582) + (xy 32.27016 46.379804) + (xy 32.265775 46.333415) + (xy 32.2655 46.327577) + (xy 32.2655 37.458983) + (xy 32.267027 37.439582) + (xy 32.27016 37.419804) + (xy 32.265775 37.373415) + (xy 32.2655 37.367577) + (xy 32.2655 30.310451) + (xy 32.285185 30.243412) + (xy 32.301814 30.222775) + (xy 34.20958 28.315008) + (xy 34.270901 28.281525) + (xy 34.340593 28.286509) + (xy 34.396526 28.328381) + (xy 34.406453 28.343932) + (xy 34.432144 28.391674) + (xy 34.432148 28.391681) + (xy 34.572489 28.567663) + (xy 34.572491 28.567664) + (xy 34.572492 28.567666) + (xy 34.742004 28.715765) + (xy 34.935236 28.831215) + (xy 34.994102 28.853307) + (xy 35.049949 28.895292) + (xy 35.074232 28.960806) + (xy 35.059241 29.029049) + (xy 35.009735 29.078353) + (xy 35.004331 29.08112) + (xy 34.836033 29.162167) + (xy 34.836025 29.162171) + (xy 34.653927 29.294473) + (xy 34.653925 29.294474) + (xy 34.498366 29.457176) + (xy 34.374363 29.645033) + (xy 34.285899 29.852004) + (xy 34.285895 29.852017) + (xy 34.23581 30.071457) + (xy 34.235808 30.071468) + (xy 34.227382 30.25909) + (xy 34.22571 30.29633) + (xy 34.255925 30.519387) + (xy 34.255926 30.51939) + (xy 34.325483 30.733465) + (xy 34.432146 30.931678) + (xy 34.432148 30.931681) + (xy 34.572489 31.107663) + (xy 34.572491 31.107664) + (xy 34.572492 31.107666) + (xy 34.742004 31.255765) + (xy 34.935236 31.371215) + (xy 34.994102 31.393307) + (xy 35.049949 31.435292) + (xy 35.074232 31.500806) + (xy 35.059241 31.569049) + (xy 35.009735 31.618353) + (xy 35.004331 31.62112) + (xy 34.836033 31.702167) + (xy 34.836025 31.702171) + (xy 34.653927 31.834473) + (xy 34.653925 31.834474) + (xy 34.498366 31.997176) + (xy 34.374363 32.185033) + (xy 34.285899 32.392004) + (xy 34.285895 32.392017) + (xy 34.23581 32.611457) + (xy 34.235808 32.611468) + (xy 34.230769 32.723674) + (xy 34.22571 32.83633) + (xy 34.255925 33.059387) + (xy 34.255926 33.05939) + (xy 34.325483 33.273465) + (xy 34.432146 33.471678) + (xy 34.432148 33.471681) + (xy 34.572489 33.647663) + (xy 34.572491 33.647664) + (xy 34.572492 33.647666) + (xy 34.742004 33.795765) + (xy 34.935236 33.911215) + (xy 34.994102 33.933307) + (xy 35.049949 33.975292) + (xy 35.074232 34.040806) + (xy 35.059241 34.109049) + (xy 35.009735 34.158353) + (xy 35.004331 34.16112) + (xy 34.836033 34.242167) + (xy 34.836025 34.242171) + (xy 34.653927 34.374473) + (xy 34.653925 34.374474) + (xy 34.498366 34.537176) + (xy 34.374363 34.725033) + (xy 34.285899 34.932004) + (xy 34.285895 34.932017) + (xy 34.23581 35.151457) + (xy 34.235808 35.151468) + (xy 34.230285 35.274457) + (xy 34.22571 35.37633) + (xy 34.255925 35.599387) + (xy 34.255926 35.59939) + (xy 34.325483 35.813465) + (xy 34.432146 36.011678) + (xy 34.432148 36.011681) + (xy 34.572489 36.187663) + (xy 34.572491 36.187664) + (xy 34.572492 36.187666) + (xy 34.742004 36.335765) + (xy 34.935236 36.451215) + (xy 34.994102 36.473307) + (xy 35.049949 36.515292) + (xy 35.074232 36.580806) + (xy 35.059241 36.649049) + (xy 35.009735 36.698353) + (xy 35.004331 36.70112) + (xy 34.836033 36.782167) + (xy 34.836025 36.782171) + (xy 34.653927 36.914473) + (xy 34.653925 36.914474) + (xy 34.498366 37.077176) + (xy 34.374363 37.265033) + (xy 34.285899 37.472004) + (xy 34.285895 37.472017) + (xy 34.23581 37.691457) + (xy 34.235808 37.691468) + (xy 34.22571 37.916325) + (xy 34.22571 37.91633) + (xy 34.255925 38.139387) + (xy 34.255926 38.13939) + (xy 34.325483 38.353465) + (xy 34.432146 38.551678) + (xy 34.432148 38.551681) + (xy 34.572489 38.727663) + (xy 34.572491 38.727664) + (xy 34.572492 38.727666) + (xy 34.742004 38.875765) + (xy 34.935236 38.991215) + (xy 34.994102 39.013307) + (xy 35.049949 39.055292) + (xy 35.074232 39.120806) + (xy 35.059241 39.189049) + (xy 35.009735 39.238353) + (xy 35.004331 39.24112) + (xy 34.836033 39.322167) + (xy 34.836025 39.322171) + (xy 34.653927 39.454473) + (xy 34.653925 39.454474) + (xy 34.498366 39.617176) + (xy 34.374363 39.805033) + (xy 34.285899 40.012004) + (xy 34.285895 40.012017) + (xy 34.23581 40.231457) + (xy 34.235808 40.231468) + (xy 34.22571 40.456325) + (xy 34.22571 40.45633) + (xy 34.255925 40.679387) + (xy 34.255926 40.67939) + (xy 34.325483 40.893465) + (xy 34.432146 41.091678) + (xy 34.432148 41.091681) + (xy 34.572489 41.267663) + (xy 34.572491 41.267664) + (xy 34.572492 41.267666) + (xy 34.742004 41.415765) + (xy 34.935236 41.531215) + (xy 35.145976 41.610307) + (xy 35.36745 41.6505) + (xy 35.367453 41.6505) + (xy 36.536148 41.6505) + (xy 36.536155 41.6505) + (xy 36.704188 41.635377) + (xy 36.704192 41.635376) + (xy 36.92116 41.575496) + (xy 36.921162 41.575495) + (xy 36.92117 41.575493) + (xy 37.123973 41.477829) + (xy 37.306078 41.345522) + (xy 37.461632 41.182825) + (xy 37.509812 41.109835) + (xy 37.542013 41.061053) + (xy 37.595373 41.015948) + (xy 37.664648 41.006851) + (xy 37.727844 41.036652) + (xy 37.764896 41.095888) + (xy 37.7695 41.129364) + (xy 37.7695 41.456151) + (xy 37.784622 41.624186) + (xy 37.784623 41.624192) + (xy 37.844503 41.84116) + (xy 37.844508 41.841173) + (xy 37.942167 42.043966) + (xy 37.942171 42.043974) + (xy 38.074473 42.226072) + (xy 38.074474 42.226074) + (xy 38.074477 42.226077) + (xy 38.074478 42.226078) + (xy 38.10752 42.257669) + (xy 38.237176 42.381633) + (xy 38.425033 42.505636) + (xy 38.632004 42.5941) + (xy 38.632007 42.594101) + (xy 38.632012 42.594103) + (xy 38.851463 42.644191) + (xy 39.07633 42.65429) + (xy 39.299387 42.624075) + (xy 39.513464 42.554517) + (xy 39.711681 42.447852) + (xy 39.887666 42.307508) + (xy 40.035765 42.137996) + (xy 40.151215 41.944764) + (xy 40.173307 41.885897) + (xy 40.215292 41.830051) + (xy 40.280806 41.805767) + (xy 40.349048 41.820758) + (xy 40.398353 41.870264) + (xy 40.40112 41.875668) + (xy 40.482167 42.043966) + (xy 40.482171 42.043974) + (xy 40.614473 42.226072) + (xy 40.614474 42.226074) + (xy 40.614477 42.226077) + (xy 40.614478 42.226078) + (xy 40.64752 42.257669) + (xy 40.777176 42.381633) + (xy 40.965033 42.505636) + (xy 41.172004 42.5941) + (xy 41.172007 42.594101) + (xy 41.172012 42.594103) + (xy 41.391463 42.644191) + (xy 41.61633 42.65429) + (xy 41.839387 42.624075) + (xy 42.053464 42.554517) + (xy 42.251681 42.447852) + (xy 42.427666 42.307508) + (xy 42.575765 42.137996) + (xy 42.691215 41.944764) + (xy 42.713307 41.885897) + (xy 42.755292 41.830051) + (xy 42.820806 41.805767) + (xy 42.889048 41.820758) + (xy 42.938353 41.870264) + (xy 42.94112 41.875668) + (xy 43.022167 42.043966) + (xy 43.022171 42.043974) + (xy 43.154473 42.226072) + (xy 43.154474 42.226074) + (xy 43.154477 42.226077) + (xy 43.154478 42.226078) + (xy 43.18752 42.257669) + (xy 43.317176 42.381633) + (xy 43.505033 42.505636) + (xy 43.712004 42.5941) + (xy 43.712007 42.594101) + (xy 43.712012 42.594103) + (xy 43.931463 42.644191) + (xy 44.15633 42.65429) + (xy 44.379387 42.624075) + (xy 44.593464 42.554517) + (xy 44.791681 42.447852) + (xy 44.967666 42.307508) + (xy 45.115765 42.137996) + (xy 45.231215 41.944764) + (xy 45.253307 41.885897) + (xy 45.295292 41.830051) + (xy 45.360806 41.805767) + (xy 45.429048 41.820758) + (xy 45.478353 41.870264) + (xy 45.48112 41.875668) + (xy 45.562167 42.043966) + (xy 45.562171 42.043974) + (xy 45.694473 42.226072) + (xy 45.694474 42.226074) + (xy 45.694477 42.226077) + (xy 45.694478 42.226078) + (xy 45.72752 42.257669) + (xy 45.857176 42.381633) + (xy 46.045033 42.505636) + (xy 46.252004 42.5941) + (xy 46.252007 42.594101) + (xy 46.252012 42.594103) + (xy 46.471463 42.644191) + (xy 46.69633 42.65429) + (xy 46.919387 42.624075) + (xy 47.133464 42.554517) + (xy 47.331681 42.447852) + (xy 47.507666 42.307508) + (xy 47.655765 42.137996) + (xy 47.771215 41.944764) + (xy 47.793307 41.885897) + (xy 47.835292 41.830051) + (xy 47.900806 41.805767) + (xy 47.969048 41.820758) + (xy 48.018353 41.870264) + (xy 48.02112 41.875668) + (xy 48.102167 42.043966) + (xy 48.102171 42.043974) + (xy 48.234473 42.226072) + (xy 48.234474 42.226074) + (xy 48.234477 42.226077) + (xy 48.234478 42.226078) + (xy 48.26752 42.257669) + (xy 48.397176 42.381633) + (xy 48.585033 42.505636) + (xy 48.792004 42.5941) + (xy 48.792007 42.594101) + (xy 48.792012 42.594103) + (xy 49.011463 42.644191) + (xy 49.23633 42.65429) + (xy 49.459387 42.624075) + (xy 49.673464 42.554517) + (xy 49.871681 42.447852) + (xy 50.047666 42.307508) + (xy 50.195765 42.137996) + (xy 50.311215 41.944764) + (xy 50.390307 41.734024) + (xy 50.423196 41.552795) + (xy 50.4305 41.512549) + (xy 50.4305 41.13473) + (xy 50.450185 41.067691) + (xy 50.502989 41.021936) + (xy 50.572147 41.011992) + (xy 50.635703 41.041017) + (xy 50.663695 41.075972) + (xy 50.672146 41.091678) + (xy 50.672148 41.091681) + (xy 50.812489 41.267663) + (xy 50.812491 41.267664) + (xy 50.812492 41.267666) + (xy 50.982004 41.415765) + (xy 51.175236 41.531215) + (xy 51.385976 41.610307) + (xy 51.60745 41.6505) + (xy 51.607453 41.6505) + (xy 52.776148 41.6505) + (xy 52.776155 41.6505) + (xy 52.944188 41.635377) + (xy 52.944192 41.635376) + (xy 53.16116 41.575496) + (xy 53.161162 41.575495) + (xy 53.16117 41.575493) + (xy 53.363973 41.477829) + (xy 53.546078 41.345522) + (xy 53.701632 41.182825) + (xy 53.825635 40.994968) + (xy 53.914103 40.787988) + (xy 53.964191 40.568537) + (xy 53.97429 40.34367) + (xy 53.944075 40.120613) + (xy 53.874517 39.906536) + (xy 53.767852 39.708319) + (xy 53.687282 39.607288) + (xy 53.62751 39.532336) + (xy 53.627508 39.532334) + (xy 53.457996 39.384235) + (xy 53.264767 39.268787) + (xy 53.264768 39.268787) + (xy 53.264766 39.268786) + (xy 53.264764 39.268785) + (xy 53.205896 39.246691) + (xy 53.15005 39.204706) + (xy 53.125767 39.139191) + (xy 53.140759 39.070949) + (xy 53.190265 39.021645) + (xy 53.19561 39.018907) + (xy 53.363973 38.937829) + (xy 53.546078 38.805522) + (xy 53.701632 38.642825) + (xy 53.825635 38.454968) + (xy 53.863957 38.365311) + (xy 53.9141 38.247995) + (xy 53.914099 38.247995) + (xy 53.914103 38.247988) + (xy 53.964191 38.028537) + (xy 53.97429 37.80367) + (xy 53.944075 37.580613) + (xy 53.874517 37.366536) + (xy 53.767852 37.168319) + (xy 53.627508 36.992334) + (xy 53.457996 36.844235) + (xy 53.264767 36.728787) + (xy 53.264768 36.728787) + (xy 53.264766 36.728786) + (xy 53.264764 36.728785) + (xy 53.205896 36.706691) + (xy 53.15005 36.664706) + (xy 53.125767 36.599191) + (xy 53.140759 36.530949) + (xy 53.190265 36.481645) + (xy 53.19561 36.478907) + (xy 53.363973 36.397829) + (xy 53.546078 36.265522) + (xy 53.701632 36.102825) + (xy 53.825635 35.914968) + (xy 53.914103 35.707988) + (xy 53.964191 35.488537) + (xy 53.97429 35.26367) + (xy 53.944075 35.040613) + (xy 53.874517 34.826536) + (xy 53.767852 34.628319) + (xy 53.627508 34.452334) + (xy 53.457996 34.304235) + (xy 53.264767 34.188787) + (xy 53.264768 34.188787) + (xy 53.264766 34.188786) + (xy 53.264764 34.188785) + (xy 53.205896 34.166691) + (xy 53.15005 34.124706) + (xy 53.125767 34.059191) + (xy 53.140759 33.990949) + (xy 53.190265 33.941645) + (xy 53.19561 33.938907) + (xy 53.363973 33.857829) + (xy 53.546078 33.725522) + (xy 53.701632 33.562825) + (xy 53.825635 33.374968) + (xy 53.835403 33.352116) + (xy 53.9141 33.167995) + (xy 53.914099 33.167995) + (xy 53.914103 33.167988) + (xy 53.964191 32.948537) + (xy 53.97429 32.72367) + (xy 53.944075 32.500613) + (xy 53.874517 32.286536) + (xy 53.767852 32.088319) + (xy 53.627508 31.912334) + (xy 53.457996 31.764235) + (xy 53.264767 31.648787) + (xy 53.264768 31.648787) + (xy 53.264766 31.648786) + (xy 53.264764 31.648785) + (xy 53.205896 31.626691) + (xy 53.15005 31.584706) + (xy 53.125767 31.519191) + (xy 53.140759 31.450949) + (xy 53.190265 31.401645) + (xy 53.19561 31.398907) + (xy 53.363973 31.317829) + (xy 53.546078 31.185522) + (xy 53.701632 31.022825) + (xy 53.825635 30.834968) + (xy 53.914103 30.627988) + (xy 53.964191 30.408537) + (xy 53.97429 30.18367) + (xy 53.944075 29.960613) + (xy 53.874517 29.746536) + (xy 53.767852 29.548319) + (xy 53.695167 29.457175) + (xy 53.62751 29.372336) + (xy 53.619475 29.365316) + (xy 53.457996 29.224235) + (xy 53.264767 29.108787) + (xy 53.264768 29.108787) + (xy 53.264766 29.108786) + (xy 53.264764 29.108785) + (xy 53.205896 29.086691) + (xy 53.15005 29.044706) + (xy 53.125767 28.979191) + (xy 53.140759 28.910949) + (xy 53.190265 28.861645) + (xy 53.19561 28.858907) + (xy 53.363973 28.777829) + (xy 53.546078 28.645522) + (xy 53.701632 28.482825) + (xy 53.825635 28.294968) + (xy 53.914103 28.087988) + (xy 53.964191 27.868537) + (xy 53.97429 27.64367) + (xy 53.944075 27.420613) + (xy 53.874517 27.206536) + (xy 53.767852 27.008319) + (xy 53.627508 26.832334) + (xy 53.457996 26.684235) + (xy 53.264767 26.568787) + (xy 53.264768 26.568787) + (xy 53.264766 26.568786) + (xy 53.264764 26.568785) + (xy 53.205896 26.546691) + (xy 53.15005 26.504706) + (xy 53.125767 26.439191) + (xy 53.140759 26.370949) + (xy 53.190265 26.321645) + (xy 53.19561 26.318907) + (xy 53.363973 26.237829) + (xy 53.546078 26.105522) + (xy 53.701632 25.942825) + (xy 53.825635 25.754968) + (xy 53.914103 25.547988) + (xy 53.964191 25.328537) + (xy 53.97429 25.10367) + (xy 53.944075 24.880613) + (xy 53.874517 24.666536) + (xy 53.767852 24.468319) + (xy 53.692189 24.373441) + (xy 53.62751 24.292336) + (xy 53.627508 24.292334) + (xy 53.457996 24.144235) + (xy 53.264767 24.028787) + (xy 53.264768 24.028787) + (xy 53.264766 24.028786) + (xy 53.264764 24.028785) + (xy 53.205896 24.006691) + (xy 53.15005 23.964706) + (xy 53.125767 23.899191) + (xy 53.140759 23.830949) + (xy 53.190265 23.781645) + (xy 53.19561 23.778907) + (xy 53.363973 23.697829) + (xy 53.546078 23.565522) + (xy 53.701632 23.402825) + (xy 53.825635 23.214968) + (xy 53.825736 23.214733) + (xy 53.9141 23.007995) + (xy 53.914099 23.007995) + (xy 53.914103 23.007988) + (xy 53.964191 22.788537) + (xy 53.97429 22.56367) + (xy 53.944075 22.340613) + (xy 53.874517 22.126536) + (xy 53.767852 21.928319) + (xy 53.690515 21.831342) + (xy 53.62751 21.752336) + (xy 53.587501 21.717381) + (xy 53.457996 21.604235) + (xy 53.264767 21.488787) + (xy 53.264768 21.488787) + (xy 53.264766 21.488786) + (xy 53.264764 21.488785) + (xy 53.205896 21.466691) + (xy 53.15005 21.424706) + (xy 53.125767 21.359191) + (xy 53.140759 21.290949) + (xy 53.190265 21.241645) + (xy 53.19561 21.238907) + (xy 53.363973 21.157829) + (xy 53.546078 21.025522) + (xy 53.701632 20.862825) + (xy 53.825635 20.674968) + (xy 53.914103 20.467988) + (xy 53.964191 20.248537) + (xy 53.97429 20.02367) + (xy 53.944075 19.800613) + (xy 53.874517 19.586536) + (xy 53.767852 19.388319) + (xy 53.627508 19.212334) + (xy 53.457996 19.064235) + (xy 53.264764 18.948785) + (xy 53.146775 18.904503) + (xy 53.054023 18.869692) + (xy 52.83255 18.8295) + (xy 52.832547 18.8295) + (xy 51.663845 18.8295) + (xy 51.625399 18.83296) + (xy 51.495813 18.844622) + (xy 51.495807 18.844623) + (xy 51.278839 18.904503) + (xy 51.278826 18.904508) + (xy 51.076033 19.002167) + (xy 51.076025 19.002171) + (xy 50.893927 19.134473) + (xy 50.893925 19.134474) + (xy 50.738366 19.297176) + (xy 50.614363 19.485033) + (xy 50.525899 19.692004) + (xy 50.525895 19.692017) + (xy 50.47581 19.911457) + (xy 50.475808 19.911468) + (xy 50.470769 20.023674) + (xy 50.46571 20.13633) + (xy 50.495925 20.359387) + (xy 50.495926 20.35939) + (xy 50.565483 20.573465) + (xy 50.672146 20.771678) + (xy 50.672148 20.771681) + (xy 50.812489 20.947663) + (xy 50.812491 20.947664) + (xy 50.812492 20.947666) + (xy 50.982004 21.095765) + (xy 51.175236 21.211215) + (xy 51.234102 21.233307) + (xy 51.289949 21.275292) + (xy 51.314232 21.340806) + (xy 51.299241 21.409049) + (xy 51.249735 21.458353) + (xy 51.244331 21.46112) + (xy 51.076033 21.542167) + (xy 51.076025 21.542171) + (xy 50.893927 21.674473) + (xy 50.893925 21.674474) + (xy 50.738366 21.837176) + (xy 50.614363 22.025033) + (xy 50.525899 22.232004) + (xy 50.525895 22.232017) + (xy 50.47581 22.451457) + (xy 50.475808 22.451468) + (xy 50.46571 22.676325) + (xy 50.46571 22.67633) + (xy 50.495925 22.899387) + (xy 50.495926 22.89939) + (xy 50.565483 23.113465) + (xy 50.672146 23.311678) + (xy 50.672148 23.311681) + (xy 50.812489 23.487663) + (xy 50.812491 23.487664) + (xy 50.812492 23.487666) + (xy 50.982004 23.635765) + (xy 51.175236 23.751215) + (xy 51.234102 23.773307) + (xy 51.289949 23.815292) + (xy 51.314232 23.880806) + (xy 51.299241 23.949049) + (xy 51.249735 23.998353) + (xy 51.244331 24.00112) + (xy 51.076033 24.082167) + (xy 51.076025 24.082171) + (xy 50.893927 24.214473) + (xy 50.893925 24.214474) + (xy 50.738366 24.377176) + (xy 50.614363 24.565033) + (xy 50.525899 24.772004) + (xy 50.525895 24.772017) + (xy 50.47581 24.991457) + (xy 50.475808 24.991468) + (xy 50.46571 25.216325) + (xy 50.46571 25.21633) + (xy 50.495925 25.439387) + (xy 50.495926 25.43939) + (xy 50.565483 25.653465) + (xy 50.672146 25.851678) + (xy 50.672148 25.851681) + (xy 50.812489 26.027663) + (xy 50.812491 26.027664) + (xy 50.812492 26.027666) + (xy 50.982004 26.175765) + (xy 51.175236 26.291215) + (xy 51.234102 26.313307) + (xy 51.289949 26.355292) + (xy 51.314232 26.420806) + (xy 51.299241 26.489049) + (xy 51.249735 26.538353) + (xy 51.244331 26.54112) + (xy 51.076033 26.622167) + (xy 51.076025 26.622171) + (xy 50.893927 26.754473) + (xy 50.893925 26.754474) + (xy 50.738366 26.917176) + (xy 50.614363 27.105033) + (xy 50.525899 27.312004) + (xy 50.525895 27.312017) + (xy 50.47581 27.531457) + (xy 50.475808 27.531468) + (xy 50.470769 27.643674) + (xy 50.46571 27.75633) + (xy 50.495925 27.979387) + (xy 50.495926 27.97939) + (xy 50.565483 28.193465) + (xy 50.672146 28.391678) + (xy 50.672148 28.391681) + (xy 50.812489 28.567663) + (xy 50.812491 28.567664) + (xy 50.812492 28.567666) + (xy 50.982004 28.715765) + (xy 51.175236 28.831215) + (xy 51.234102 28.853307) + (xy 51.289949 28.895292) + (xy 51.314232 28.960806) + (xy 51.299241 29.029049) + (xy 51.249735 29.078353) + (xy 51.244331 29.08112) + (xy 51.076033 29.162167) + (xy 51.076025 29.162171) + (xy 50.893927 29.294473) + (xy 50.893925 29.294474) + (xy 50.738366 29.457176) + (xy 50.614363 29.645033) + (xy 50.525899 29.852004) + (xy 50.525895 29.852017) + (xy 50.47581 30.071457) + (xy 50.475808 30.071468) + (xy 50.467382 30.25909) + (xy 50.46571 30.29633) + (xy 50.495925 30.519387) + (xy 50.495926 30.51939) + (xy 50.565483 30.733465) + (xy 50.672146 30.931678) + (xy 50.672148 30.931681) + (xy 50.812489 31.107663) + (xy 50.812491 31.107664) + (xy 50.812492 31.107666) + (xy 50.982004 31.255765) + (xy 51.175236 31.371215) + (xy 51.234102 31.393307) + (xy 51.289949 31.435292) + (xy 51.314232 31.500806) + (xy 51.299241 31.569049) + (xy 51.249735 31.618353) + (xy 51.244331 31.62112) + (xy 51.076033 31.702167) + (xy 51.076025 31.702171) + (xy 50.893927 31.834473) + (xy 50.893925 31.834474) + (xy 50.738366 31.997176) + (xy 50.614363 32.185033) + (xy 50.525899 32.392004) + (xy 50.525895 32.392017) + (xy 50.47581 32.611457) + (xy 50.475808 32.611468) + (xy 50.470769 32.723674) + (xy 50.46571 32.83633) + (xy 50.495925 33.059387) + (xy 50.495926 33.05939) + (xy 50.565483 33.273465) + (xy 50.672146 33.471678) + (xy 50.672148 33.471681) + (xy 50.812489 33.647663) + (xy 50.812491 33.647664) + (xy 50.812492 33.647666) + (xy 50.982004 33.795765) + (xy 51.175236 33.911215) + (xy 51.234102 33.933307) + (xy 51.289949 33.975292) + (xy 51.314232 34.040806) + (xy 51.299241 34.109049) + (xy 51.249735 34.158353) + (xy 51.244331 34.16112) + (xy 51.076033 34.242167) + (xy 51.076025 34.242171) + (xy 50.893927 34.374473) + (xy 50.893925 34.374474) + (xy 50.738366 34.537176) + (xy 50.614363 34.725033) + (xy 50.525899 34.932004) + (xy 50.525895 34.932017) + (xy 50.47581 35.151457) + (xy 50.475808 35.151468) + (xy 50.470285 35.274457) + (xy 50.46571 35.37633) + (xy 50.495925 35.599387) + (xy 50.495926 35.59939) + (xy 50.565483 35.813465) + (xy 50.672146 36.011678) + (xy 50.672148 36.011681) + (xy 50.812489 36.187663) + (xy 50.812491 36.187664) + (xy 50.812492 36.187666) + (xy 50.982004 36.335765) + (xy 51.175236 36.451215) + (xy 51.234102 36.473307) + (xy 51.289949 36.515292) + (xy 51.314232 36.580806) + (xy 51.299241 36.649049) + (xy 51.249735 36.698353) + (xy 51.244331 36.70112) + (xy 51.076033 36.782167) + (xy 51.076025 36.782171) + (xy 50.893927 36.914473) + (xy 50.893925 36.914474) + (xy 50.738366 37.077176) + (xy 50.614363 37.265033) + (xy 50.525899 37.472004) + (xy 50.525895 37.472017) + (xy 50.47581 37.691457) + (xy 50.475808 37.691468) + (xy 50.46571 37.916325) + (xy 50.46571 37.91633) + (xy 50.495925 38.139387) + (xy 50.495926 38.13939) + (xy 50.565483 38.353465) + (xy 50.672146 38.551678) + (xy 50.672148 38.551681) + (xy 50.812489 38.727663) + (xy 50.812491 38.727664) + (xy 50.812492 38.727666) + (xy 50.982004 38.875765) + (xy 51.175236 38.991215) + (xy 51.234102 39.013307) + (xy 51.289949 39.055292) + (xy 51.314232 39.120806) + (xy 51.299241 39.189049) + (xy 51.249735 39.238353) + (xy 51.244331 39.24112) + (xy 51.076033 39.322167) + (xy 51.076025 39.322171) + (xy 50.893927 39.454473) + (xy 50.893925 39.454474) + (xy 50.738366 39.617176) + (xy 50.614364 39.805031) + (xy 50.565106 39.920276) + (xy 50.520657 39.974184) + (xy 50.454119 39.995503) + (xy 50.386618 39.977465) + (xy 50.339585 39.925796) + (xy 50.33956 39.925745) + (xy 50.257829 39.756027) + (xy 50.189516 39.662002) + (xy 50.128243 39.577666) + (xy 50.104763 39.51186) + (xy 50.109544 39.483469) + (xy 50.100521 39.454747) + (xy 50.100499 39.452417) + (xy 50.1005 18.624) + (xy 50.120185 18.556961) + (xy 50.172989 18.511206) + (xy 50.2245 18.5) + (xy 57.605221 18.5) + (xy 57.686891 18.500103) + (xy 57.875657 18.500342) + (xy 57.942671 18.520111) + (xy 57.988359 18.572973) + (xy 57.9995 18.624342) + (xy 57.9995 69.6755) + (xy 57.979815 69.742539) + (xy 57.927011 69.788294) + (xy 57.8755 69.7995) + (xy 14.3245 69.7995) + (xy 14.257461 69.779815) + (xy 14.211706 69.727011) + (xy 14.2005 69.6755) + (xy 14.2005 66.049999) + (xy 17.544706 66.049999) + (xy 17.550208 66.119913) + (xy 17.547901 66.13089) + (xy 17.553636 66.166176) + (xy 17.554248 66.171253) + (xy 17.554834 66.178695) + (xy 17.555026 66.183567) + (xy 17.555026 66.213821) + (xy 17.558603 66.226589) + (xy 17.563853 66.2933) + (xy 17.563853 66.293301) + (xy 17.580978 66.364631) + (xy 17.58036 66.376974) + (xy 17.592262 66.412623) + (xy 17.593739 66.41778) + (xy 17.595636 66.425681) + (xy 17.596546 66.430208) + (xy 17.601068 66.458034) + (xy 17.605951 66.468645) + (xy 17.620828 66.530612) + (xy 17.620831 66.530623) + (xy 17.650136 66.601372) + (xy 17.651575 66.614763) + (xy 17.669756 66.649403) + (xy 17.672138 66.654489) + (xy 17.675796 66.66332) + (xy 17.677326 66.667416) + (xy 17.685467 66.691801) + (xy 17.691054 66.700156) + (xy 17.714221 66.756087) + (xy 17.755942 66.824169) + (xy 17.759742 66.838217) + (xy 17.784037 66.870548) + (xy 17.787335 66.875398) + (xy 17.793449 66.885374) + (xy 17.795487 66.888961) + (xy 17.806054 66.909095) + (xy 17.811753 66.915244) + (xy 17.839654 66.960773) + (xy 17.841741 66.964179) + (xy 17.853008 66.977371) + (xy 17.895712 67.027371) + (xy 17.902094 67.041615) + (xy 17.93208 67.070417) + (xy 17.93627 67.074859) + (xy 17.94581 67.086028) + (xy 17.948232 67.089049) + (xy 17.95975 67.104377) + (xy 17.964994 67.10849) + (xy 18.000241 67.149759) + (xy 18.065918 67.205852) + (xy 18.075015 67.219788) + (xy 18.110027 67.243954) + (xy 18.115067 67.24783) + (xy 18.127281 67.258261) + (xy 18.1292 67.2599) + (xy 18.131882 67.26233) + (xy 18.142619 67.272642) + (xy 18.146906 67.275023) + (xy 18.185817 67.308256) + (xy 18.185821 67.308259) + (xy 18.185824 67.308261) + (xy 18.185826 67.308262) + (xy 18.262254 67.355098) + (xy 18.274091 67.368181) + (xy 18.313257 67.386766) + (xy 18.319069 67.389913) + (xy 18.339174 67.402234) + (xy 18.342 67.404073) + (xy 18.349973 67.409576) + (xy 18.352881 67.410634) + (xy 18.393911 67.435777) + (xy 18.393914 67.435779) + (xy 18.479767 67.47134) + (xy 18.494269 67.483026) + (xy 18.536564 67.495277) + (xy 18.54304 67.497548) + (xy 18.565614 67.506898) + (xy 18.570589 67.508959) + (xy 18.573447 67.510228) + (xy 18.57649 67.511672) + (xy 18.577703 67.511906) + (xy 18.619375 67.529168) + (xy 18.619378 67.529169) + (xy 18.619384 67.52917) + (xy 18.619388 67.529172) + (xy 18.712955 67.551635) + (xy 18.729936 67.561386) + (xy 18.774214 67.566762) + (xy 18.781199 67.56802) + (xy 18.856698 67.586146) + (xy 18.955907 67.593953) + (xy 18.975078 67.60126) + (xy 19.020116 67.599445) + (xy 19.027468 67.599585) + (xy 19.1 67.605294) + (xy 19.202501 67.597227) + (xy 19.223473 67.601632) + (xy 19.26801 67.59254) + (xy 19.275545 67.591478) + (xy 19.343302 67.586146) + (xy 19.44649 67.561372) + (xy 19.468785 67.562487) + (xy 19.511576 67.546258) + (xy 19.519072 67.543946) + (xy 19.580612 67.529172) + (xy 19.580617 67.52917) + (xy 19.580618 67.52917) + (xy 19.681708 67.487297) + (xy 19.704766 67.484817) + (xy 19.744595 67.461822) + (xy 19.751868 67.458235) + (xy 19.789517 67.442641) + (xy 19.806085 67.435779) + (xy 19.806086 67.435777) + (xy 19.806089 67.435777) + (xy 19.902215 67.37687) + (xy 19.92542 67.370592) + (xy 19.961174 67.341401) + (xy 19.967986 67.336565) + (xy 20.004397 67.314252) + (xy 20.014173 67.308263) + (xy 20.014173 67.308262) + (xy 20.014179 67.308259) + (xy 20.102432 67.232883) + (xy 20.125131 67.222712) + (xy 20.155814 67.188078) + (xy 20.161956 67.182045) + (xy 20.199759 67.149759) + (xy 20.358259 66.964179) + (xy 20.485777 66.756089) + (xy 20.579172 66.530612) + (xy 20.636146 66.293302) + (xy 20.655294 66.05) + (xy 20.651359 65.999999) + (xy 50.744706 65.999999) + (xy 50.750208 66.069913) + (xy 50.747901 66.08089) + (xy 50.753636 66.116176) + (xy 50.754248 66.121253) + (xy 50.754834 66.128695) + (xy 50.755026 66.133567) + (xy 50.755026 66.163821) + (xy 50.758603 66.176589) + (xy 50.763853 66.2433) + (xy 50.763853 66.243301) + (xy 50.780978 66.314631) + (xy 50.78036 66.326974) + (xy 50.792262 66.362623) + (xy 50.793741 66.367787) + (xy 50.795636 66.375681) + (xy 50.796546 66.380208) + (xy 50.801068 66.408034) + (xy 50.805951 66.418645) + (xy 50.820828 66.480612) + (xy 50.820831 66.480623) + (xy 50.850136 66.551372) + (xy 50.851575 66.564763) + (xy 50.869756 66.599403) + (xy 50.872138 66.604489) + (xy 50.875796 66.61332) + (xy 50.877326 66.617416) + (xy 50.885467 66.641801) + (xy 50.891054 66.650156) + (xy 50.914221 66.706087) + (xy 50.955942 66.774169) + (xy 50.959742 66.788217) + (xy 50.984037 66.820548) + (xy 50.987335 66.825398) + (xy 50.993449 66.835374) + (xy 50.995487 66.838961) + (xy 51.006054 66.859095) + (xy 51.011753 66.865244) + (xy 51.039654 66.910773) + (xy 51.041741 66.914179) + (xy 51.084445 66.964179) + (xy 51.095712 66.977371) + (xy 51.102094 66.991615) + (xy 51.13208 67.020417) + (xy 51.13627 67.024859) + (xy 51.14581 67.036028) + (xy 51.148232 67.039049) + (xy 51.15975 67.054377) + (xy 51.164994 67.05849) + (xy 51.200241 67.099759) + (xy 51.258784 67.149759) + (xy 51.265918 67.155852) + (xy 51.275015 67.169788) + (xy 51.310027 67.193954) + (xy 51.315067 67.19783) + (xy 51.3292 67.2099) + (xy 51.331882 67.21233) + (xy 51.342619 67.222642) + (xy 51.346906 67.225023) + (xy 51.380333 67.253572) + (xy 51.385821 67.258259) + (xy 51.385824 67.258261) + (xy 51.385826 67.258262) + (xy 51.462254 67.305098) + (xy 51.474091 67.318181) + (xy 51.513257 67.336766) + (xy 51.519069 67.339913) + (xy 51.539174 67.352234) + (xy 51.542 67.354073) + (xy 51.549973 67.359576) + (xy 51.552881 67.360634) + (xy 51.593911 67.385777) + (xy 51.593914 67.385779) + (xy 51.679767 67.42134) + (xy 51.694269 67.433026) + (xy 51.736564 67.445277) + (xy 51.74304 67.447548) + (xy 51.765614 67.456898) + (xy 51.770589 67.458959) + (xy 51.773447 67.460228) + (xy 51.77649 67.461672) + (xy 51.777703 67.461906) + (xy 51.819375 67.479168) + (xy 51.819378 67.479169) + (xy 51.819384 67.47917) + (xy 51.819388 67.479172) + (xy 51.912955 67.501635) + (xy 51.929936 67.511386) + (xy 51.974214 67.516762) + (xy 51.981199 67.51802) + (xy 52.056698 67.536146) + (xy 52.155907 67.543953) + (xy 52.175078 67.55126) + (xy 52.220116 67.549445) + (xy 52.227468 67.549585) + (xy 52.3 67.555294) + (xy 52.402501 67.547227) + (xy 52.423473 67.551632) + (xy 52.46801 67.54254) + (xy 52.475545 67.541478) + (xy 52.543302 67.536146) + (xy 52.64649 67.511372) + (xy 52.668785 67.512487) + (xy 52.711576 67.496258) + (xy 52.719072 67.493946) + (xy 52.780612 67.479172) + (xy 52.780617 67.47917) + (xy 52.780618 67.47917) + (xy 52.881708 67.437297) + (xy 52.904766 67.434817) + (xy 52.944595 67.411822) + (xy 52.951868 67.408235) + (xy 52.996092 67.389918) + (xy 53.006085 67.385779) + (xy 53.006086 67.385777) + (xy 53.006089 67.385777) + (xy 53.102215 67.32687) + (xy 53.12542 67.320592) + (xy 53.161174 67.291401) + (xy 53.167986 67.286565) + (xy 53.207536 67.26233) + (xy 53.214173 67.258263) + (xy 53.214173 67.258262) + (xy 53.214179 67.258259) + (xy 53.302432 67.182883) + (xy 53.325131 67.172712) + (xy 53.355814 67.138078) + (xy 53.361956 67.132045) + (xy 53.399759 67.099759) + (xy 53.558259 66.914179) + (xy 53.685777 66.706089) + (xy 53.779172 66.480612) + (xy 53.836146 66.243302) + (xy 53.855294 66) + (xy 53.836146 65.756698) + (xy 53.779172 65.519388) + (xy 53.763359 65.481212) + (xy 53.685777 65.29391) + (xy 53.558262 65.085826) + (xy 53.558261 65.085823) + (xy 53.399758 64.90024) + (xy 53.361969 64.867965) + (xy 53.35582 64.861927) + (xy 53.330719 64.833593) + (xy 53.302437 64.81712) + (xy 53.214179 64.741741) + (xy 53.214177 64.741739) + (xy 53.214175 64.741738) + (xy 53.214173 64.741737) + (xy 53.168002 64.713443) + (xy 53.161178 64.7086) + (xy 53.131723 64.684552) + (xy 53.102217 64.67313) + (xy 53.006088 64.614222) + (xy 53.006089 64.614222) + (xy 52.951879 64.591767) + (xy 52.944598 64.588177) + (xy 52.911562 64.569104) + (xy 52.881711 64.562703) + (xy 52.780623 64.520831) + (xy 52.780611 64.520827) + (xy 52.719098 64.506059) + (xy 52.71158 64.503741) + (xy 52.675851 64.490191) + (xy 52.646491 64.488628) + (xy 52.543302 64.463854) + (xy 52.5433 64.463853) + (xy 52.543299 64.463853) + (xy 52.475566 64.458522) + (xy 52.468022 64.457459) + (xy 52.430582 64.449815) + (xy 52.402505 64.452773) + (xy 52.329011 64.446989) + (xy 52.3 64.444706) + (xy 52.299999 64.444706) + (xy 52.227492 64.450412) + (xy 52.220126 64.450553) + (xy 52.182013 64.449017) + (xy 52.155908 64.456046) + (xy 52.0567 64.463853) + (xy 52.056698 64.463853) + (xy 51.981234 64.481971) + (xy 51.974229 64.483233) + (xy 51.936512 64.487813) + (xy 51.912956 64.498363) + (xy 51.819388 64.520828) + (xy 51.819386 64.520828) + (xy 51.819381 64.52083) + (xy 51.777699 64.538095) + (xy 51.776763 64.538195) + (xy 51.773411 64.539786) + (xy 51.770561 64.541051) + (xy 51.743054 64.552445) + (xy 51.736573 64.554718) + (xy 51.700316 64.56522) + (xy 51.679769 64.578659) + (xy 51.59391 64.614223) + (xy 51.593908 64.614223) + (xy 51.552879 64.639366) + (xy 51.550617 64.639977) + (xy 51.541996 64.645928) + (xy 51.539172 64.647766) + (xy 51.519085 64.660075) + (xy 51.513266 64.663228) + (xy 51.479479 64.67926) + (xy 51.462257 64.6949) + (xy 51.385823 64.741739) + (xy 51.346905 64.774978) + (xy 51.343512 64.776498) + (xy 51.331871 64.787679) + (xy 51.329188 64.790109) + (xy 51.315078 64.802161) + (xy 51.310029 64.806043) + (xy 51.27964 64.827019) + (xy 51.265919 64.844146) + (xy 51.20024 64.900241) + (xy 51.164993 64.94151) + (xy 51.160764 64.94427) + (xy 51.148216 64.960968) + (xy 51.145796 64.963987) + (xy 51.136285 64.975123) + (xy 51.132086 64.979575) + (xy 51.105897 65.00473) + (xy 51.095714 65.022627) + (xy 51.041738 65.085824) + (xy 51.011752 65.134756) + (xy 51.007046 65.139012) + (xy 50.995487 65.161036) + (xy 50.993455 65.164613) + (xy 50.98735 65.174578) + (xy 50.984048 65.179436) + (xy 50.962692 65.207855) + (xy 50.955943 65.225829) + (xy 50.914221 65.293913) + (xy 50.891053 65.349844) + (xy 50.886278 65.355768) + (xy 50.877325 65.382584) + (xy 50.875799 65.386671) + (xy 50.872145 65.395494) + (xy 50.86976 65.400588) + (xy 50.853687 65.431212) + (xy 50.850137 65.448626) + (xy 50.820831 65.519376) + (xy 50.820827 65.519388) + (xy 50.805951 65.58135) + (xy 50.801546 65.58902) + (xy 50.796546 65.619786) + (xy 50.79564 65.624298) + (xy 50.794641 65.628462) + (xy 50.793742 65.632204) + (xy 50.792265 65.637366) + (xy 50.781681 65.669065) + (xy 50.780979 65.685368) + (xy 50.777168 65.70124) + (xy 50.763853 65.7567) + (xy 50.758603 65.823409) + (xy 50.755026 65.832793) + (xy 50.755026 65.866434) + (xy 50.754834 65.87131) + (xy 50.754247 65.878749) + (xy 50.753636 65.883822) + (xy 50.748507 65.915377) + (xy 50.750208 65.930085) + (xy 50.744706 65.999999) + (xy 20.651359 65.999999) + (xy 20.636146 65.806698) + (xy 20.579172 65.569388) + (xy 20.559203 65.521178) + (xy 20.485777 65.34391) + (xy 20.358262 65.135826) + (xy 20.358261 65.135823) + (xy 20.235006 64.99151) + (xy 20.199759 64.950241) + (xy 20.192768 64.94427) + (xy 20.161969 64.917965) + (xy 20.15582 64.911927) + (xy 20.130719 64.883593) + (xy 20.102437 64.86712) + (xy 20.014179 64.791741) + (xy 20.014177 64.791739) + (xy 20.014175 64.791738) + (xy 20.014173 64.791737) + (xy 19.968002 64.763443) + (xy 19.961178 64.7586) + (xy 19.931723 64.734552) + (xy 19.902217 64.72313) + (xy 19.806088 64.664222) + (xy 19.806089 64.664222) + (xy 19.751879 64.641767) + (xy 19.744598 64.638177) + (xy 19.711562 64.619104) + (xy 19.681711 64.612703) + (xy 19.580623 64.570831) + (xy 19.580611 64.570827) + (xy 19.519098 64.556059) + (xy 19.51158 64.553741) + (xy 19.475851 64.540191) + (xy 19.446491 64.538628) + (xy 19.343302 64.513854) + (xy 19.3433 64.513853) + (xy 19.343299 64.513853) + (xy 19.275566 64.508522) + (xy 19.268022 64.507459) + (xy 19.230582 64.499815) + (xy 19.202505 64.502773) + (xy 19.129011 64.496989) + (xy 19.1 64.494706) + (xy 19.099999 64.494706) + (xy 19.027492 64.500412) + (xy 19.020126 64.500553) + (xy 18.982013 64.499017) + (xy 18.955908 64.506046) + (xy 18.8567 64.513853) + (xy 18.856698 64.513853) + (xy 18.781234 64.531971) + (xy 18.774229 64.533233) + (xy 18.736512 64.537813) + (xy 18.712956 64.548363) + (xy 18.619388 64.570828) + (xy 18.619386 64.570828) + (xy 18.619381 64.57083) + (xy 18.577699 64.588095) + (xy 18.576763 64.588195) + (xy 18.573411 64.589786) + (xy 18.570561 64.591051) + (xy 18.543054 64.602445) + (xy 18.536573 64.604718) + (xy 18.500316 64.61522) + (xy 18.479769 64.628659) + (xy 18.39391 64.664223) + (xy 18.393908 64.664223) + (xy 18.352879 64.689366) + (xy 18.350617 64.689977) + (xy 18.341996 64.695928) + (xy 18.339172 64.697766) + (xy 18.319085 64.710075) + (xy 18.313266 64.713228) + (xy 18.279479 64.72926) + (xy 18.262257 64.7449) + (xy 18.185823 64.791739) + (xy 18.146905 64.824978) + (xy 18.143512 64.826498) + (xy 18.131871 64.837679) + (xy 18.129188 64.840109) + (xy 18.115078 64.852161) + (xy 18.110029 64.856043) + (xy 18.07964 64.877019) + (xy 18.065919 64.894146) + (xy 18.00024 64.950241) + (xy 17.964993 64.99151) + (xy 17.960764 64.99427) + (xy 17.948216 65.010968) + (xy 17.945796 65.013987) + (xy 17.936285 65.025123) + (xy 17.932086 65.029575) + (xy 17.905897 65.05473) + (xy 17.895714 65.072625) + (xy 17.884441 65.085826) + (xy 17.841738 65.135824) + (xy 17.811752 65.184756) + (xy 17.807046 65.189012) + (xy 17.795487 65.211036) + (xy 17.793455 65.214613) + (xy 17.78735 65.224578) + (xy 17.784048 65.229436) + (xy 17.762692 65.257855) + (xy 17.755943 65.275829) + (xy 17.714221 65.343913) + (xy 17.691053 65.399844) + (xy 17.686278 65.405768) + (xy 17.677327 65.432582) + (xy 17.675796 65.436682) + (xy 17.672138 65.44551) + (xy 17.669757 65.450593) + (xy 17.653687 65.481212) + (xy 17.650137 65.498626) + (xy 17.620831 65.569376) + (xy 17.620827 65.569388) + (xy 17.605951 65.63135) + (xy 17.601546 65.63902) + (xy 17.596546 65.669786) + (xy 17.59564 65.674298) + (xy 17.594641 65.678462) + (xy 17.593742 65.682204) + (xy 17.592265 65.687366) + (xy 17.581681 65.719065) + (xy 17.580979 65.735369) + (xy 17.563853 65.8067) + (xy 17.558603 65.873409) + (xy 17.555026 65.882793) + (xy 17.555026 65.916434) + (xy 17.554834 65.92131) + (xy 17.554247 65.928749) + (xy 17.553636 65.933822) + (xy 17.548507 65.965377) + (xy 17.550208 65.980085) + (xy 17.544706 66.049999) + (xy 14.2005 66.049999) + (xy 14.2005 58.16) + (xy 22.844341 58.16) + (xy 22.864936 58.395403) + (xy 22.864938 58.395413) + (xy 22.926094 58.623655) + (xy 22.926096 58.623659) + (xy 22.926097 58.623663) + (xy 22.93 58.632032) + (xy 23.025965 58.83783) + (xy 23.025967 58.837834) + (xy 23.134281 58.992521) + (xy 23.161501 59.031396) + (xy 23.161506 59.031402) + (xy 23.328597 59.198493) + (xy 23.328603 59.198498) + (xy 23.514594 59.32873) + (xy 23.558219 59.383307) + (xy 23.565413 59.452805) + (xy 23.53389 59.51516) + (xy 23.514595 59.53188) + (xy 23.328922 59.66189) + (xy 23.32892 59.661891) + (xy 23.161891 59.82892) + (xy 23.161886 59.828926) + (xy 23.0264 60.02242) + (xy 23.026399 60.022422) + (xy 22.92657 60.236507) + (xy 22.926567 60.236513) + (xy 22.869364 60.449999) + (xy 22.869364 60.45) + (xy 23.766314 60.45) + (xy 23.740507 60.490156) + (xy 23.7 60.628111) + (xy 23.7 60.771889) + (xy 23.740507 60.909844) + (xy 23.766314 60.95) + (xy 22.869364 60.95) + (xy 22.926567 61.163486) + (xy 22.92657 61.163492) + (xy 23.026399 61.377578) + (xy 23.161894 61.571082) + (xy 23.328917 61.738105) + (xy 23.522421 61.8736) + (xy 23.736507 61.973429) + (xy 23.736516 61.973433) + (xy 23.95 62.030634) + (xy 23.95 61.135501) + (xy 24.057685 61.18468) + (xy 24.164237 61.2) + (xy 24.235763 61.2) + (xy 24.342315 61.18468) + (xy 24.45 61.135501) + (xy 24.45 62.030634) + (xy 24.663483 61.973433) + (xy 24.663492 61.973429) + (xy 24.877578 61.8736) + (xy 25.071082 61.738105) + (xy 25.238105 61.571082) + (xy 25.368425 61.384968) + (xy 25.423002 61.341344) + (xy 25.492501 61.334151) + (xy 25.554855 61.365673) + (xy 25.571575 61.384968) + (xy 25.701894 61.571082) + (xy 25.868917 61.738105) + (xy 26.062421 61.8736) + (xy 26.276507 61.973429) + (xy 26.276516 61.973433) + (xy 26.49 62.030634) + (xy 26.49 61.135501) + (xy 26.597685 61.18468) + (xy 26.704237 61.2) + (xy 26.775763 61.2) + (xy 26.882315 61.18468) + (xy 26.99 61.135501) + (xy 26.99 62.030634) + (xy 27.203483 61.973433) + (xy 27.203492 61.973429) + (xy 27.417578 61.8736) + (xy 27.611082 61.738105) + (xy 27.778105 61.571082) + (xy 27.908425 61.384968) + (xy 27.963002 61.341344) + (xy 28.032501 61.334151) + (xy 28.094855 61.365673) + (xy 28.111575 61.384968) + (xy 28.241894 61.571082) + (xy 28.408917 61.738105) + (xy 28.602421 61.8736) + (xy 28.816507 61.973429) + (xy 28.816516 61.973433) + (xy 29.03 62.030634) + (xy 29.03 61.135501) + (xy 29.137685 61.18468) + (xy 29.244237 61.2) + (xy 29.315763 61.2) + (xy 29.422315 61.18468) + (xy 29.53 61.135501) + (xy 29.53 62.030633) + (xy 29.743483 61.973433) + (xy 29.743492 61.973429) + (xy 29.957578 61.8736) + (xy 30.151082 61.738105) + (xy 30.318105 61.571082) + (xy 30.448425 61.384968) + (xy 30.503002 61.341344) + (xy 30.572501 61.334151) + (xy 30.634855 61.365673) + (xy 30.651575 61.384968) + (xy 30.781894 61.571082) + (xy 30.948917 61.738105) + (xy 31.142421 61.8736) + (xy 31.356507 61.973429) + (xy 31.356516 61.973433) + (xy 31.57 62.030634) + (xy 31.57 61.135501) + (xy 31.677685 61.18468) + (xy 31.784237 61.2) + (xy 31.855763 61.2) + (xy 31.962315 61.18468) + (xy 32.07 61.135501) + (xy 32.07 62.030634) + (xy 32.283483 61.973433) + (xy 32.283492 61.973429) + (xy 32.497578 61.8736) + (xy 32.691082 61.738105) + (xy 32.858105 61.571082) + (xy 32.988425 61.384968) + (xy 33.043002 61.341344) + (xy 33.112501 61.334151) + (xy 33.174855 61.365673) + (xy 33.191575 61.384968) + (xy 33.321894 61.571082) + (xy 33.488917 61.738105) + (xy 33.682421 61.8736) + (xy 33.896507 61.973429) + (xy 33.896516 61.973433) + (xy 34.11 62.030634) + (xy 34.11 61.135501) + (xy 34.217685 61.18468) + (xy 34.324237 61.2) + (xy 34.395763 61.2) + (xy 34.502315 61.18468) + (xy 34.61 61.135501) + (xy 34.61 62.030634) + (xy 34.823483 61.973433) + (xy 34.823492 61.973429) + (xy 35.037578 61.8736) + (xy 35.231082 61.738105) + (xy 35.398105 61.571082) + (xy 35.528425 61.384968) + (xy 35.583002 61.341344) + (xy 35.652501 61.334151) + (xy 35.714855 61.365673) + (xy 35.731575 61.384968) + (xy 35.861894 61.571082) + (xy 36.028917 61.738105) + (xy 36.222421 61.8736) + (xy 36.436507 61.973429) + (xy 36.436516 61.973433) + (xy 36.65 62.030634) + (xy 36.65 61.135501) + (xy 36.757685 61.18468) + (xy 36.864237 61.2) + (xy 36.935763 61.2) + (xy 37.042315 61.18468) + (xy 37.15 61.135501) + (xy 37.15 62.030634) + (xy 37.363483 61.973433) + (xy 37.363492 61.973429) + (xy 37.577578 61.8736) + (xy 37.771082 61.738105) + (xy 37.938108 61.571079) + (xy 38.068424 61.384969) + (xy 38.123001 61.341344) + (xy 38.192499 61.33415) + (xy 38.254854 61.365673) + (xy 38.271573 61.384968) + (xy 38.40189 61.571078) + (xy 38.568917 61.738105) + (xy 38.762421 61.8736) + (xy 38.976507 61.973429) + (xy 38.976516 61.973433) + (xy 39.19 62.030634) + (xy 39.19 61.135501) + (xy 39.297685 61.18468) + (xy 39.404237 61.2) + (xy 39.475763 61.2) + (xy 39.582315 61.18468) + (xy 39.69 61.135501) + (xy 39.69 62.030633) + (xy 39.903483 61.973433) + (xy 39.903492 61.973429) + (xy 40.117578 61.8736) + (xy 40.311082 61.738105) + (xy 40.478105 61.571082) + (xy 40.608425 61.384968) + (xy 40.663002 61.341344) + (xy 40.732501 61.334151) + (xy 40.794855 61.365673) + (xy 40.811575 61.384968) + (xy 40.941894 61.571082) + (xy 41.108917 61.738105) + (xy 41.302421 61.8736) + (xy 41.516507 61.973429) + (xy 41.516516 61.973433) + (xy 41.73 62.030634) + (xy 41.73 61.135501) + (xy 41.837685 61.18468) + (xy 41.944237 61.2) + (xy 42.015763 61.2) + (xy 42.122315 61.18468) + (xy 42.23 61.135501) + (xy 42.23 62.030634) + (xy 42.443483 61.973433) + (xy 42.443492 61.973429) + (xy 42.657578 61.8736) + (xy 42.851082 61.738105) + (xy 43.018105 61.571082) + (xy 43.148425 61.384968) + (xy 43.203002 61.341344) + (xy 43.272501 61.334151) + (xy 43.334855 61.365673) + (xy 43.351575 61.384968) + (xy 43.481894 61.571082) + (xy 43.648917 61.738105) + (xy 43.842421 61.8736) + (xy 44.056507 61.973429) + (xy 44.056516 61.973433) + (xy 44.27 62.030634) + (xy 44.27 61.135501) + (xy 44.377685 61.18468) + (xy 44.484237 61.2) + (xy 44.555763 61.2) + (xy 44.662315 61.18468) + (xy 44.77 61.135501) + (xy 44.77 62.030634) + (xy 44.983483 61.973433) + (xy 44.983492 61.973429) + (xy 45.197578 61.8736) + (xy 45.391082 61.738105) + (xy 45.558105 61.571082) + (xy 45.688425 61.384968) + (xy 45.743002 61.341344) + (xy 45.812501 61.334151) + (xy 45.874855 61.365673) + (xy 45.891575 61.384968) + (xy 46.021894 61.571082) + (xy 46.188917 61.738105) + (xy 46.382421 61.8736) + (xy 46.596507 61.973429) + (xy 46.596516 61.973433) + (xy 46.81 62.030634) + (xy 46.81 61.135501) + (xy 46.917685 61.18468) + (xy 47.024237 61.2) + (xy 47.095763 61.2) + (xy 47.202315 61.18468) + (xy 47.31 61.135501) + (xy 47.31 62.030634) + (xy 47.523483 61.973433) + (xy 47.523492 61.973429) + (xy 47.737578 61.8736) + (xy 47.931082 61.738105) + (xy 48.098105 61.571082) + (xy 48.228425 61.384968) + (xy 48.283002 61.341344) + (xy 48.352501 61.334151) + (xy 48.414855 61.365673) + (xy 48.431575 61.384968) + (xy 48.561894 61.571082) + (xy 48.728917 61.738105) + (xy 48.922421 61.8736) + (xy 49.136507 61.973429) + (xy 49.136516 61.973433) + (xy 49.35 62.030634) + (xy 49.35 61.135501) + (xy 49.457685 61.18468) + (xy 49.564237 61.2) + (xy 49.635763 61.2) + (xy 49.742315 61.18468) + (xy 49.849999 61.135501) + (xy 49.849999 62.030633) + (xy 50.063483 61.973433) + (xy 50.063492 61.973429) + (xy 50.277578 61.8736) + (xy 50.471082 61.738105) + (xy 50.638105 61.571082) + (xy 50.768425 61.384968) + (xy 50.823002 61.341344) + (xy 50.892501 61.334151) + (xy 50.954855 61.365673) + (xy 50.971575 61.384968) + (xy 51.101894 61.571082) + (xy 51.268917 61.738105) + (xy 51.462421 61.8736) + (xy 51.676507 61.973429) + (xy 51.676516 61.973433) + (xy 51.889998 62.030635) + (xy 51.889999 62.030634) + (xy 51.889999 61.135501) + (xy 51.997685 61.18468) + (xy 52.104237 61.2) + (xy 52.175763 61.2) + (xy 52.282315 61.18468) + (xy 52.39 61.135501) + (xy 52.39 62.030633) + (xy 52.603483 61.973433) + (xy 52.603492 61.973429) + (xy 52.817578 61.8736) + (xy 53.011082 61.738105) + (xy 53.178105 61.571082) + (xy 53.308425 61.384968) + (xy 53.363002 61.341344) + (xy 53.432501 61.334151) + (xy 53.494855 61.365673) + (xy 53.511575 61.384968) + (xy 53.641894 61.571082) + (xy 53.808917 61.738105) + (xy 54.002421 61.8736) + (xy 54.216507 61.973429) + (xy 54.216516 61.973433) + (xy 54.43 62.030634) + (xy 54.43 61.135501) + (xy 54.537685 61.18468) + (xy 54.644237 61.2) + (xy 54.715763 61.2) + (xy 54.822315 61.18468) + (xy 54.929999 61.135501) + (xy 54.929999 62.030633) + (xy 55.143483 61.973433) + (xy 55.143492 61.973429) + (xy 55.357578 61.8736) + (xy 55.551082 61.738105) + (xy 55.718105 61.571082) + (xy 55.8536 61.377578) + (xy 55.953429 61.163492) + (xy 55.953432 61.163486) + (xy 56.010636 60.95) + (xy 55.113686 60.95) + (xy 55.139493 60.909844) + (xy 55.18 60.771889) + (xy 55.18 60.628111) + (xy 55.139493 60.490156) + (xy 55.113686 60.45) + (xy 56.010636 60.45) + (xy 56.010635 60.449999) + (xy 55.953432 60.236513) + (xy 55.953429 60.236507) + (xy 55.8536 60.022422) + (xy 55.853599 60.02242) + (xy 55.718113 59.828926) + (xy 55.718108 59.82892) + (xy 55.596053 59.706865) + (xy 55.562568 59.645542) + (xy 55.567552 59.57585) + (xy 55.609424 59.519917) + (xy 55.6404 59.503002) + (xy 55.772331 59.453796) + (xy 55.887546 59.367546) + (xy 55.973796 59.252331) + (xy 56.024091 59.117483) + (xy 56.0305 59.057873) + (xy 56.030499 57.262128) + (xy 56.024091 57.202517) + (xy 56.02281 57.199083) + (xy 55.973797 57.067671) + (xy 55.973793 57.067664) + (xy 55.887547 56.952455) + (xy 55.887544 56.952452) + (xy 55.772335 56.866206) + (xy 55.772328 56.866202) + (xy 55.637482 56.815908) + (xy 55.637483 56.815908) + (xy 55.577883 56.809501) + (xy 55.577881 56.8095) + (xy 55.577873 56.8095) + (xy 55.577864 56.8095) + (xy 53.782129 56.8095) + (xy 53.782123 56.809501) + (xy 53.722516 56.815908) + (xy 53.587671 56.866202) + (xy 53.587664 56.866206) + (xy 53.472455 56.952452) + (xy 53.472452 56.952455) + (xy 53.386206 57.067664) + (xy 53.386203 57.067669) + (xy 53.337189 57.199083) + (xy 53.295317 57.255016) + (xy 53.229853 57.279433) + (xy 53.16158 57.264581) + (xy 53.133326 57.24343) + (xy 53.011402 57.121506) + (xy 53.011395 57.121501) + (xy 52.817834 56.985967) + (xy 52.81783 56.985965) + (xy 52.817828 56.985964) + (xy 52.603663 56.886097) + (xy 52.603659 56.886096) + (xy 52.603655 56.886094) + (xy 52.375413 56.824938) + (xy 52.375403 56.824936) + (xy 52.140001 56.804341) + (xy 52.139999 56.804341) + (xy 51.904596 56.824936) + (xy 51.904586 56.824938) + (xy 51.676344 56.886094) + (xy 51.676335 56.886098) + (xy 51.462171 56.985964) + (xy 51.462169 56.985965) + (xy 51.268597 57.121505) + (xy 51.101505 57.288597) + (xy 50.971575 57.474158) + (xy 50.916998 57.517783) + (xy 50.8475 57.524977) + (xy 50.785145 57.493454) + (xy 50.768425 57.474158) + (xy 50.638494 57.288597) + (xy 50.471402 57.121506) + (xy 50.471395 57.121501) + (xy 50.277834 56.985967) + (xy 50.27783 56.985965) + (xy 50.277828 56.985964) + (xy 50.063663 56.886097) + (xy 50.063659 56.886096) + (xy 50.063655 56.886094) + (xy 49.835413 56.824938) + (xy 49.835403 56.824936) + (xy 49.600001 56.804341) + (xy 49.599999 56.804341) + (xy 49.364596 56.824936) + (xy 49.364586 56.824938) + (xy 49.136344 56.886094) + (xy 49.136335 56.886098) + (xy 48.922171 56.985964) + (xy 48.922169 56.985965) + (xy 48.728597 57.121505) + (xy 48.561505 57.288597) + (xy 48.431575 57.474158) + (xy 48.376998 57.517783) + (xy 48.3075 57.524977) + (xy 48.245145 57.493454) + (xy 48.228425 57.474158) + (xy 48.098494 57.288597) + (xy 47.931402 57.121506) + (xy 47.931395 57.121501) + (xy 47.737834 56.985967) + (xy 47.73783 56.985965) + (xy 47.737828 56.985964) + (xy 47.523663 56.886097) + (xy 47.523659 56.886096) + (xy 47.523655 56.886094) + (xy 47.295413 56.824938) + (xy 47.295403 56.824936) + (xy 47.060001 56.804341) + (xy 47.059999 56.804341) + (xy 46.824596 56.824936) + (xy 46.824586 56.824938) + (xy 46.596344 56.886094) + (xy 46.596335 56.886098) + (xy 46.382171 56.985964) + (xy 46.382169 56.985965) + (xy 46.188597 57.121505) + (xy 46.021505 57.288597) + (xy 45.891575 57.474158) + (xy 45.836998 57.517783) + (xy 45.7675 57.524977) + (xy 45.705145 57.493454) + (xy 45.688425 57.474158) + (xy 45.558494 57.288597) + (xy 45.391402 57.121506) + (xy 45.391395 57.121501) + (xy 45.197834 56.985967) + (xy 45.19783 56.985965) + (xy 45.197828 56.985964) + (xy 44.983663 56.886097) + (xy 44.983659 56.886096) + (xy 44.983655 56.886094) + (xy 44.755413 56.824938) + (xy 44.755403 56.824936) + (xy 44.520001 56.804341) + (xy 44.519999 56.804341) + (xy 44.284596 56.824936) + (xy 44.284586 56.824938) + (xy 44.056344 56.886094) + (xy 44.056335 56.886098) + (xy 43.842171 56.985964) + (xy 43.842169 56.985965) + (xy 43.648597 57.121505) + (xy 43.481505 57.288597) + (xy 43.351575 57.474158) + (xy 43.296998 57.517783) + (xy 43.2275 57.524977) + (xy 43.165145 57.493454) + (xy 43.148425 57.474158) + (xy 43.018494 57.288597) + (xy 42.851402 57.121506) + (xy 42.851395 57.121501) + (xy 42.657834 56.985967) + (xy 42.65783 56.985965) + (xy 42.657828 56.985964) + (xy 42.443663 56.886097) + (xy 42.443659 56.886096) + (xy 42.443655 56.886094) + (xy 42.215413 56.824938) + (xy 42.215403 56.824936) + (xy 41.980001 56.804341) + (xy 41.979999 56.804341) + (xy 41.744596 56.824936) + (xy 41.744586 56.824938) + (xy 41.516344 56.886094) + (xy 41.516335 56.886098) + (xy 41.302171 56.985964) + (xy 41.302169 56.985965) + (xy 41.108597 57.121505) + (xy 40.941508 57.288594) + (xy 40.811574 57.474159) + (xy 40.756997 57.517784) + (xy 40.687498 57.524976) + (xy 40.625144 57.493454) + (xy 40.608424 57.474158) + (xy 40.478494 57.288597) + (xy 40.311402 57.121506) + (xy 40.311395 57.121501) + (xy 40.117834 56.985967) + (xy 40.11783 56.985965) + (xy 40.117828 56.985964) + (xy 39.903663 56.886097) + (xy 39.903659 56.886096) + (xy 39.903655 56.886094) + (xy 39.675413 56.824938) + (xy 39.675403 56.824936) + (xy 39.440001 56.804341) + (xy 39.439999 56.804341) + (xy 39.204596 56.824936) + (xy 39.204586 56.824938) + (xy 38.976344 56.886094) + (xy 38.976335 56.886098) + (xy 38.762171 56.985964) + (xy 38.762169 56.985965) + (xy 38.568597 57.121505) + (xy 38.401505 57.288597) + (xy 38.271575 57.474158) + (xy 38.216998 57.517783) + (xy 38.1475 57.524977) + (xy 38.085145 57.493454) + (xy 38.068425 57.474158) + (xy 37.938494 57.288597) + (xy 37.771402 57.121506) + (xy 37.771395 57.121501) + (xy 37.577834 56.985967) + (xy 37.57783 56.985965) + (xy 37.577828 56.985964) + (xy 37.363663 56.886097) + (xy 37.363659 56.886096) + (xy 37.363655 56.886094) + (xy 37.135413 56.824938) + (xy 37.135403 56.824936) + (xy 36.900001 56.804341) + (xy 36.899999 56.804341) + (xy 36.664596 56.824936) + (xy 36.664586 56.824938) + (xy 36.436344 56.886094) + (xy 36.436335 56.886098) + (xy 36.222171 56.985964) + (xy 36.222169 56.985965) + (xy 36.028597 57.121505) + (xy 35.861505 57.288597) + (xy 35.731575 57.474158) + (xy 35.676998 57.517783) + (xy 35.6075 57.524977) + (xy 35.545145 57.493454) + (xy 35.528425 57.474158) + (xy 35.398494 57.288597) + (xy 35.231402 57.121506) + (xy 35.231395 57.121501) + (xy 35.037834 56.985967) + (xy 35.03783 56.985965) + (xy 35.037828 56.985964) + (xy 34.823663 56.886097) + (xy 34.823659 56.886096) + (xy 34.823655 56.886094) + (xy 34.595413 56.824938) + (xy 34.595403 56.824936) + (xy 34.360001 56.804341) + (xy 34.359999 56.804341) + (xy 34.124596 56.824936) + (xy 34.124586 56.824938) + (xy 33.896344 56.886094) + (xy 33.896335 56.886098) + (xy 33.682171 56.985964) + (xy 33.682169 56.985965) + (xy 33.488597 57.121505) + (xy 33.321505 57.288597) + (xy 33.191575 57.474158) + (xy 33.136998 57.517783) + (xy 33.0675 57.524977) + (xy 33.005145 57.493454) + (xy 32.988425 57.474158) + (xy 32.858494 57.288597) + (xy 32.691402 57.121506) + (xy 32.691395 57.121501) + (xy 32.497834 56.985967) + (xy 32.49783 56.985965) + (xy 32.497828 56.985964) + (xy 32.283663 56.886097) + (xy 32.283659 56.886096) + (xy 32.283655 56.886094) + (xy 32.055413 56.824938) + (xy 32.055403 56.824936) + (xy 31.820001 56.804341) + (xy 31.819999 56.804341) + (xy 31.584596 56.824936) + (xy 31.584586 56.824938) + (xy 31.356344 56.886094) + (xy 31.356335 56.886098) + (xy 31.142171 56.985964) + (xy 31.142169 56.985965) + (xy 30.948597 57.121505) + (xy 30.781505 57.288597) + (xy 30.651575 57.474158) + (xy 30.596998 57.517783) + (xy 30.5275 57.524977) + (xy 30.465145 57.493454) + (xy 30.448425 57.474158) + (xy 30.318494 57.288597) + (xy 30.151402 57.121506) + (xy 30.151395 57.121501) + (xy 29.957834 56.985967) + (xy 29.95783 56.985965) + (xy 29.957828 56.985964) + (xy 29.743663 56.886097) + (xy 29.743659 56.886096) + (xy 29.743655 56.886094) + (xy 29.515413 56.824938) + (xy 29.515403 56.824936) + (xy 29.280001 56.804341) + (xy 29.279999 56.804341) + (xy 29.044596 56.824936) + (xy 29.044586 56.824938) + (xy 28.816344 56.886094) + (xy 28.816335 56.886098) + (xy 28.602171 56.985964) + (xy 28.602169 56.985965) + (xy 28.408597 57.121505) + (xy 28.241508 57.288594) + (xy 28.111574 57.474159) + (xy 28.056997 57.517784) + (xy 27.987498 57.524976) + (xy 27.925144 57.493454) + (xy 27.908424 57.474158) + (xy 27.778494 57.288597) + (xy 27.611402 57.121506) + (xy 27.611395 57.121501) + (xy 27.417834 56.985967) + (xy 27.41783 56.985965) + (xy 27.417828 56.985964) + (xy 27.203663 56.886097) + (xy 27.203659 56.886096) + (xy 27.203655 56.886094) + (xy 26.975413 56.824938) + (xy 26.975403 56.824936) + (xy 26.740001 56.804341) + (xy 26.739999 56.804341) + (xy 26.504596 56.824936) + (xy 26.504586 56.824938) + (xy 26.276344 56.886094) + (xy 26.276335 56.886098) + (xy 26.062171 56.985964) + (xy 26.062169 56.985965) + (xy 25.868597 57.121505) + (xy 25.701505 57.288597) + (xy 25.571575 57.474158) + (xy 25.516998 57.517783) + (xy 25.4475 57.524977) + (xy 25.385145 57.493454) + (xy 25.368425 57.474158) + (xy 25.238494 57.288597) + (xy 25.071402 57.121506) + (xy 25.071395 57.121501) + (xy 24.877834 56.985967) + (xy 24.87783 56.985965) + (xy 24.877828 56.985964) + (xy 24.663663 56.886097) + (xy 24.663659 56.886096) + (xy 24.663655 56.886094) + (xy 24.435413 56.824938) + (xy 24.435403 56.824936) + (xy 24.200001 56.804341) + (xy 24.199999 56.804341) + (xy 23.964596 56.824936) + (xy 23.964586 56.824938) + (xy 23.736344 56.886094) + (xy 23.736335 56.886098) + (xy 23.522171 56.985964) + (xy 23.522169 56.985965) + (xy 23.328597 57.121505) + (xy 23.161505 57.288597) + (xy 23.025965 57.482169) + (xy 23.025964 57.482171) + (xy 22.926098 57.696335) + (xy 22.926094 57.696344) + (xy 22.864938 57.924586) + (xy 22.864936 57.924596) + (xy 22.844341 58.159999) + (xy 22.844341 58.16) + (xy 14.2005 58.16) + (xy 14.2005 54.43424) + (xy 29.41931 54.43424) + (xy 29.419311 54.434241) + (xy 29.507581 54.488895) + (xy 29.507588 54.488899) + (xy 29.697678 54.562539) + (xy 29.898072 54.6) + (xy 30.101928 54.6) + (xy 30.302321 54.562539) + (xy 30.492414 54.488897) + (xy 30.580688 54.43424) + (xy 30.000001 53.853553) + (xy 30 53.853553) + (xy 29.41931 54.43424) + (xy 14.2005 54.43424) + (xy 14.2005 50.650001) + (xy 18.5995 50.650001) + (xy 18.599501 50.650018) + (xy 18.61 50.752796) + (xy 18.610001 50.752799) + (xy 18.658614 50.8995) + (xy 18.665186 50.919334) + (xy 18.741125 51.042452) + (xy 18.757289 51.068657) + (xy 18.881344 51.192712) + (xy 19.036558 51.288448) + (xy 19.083283 51.340396) + (xy 19.094506 51.409358) + (xy 19.066663 51.473441) + (xy 19.059144 51.481668) + (xy 18.911891 51.628921) + (xy 18.776399 51.822421) + (xy 18.67657 52.036507) + (xy 18.676567 52.036513) + (xy 18.619364 52.249999) + (xy 18.619364 52.25) + (xy 19.666314 52.25) + (xy 19.640507 52.290156) + (xy 19.6 52.428111) + (xy 19.6 52.571889) + (xy 19.640507 52.709844) + (xy 19.666314 52.75) + (xy 18.619364 52.75) + (xy 18.676567 52.963486) + (xy 18.67657 52.963492) + (xy 18.776399 53.177577) + (xy 18.7764 53.177579) + (xy 18.911886 53.371073) + (xy 18.911891 53.371079) + (xy 19.07892 53.538108) + (xy 19.078926 53.538113) + (xy 19.27242 53.673599) + (xy 19.272422 53.6736) + (xy 19.486507 53.773429) + (xy 19.486516 53.773433) + (xy 19.714673 53.834567) + (xy 19.714684 53.834569) + (xy 19.849999 53.846407) + (xy 19.85 53.846406) + (xy 19.85 52.935501) + (xy 19.957685 52.98468) + (xy 20.064237 53) + (xy 20.135763 53) + (xy 20.242315 52.98468) + (xy 20.35 52.935501) + (xy 20.35 53.846407) + (xy 20.485315 53.834569) + (xy 20.485326 53.834567) + (xy 20.713483 53.773433) + (xy 20.713492 53.773429) + (xy 20.927577 53.6736) + (xy 20.927579 53.673599) + (xy 21.121073 53.538113) + (xy 21.121079 53.538108) + (xy 21.159187 53.5) + (xy 28.895287 53.5) + (xy 28.914096 53.702989) + (xy 28.914097 53.702992) + (xy 28.969883 53.899063) + (xy 28.969886 53.899069) + (xy 29.060754 54.081556) + (xy 29.060755 54.081557) + (xy 29.062533 54.083912) + (xy 29.704654 53.44179) + (xy 29.696105 53.47184) + (xy 29.706454 53.583521) + (xy 29.756448 53.683922) + (xy 29.839334 53.759484) + (xy 29.94392 53.8) + (xy 30.027802 53.8) + (xy 30.11025 53.784588) + (xy 30.20561 53.725543) + (xy 30.273201 53.636038) + (xy 30.303895 53.52816) + (xy 30.295947 53.442394) + (xy 30.937465 54.083912) + (xy 30.939247 54.081552) + (xy 30.939249 54.08155) + (xy 31.030113 53.899069) + (xy 31.030116 53.899063) + (xy 31.085902 53.702992) + (xy 31.085903 53.702989) + (xy 31.104713 53.5) + (xy 31.104713 53.499999) + (xy 31.085903 53.29701) + (xy 31.085902 53.297008) + (xy 31.030115 53.100936) + (xy 31.03011 53.100925) + (xy 30.992311 53.025013) + (xy 30.98005 52.956228) + (xy 31.004045 52.895431) + (xy 31.043796 52.842331) + (xy 31.094091 52.707483) + (xy 31.1005 52.647873) + (xy 31.100499 51.352128) + (xy 31.094091 51.292517) + (xy 31.092573 51.288448) + (xy 31.043797 51.157671) + (xy 31.043793 51.157664) + (xy 30.957547 51.042455) + (xy 30.957544 51.042452) + (xy 30.842335 50.956206) + (xy 30.842328 50.956202) + (xy 30.707482 50.905908) + (xy 30.707483 50.905908) + (xy 30.647883 50.899501) + (xy 30.647881 50.8995) + (xy 30.647873 50.8995) + (xy 30.647864 50.8995) + (xy 29.352129 50.8995) + (xy 29.352123 50.899501) + (xy 29.292516 50.905908) + (xy 29.157671 50.956202) + (xy 29.157664 50.956206) + (xy 29.042455 51.042452) + (xy 29.042452 51.042455) + (xy 28.956206 51.157664) + (xy 28.956202 51.157671) + (xy 28.905908 51.292517) + (xy 28.900804 51.339999) + (xy 28.899501 51.352123) + (xy 28.8995 51.352135) + (xy 28.8995 52.64787) + (xy 28.899501 52.647876) + (xy 28.905908 52.707483) + (xy 28.956202 52.842328) + (xy 28.956206 52.842335) + (xy 28.995954 52.895431) + (xy 29.020372 52.960895) + (xy 29.007688 53.025013) + (xy 28.969888 53.100925) + (xy 28.969883 53.100936) + (xy 28.914097 53.297007) + (xy 28.914096 53.29701) + (xy 28.895287 53.499999) + (xy 28.895287 53.5) + (xy 21.159187 53.5) + (xy 21.288105 53.371082) + (xy 21.4236 53.177578) + (xy 21.523429 52.963492) + (xy 21.523432 52.963486) + (xy 21.580636 52.75) + (xy 20.533686 52.75) + (xy 20.559493 52.709844) + (xy 20.6 52.571889) + (xy 20.6 52.428111) + (xy 20.559493 52.290156) + (xy 20.533686 52.25) + (xy 21.580636 52.25) + (xy 21.580635 52.249999) + (xy 21.523432 52.036513) + (xy 21.523429 52.036507) + (xy 21.4236 51.822422) + (xy 21.423599 51.82242) + (xy 21.288113 51.628926) + (xy 21.140856 51.481668) + (xy 21.107372 51.420345) + (xy 21.112356 51.350653) + (xy 21.154228 51.29472) + (xy 21.163442 51.288448) + (xy 21.169334 51.284814) + (xy 21.318656 51.192712) + (xy 21.442712 51.068656) + (xy 21.534814 50.919334) + (xy 21.589999 50.752797) + (xy 21.6005 50.650009) + (xy 21.600499 49.349992) + (xy 21.589999 49.247203) + (xy 21.534814 49.080666) + (xy 21.442712 48.931344) + (xy 21.318656 48.807288) + (xy 21.169334 48.715186) + (xy 21.002797 48.660001) + (xy 21.002795 48.66) + (xy 20.90001 48.6495) + (xy 19.299998 48.6495) + (xy 19.299981 48.649501) + (xy 19.197203 48.66) + (xy 19.1972 48.660001) + (xy 19.030668 48.715185) + (xy 19.030663 48.715187) + (xy 18.881342 48.807289) + (xy 18.757289 48.931342) + (xy 18.665187 49.080663) + (xy 18.665185 49.080666) + (xy 18.665186 49.080666) + (xy 18.610001 49.247203) + (xy 18.610001 49.247204) + (xy 18.61 49.247204) + (xy 18.5995 49.349983) + (xy 18.5995 50.650001) + (xy 14.2005 50.650001) + (xy 14.2005 48) + (xy 23.714357 48) + (xy 23.734884 48.221535) + (xy 23.734885 48.221537) + (xy 23.795769 48.435523) + (xy 23.795775 48.435538) + (xy 23.894938 48.634683) + (xy 23.894943 48.634691) + (xy 24.02902 48.812238) + (xy 24.193437 48.962123) + (xy 24.193439 48.962125) + (xy 24.382595 49.079245) + (xy 24.382596 49.079245) + (xy 24.382599 49.079247) + (xy 24.59006 49.159618) + (xy 24.808757 49.2005) + (xy 24.808759 49.2005) + (xy 25.031241 49.2005) + (xy 25.031243 49.2005) + (xy 25.24994 49.159618) + (xy 25.457401 49.079247) + (xy 25.646562 48.962124) + (xy 25.810981 48.812236) + (xy 25.945058 48.634689) + (xy 26.044229 48.435528) + (xy 26.105115 48.221536) + (xy 26.125643 48) + (xy 26.105115 47.778464) + (xy 26.044229 47.564472) + (xy 26.044224 47.564461) + (xy 25.945061 47.365316) + (xy 25.945056 47.365308) + (xy 25.810979 47.187761) + (xy 25.646562 47.037876) + (xy 25.64656 47.037874) + (xy 25.457404 46.920754) + (xy 25.457398 46.920752) + (xy 25.24994 46.840382) + (xy 25.031243 46.7995) + (xy 24.808757 46.7995) + (xy 24.59006 46.840382) + (xy 24.56234 46.851121) + (xy 24.382601 46.920752) + (xy 24.382595 46.920754) + (xy 24.193439 47.037874) + (xy 24.193437 47.037876) + (xy 24.02902 47.187761) + (xy 23.894943 47.365308) + (xy 23.894938 47.365316) + (xy 23.795775 47.564461) + (xy 23.795769 47.564476) + (xy 23.734885 47.778462) + (xy 23.734884 47.778464) + (xy 23.714357 47.999999) + (xy 23.714357 48) + (xy 14.2005 48) + (xy 14.2005 45.53424) + (xy 29.21931 45.53424) + (xy 29.219311 45.534241) + (xy 29.307581 45.588895) + (xy 29.307588 45.588899) + (xy 29.497678 45.662539) + (xy 29.698072 45.7) + (xy 29.901928 45.7) + (xy 30.102321 45.662539) + (xy 30.292414 45.588897) + (xy 30.380688 45.53424) + (xy 29.799999 44.953553) + (xy 29.799998 44.953553) + (xy 29.21931 45.53424) + (xy 14.2005 45.53424) + (xy 14.2005 41.450001) + (xy 18.5995 41.450001) + (xy 18.599501 41.450018) + (xy 18.61 41.552796) + (xy 18.610001 41.552799) + (xy 18.665185 41.719331) + (xy 18.665186 41.719334) + (xy 18.757288 41.868656) + (xy 18.881344 41.992712) + (xy 18.964453 42.043974) + (xy 19.036558 42.088448) + (xy 19.083283 42.140396) + (xy 19.094506 42.209358) + (xy 19.066663 42.273441) + (xy 19.059144 42.281668) + (xy 18.911891 42.428921) + (xy 18.776399 42.622421) + (xy 18.67657 42.836507) + (xy 18.676567 42.836513) + (xy 18.619364 43.049999) + (xy 18.619364 43.05) + (xy 19.666314 43.05) + (xy 19.640507 43.090156) + (xy 19.6 43.228111) + (xy 19.6 43.371889) + (xy 19.640507 43.509844) + (xy 19.666314 43.55) + (xy 18.619364 43.55) + (xy 18.676567 43.763486) + (xy 18.67657 43.763492) + (xy 18.776399 43.977577) + (xy 18.7764 43.977579) + (xy 18.911886 44.171073) + (xy 18.911891 44.171079) + (xy 19.07892 44.338108) + (xy 19.078926 44.338113) + (xy 19.27242 44.473599) + (xy 19.272422 44.4736) + (xy 19.486507 44.573429) + (xy 19.486516 44.573433) + (xy 19.714673 44.634567) + (xy 19.714684 44.634569) + (xy 19.849999 44.646407) + (xy 19.85 44.646407) + (xy 19.85 43.735501) + (xy 19.957685 43.78468) + (xy 20.064237 43.8) + (xy 20.135763 43.8) + (xy 20.242315 43.78468) + (xy 20.35 43.735501) + (xy 20.35 44.646407) + (xy 20.485315 44.634569) + (xy 20.485326 44.634567) + (xy 20.713483 44.573433) + (xy 20.713492 44.573429) + (xy 20.927577 44.4736) + (xy 20.927579 44.473599) + (xy 21.121073 44.338113) + (xy 21.121079 44.338108) + (xy 21.288105 44.171082) + (xy 21.4236 43.977578) + (xy 21.523429 43.763492) + (xy 21.523432 43.763486) + (xy 21.580636 43.55) + (xy 20.533686 43.55) + (xy 20.559493 43.509844) + (xy 20.6 43.371889) + (xy 20.6 43.228111) + (xy 20.559493 43.090156) + (xy 20.533686 43.05) + (xy 21.580636 43.05) + (xy 21.580635 43.049999) + (xy 21.523432 42.836513) + (xy 21.523429 42.836507) + (xy 21.4236 42.622422) + (xy 21.423599 42.62242) + (xy 21.288113 42.428926) + (xy 21.140856 42.281668) + (xy 21.107372 42.220345) + (xy 21.112356 42.150653) + (xy 21.154228 42.09472) + (xy 21.163442 42.088448) + (xy 21.215718 42.056204) + (xy 21.318656 41.992712) + (xy 21.442712 41.868656) + (xy 21.534814 41.719334) + (xy 21.589999 41.552797) + (xy 21.6005 41.450009) + (xy 21.600499 40.149992) + (xy 21.597497 40.120609) + (xy 21.589999 40.047203) + (xy 21.589998 40.0472) + (xy 21.5644 39.96995) + (xy 21.534814 39.880666) + (xy 21.442712 39.731344) + (xy 21.318656 39.607288) + (xy 21.197139 39.532336) + (xy 21.169336 39.515187) + (xy 21.169331 39.515185) + (xy 21.142279 39.506221) + (xy 21.002797 39.460001) + (xy 21.002795 39.46) + (xy 20.90001 39.4495) + (xy 19.299998 39.4495) + (xy 19.299981 39.449501) + (xy 19.197203 39.46) + (xy 19.1972 39.460001) + (xy 19.030668 39.515185) + (xy 19.030663 39.515187) + (xy 18.881342 39.607289) + (xy 18.757289 39.731342) + (xy 18.665187 39.880663) + (xy 18.665185 39.880668) + (xy 18.650717 39.924331) + (xy 18.610001 40.047203) + (xy 18.610001 40.047204) + (xy 18.61 40.047204) + (xy 18.5995 40.149983) + (xy 18.5995 41.450001) + (xy 14.2005 41.450001) + (xy 14.2005 39) + (xy 23.754357 39) + (xy 23.774884 39.221535) + (xy 23.774885 39.221537) + (xy 23.835769 39.435523) + (xy 23.835775 39.435538) + (xy 23.934938 39.634683) + (xy 23.934943 39.634691) + (xy 24.06902 39.812238) + (xy 24.233437 39.962123) + (xy 24.233439 39.962125) + (xy 24.422595 40.079245) + (xy 24.422596 40.079245) + (xy 24.422599 40.079247) + (xy 24.63006 40.159618) + (xy 24.848757 40.2005) + (xy 24.848759 40.2005) + (xy 25.071241 40.2005) + (xy 25.071243 40.2005) + (xy 25.28994 40.159618) + (xy 25.497401 40.079247) + (xy 25.686562 39.962124) + (xy 25.850981 39.812236) + (xy 25.985058 39.634689) + (xy 25.993779 39.617176) + (xy 26.084224 39.435538) + (xy 26.084223 39.435538) + (xy 26.084229 39.435528) + (xy 26.145115 39.221536) + (xy 26.165643 39) + (xy 26.145115 38.778464) + (xy 26.084229 38.564472) + (xy 26.07786 38.551681) + (xy 25.985061 38.365316) + (xy 25.985056 38.365308) + (xy 25.850979 38.187761) + (xy 25.686562 38.037876) + (xy 25.68656 38.037874) + (xy 25.497404 37.920754) + (xy 25.497398 37.920752) + (xy 25.28994 37.840382) + (xy 25.071243 37.7995) + (xy 24.848757 37.7995) + (xy 24.63006 37.840382) + (xy 24.498864 37.891207) + (xy 24.422601 37.920752) + (xy 24.422595 37.920754) + (xy 24.233439 38.037874) + (xy 24.233437 38.037876) + (xy 24.06902 38.187761) + (xy 23.934943 38.365308) + (xy 23.934938 38.365316) + (xy 23.835775 38.564461) + (xy 23.835769 38.564476) + (xy 23.774885 38.778462) + (xy 23.774884 38.778464) + (xy 23.754357 38.999999) + (xy 23.754357 39) + (xy 14.2005 39) + (xy 14.2005 36.43424) + (xy 29.31931 36.43424) + (xy 29.319311 36.434241) + (xy 29.407581 36.488895) + (xy 29.407588 36.488899) + (xy 29.597678 36.562539) + (xy 29.798072 36.6) + (xy 30.001928 36.6) + (xy 30.202321 36.562539) + (xy 30.392414 36.488897) + (xy 30.480688 36.43424) + (xy 29.900001 35.853553) + (xy 29.9 35.853553) + (xy 29.31931 36.43424) + (xy 14.2005 36.43424) + (xy 14.2005 32.550001) + (xy 18.5995 32.550001) + (xy 18.599501 32.550018) + (xy 18.61 32.652796) + (xy 18.610001 32.652799) + (xy 18.633486 32.72367) + (xy 18.665186 32.819334) + (xy 18.749606 32.956202) + (xy 18.757289 32.968657) + (xy 18.881344 33.092712) + (xy 19.036558 33.188448) + (xy 19.083283 33.240396) + (xy 19.094506 33.309358) + (xy 19.066663 33.373441) + (xy 19.059144 33.381668) + (xy 18.911891 33.528921) + (xy 18.776399 33.722421) + (xy 18.67657 33.936507) + (xy 18.676567 33.936513) + (xy 18.619364 34.149999) + (xy 18.619364 34.15) + (xy 19.666314 34.15) + (xy 19.640507 34.190156) + (xy 19.6 34.328111) + (xy 19.6 34.471889) + (xy 19.640507 34.609844) + (xy 19.666314 34.65) + (xy 18.619364 34.65) + (xy 18.676567 34.863486) + (xy 18.67657 34.863492) + (xy 18.776399 35.077577) + (xy 18.7764 35.077579) + (xy 18.911886 35.271073) + (xy 18.911891 35.271079) + (xy 19.07892 35.438108) + (xy 19.078926 35.438113) + (xy 19.27242 35.573599) + (xy 19.272422 35.5736) + (xy 19.486507 35.673429) + (xy 19.486516 35.673433) + (xy 19.714673 35.734567) + (xy 19.714684 35.734569) + (xy 19.849999 35.746407) + (xy 19.85 35.746407) + (xy 19.85 34.835501) + (xy 19.957685 34.88468) + (xy 20.064237 34.9) + (xy 20.135763 34.9) + (xy 20.242315 34.88468) + (xy 20.35 34.835501) + (xy 20.35 35.746407) + (xy 20.485315 35.734569) + (xy 20.485326 35.734567) + (xy 20.713483 35.673433) + (xy 20.713492 35.673429) + (xy 20.927577 35.5736) + (xy 20.927579 35.573599) + (xy 21.121073 35.438113) + (xy 21.121079 35.438108) + (xy 21.288105 35.271082) + (xy 21.4236 35.077578) + (xy 21.523429 34.863492) + (xy 21.523432 34.863486) + (xy 21.580636 34.65) + (xy 20.533686 34.65) + (xy 20.559493 34.609844) + (xy 20.6 34.471889) + (xy 20.6 34.328111) + (xy 20.559493 34.190156) + (xy 20.533686 34.15) + (xy 21.580636 34.15) + (xy 21.580635 34.149999) + (xy 21.523432 33.936513) + (xy 21.523429 33.936507) + (xy 21.4236 33.722422) + (xy 21.423599 33.72242) + (xy 21.288113 33.528926) + (xy 21.140856 33.381668) + (xy 21.107372 33.320345) + (xy 21.112356 33.250653) + (xy 21.154228 33.19472) + (xy 21.163442 33.188448) + (xy 21.213351 33.157664) + (xy 21.318656 33.092712) + (xy 21.442712 32.968656) + (xy 21.534814 32.819334) + (xy 21.589999 32.652797) + (xy 21.6005 32.550009) + (xy 21.600499 31.249992) + (xy 21.589999 31.147203) + (xy 21.534814 30.980666) + (xy 21.442712 30.831344) + (xy 21.318656 30.707288) + (xy 21.190101 30.627995) + (xy 21.169336 30.615187) + (xy 21.169331 30.615185) + (xy 21.167862 30.614698) + (xy 21.002797 30.560001) + (xy 21.002795 30.56) + (xy 20.90001 30.5495) + (xy 19.299998 30.5495) + (xy 19.299981 30.549501) + (xy 19.197203 30.56) + (xy 19.1972 30.560001) + (xy 19.030668 30.615185) + (xy 19.030663 30.615187) + (xy 18.881342 30.707289) + (xy 18.757289 30.831342) + (xy 18.665187 30.980663) + (xy 18.665185 30.980668) + (xy 18.651216 31.022825) + (xy 18.610001 31.147203) + (xy 18.610001 31.147204) + (xy 18.61 31.147204) + (xy 18.5995 31.249983) + (xy 18.5995 32.550001) + (xy 14.2005 32.550001) + (xy 14.2005 30) + (xy 23.714357 30) + (xy 23.734884 30.221535) + (xy 23.734885 30.221537) + (xy 23.795769 30.435523) + (xy 23.795775 30.435538) + (xy 23.894938 30.634683) + (xy 23.894943 30.634691) + (xy 24.02902 30.812238) + (xy 24.193437 30.962123) + (xy 24.193439 30.962125) + (xy 24.382595 31.079245) + (xy 24.382596 31.079245) + (xy 24.382599 31.079247) + (xy 24.59006 31.159618) + (xy 24.808757 31.2005) + (xy 24.808759 31.2005) + (xy 25.031241 31.2005) + (xy 25.031243 31.2005) + (xy 25.24994 31.159618) + (xy 25.457401 31.079247) + (xy 25.646562 30.962124) + (xy 25.810981 30.812236) + (xy 25.945058 30.634689) + (xy 26.044229 30.435528) + (xy 26.105115 30.221536) + (xy 26.125643 30) + (xy 26.105115 29.778464) + (xy 26.044229 29.564472) + (xy 26.036186 29.548319) + (xy 25.945061 29.365316) + (xy 25.945056 29.365308) + (xy 25.810979 29.187761) + (xy 25.646562 29.037876) + (xy 25.64656 29.037874) + (xy 25.457404 28.920754) + (xy 25.457398 28.920752) + (xy 25.24994 28.840382) + (xy 25.031243 28.7995) + (xy 24.808757 28.7995) + (xy 24.59006 28.840382) + (xy 24.458864 28.891207) + (xy 24.382601 28.920752) + (xy 24.382595 28.920754) + (xy 24.193439 29.037874) + (xy 24.193437 29.037876) + (xy 24.02902 29.187761) + (xy 23.894943 29.365308) + (xy 23.894938 29.365316) + (xy 23.795775 29.564461) + (xy 23.795769 29.564476) + (xy 23.734885 29.778462) + (xy 23.734884 29.778464) + (xy 23.714357 29.999999) + (xy 23.714357 30) + (xy 14.2005 30) + (xy 14.2005 27.83424) + (xy 29.01931 27.83424) + (xy 29.019311 27.834241) + (xy 29.107581 27.888895) + (xy 29.107588 27.888899) + (xy 29.297678 27.962539) + (xy 29.498072 28) + (xy 29.701928 28) + (xy 29.902321 27.962539) + (xy 30.092414 27.888897) + (xy 30.180688 27.83424) + (xy 29.600001 27.253552) + (xy 29.6 27.253552) + (xy 29.01931 27.83424) + (xy 14.2005 27.83424) + (xy 14.2005 26.9) + (xy 28.495287 26.9) + (xy 28.514096 27.102989) + (xy 28.514097 27.102992) + (xy 28.569883 27.299063) + (xy 28.569886 27.299069) + (xy 28.660754 27.481556) + (xy 28.660755 27.481557) + (xy 28.662533 27.483912) + (xy 29.304654 26.84179) + (xy 29.296105 26.87184) + (xy 29.306454 26.983521) + (xy 29.356448 27.083922) + (xy 29.439334 27.159484) + (xy 29.54392 27.2) + (xy 29.627802 27.2) + (xy 29.71025 27.184588) + (xy 29.80561 27.125543) + (xy 29.873201 27.036038) + (xy 29.903895 26.92816) + (xy 29.895947 26.842394) + (xy 30.537465 27.483912) + (xy 30.539247 27.481552) + (xy 30.539249 27.48155) + (xy 30.630113 27.299069) + (xy 30.630116 27.299063) + (xy 30.685902 27.102992) + (xy 30.685903 27.102989) + (xy 30.704713 26.9) + (xy 30.704713 26.899999) + (xy 30.685903 26.69701) + (xy 30.685902 26.697008) + (xy 30.630115 26.500936) + (xy 30.63011 26.500925) + (xy 30.592311 26.425013) + (xy 30.58005 26.356228) + (xy 30.604045 26.295431) + (xy 30.643796 26.242331) + (xy 30.694091 26.107483) + (xy 30.7005 26.047873) + (xy 30.700499 24.752128) + (xy 30.694091 24.692517) + (xy 30.643796 24.557669) + (xy 30.643795 24.557668) + (xy 30.643793 24.557664) + (xy 30.557547 24.442455) + (xy 30.557544 24.442452) + (xy 30.442335 24.356206) + (xy 30.442328 24.356202) + (xy 30.307482 24.305908) + (xy 30.307483 24.305908) + (xy 30.247883 24.299501) + (xy 30.247881 24.2995) + (xy 30.247873 24.2995) + (xy 30.247864 24.2995) + (xy 28.952129 24.2995) + (xy 28.952123 24.299501) + (xy 28.892516 24.305908) + (xy 28.757671 24.356202) + (xy 28.757664 24.356206) + (xy 28.642455 24.442452) + (xy 28.642452 24.442455) + (xy 28.556206 24.557664) + (xy 28.556202 24.557671) + (xy 28.505908 24.692517) + (xy 28.499501 24.752116) + (xy 28.499501 24.752123) + (xy 28.4995 24.752135) + (xy 28.4995 26.04787) + (xy 28.499501 26.047876) + (xy 28.505908 26.107483) + (xy 28.556202 26.242328) + (xy 28.556206 26.242335) + (xy 28.595954 26.295431) + (xy 28.620372 26.360895) + (xy 28.607688 26.425013) + (xy 28.569888 26.500925) + (xy 28.569883 26.500936) + (xy 28.514097 26.697007) + (xy 28.514096 26.69701) + (xy 28.495287 26.899999) + (xy 28.495287 26.9) + (xy 14.2005 26.9) + (xy 14.2005 23.550001) + (xy 18.4995 23.550001) + (xy 18.499501 23.550018) + (xy 18.51 23.652796) + (xy 18.510001 23.652799) + (xy 18.552697 23.781645) + (xy 18.565186 23.819334) + (xy 18.645194 23.949049) + (xy 18.657289 23.968657) + (xy 18.781344 24.092712) + (xy 18.936558 24.188448) + (xy 18.983283 24.240396) + (xy 18.994506 24.309358) + (xy 18.966663 24.373441) + (xy 18.959144 24.381668) + (xy 18.811891 24.528921) + (xy 18.676399 24.722421) + (xy 18.57657 24.936507) + (xy 18.576567 24.936513) + (xy 18.519364 25.149999) + (xy 18.519364 25.15) + (xy 19.566314 25.15) + (xy 19.540507 25.190156) + (xy 19.5 25.328111) + (xy 19.5 25.471889) + (xy 19.540507 25.609844) + (xy 19.566314 25.65) + (xy 18.519364 25.65) + (xy 18.576567 25.863486) + (xy 18.57657 25.863492) + (xy 18.676399 26.077577) + (xy 18.6764 26.077579) + (xy 18.811886 26.271073) + (xy 18.811891 26.271079) + (xy 18.97892 26.438108) + (xy 18.978926 26.438113) + (xy 19.17242 26.573599) + (xy 19.172422 26.5736) + (xy 19.386507 26.673429) + (xy 19.386516 26.673433) + (xy 19.614673 26.734567) + (xy 19.614684 26.734569) + (xy 19.749999 26.746407) + (xy 19.75 26.746407) + (xy 19.75 25.835501) + (xy 19.857685 25.88468) + (xy 19.964237 25.9) + (xy 20.035763 25.9) + (xy 20.142315 25.88468) + (xy 20.25 25.835501) + (xy 20.25 26.746407) + (xy 20.385315 26.734569) + (xy 20.385326 26.734567) + (xy 20.613483 26.673433) + (xy 20.613492 26.673429) + (xy 20.827577 26.5736) + (xy 20.827579 26.573599) + (xy 21.021073 26.438113) + (xy 21.021079 26.438108) + (xy 21.188105 26.271082) + (xy 21.3236 26.077578) + (xy 21.423429 25.863492) + (xy 21.423432 25.863486) + (xy 21.480636 25.65) + (xy 20.433686 25.65) + (xy 20.459493 25.609844) + (xy 20.5 25.471889) + (xy 20.5 25.328111) + (xy 20.459493 25.190156) + (xy 20.433686 25.15) + (xy 21.480636 25.15) + (xy 21.480635 25.149999) + (xy 21.423432 24.936513) + (xy 21.423429 24.936507) + (xy 21.3236 24.722422) + (xy 21.323599 24.72242) + (xy 21.188113 24.528926) + (xy 21.040856 24.381668) + (xy 21.007372 24.320345) + (xy 21.012356 24.250653) + (xy 21.054228 24.19472) + (xy 21.063442 24.188448) + (xy 21.069334 24.184814) + (xy 21.218656 24.092712) + (xy 21.342712 23.968656) + (xy 21.434814 23.819334) + (xy 21.489999 23.652797) + (xy 21.5005 23.550009) + (xy 21.500499 22.249992) + (xy 21.489999 22.147203) + (xy 21.434814 21.980666) + (xy 21.342712 21.831344) + (xy 21.218656 21.707288) + (xy 21.079629 21.621536) + (xy 21.069336 21.615187) + (xy 21.069331 21.615185) + (xy 21.036286 21.604235) + (xy 20.902797 21.560001) + (xy 20.902795 21.56) + (xy 20.80001 21.5495) + (xy 19.199998 21.5495) + (xy 19.199981 21.549501) + (xy 19.097203 21.56) + (xy 19.0972 21.560001) + (xy 18.930668 21.615185) + (xy 18.930663 21.615187) + (xy 18.781342 21.707289) + (xy 18.657289 21.831342) + (xy 18.565187 21.980663) + (xy 18.565185 21.980668) + (xy 18.547284 22.034691) + (xy 18.510001 22.147203) + (xy 18.510001 22.147204) + (xy 18.51 22.147204) + (xy 18.4995 22.249983) + (xy 18.4995 23.550001) + (xy 14.2005 23.550001) + (xy 14.2005 21.4) + (xy 23.854357 21.4) + (xy 23.874884 21.621535) + (xy 23.874885 21.621537) + (xy 23.935769 21.835523) + (xy 23.935775 21.835538) + (xy 24.034938 22.034683) + (xy 24.034943 22.034691) + (xy 24.16902 22.212238) + (xy 24.333437 22.362123) + (xy 24.333439 22.362125) + (xy 24.522595 22.479245) + (xy 24.522596 22.479245) + (xy 24.522599 22.479247) + (xy 24.73006 22.559618) + (xy 24.948757 22.6005) + (xy 24.948759 22.6005) + (xy 25.171241 22.6005) + (xy 25.171243 22.6005) + (xy 25.38994 22.559618) + (xy 25.597401 22.479247) + (xy 25.786562 22.362124) + (xy 25.950981 22.212236) + (xy 26.085058 22.034689) + (xy 26.184229 21.835528) + (xy 26.245115 21.621536) + (xy 26.265643 21.4) + (xy 28.934357 21.4) + (xy 28.954884 21.621535) + (xy 28.954885 21.621537) + (xy 29.015769 21.835523) + (xy 29.015775 21.835538) + (xy 29.114938 22.034683) + (xy 29.114943 22.034691) + (xy 29.24902 22.212238) + (xy 29.413437 22.362123) + (xy 29.413439 22.362125) + (xy 29.602595 22.479245) + (xy 29.602596 22.479245) + (xy 29.602599 22.479247) + (xy 29.81006 22.559618) + (xy 30.028757 22.6005) + (xy 30.028759 22.6005) + (xy 30.251241 22.6005) + (xy 30.251243 22.6005) + (xy 30.46994 22.559618) + (xy 30.677401 22.479247) + (xy 30.866562 22.362124) + (xy 31.030981 22.212236) + (xy 31.165058 22.034689) + (xy 31.264229 21.835528) + (xy 31.325115 21.621536) + (xy 31.345643 21.4) + (xy 31.330969 21.241645) + (xy 31.325115 21.178464) + (xy 31.325114 21.178462) + (xy 31.319243 21.157829) + (xy 31.264229 20.964472) + (xy 31.255861 20.947666) + (xy 31.165061 20.765316) + (xy 31.165056 20.765308) + (xy 31.030979 20.587761) + (xy 30.866562 20.437876) + (xy 30.86656 20.437874) + (xy 30.677404 20.320754) + (xy 30.677398 20.320752) + (xy 30.46994 20.240382) + (xy 30.251243 20.1995) + (xy 30.028757 20.1995) + (xy 29.81006 20.240382) + (xy 29.78901 20.248537) + (xy 29.602601 20.320752) + (xy 29.602595 20.320754) + (xy 29.413439 20.437874) + (xy 29.413437 20.437876) + (xy 29.24902 20.587761) + (xy 29.114943 20.765308) + (xy 29.114938 20.765316) + (xy 29.015775 20.964461) + (xy 29.015769 20.964476) + (xy 28.954885 21.178462) + (xy 28.954884 21.178464) + (xy 28.934357 21.399999) + (xy 28.934357 21.4) + (xy 26.265643 21.4) + (xy 26.250969 21.241645) + (xy 26.245115 21.178464) + (xy 26.245114 21.178462) + (xy 26.239243 21.157829) + (xy 26.184229 20.964472) + (xy 26.175861 20.947666) + (xy 26.085061 20.765316) + (xy 26.085056 20.765308) + (xy 25.950979 20.587761) + (xy 25.786562 20.437876) + (xy 25.78656 20.437874) + (xy 25.597404 20.320754) + (xy 25.597398 20.320752) + (xy 25.38994 20.240382) + (xy 25.171243 20.1995) + (xy 24.948757 20.1995) + (xy 24.73006 20.240382) + (xy 24.70901 20.248537) + (xy 24.522601 20.320752) + (xy 24.522595 20.320754) + (xy 24.333439 20.437874) + (xy 24.333437 20.437876) + (xy 24.16902 20.587761) + (xy 24.034943 20.765308) + (xy 24.034938 20.765316) + (xy 23.935775 20.964461) + (xy 23.935769 20.964476) + (xy 23.874885 21.178462) + (xy 23.874884 21.178464) + (xy 23.854357 21.399999) + (xy 23.854357 21.4) + (xy 14.2005 21.4) + (xy 14.2005 18.624447) + (xy 14.220185 18.557408) + (xy 14.272989 18.511653) + (xy 14.324447 18.500447) + (xy 15.318123 18.500031) + (xy 15.393205 18.5) + (xy 33.776 18.5) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 38.042539 21.519685) + (xy 38.088294 21.572489) + (xy 38.0995 21.624) + (xy 38.0995 39.465467) + (xy 38.099416 39.465889) + (xy 38.099488 39.506221) + (xy 38.079922 39.573295) + (xy 38.068869 39.588025) + (xy 38.004236 39.662002) + (xy 37.888787 39.855232) + (xy 37.888784 39.855237) + (xy 37.868084 39.910391) + (xy 37.826098 39.966238) + (xy 37.760583 39.99052) + (xy 37.692341 39.975528) + (xy 37.643038 39.926021) + (xy 37.636838 39.911593) + (xy 37.636703 39.911651) + (xy 37.634517 39.906536) + (xy 37.527853 39.708321) + (xy 37.527851 39.708318) + (xy 37.511157 39.687385) + (xy 37.447282 39.607288) + (xy 37.38751 39.532336) + (xy 37.387508 39.532334) + (xy 37.217996 39.384235) + (xy 37.024767 39.268787) + (xy 37.024768 39.268787) + (xy 37.024766 39.268786) + (xy 37.024764 39.268785) + (xy 36.965896 39.246691) + (xy 36.91005 39.204706) + (xy 36.885767 39.139191) + (xy 36.900759 39.070949) + (xy 36.950265 39.021645) + (xy 36.95561 39.018907) + (xy 37.123973 38.937829) + (xy 37.306078 38.805522) + (xy 37.461632 38.642825) + (xy 37.585635 38.454968) + (xy 37.623957 38.365311) + (xy 37.6741 38.247995) + (xy 37.674099 38.247995) + (xy 37.674103 38.247988) + (xy 37.724191 38.028537) + (xy 37.73429 37.80367) + (xy 37.704075 37.580613) + (xy 37.634517 37.366536) + (xy 37.527852 37.168319) + (xy 37.387508 36.992334) + (xy 37.217996 36.844235) + (xy 37.024767 36.728787) + (xy 37.024768 36.728787) + (xy 37.024766 36.728786) + (xy 37.024764 36.728785) + (xy 36.965896 36.706691) + (xy 36.91005 36.664706) + (xy 36.885767 36.599191) + (xy 36.900759 36.530949) + (xy 36.950265 36.481645) + (xy 36.95561 36.478907) + (xy 37.123973 36.397829) + (xy 37.306078 36.265522) + (xy 37.461632 36.102825) + (xy 37.585635 35.914968) + (xy 37.674103 35.707988) + (xy 37.724191 35.488537) + (xy 37.73429 35.26367) + (xy 37.704075 35.040613) + (xy 37.634517 34.826536) + (xy 37.527852 34.628319) + (xy 37.387508 34.452334) + (xy 37.217996 34.304235) + (xy 37.024767 34.188787) + (xy 37.024768 34.188787) + (xy 37.024766 34.188786) + (xy 37.024764 34.188785) + (xy 36.965896 34.166691) + (xy 36.91005 34.124706) + (xy 36.885767 34.059191) + (xy 36.900759 33.990949) + (xy 36.950265 33.941645) + (xy 36.95561 33.938907) + (xy 37.123973 33.857829) + (xy 37.306078 33.725522) + (xy 37.461632 33.562825) + (xy 37.585635 33.374968) + (xy 37.595403 33.352116) + (xy 37.6741 33.167995) + (xy 37.674099 33.167995) + (xy 37.674103 33.167988) + (xy 37.724191 32.948537) + (xy 37.73429 32.72367) + (xy 37.704075 32.500613) + (xy 37.634517 32.286536) + (xy 37.527852 32.088319) + (xy 37.387508 31.912334) + (xy 37.217996 31.764235) + (xy 37.024767 31.648787) + (xy 37.024768 31.648787) + (xy 37.024766 31.648786) + (xy 37.024764 31.648785) + (xy 36.965896 31.626691) + (xy 36.91005 31.584706) + (xy 36.885767 31.519191) + (xy 36.900759 31.450949) + (xy 36.950265 31.401645) + (xy 36.95561 31.398907) + (xy 37.123973 31.317829) + (xy 37.306078 31.185522) + (xy 37.461632 31.022825) + (xy 37.585635 30.834968) + (xy 37.674103 30.627988) + (xy 37.724191 30.408537) + (xy 37.73429 30.18367) + (xy 37.704075 29.960613) + (xy 37.634517 29.746536) + (xy 37.527852 29.548319) + (xy 37.455167 29.457175) + (xy 37.38751 29.372336) + (xy 37.379475 29.365316) + (xy 37.217996 29.224235) + (xy 37.024767 29.108787) + (xy 37.024768 29.108787) + (xy 37.024766 29.108786) + (xy 37.024764 29.108785) + (xy 36.965896 29.086691) + (xy 36.91005 29.044706) + (xy 36.885767 28.979191) + (xy 36.900759 28.910949) + (xy 36.950265 28.861645) + (xy 36.95561 28.858907) + (xy 37.123973 28.777829) + (xy 37.306078 28.645522) + (xy 37.461632 28.482825) + (xy 37.585635 28.294968) + (xy 37.674103 28.087988) + (xy 37.724191 27.868537) + (xy 37.73429 27.64367) + (xy 37.704075 27.420613) + (xy 37.634517 27.206536) + (xy 37.527852 27.008319) + (xy 37.387508 26.832334) + (xy 37.217996 26.684235) + (xy 37.024767 26.568787) + (xy 37.024768 26.568787) + (xy 37.024766 26.568786) + (xy 37.024764 26.568785) + (xy 36.965896 26.546691) + (xy 36.91005 26.504706) + (xy 36.885767 26.439191) + (xy 36.900759 26.370949) + (xy 36.950265 26.321645) + (xy 36.95561 26.318907) + (xy 37.123973 26.237829) + (xy 37.306078 26.105522) + (xy 37.461632 25.942825) + (xy 37.585635 25.754968) + (xy 37.674103 25.547988) + (xy 37.724191 25.328537) + (xy 37.73429 25.10367) + (xy 37.704075 24.880613) + (xy 37.634517 24.666536) + (xy 37.527852 24.468319) + (xy 37.452189 24.373441) + (xy 37.38751 24.292336) + (xy 37.387508 24.292334) + (xy 37.217996 24.144235) + (xy 37.024766 24.028786) + (xy 37.024765 24.028785) + (xy 36.96525 24.006449) + (xy 36.909402 23.964463) + (xy 36.885119 23.898949) + (xy 36.900111 23.830706) + (xy 36.949617 23.781402) + (xy 36.95502 23.778635) + (xy 37.123716 23.697396) + (xy 37.305741 23.565148) + (xy 37.305749 23.565142) + (xy 37.461237 23.402513) + (xy 37.585191 23.214733) + (xy 37.673624 23.00783) + (xy 37.673627 23.007821) + (xy 37.705084 22.87) + (xy 36.913686 22.87) + (xy 36.939493 22.829844) + (xy 36.98 22.691889) + (xy 36.98 22.548111) + (xy 36.939493 22.410156) + (xy 36.913686 22.37) + (xy 37.70755 22.37) + (xy 37.70755 22.369999) + (xy 37.703584 22.340721) + (xy 37.634054 22.126731) + (xy 37.527434 21.928598) + (xy 37.527432 21.928595) + (xy 37.387145 21.752679) + (xy 37.346742 21.717381) + (xy 37.309207 21.658449) + (xy 37.309492 21.58858) + (xy 37.347506 21.529957) + (xy 37.41118 21.501191) + (xy 37.428326 21.5) + (xy 37.9755 21.5) + ) + ) + ) +) diff --git a/TinyTemp.kicad_prl b/TinyTemp.kicad_prl new file mode 100644 index 0000000..59c6fc0 --- /dev/null +++ b/TinyTemp.kicad_prl @@ -0,0 +1,77 @@ +{ + "board": { + "active_layer": 31, + "active_layer_preset": "All Layers", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36, + 39, + 40 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "meta": { + "filename": "TinyTemp.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/TinyTemp.kicad_pro b/TinyTemp.kicad_pro new file mode 100644 index 0000000..cbae823 --- /dev/null +++ b/TinyTemp.kicad_pro @@ -0,0 +1,477 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "board_outline_line_width": 0.09999999999999999, + "copper_line_width": 0.19999999999999998, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.049999999999999996, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.09999999999999999, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.5 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.0, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.0, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.19999999999999998, + "min_microvia_drill": 0.09999999999999999, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.7999999999999999, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.0, + "min_via_annular_width": 0.09999999999999999, + "min_via_diameter": 0.5, + "solder_mask_clearance": 0.0, + "solder_mask_min_width": 0.0, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 5, + "td_on_pad_in_zone": false, + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "TinyTemp.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 0.8, + "via_drill": 0.4, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "92e956c0-8dfc-434c-b4f2-eaee851a07b7", + "" + ] + ], + "text_variables": {} +} diff --git a/TinyTemp.kicad_sch b/TinyTemp.kicad_sch new file mode 100644 index 0000000..0c42ab9 --- /dev/null +++ b/TinyTemp.kicad_sch @@ -0,0 +1,1939 @@ +(kicad_sch (version 20230121) (generator eeschema) + + (uuid 92e956c0-8dfc-434c-b4f2-eaee851a07b7) + + (paper "A4") + + (lib_symbols + (symbol "Connector_Generic:Conn_02x16_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (at 1.27 20.32 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_02x16_Odd_Even" (at 1.27 -22.86 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, double row, 02x16, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_02x16_Odd_Even_1_1" + (rectangle (start -1.27 -20.193) (end 0 -20.447) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -17.653) (end 0 -17.907) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -15.113) (end 0 -15.367) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -12.573) (end 0 -12.827) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -10.033) (end 0 -10.287) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 7.747) (end 0 7.493) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 10.287) (end 0 10.033) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 12.827) (end 0 12.573) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 15.367) (end 0 15.113) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 17.907) (end 0 17.653) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start -1.27 19.05) (end 3.81 -21.59) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (rectangle (start 3.81 -20.193) (end 2.54 -20.447) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -17.653) (end 2.54 -17.907) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -15.113) (end 2.54 -15.367) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -12.573) (end 2.54 -12.827) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -10.033) (end 2.54 -10.287) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -7.493) (end 2.54 -7.747) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -4.953) (end 2.54 -5.207) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 -2.413) (end 2.54 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 0.127) (end 2.54 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 2.667) (end 2.54 2.413) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 5.207) (end 2.54 4.953) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 7.747) (end 2.54 7.493) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 10.287) (end 2.54 10.033) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 12.827) (end 2.54 12.573) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 15.367) (end 2.54 15.113) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 3.81 17.907) (end 2.54 17.653) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (pin passive line (at -5.08 17.78 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 7.62 180) (length 3.81) + (name "Pin_10" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 5.08 0) (length 3.81) + (name "Pin_11" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 5.08 180) (length 3.81) + (name "Pin_12" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_13" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 2.54 180) (length 3.81) + (name "Pin_14" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_15" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 0 180) (length 3.81) + (name "Pin_16" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_17" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -2.54 180) (length 3.81) + (name "Pin_18" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_19" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 17.78 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -5.08 180) (length 3.81) + (name "Pin_20" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_21" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -7.62 180) (length 3.81) + (name "Pin_22" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -10.16 0) (length 3.81) + (name "Pin_23" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -10.16 180) (length 3.81) + (name "Pin_24" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -12.7 0) (length 3.81) + (name "Pin_25" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -12.7 180) (length 3.81) + (name "Pin_26" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -15.24 0) (length 3.81) + (name "Pin_27" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -15.24 180) (length 3.81) + (name "Pin_28" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -17.78 0) (length 3.81) + (name "Pin_29" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 15.24 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -17.78 180) (length 3.81) + (name "Pin_30" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -20.32 0) (length 3.81) + (name "Pin_31" (effects (font (size 1.27 1.27)))) + (number "31" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -20.32 180) (length 3.81) + (name "Pin_32" (effects (font (size 1.27 1.27)))) + (number "32" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 15.24 180) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 12.7 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 12.7 180) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 10.16 0) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 10.16 180) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 7.62 0) (length 3.81) + (name "Pin_9" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C" (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "cap capacitor" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Unpolarized capacitor" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "C_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) + (xy 2.032 -0.762) + ) + (stroke (width 0.508) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default)) + (fill (type none)) + ) + ) + (symbol "C_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:Thermistor_NTC" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "TH" (at -4.445 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Thermistor_NTC" (at 3.175 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "thermistor NTC resistor sensor RTD" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Temperature dependent resistor, negative temperature coefficient" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "*NTC* *Thermistor* PIN?ARRAY* bornier* *Terminal?Block* R_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Thermistor_NTC_0_1" + (arc (start -3.048 2.159) (mid -3.0495 2.3143) (end -3.175 2.413) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (arc (start -3.048 2.159) (mid -2.9736 1.9794) (end -2.794 1.905) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (arc (start -3.048 2.794) (mid -2.9736 2.6144) (end -2.794 2.54) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (arc (start -2.794 1.905) (mid -2.6144 1.9794) (end -2.54 2.159) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (arc (start -2.794 2.54) (mid -2.4393 2.5587) (end -2.159 2.794) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (arc (start -2.794 3.048) (mid -2.9736 2.9736) (end -3.048 2.794) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (arc (start -2.54 2.794) (mid -2.6144 2.9736) (end -2.794 3.048) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (rectangle (start -1.016 2.54) (end 1.016 -2.54) + (stroke (width 0.254) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 2.159) + (xy -2.54 2.794) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.54) + (xy -1.778 1.524) + (xy 1.778 -1.524) + (xy 1.778 -2.54) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 -3.683) + (xy -2.54 -1.397) + (xy -2.794 -2.159) + (xy -2.286 -2.159) + (xy -2.54 -1.397) + (xy -2.54 -1.651) + ) + (stroke (width 0) (type default)) + (fill (type outline)) + ) + (polyline + (pts + (xy -1.778 -1.397) + (xy -1.778 -3.683) + (xy -2.032 -2.921) + (xy -1.524 -2.921) + (xy -1.778 -3.683) + (xy -1.778 -3.429) + ) + (stroke (width 0) (type default)) + (fill (type outline)) + ) + ) + (symbol "Thermistor_NTC_1_1" + (pin passive line (at 0 3.81 270) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "mcu:rp2040-zero" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (at 0 15.24 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "rp2040-zero" (at 0 12.7 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at -8.89 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at -8.89 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "rp2040-zero_0_1" + (rectangle (start -10.16 11.43) (end 10.16 -13.97) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "rp2040-zero_1_1" + (pin bidirectional line (at 12.7 8.89 180) (length 2.54) + (name "0" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 5.08 -16.51 90) (length 2.54) + (name "9" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 2.54 -16.51 90) (length 2.54) + (name "10" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 0 -16.51 90) (length 2.54) + (name "11" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -2.54 -16.51 90) (length 2.54) + (name "12" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -5.08 -16.51 90) (length 2.54) + (name "13" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -11.43 0) (length 2.54) + (name "14" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -8.89 0) (length 2.54) + (name "15" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -6.35 0) (length 2.54) + (name "26" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -3.81 0) (length 2.54) + (name "27" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -1.27 0) (length 2.54) + (name "28" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 6.35 180) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 1.27 0) (length 2.54) + (name "29" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at -12.7 3.81 0) (length 2.54) + (name "3V3" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at -12.7 6.35 0) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at -12.7 8.89 0) (length 2.54) + (name "5V" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 3.81 180) (length 2.54) + (name "2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 1.27 180) (length 2.54) + (name "3" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -1.27 180) (length 2.54) + (name "4" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -3.81 180) (length 2.54) + (name "5" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -6.35 180) (length 2.54) + (name "6" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -8.89 180) (length 2.54) + (name "7" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -11.43 180) (length 2.54) + (name "8" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:GND1" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND1" (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "global power" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"GND1\" , ground" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "GND1_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "GND1_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "pspice:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (at 2.032 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "R" (at 0 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "resistor simulation" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Resistor symbol for simulation only" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_0_1" + (rectangle (start -1.016 3.81) (end 1.016 -3.81) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "R_1_1" + (pin passive line (at 0 6.35 270) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -6.35 90) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 140.97 89.535) (diameter 0) (color 0 0 0 0) + (uuid 029dc80d-f748-495c-ac91-ae9f1a473321) + ) + (junction (at 158.75 89.535) (diameter 0) (color 0 0 0 0) + (uuid 07c0ba09-c598-4440-9534-8b2d96a660fd) + ) + (junction (at 148.59 89.535) (diameter 0) (color 0 0 0 0) + (uuid 07dc6f8b-a100-4ff2-b8ea-bd305e94ad9a) + ) + (junction (at 61.595 27.305) (diameter 0) (color 0 0 0 0) + (uuid 27c0d9fe-2524-498e-8670-62fcfe5848fb) + ) + (junction (at 109.855 29.21) (diameter 0) (color 0 0 0 0) + (uuid 2e80537e-1752-4d64-99f9-b35a17477fd3) + ) + (junction (at 133.35 89.535) (diameter 0) (color 0 0 0 0) + (uuid 2f0a0859-6e52-4b0b-b04d-8f46f4f07e99) + ) + (junction (at 138.43 89.535) (diameter 0) (color 0 0 0 0) + (uuid 359e9578-b995-4e6b-a434-3786ff0e16f2) + ) + (junction (at 110.49 63.5) (diameter 0) (color 0 0 0 0) + (uuid 3848936e-9527-43dc-984e-78abd5fa0ab7) + ) + (junction (at 146.05 89.535) (diameter 0) (color 0 0 0 0) + (uuid 387327ba-60de-4e09-81bb-dca6740d9118) + ) + (junction (at 42.545 27.305) (diameter 0) (color 0 0 0 0) + (uuid 472a011f-916a-40b0-b1f1-1442767cde96) + ) + (junction (at 156.21 89.535) (diameter 0) (color 0 0 0 0) + (uuid 4835c64c-cc8b-4c88-81f3-cc3f4ba83a06) + ) + (junction (at 93.98 63.5) (diameter 0) (color 0 0 0 0) + (uuid 5beae7e3-b54e-422a-950f-6602dc78425a) + ) + (junction (at 153.67 89.535) (diameter 0) (color 0 0 0 0) + (uuid 6492b8e0-fd5e-487f-b48f-f436994e1615) + ) + (junction (at 90.805 29.21) (diameter 0) (color 0 0 0 0) + (uuid 76adb91a-7953-4273-9c89-d1d9052313fe) + ) + (junction (at 161.29 89.535) (diameter 0) (color 0 0 0 0) + (uuid 83b61994-093e-4e74-a9a6-8c4b556ee051) + ) + (junction (at 44.45 61.595) (diameter 0) (color 0 0 0 0) + (uuid 8a6fef33-44b8-447c-88cb-288032ffaed9) + ) + (junction (at 130.81 89.535) (diameter 0) (color 0 0 0 0) + (uuid 9f7866b8-b600-4bd9-a1b7-a84c073ec5d9) + ) + (junction (at 135.89 89.535) (diameter 0) (color 0 0 0 0) + (uuid a5b956e0-557a-4978-874b-2a1482de7c4e) + ) + (junction (at 46.99 61.595) (diameter 0) (color 0 0 0 0) + (uuid b5d302d1-54b3-40af-984e-b4efd3617943) + ) + (junction (at 143.51 89.535) (diameter 0) (color 0 0 0 0) + (uuid b75726e9-10d8-4e90-9cb3-adf1631736fa) + ) + (junction (at 93.345 29.21) (diameter 0) (color 0 0 0 0) + (uuid c0297878-90c0-496a-9d93-9e0c12d816d8) + ) + (junction (at 163.83 89.535) (diameter 0) (color 0 0 0 0) + (uuid c116d816-ee4a-4cf7-9d4d-b88765bf8839) + ) + (junction (at 166.37 89.535) (diameter 0) (color 0 0 0 0) + (uuid c662597f-eaf5-4eba-9909-4ad785be33c3) + ) + (junction (at 91.44 63.5) (diameter 0) (color 0 0 0 0) + (uuid d350acbe-47f8-4724-b9fd-43c915625c7a) + ) + (junction (at 63.5 61.595) (diameter 0) (color 0 0 0 0) + (uuid f1285615-0975-42de-a656-6d72ee07affb) + ) + (junction (at 151.13 89.535) (diameter 0) (color 0 0 0 0) + (uuid f842d3d5-e76a-4815-8971-e24f1f65ae13) + ) + (junction (at 45.085 27.305) (diameter 0) (color 0 0 0 0) + (uuid fdde1eb8-0080-491d-92ad-40afb6720a0f) + ) + + (wire (pts (xy 161.29 71.12) (xy 172.72 71.12)) + (stroke (width 0) (type default)) + (uuid 000d48d8-6fc1-4e3d-bb11-155618285a89) + ) + (wire (pts (xy 55.88 73.025) (xy 46.99 73.025)) + (stroke (width 0) (type default)) + (uuid 024244dc-ad19-46fc-9f38-25fbb1457ed3) + ) + (wire (pts (xy 133.985 38.1) (xy 121.92 38.1)) + (stroke (width 0) (type default)) + (uuid 0481a7fa-6f51-4dbb-ac82-60305e55fae3) + ) + (wire (pts (xy 61.595 27.305) (xy 62.23 27.305)) + (stroke (width 0) (type default)) + (uuid 05ddeae8-80bd-4202-8bff-9af02b8a38a3) + ) + (wire (pts (xy 153.67 69.215) (xy 170.815 69.215)) + (stroke (width 0) (type default)) + (uuid 05f5b6e4-b91b-4ddf-9c31-2a0dab6b1c4a) + ) + (wire (pts (xy 138.43 62.23) (xy 138.43 76.835)) + (stroke (width 0) (type default)) + (uuid 078bbd8b-9bf8-40d8-979a-0b2890a95bfb) + ) + (wire (pts (xy 158.75 89.535) (xy 161.29 89.535)) + (stroke (width 0) (type default)) + (uuid 0a78997e-3c8c-4de5-8b75-64579c0276cf) + ) + (wire (pts (xy 53.975 38.735) (xy 45.085 38.735)) + (stroke (width 0) (type default)) + (uuid 0bb471bc-5659-4aa5-bd06-7da4b2b4500b) + ) + (wire (pts (xy 151.13 89.535) (xy 153.67 89.535)) + (stroke (width 0) (type default)) + (uuid 0ecf05ec-5ec7-4a9d-b7a1-f263c65879da) + ) + (wire (pts (xy 171.45 47.625) (xy 169.545 47.625)) + (stroke (width 0) (type default)) + (uuid 111231b3-a31a-4e69-9727-d320aac8d082) + ) + (wire (pts (xy 133.35 89.535) (xy 135.89 89.535)) + (stroke (width 0) (type default)) + (uuid 133c5904-d1bc-478d-9e35-4e49fe5f0551) + ) + (wire (pts (xy 172.085 45.085) (xy 172.085 70.485)) + (stroke (width 0) (type default)) + (uuid 1366260d-cc55-440f-b19f-d3232885b398) + ) + (wire (pts (xy 133.985 42.545) (xy 133.985 38.1)) + (stroke (width 0) (type default)) + (uuid 1434c510-28e1-443d-a940-6081d40022bd) + ) + (wire (pts (xy 45.085 38.735) (xy 45.085 27.305)) + (stroke (width 0) (type default)) + (uuid 1dcf043e-6ea4-42ba-9e59-69616996ca70) + ) + (wire (pts (xy 91.44 63.5) (xy 93.98 63.5)) + (stroke (width 0) (type default)) + (uuid 1ded9812-5471-46ca-86c0-c746632ef301) + ) + (wire (pts (xy 135.89 60.325) (xy 135.89 76.835)) + (stroke (width 0) (type default)) + (uuid 21af3f9e-a670-41ac-903e-a1d4f076772e) + ) + (wire (pts (xy 163.83 71.755) (xy 173.355 71.755)) + (stroke (width 0) (type default)) + (uuid 2218961f-7f51-49fa-814f-0ed161643850) + ) + (wire (pts (xy 156.845 63.5) (xy 140.97 63.5)) + (stroke (width 0) (type default)) + (uuid 242efe79-de67-41ca-88b6-f9c6cf4ae0a5) + ) + (wire (pts (xy 158.75 70.485) (xy 158.75 76.835)) + (stroke (width 0) (type default)) + (uuid 24363856-e8c9-46d7-956e-1367b9781527) + ) + (wire (pts (xy 169.545 37.465) (xy 173.99 37.465)) + (stroke (width 0) (type default)) + (uuid 246b7890-4dba-4c4c-8be9-b2d516ff3fa8) + ) + (wire (pts (xy 121.92 43.815) (xy 133.35 43.815)) + (stroke (width 0) (type default)) + (uuid 260b5d26-d6bc-4dba-a7ee-a512b3f9085c) + ) + (wire (pts (xy 133.35 55.245) (xy 144.145 55.245)) + (stroke (width 0) (type default)) + (uuid 2d37c8ca-41bb-4b8d-b7eb-5d7633b0e917) + ) + (wire (pts (xy 137.16 40.005) (xy 137.16 41.275)) + (stroke (width 0) (type default)) + (uuid 2e8657e2-1a3a-44e0-92b4-e605e1cd0811) + ) + (wire (pts (xy 156.21 89.535) (xy 158.75 89.535)) + (stroke (width 0) (type default)) + (uuid 2f205fab-ae67-498e-b6a8-49c30f593d52) + ) + (wire (pts (xy 172.72 71.12) (xy 172.72 42.545)) + (stroke (width 0) (type default)) + (uuid 30a1d287-282c-46f6-b527-3bad9cd8964f) + ) + (wire (pts (xy 109.855 29.21) (xy 109.855 40.64)) + (stroke (width 0) (type default)) + (uuid 31242100-87d0-408d-87f1-b26b2ee1853d) + ) + (wire (pts (xy 59.055 61.595) (xy 63.5 61.595)) + (stroke (width 0) (type default)) + (uuid 354de530-8dca-477a-ac17-658068d20b69) + ) + (wire (pts (xy 143.51 65.405) (xy 159.385 65.405)) + (stroke (width 0) (type default)) + (uuid 35522253-07c2-4244-8709-56520fcf5b49) + ) + (wire (pts (xy 133.35 43.815) (xy 133.35 45.085)) + (stroke (width 0) (type default)) + (uuid 35b650fd-e409-4e4c-aef7-e524d7f1ec44) + ) + (wire (pts (xy 102.87 74.93) (xy 93.98 74.93)) + (stroke (width 0) (type default)) + (uuid 36ca48d8-2136-4612-850a-4b55abc9d3f1) + ) + (wire (pts (xy 173.99 72.39) (xy 166.37 72.39)) + (stroke (width 0) (type default)) + (uuid 399a13c2-65e0-4a9e-ac82-898bb1b6be88) + ) + (wire (pts (xy 156.21 69.85) (xy 171.45 69.85)) + (stroke (width 0) (type default)) + (uuid 3b151305-755d-4f18-bebd-9aff4c2e19d1) + ) + (wire (pts (xy 170.815 50.165) (xy 169.545 50.165)) + (stroke (width 0) (type default)) + (uuid 3b3ff1de-6128-4b76-a5dc-75c9d65f10c3) + ) + (wire (pts (xy 93.345 40.64) (xy 93.345 29.21)) + (stroke (width 0) (type default)) + (uuid 3bd074df-f5ea-4970-87d6-e3e3d74668c2) + ) + (wire (pts (xy 110.49 63.5) (xy 111.125 63.5)) + (stroke (width 0) (type default)) + (uuid 3c0bb163-35ee-4531-aac5-3b6a693087af) + ) + (wire (pts (xy 144.145 37.465) (xy 137.795 37.465)) + (stroke (width 0) (type default)) + (uuid 3e79c82e-cc72-46a6-89ff-e1b7cc70d952) + ) + (wire (pts (xy 143.51 65.405) (xy 143.51 76.835)) + (stroke (width 0) (type default)) + (uuid 4049fa64-953d-4c87-bdc4-10b61209b5cd) + ) + (wire (pts (xy 133.35 55.245) (xy 133.35 76.835)) + (stroke (width 0) (type default)) + (uuid 414f303e-d5de-4b03-a1c4-3b7be1eeb894) + ) + (wire (pts (xy 78.74 61.595) (xy 78.74 63.5)) + (stroke (width 0) (type default)) + (uuid 42354b81-7904-41c7-a865-d01854be3400) + ) + (wire (pts (xy 166.37 89.535) (xy 168.91 89.535)) + (stroke (width 0) (type default)) + (uuid 4422d4d8-99b2-47be-8d3f-3c725fe9655e) + ) + (wire (pts (xy 170.18 68.58) (xy 170.18 52.705)) + (stroke (width 0) (type default)) + (uuid 46a7775c-0620-463e-96a3-821fac45b369) + ) + (wire (pts (xy 174.625 34.925) (xy 169.545 34.925)) + (stroke (width 0) (type default)) + (uuid 46e40b73-a314-4b1c-933d-99a50bf3d46b) + ) + (wire (pts (xy 156.845 60.325) (xy 156.845 63.5)) + (stroke (width 0) (type default)) + (uuid 4780d875-76cf-4e14-97a1-a33b3f521fed) + ) + (wire (pts (xy 135.255 50.8) (xy 135.255 50.165)) + (stroke (width 0) (type default)) + (uuid 479e67d5-f58d-4621-b1da-b722c7cb5094) + ) + (wire (pts (xy 144.145 47.625) (xy 121.92 47.625)) + (stroke (width 0) (type default)) + (uuid 4c308b72-404a-480f-8699-845a172a9ee1) + ) + (wire (pts (xy 163.83 89.535) (xy 166.37 89.535)) + (stroke (width 0) (type default)) + (uuid 4d8c7413-16a3-461b-8c13-d12e38232878) + ) + (wire (pts (xy 93.98 74.93) (xy 93.98 63.5)) + (stroke (width 0) (type default)) + (uuid 4dd4e617-b691-45c8-b3b0-565cbe0cb93c) + ) + (wire (pts (xy 74.295 27.305) (xy 78.105 27.305)) + (stroke (width 0) (type default)) + (uuid 4e19f8e0-bf46-4687-9a5a-b2fc6157a0e3) + ) + (wire (pts (xy 151.13 68.58) (xy 151.13 76.835)) + (stroke (width 0) (type default)) + (uuid 4e44e36a-d31d-4787-a966-2a8b1bff49bb) + ) + (wire (pts (xy 42.545 27.305) (xy 42.545 44.45)) + (stroke (width 0) (type default)) + (uuid 4f0f5877-9525-4cf4-92cc-527bfcb68b4e) + ) + (wire (pts (xy 105.41 29.21) (xy 109.855 29.21)) + (stroke (width 0) (type default)) + (uuid 50afe389-f3e5-43a2-a1fe-d9ca914cf24c) + ) + (wire (pts (xy 121.92 47.625) (xy 121.92 46.355)) + (stroke (width 0) (type default)) + (uuid 52ecc6cf-f4b9-4f10-8b3b-fe3ebd2df23a) + ) + (wire (pts (xy 168.91 76.835) (xy 168.91 73.025)) + (stroke (width 0) (type default)) + (uuid 56ae026a-c6de-4d65-86aa-a69893958d98) + ) + (wire (pts (xy 148.59 67.945) (xy 148.59 76.835)) + (stroke (width 0) (type default)) + (uuid 56e70ed7-197b-4add-a249-996c3f40592a) + ) + (wire (pts (xy 153.67 89.535) (xy 156.21 89.535)) + (stroke (width 0) (type default)) + (uuid 5ccb7fb6-5e1d-47af-b5ab-d3a29dbed30e) + ) + (wire (pts (xy 130.81 89.535) (xy 133.35 89.535)) + (stroke (width 0) (type default)) + (uuid 5da42955-fccd-4e56-8f6b-31758ba8a6c3) + ) + (wire (pts (xy 90.805 29.21) (xy 90.805 46.355)) + (stroke (width 0) (type default)) + (uuid 60a87761-6086-43fc-9758-6b3999f52e26) + ) + (wire (pts (xy 169.545 67.945) (xy 169.545 55.245)) + (stroke (width 0) (type default)) + (uuid 616b3cc3-4951-40a1-b45e-5f2b2cf58043) + ) + (wire (pts (xy 161.29 71.12) (xy 161.29 76.835)) + (stroke (width 0) (type default)) + (uuid 625f768c-338f-4c8d-9915-3933f9ae0034) + ) + (wire (pts (xy 29.845 25.4) (xy 29.845 27.305)) + (stroke (width 0) (type default)) + (uuid 64a94d27-3ba3-40c5-be75-fc2b72ba2b25) + ) + (wire (pts (xy 44.45 61.595) (xy 44.45 78.74)) + (stroke (width 0) (type default)) + (uuid 6976082a-729f-449b-ad65-2ee2b636c1b3) + ) + (wire (pts (xy 78.105 27.305) (xy 78.105 29.21)) + (stroke (width 0) (type default)) + (uuid 6a1dc572-c248-4a98-8895-f73e4f617cd8) + ) + (wire (pts (xy 106.045 63.5) (xy 110.49 63.5)) + (stroke (width 0) (type default)) + (uuid 6a912a99-184b-46f9-b59a-84ba6b4c2cce) + ) + (wire (pts (xy 161.29 89.535) (xy 163.83 89.535)) + (stroke (width 0) (type default)) + (uuid 6b67708c-da3b-4317-b625-5a651d7a4eea) + ) + (wire (pts (xy 133.35 45.085) (xy 144.145 45.085)) + (stroke (width 0) (type default)) + (uuid 6e8f4db8-82e2-4168-b458-0af5145bd2b0) + ) + (wire (pts (xy 45.085 27.305) (xy 49.53 27.305)) + (stroke (width 0) (type default)) + (uuid 701dc1df-3cfd-4660-992b-08839beec06b) + ) + (wire (pts (xy 138.43 62.23) (xy 154.305 62.23)) + (stroke (width 0) (type default)) + (uuid 711abc98-5079-41e2-8afa-aa1353373a1b) + ) + (wire (pts (xy 151.765 60.325) (xy 135.89 60.325)) + (stroke (width 0) (type default)) + (uuid 74fca52a-da84-4ca0-b9bc-c389deb042d4) + ) + (wire (pts (xy 146.05 66.675) (xy 146.05 76.835)) + (stroke (width 0) (type default)) + (uuid 7586ccd3-4143-4fa2-a2b2-c2798be124c7) + ) + (wire (pts (xy 93.98 63.5) (xy 98.425 63.5)) + (stroke (width 0) (type default)) + (uuid 780c7dae-c11f-48f7-81b6-b2a3947207bd) + ) + (wire (pts (xy 144.145 52.705) (xy 130.81 52.705)) + (stroke (width 0) (type default)) + (uuid 783b842d-5af6-4d25-99a6-fc979571ea16) + ) + (wire (pts (xy 163.83 76.835) (xy 163.83 71.755)) + (stroke (width 0) (type default)) + (uuid 79dfdefa-759b-4c6a-9ab0-4708dfcc8250) + ) + (wire (pts (xy 27.94 59.69) (xy 31.75 59.69)) + (stroke (width 0) (type default)) + (uuid 7b88c1ab-5bbb-4b10-b083-625f909854c3) + ) + (wire (pts (xy 172.72 42.545) (xy 169.545 42.545)) + (stroke (width 0) (type default)) + (uuid 7db4f329-28e1-4cc9-8ed6-779215b2efd1) + ) + (wire (pts (xy 140.97 89.535) (xy 143.51 89.535)) + (stroke (width 0) (type default)) + (uuid 7e84d708-385b-4ba2-b282-68f72f70a048) + ) + (wire (pts (xy 153.67 69.215) (xy 153.67 76.835)) + (stroke (width 0) (type default)) + (uuid 7fa2dfed-46c0-4b7e-8632-75140d9746c7) + ) + (wire (pts (xy 57.15 27.305) (xy 61.595 27.305)) + (stroke (width 0) (type default)) + (uuid 8459ee88-f7eb-4ed1-b623-47c8704dd445) + ) + (wire (pts (xy 159.385 65.405) (xy 159.385 60.325)) + (stroke (width 0) (type default)) + (uuid 8480b8e7-e5be-4d7a-a0af-d2dd786f1db5) + ) + (wire (pts (xy 166.37 72.39) (xy 166.37 76.835)) + (stroke (width 0) (type default)) + (uuid 8526bd17-ac5a-4c8b-9c42-0bd4e027a6d3) + ) + (wire (pts (xy 170.815 69.215) (xy 170.815 50.165)) + (stroke (width 0) (type default)) + (uuid 8788a53e-2703-42af-a7c6-82c939b27e03) + ) + (wire (pts (xy 144.145 40.005) (xy 137.16 40.005)) + (stroke (width 0) (type default)) + (uuid 88084791-9a40-4446-85c7-54385b4341d3) + ) + (wire (pts (xy 169.545 45.085) (xy 172.085 45.085)) + (stroke (width 0) (type default)) + (uuid 894efd39-c5dc-4461-9a34-03a32a305c90) + ) + (wire (pts (xy 148.59 67.945) (xy 169.545 67.945)) + (stroke (width 0) (type default)) + (uuid 896afc0a-20d1-4ddd-b96d-d0147401ca31) + ) + (wire (pts (xy 90.805 29.21) (xy 93.345 29.21)) + (stroke (width 0) (type default)) + (uuid 89769428-c052-432b-9889-50711e452337) + ) + (wire (pts (xy 151.13 68.58) (xy 170.18 68.58)) + (stroke (width 0) (type default)) + (uuid 8b76fa1a-8f11-4f8b-b2b8-9e24992cad1b) + ) + (wire (pts (xy 154.305 62.23) (xy 154.305 60.325)) + (stroke (width 0) (type default)) + (uuid 8def4aa3-8d99-46eb-930d-aa4f33179985) + ) + (wire (pts (xy 148.59 89.535) (xy 151.13 89.535)) + (stroke (width 0) (type default)) + (uuid 8feba63d-32ae-41be-8916-c3ae0eac5030) + ) + (wire (pts (xy 46.99 73.025) (xy 46.99 61.595)) + (stroke (width 0) (type default)) + (uuid 92876f93-3381-43de-9355-d51e7ad0ce91) + ) + (wire (pts (xy 74.93 61.595) (xy 78.74 61.595)) + (stroke (width 0) (type default)) + (uuid 932b0be2-be16-4e1f-9c0d-7c63c95939db) + ) + (wire (pts (xy 170.18 52.705) (xy 169.545 52.705)) + (stroke (width 0) (type default)) + (uuid 99fe5cfb-72b1-4187-9bca-f730b6b5fe79) + ) + (wire (pts (xy 93.345 29.21) (xy 97.79 29.21)) + (stroke (width 0) (type default)) + (uuid 9cde38a0-696b-48d7-9da0-31ba607e2565) + ) + (wire (pts (xy 144.145 42.545) (xy 133.985 42.545)) + (stroke (width 0) (type default)) + (uuid a253c97a-a055-429c-aa42-ce13f55f3666) + ) + (wire (pts (xy 173.99 37.465) (xy 173.99 72.39)) + (stroke (width 0) (type default)) + (uuid a40241d4-66cf-4611-9aaa-0d5d7b605694) + ) + (wire (pts (xy 140.97 63.5) (xy 140.97 76.835)) + (stroke (width 0) (type default)) + (uuid a6df814a-524f-4568-928a-b67e9b7ec63d) + ) + (wire (pts (xy 44.45 61.595) (xy 46.99 61.595)) + (stroke (width 0) (type default)) + (uuid a867dd8d-eb0d-4ea4-bc91-76c410bb2d3c) + ) + (wire (pts (xy 135.255 50.165) (xy 144.145 50.165)) + (stroke (width 0) (type default)) + (uuid aa47915f-56d9-4b4a-be7d-510ca6e91b8f) + ) + (wire (pts (xy 173.355 40.005) (xy 169.545 40.005)) + (stroke (width 0) (type default)) + (uuid ac90560c-f561-4bf1-bab6-ecb0794b5ef6) + ) + (wire (pts (xy 31.75 59.69) (xy 31.75 61.595)) + (stroke (width 0) (type default)) + (uuid aff27374-d558-4027-a367-f7c23fdd3963) + ) + (wire (pts (xy 137.795 37.465) (xy 137.795 34.925)) + (stroke (width 0) (type default)) + (uuid b4a16d50-8dbd-4980-b995-296c1b192feb) + ) + (wire (pts (xy 102.235 40.64) (xy 93.345 40.64)) + (stroke (width 0) (type default)) + (uuid b51d769a-a20a-43d7-99b1-886dff4c4886) + ) + (wire (pts (xy 110.49 63.5) (xy 110.49 74.93)) + (stroke (width 0) (type default)) + (uuid b6d38a94-54fe-4223-97f7-777d2fc2c959) + ) + (wire (pts (xy 146.05 89.535) (xy 148.59 89.535)) + (stroke (width 0) (type default)) + (uuid b875cded-c26d-4e01-974f-dc5ca7e12d37) + ) + (wire (pts (xy 174.625 73.025) (xy 174.625 34.925)) + (stroke (width 0) (type default)) + (uuid c2bce11c-f86b-4489-9812-72d96ba530d8) + ) + (wire (pts (xy 172.085 70.485) (xy 158.75 70.485)) + (stroke (width 0) (type default)) + (uuid c392bf03-7a56-4054-8497-c6395b5c0f46) + ) + (wire (pts (xy 26.035 25.4) (xy 29.845 25.4)) + (stroke (width 0) (type default)) + (uuid c41c0106-4155-4fdd-be6c-0f82d940d4e3) + ) + (wire (pts (xy 168.91 73.025) (xy 174.625 73.025)) + (stroke (width 0) (type default)) + (uuid c551fb9a-45bb-4c55-990c-f53ef61f8377) + ) + (wire (pts (xy 156.21 69.85) (xy 156.21 76.835)) + (stroke (width 0) (type default)) + (uuid cf9bfa1e-c777-47f4-be95-168ef418a5fa) + ) + (wire (pts (xy 171.45 69.85) (xy 171.45 47.625)) + (stroke (width 0) (type default)) + (uuid d1faf80b-158e-4d89-bddb-75a7abb7439c) + ) + (wire (pts (xy 130.81 52.705) (xy 130.81 76.835)) + (stroke (width 0) (type default)) + (uuid da349b4e-b11e-4189-bc6a-7446a3a817e2) + ) + (wire (pts (xy 173.355 71.755) (xy 173.355 40.005)) + (stroke (width 0) (type default)) + (uuid db5ceaae-7bc3-4b89-a0bb-315b8db070a5) + ) + (wire (pts (xy 63.5 61.595) (xy 63.5 73.025)) + (stroke (width 0) (type default)) + (uuid e5177208-adb7-4abc-81e7-14a2ba30a551) + ) + (wire (pts (xy 161.925 66.675) (xy 146.05 66.675)) + (stroke (width 0) (type default)) + (uuid e5d3843a-30aa-4bc1-b737-6f3b64ad99b8) + ) + (wire (pts (xy 121.92 50.8) (xy 135.255 50.8)) + (stroke (width 0) (type default)) + (uuid e72b2365-ed64-49b5-a61d-936b4a599eed) + ) + (wire (pts (xy 127 89.535) (xy 130.81 89.535)) + (stroke (width 0) (type default)) + (uuid e91a5449-e14b-4f85-a30b-8be4aec7b782) + ) + (wire (pts (xy 138.43 89.535) (xy 140.97 89.535)) + (stroke (width 0) (type default)) + (uuid ef3fc8e9-cb4e-472f-b007-290faedbeae4) + ) + (wire (pts (xy 61.595 27.305) (xy 61.595 38.735)) + (stroke (width 0) (type default)) + (uuid efe49b0c-e40f-49ba-af21-3fecfcfe115f) + ) + (wire (pts (xy 91.44 63.5) (xy 91.44 80.645)) + (stroke (width 0) (type default)) + (uuid f04620e3-eda6-4bd2-9b68-7704ea5ebea4) + ) + (wire (pts (xy 63.5 61.595) (xy 64.135 61.595)) + (stroke (width 0) (type default)) + (uuid f1828fbe-16e7-4254-85f2-7c9c2d530839) + ) + (wire (pts (xy 46.99 61.595) (xy 51.435 61.595)) + (stroke (width 0) (type default)) + (uuid f205a221-611e-4293-bf56-c0e388735781) + ) + (wire (pts (xy 135.89 89.535) (xy 138.43 89.535)) + (stroke (width 0) (type default)) + (uuid f3e46a9e-c537-48a9-a3f0-1e1da2b56a30) + ) + (wire (pts (xy 109.855 29.21) (xy 110.49 29.21)) + (stroke (width 0) (type default)) + (uuid f43389e7-213d-4379-bda9-c932bb7c417e) + ) + (wire (pts (xy 42.545 27.305) (xy 45.085 27.305)) + (stroke (width 0) (type default)) + (uuid f4f00cd4-b6ac-49d8-afc2-3e01d1b40eb9) + ) + (wire (pts (xy 161.925 60.325) (xy 161.925 66.675)) + (stroke (width 0) (type default)) + (uuid fcd289d2-e1be-49fe-b9b1-108c92b1b3f9) + ) + (wire (pts (xy 121.92 41.91) (xy 121.92 43.815)) + (stroke (width 0) (type default)) + (uuid fe046062-8d66-4df3-aec1-19dd8ea9d49a) + ) + (wire (pts (xy 143.51 89.535) (xy 146.05 89.535)) + (stroke (width 0) (type default)) + (uuid ff02abcd-1090-4dc2-a7aa-871ce257d106) + ) + + (label "3.3v" (at 137.16 41.275 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0b4b1a31-889c-4053-8274-cc1b3f808918) + ) + (label "Thermistor0" (at 121.92 38.1 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 13eac4a7-806e-4753-a325-bab6fbd4f313) + ) + (label "3.3v" (at 26.035 25.4 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1ae6f7b1-fbec-46e1-b109-067336bf80d8) + ) + (label "Thermistor2" (at 121.92 46.355 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 51506f6f-f028-4d91-801e-cd1ba08bc87c) + ) + (label "Thermistor1" (at 121.92 41.91 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6cd731a4-3e05-496e-9893-4dbd004f194f) + ) + (label "Thermistor1" (at 90.805 46.355 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 832268ef-5ff2-49ef-9fb2-3d6d452e024b) + ) + (label "3.3v" (at 27.94 59.69 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9b6cd1ce-4379-49f6-901a-bbaeed1807b3) + ) + (label "Thermistor3" (at 91.44 80.645 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid acd1ac3c-0b43-44e9-84d1-8c27eee53f5c) + ) + (label "3.3v" (at 74.295 27.305 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c40238e4-53b2-4ad6-a6d8-7fb22b132243) + ) + (label "Thermistor3" (at 121.92 50.8 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dc86472f-cae1-4d7f-ad30-9a2a76ebe89a) + ) + (label "3.3v" (at 74.93 61.595 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dffb28d2-27c4-4190-b178-e84263c0211a) + ) + (label "Thermistor0" (at 42.545 44.45 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid eaac386d-d308-4732-99e2-8acf1cf6b9bf) + ) + (label "Thermistor2" (at 44.45 78.74 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f90c13cd-e820-4c24-87e3-cd425f4263fd) + ) + + (symbol (lib_id "Device:Thermistor_NTC") (at 55.245 61.595 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 126ae5af-b7de-4d1c-b4eb-96ee5b505ee5) + (property "Reference" "TH2" (at 55.5625 54.483 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Thermistor_NTC_100k" (at 55.5625 57.023 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 53.975 61.595 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 53.975 61.595 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 857df562-738f-4af5-9086-f79358f5f1d0)) + (pin "2" (uuid 6665d475-cd89-45d5-8e9e-0370513817b1)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "TH2") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "TH2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "pspice:R") (at 84.455 29.21 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 21328443-3099-43b1-b489-b41fae2e2487) + (property "Reference" "T1R2" (at 84.455 22.86 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "4.7k" (at 84.455 25.4 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (at 84.455 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 84.455 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 301bddc3-d6d4-467e-818f-22a4dec67689)) + (pin "2" (uuid cb9b8a5f-259f-45ef-ad8a-142e6abb105d)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "T1R2") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "T1R3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:Thermistor_NTC") (at 53.34 27.305 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 35ed76ea-c52c-4af9-af04-0704ca6bbc8e) + (property "Reference" "TH0" (at 53.6575 20.955 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Thermistor_NTC_100k" (at 53.6575 23.495 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 52.07 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 52.07 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bdb657ed-89db-45a5-ac95-cd4ce8f77da8)) + (pin "2" (uuid ad944562-9919-4b59-8f79-455c2a79db12)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "TH0") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "TH1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND1") (at 111.125 63.5 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 3a3d8b69-b249-4b8c-be66-840c2fd67f11) + (property "Reference" "#PWR0108" (at 117.475 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND1" (at 114.427 63.4999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (at 111.125 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 111.125 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 05a136ca-b6ea-4b2b-ae75-1cda84549bf7)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0108") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR04") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:Thermistor_NTC") (at 101.6 29.21 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 400e609a-bba4-4e5a-ae93-533c1e27c86d) + (property "Reference" "TH1" (at 101.9175 22.098 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Thermistor_NTC_100k" (at 101.9175 24.638 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 100.33 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 100.33 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0cf2d255-13ff-4c7c-8a6c-b4fff437b323)) + (pin "2" (uuid 12f62563-b2df-4d06-8fd4-27b719f7ac94)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "TH1") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "TH3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C") (at 106.045 40.64 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 81e8f931-69e3-4a1b-822c-23fefcdaa628) + (property "Reference" "C2" (at 106.045 33.655 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "4.7uF" (at 106.045 36.195 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (at 109.855 39.6748 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 106.045 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 44c6567a-e635-454b-9268-95b49e99eb22)) + (pin "2" (uuid ac03cb05-29ce-4a1d-8fc0-47814b5fc4eb)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "C2") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "C3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector_Generic:Conn_02x16_Odd_Even") (at 151.13 81.915 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 82d28cde-a9a2-4692-b138-6ff72a7c0c14) + (property "Reference" "J1" (at 128.27 81.915 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_02x16_Top_Bottom" (at 128.27 84.455 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x13_P2.54mm_Vertical" (at 151.13 81.915 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 151.13 81.915 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 647ee274-edf2-4e2d-86d8-869903f6c930)) + (pin "10" (uuid 936f2fbf-a09c-423c-a377-5a7f8ce1f68e)) + (pin "11" (uuid 8d11c475-06b9-4224-845f-4f91815d8576)) + (pin "12" (uuid 70410ab2-b087-436c-900b-1f824ab67247)) + (pin "13" (uuid 5ce9f6dd-e871-49e7-98da-364ad5d71df2)) + (pin "14" (uuid 125fd3b7-2f01-41a1-9e01-f4ca696d5982)) + (pin "15" (uuid a532e7a3-2998-4b76-9ff9-f7f56cb0d9b5)) + (pin "16" (uuid 077e532e-e7b3-4a1a-9ed2-9c0cdda62889)) + (pin "17" (uuid f95b6806-a165-4e60-ba71-419da584abfd)) + (pin "18" (uuid 79235b25-bb39-464b-8a42-618a34fb4243)) + (pin "19" (uuid f5369871-47f0-45a4-91f4-fb165681f035)) + (pin "2" (uuid 6a2e94c5-1868-4c4b-8403-ee1f76cb9dcf)) + (pin "20" (uuid d2ec04a3-8d98-4af6-abf7-8ee0b7093805)) + (pin "21" (uuid 3fcde9fe-214d-465f-a90d-b4cca71b58da)) + (pin "22" (uuid f1628314-8620-4e12-a7aa-929706a446ac)) + (pin "23" (uuid 3df0d662-355d-4a62-ae51-c82895a4065a)) + (pin "24" (uuid 421462d8-c634-4f5c-bad5-12847e3711c1)) + (pin "25" (uuid 025b3a59-fb3d-4fe6-b959-3d13e111d7d3)) + (pin "26" (uuid 79b733a2-62fa-4a33-98bc-8e281a83475c)) + (pin "27" (uuid f3304f7f-5c10-4098-b614-8deacc0d5ba3)) + (pin "28" (uuid dd8d0e5f-e20f-4531-933b-7ef0222eabcf)) + (pin "29" (uuid 3cd404a8-446e-4b53-b998-88fb3e28937a)) + (pin "3" (uuid 9e22c5d5-c470-4023-ba80-16d3be408729)) + (pin "30" (uuid d5ea25a9-fe33-48ab-949a-75095507d7aa)) + (pin "31" (uuid a7a50b53-a1b5-4bac-9bf1-5956f273e39a)) + (pin "32" (uuid 244400b7-ed09-424e-89a1-567e9c4742bc)) + (pin "4" (uuid 65c3516c-fa1e-4184-a4b8-05c219c7ee42)) + (pin "5" (uuid b61ad101-6db7-4abe-a595-896fddd51613)) + (pin "6" (uuid 028029f4-33ad-484b-9e23-b8c9ec12281d)) + (pin "7" (uuid 17b0862a-123d-4bba-b1b4-262c6f24c91e)) + (pin "8" (uuid e0ad3de5-3726-49a7-a910-24dcfd58ec54)) + (pin "9" (uuid 6e812ef3-9497-4b34-911f-f41e6629e1b7)) + (instances + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "J1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:Thermistor_NTC") (at 102.235 63.5 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) + (uuid 833598b7-80ea-4c00-863e-9e1e91b2c097) + (property "Reference" "TH3" (at 102.5525 56.388 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Thermistor_NTC_100k" (at 102.5525 58.928 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (at 100.965 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 100.965 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f2139cb0-02b3-4720-a822-97786cb4cdcf)) + (pin "2" (uuid 63408535-4527-4880-b408-2a07c8486c24)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "TH3") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "TH4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND1") (at 127 89.535 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 83709b15-33d6-4e02-8510-ae4315705ce1) + (property "Reference" "#PWR0110" (at 120.65 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND1" (at 123.825 89.535 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (at 127 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 127 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0f7427f1-c844-4c2e-bb1d-3fafc353f02a)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0110") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR06") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C") (at 59.69 73.025 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 936a1237-6553-437f-99c4-c69cbe5a50ac) + (property "Reference" "C3" (at 59.69 65.405 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "4.7uF" (at 59.69 67.945 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (at 63.5 72.0598 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 59.69 73.025 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 62e60176-7d54-4a62-8f1a-9a60c4b2043d)) + (pin "2" (uuid 8e313fd3-3427-40f1-a5da-19cdf61bdafb)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "C3") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "C2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C") (at 57.785 38.735 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 9595bf9b-8c95-4b95-9434-8585eb0e96bb) + (property "Reference" "C1" (at 57.785 31.115 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "4.7uF" (at 57.785 33.655 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (at 61.595 37.7698 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 57.785 38.735 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d1c771b9-d5cc-43b5-aa0c-d010f885089e)) + (pin "2" (uuid db4cabc0-6cc3-457e-90b6-3f5e6e75d9c4)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "C1") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "C1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND1") (at 110.49 29.21 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid a8496348-ef4b-4bfe-bb7b-51e57538b8cc) + (property "Reference" "#PWR0110" (at 116.84 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND1" (at 113.792 29.2099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (at 110.49 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 110.49 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4d8baa8c-758f-47fd-8553-4c937d356912)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0110") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR03") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "mcu:rp2040-zero") (at 156.845 43.815 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid abbbe3ef-66de-4d09-9dd2-83bf3f3cc4bf) + (property "Reference" "U1" (at 156.845 27.94 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "rp2040-zero" (at 156.845 30.48 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "mcu:rp2040-zero-tht" (at 147.955 38.735 0) + (effects (font (size 1.27 1.27))) + ) + (property "Datasheet" "" (at 147.955 38.735 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d13d8274-52c4-4944-b1fe-6ee98bd12333)) + (pin "10" (uuid efd688ad-b39f-49eb-8800-e04bf424656a)) + (pin "11" (uuid 20a4fa57-b9d4-40bf-9dc3-3652ae357d9b)) + (pin "12" (uuid 8702d68b-1ace-46bd-b6a9-3dd703f50d80)) + (pin "13" (uuid 0dedc3bd-2361-48d7-a8bb-4896fe8c025b)) + (pin "14" (uuid 8f16d306-505b-4e1a-856f-2a460b3a8ea1)) + (pin "15" (uuid afa7d97d-d88a-4915-814a-867a093f9c3e)) + (pin "16" (uuid 2b50048a-8894-4faa-804c-228ffe5704ce)) + (pin "17" (uuid a70ac807-fc29-46eb-bd61-649357dab2d0)) + (pin "18" (uuid 7377ed85-d438-4ac8-a7e6-8f20d4c743d0)) + (pin "19" (uuid e884a0f1-c948-4527-aff3-1fbc10ee8a5b)) + (pin "2" (uuid 4338957f-3ef0-4419-ad18-e3310e3f5413)) + (pin "20" (uuid b9421651-040e-407a-8c34-91c297c98116)) + (pin "21" (uuid 2a7dc16f-48e5-4ac3-a80e-d189c5b53ebb)) + (pin "22" (uuid 7762969d-faf1-4737-bd92-398d57aea326)) + (pin "23" (uuid 95e3d6ec-1a84-4e24-bfca-9efba1f8fc80)) + (pin "3" (uuid 77842a15-2141-4683-aae5-11a4cb5f41b6)) + (pin "4" (uuid 0e902d79-14b9-4f90-b733-14f52ab5952b)) + (pin "5" (uuid 30f1113a-f8ab-4f9b-a9e9-29d1a64435cf)) + (pin "6" (uuid 68aaa194-31fa-4144-a4cd-6a201070f8ad)) + (pin "7" (uuid 49fb98be-2a77-4332-b4ca-39a7f4d26724)) + (pin "8" (uuid c1916984-eaa6-4707-81c6-e375dc5a84f1)) + (pin "9" (uuid 04eb37ed-9f5c-4891-82b5-3bb61ae0d179)) + (instances + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "U1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND1") (at 62.23 27.305 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid b16ed3a9-7361-49b6-9b62-2a38699ece5a) + (property "Reference" "#PWR0105" (at 68.58 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND1" (at 65.532 27.3049 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (at 62.23 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 62.23 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8c618316-56a2-48a4-8ae5-e5ca5be3467c)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0105") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR01") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "pspice:R") (at 36.195 27.305 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid ba43f430-f95e-4bc5-83cb-ebe697130cab) + (property "Reference" "T1R1" (at 36.195 20.955 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "4.7k" (at 36.195 23.495 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (at 36.195 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 36.195 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 431d2fec-4286-4a02-8a9f-40afd4594c54)) + (pin "2" (uuid f737dfb9-4f4a-4cf2-9e5f-b4e9e32e4139)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "T1R1") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "T1R1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "pspice:R") (at 85.09 63.5 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid bcc0ba37-995e-4315-bb4d-066a32ae862f) + (property "Reference" "T1R4" (at 85.09 57.15 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "4.7k" (at 85.09 59.69 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (at 85.09 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 85.09 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c5c08f2a-1e40-46fc-b105-bd0d4fbb5ba6)) + (pin "2" (uuid c560f330-6a30-4a47-acfd-c8f109788153)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "T1R4") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "T1R4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Device:C") (at 106.68 74.93 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid c78057eb-cff8-4f94-95d0-a1fe2b8e2231) + (property "Reference" "C4" (at 106.68 67.31 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "4.7uF" (at 106.68 69.85 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (at 110.49 73.9648 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 106.68 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e317fcaa-1319-4988-8a69-61e8d6cc1940)) + (pin "2" (uuid a605012c-7af3-4267-8321-5b190da0a5d8)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "C4") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "C4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "pspice:R") (at 38.1 61.595 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid dde6c428-e62b-43b4-8dab-a3d2fe132f76) + (property "Reference" "T1R3" (at 38.1 55.245 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "4.7k" (at 38.1 57.785 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (at 38.1 61.595 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 38.1 61.595 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1f640df0-d5fb-4e39-92d5-4215ff2ebeef)) + (pin "2" (uuid 1071f7ad-d847-4d6d-9b34-5dfbaa88b03c)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "T1R3") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "T1R2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND1") (at 137.795 34.925 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid ecd4f8b1-5534-4ba0-a67a-c8c53506b9ed) + (property "Reference" "#PWR0110" (at 131.445 34.925 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND1" (at 134.62 34.925 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (at 137.795 34.925 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 137.795 34.925 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 39afe380-72a4-4aff-9e20-39683d125b28)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0110") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR05") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND1") (at 64.135 61.595 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid f501d222-ad31-4aba-812e-da9008a08b46) + (property "Reference" "#PWR0107" (at 70.485 61.595 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND1" (at 67.437 61.5949 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (at 64.135 61.595 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 64.135 61.595 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 95593888-ce1b-433a-8e95-eeb970d85307)) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0107") (unit 1) + ) + ) + (project "Thermistor_Zero" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR02") (unit 1) + ) + ) + ) + ) + + (sheet_instances + (path "/" (page "1")) + ) +) diff --git a/images/rev0.png b/images/rev0.png new file mode 100644 index 0000000..a35e0f1 Binary files /dev/null and b/images/rev0.png differ