commit 1d00c31250009cdcecc293b3af673f9e7f757ae0 Author: Kyle Brown Date: Fri Jun 14 16:37:45 2024 -0700 feat: 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..cbc97e6 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# TeenyTemp + +Teenytemp 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. +Controller is [RP2040-Zero](https://www.waveshare.com/rp2040-zero.htm) + +![Board](images/rev0.png) + +# Config + +Default config is stored in `teenytemp.cfg` in this repo. Recommended resistors +are 4.7k ohm for generic thermistors, or 2.2k ohm for PT1000 sensors. 4.7k is +default so it does not need to be specified. All resistors should be precision +resistors to increase the accuracy of the temperature reading. diff --git a/TeenyTemp.cfg b/TeenyTemp.cfg new file mode 100644 index 0000000..209e6be --- /dev/null +++ b/TeenyTemp.cfg @@ -0,0 +1,62 @@ +# To flash +# [*] Enable extra low level configuration options +# Micro-controller Architecture (Raspberry Pi RP2040] ---> +# Flash chip (Generic_03H with CLKDIV 4) ---> +# Communiccation interface (USB) ---> +# USB ids ---> +# () GPIO pins to set at micro-controller startup + + +# Klipper config for TeenyTemp + +[mcu teenytemp] +serial: /dev/serial/by-id/usb-Klipper_SERIAL_ID_GOES_HERE +restart_method: command + +[board_pins teenytemp] +mcu: teenytemp +aliases: + T1=gpio29, + T2=gpio28, + T3=gpio27, + T4=gpio26, + LED=gpio16 + +[temperature_sensor thermistor1] +sensor_type: Generic 3950 +sensor_pin: teenytemp:T1 +# Change this value and uncomment if you use a different pullup resistor +#pullup_resistor: 4700 +min_temp: 0 +max_temp: 260 + +[temperature_sensor thermistor2] +sensor_type: Generic 3950 +sensor_pin: teenytemp:T2 +# Change this value and uncomment if you use a different pullup resistor +#pullup_resistor: 4700 +min_temp: 0 +max_temp: 260 + +[temperature_sensor thermistor3] +sensor_type: Generic 3950 +sensor_pin: teenytemp:T3 +# Change this value and uncomment if you use a different pullup resistor +#pullup_resistor: 4700 +min_temp: 0 +max_temp: 260 + +[temperature_sensor thermistor4] +sensor_type: Generic 3950 +sensor_pin: teenytemp:T4 +# Change this value and uncomment if you use a different pullup resistor +#pullup_resistor: 4700 +min_temp: 0 +max_temp: 260 + +[neopixel teenytemp] +pin: teenytemp:LED +color_order: RGB +initial_RED: 1.0 +initial_GREEN: 0.0 +initial_BLUE: 1.0 diff --git a/TeenyTemp.kicad_pcb b/TeenyTemp.kicad_pcb new file mode 100644 index 0000000..d68fec6 --- /dev/null +++ b/TeenyTemp.kicad_pcb @@ -0,0 +1,5410 @@ +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (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) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (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 "unconnected-(U1-13-Pad14)") + (net 9 "unconnected-(U1-14-Pad15)") + (net 10 "unconnected-(U1-15-Pad16)") + (net 11 "Net-(J1-Pin_8)") + (net 12 "Net-(J1-Pin_10)") + (net 13 "Net-(J1-Pin_12)") + (net 14 "unconnected-(U1-1-Pad2)") + (net 15 "unconnected-(U1-4-Pad5)") + (net 16 "unconnected-(U1-3-Pad4)") + (net 17 "unconnected-(U1-2-Pad3)") + (net 18 "unconnected-(U1-0-Pad1)") + (net 19 "Net-(J1-Pin_4)") + (net 20 "Net-(J1-Pin_6)") + (net 21 "Net-(J1-Pin_2)") + (net 22 "Net-(J1-Pin_16)") + (net 23 "Net-(J1-Pin_14)") + (footprint "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (layer "F.Cu") + (uuid "0c0e8ac2-0f51-4bd7-912d-d0dd13715564") + (at 32.7 44.8 -90) + (descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf") + (tags "C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor") + (property "Reference" "C4" + (at 4.5 2.1 90) + (layer "F.SilkS") + (uuid "cbd4e5c1-92cc-417f-aa74-fa349bcf74c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uF" + (at 2.5 2.5 90) + (layer "F.Fab") + (uuid "5b0586b1-0b45-4af1-adde-b72d48721f34") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "965c97c0-413b-4826-b861-49d2aa4cdb8b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "18a98fa7-a5f0-421a-9e8a-d295c2cad40e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "ee7cba81-c3ae-414e-bad6-3bbe3e938a23") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/c78057eb-cff8-4f94-95d0-a1fe2b8e2231") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start -1.12 1.37) + (end 6.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "50fec54b-3539-47d9-9ae9-90c7ceda0d3e") + ) + (fp_line + (start -1.12 -1.37) + (end -1.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a76b72d5-7ce4-4441-b4b1-73f3258cb850") + ) + (fp_line + (start -1.12 -1.37) + (end 6.12 -1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0770abf7-865c-4ad6-a704-f546e7f7196d") + ) + (fp_line + (start 6.12 -1.37) + (end 6.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d6b87145-4234-4d94-b222-92b2403fd6f2") + ) + (fp_line + (start -1.25 1.5) + (end 6.25 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d7eb143e-72b1-4378-b4b1-8e35755af174") + ) + (fp_line + (start 6.25 1.5) + (end 6.25 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "133a7976-893e-4f2b-a43e-a3616397dcb4") + ) + (fp_line + (start -1.25 -1.5) + (end -1.25 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5d159364-3887-4279-bf74-398db70aa2a0") + ) + (fp_line + (start 6.25 -1.5) + (end -1.25 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dc30ded5-2be1-4401-9c22-846c644272ba") + ) + (fp_line + (start -1 1.25) + (end 6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "79fe95e8-2479-42f3-86eb-65b29f4c00df") + ) + (fp_line + (start 6 1.25) + (end 6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "49718074-e4b8-44a9-a5e4-21170b1a58b4") + ) + (fp_line + (start -1 -1.25) + (end -1 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ca342989-f06b-4d4a-84e3-ab7c924636fa") + ) + (fp_line + (start 6 -1.25) + (end -1 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1bb5e061-8244-4a3d-9d2e-400eb9e850f5") + ) + (fp_text user "${REFERENCE}" + (at 2.5 0 90) + (layer "F.Fab") + (uuid "a4b3c019-1585-4a93-b201-bab6f77584b8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "/Thermistor3") + (pintype "passive") + (uuid "a74c1540-dc89-4456-8fe6-a2db27e99f45") + ) + (pad "2" thru_hole circle + (at 5 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND1") + (pintype "passive") + (uuid "fbcffbc7-9fa3-40e9-ad89-aa58f7444f75") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D7.0mm_W2.5mm_P5.00mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "mcu:rp2040-zero-tht" + (layer "F.Cu") + (uuid "0e6ba03e-5a1e-49d9-8eff-a49763deebd2") + (at 44.1 30.24) + (property "Reference" "U1" + (at -16.3989 -16.53268 0) + (layer "F.SilkS") + (hide yes) + (uuid "9ba0c392-616b-4a5c-9bf1-a31f5b819522") + (effects + (font + (size 0.889 0.889) + (thickness 0.1016) + ) + ) + ) + (property "Value" "rp2040-zero" + (at -16.8434 -5.54718 0) + (layer "F.SilkS") + (hide yes) + (uuid "8e424cc9-ffb5-40af-bb69-24fbdf62721e") + (effects + (font + (size 0.6096 0.6096) + (thickness 0.0762) + ) + ) + ) + (property "Footprint" "mcu:rp2040-zero-tht" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "bec67d7d-8529-47d1-b66f-b2c7f53c98d6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e750c13f-5b2d-45ee-82ed-bd004b14cda5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1ee921d0-f87a-4fdd-bc97-da35dc9d1bbe") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/abbbe3ef-66de-4d09-9dd2-83bf3f3cc4bf") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole exclude_from_pos_files) + (fp_rect + (start -9 -11.75) + (end 9 11.75) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "Dwgs.User") + (uuid "09ea141c-f695-4775-a9f8-d67000f5d1ca") + ) + (fp_line + (start -6 -11.75) + (end -6 9.25) + (stroke + (width 0.12) + (type solid) + ) + (layer "Edge.Cuts") + (uuid "1a53c9b8-2862-4290-80bb-56fb4cd59918") + ) + (fp_line + (start -6 9.25) + (end 6 9.25) + (stroke + (width 0.12) + (type solid) + ) + (layer "Edge.Cuts") + (uuid "a198ae84-8dfa-4965-acaf-47b58effcd47") + ) + (fp_line + (start 6 9.25) + (end 6 -11.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "Edge.Cuts") + (uuid "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") + (remove_unused_layers no) + (net 18 "unconnected-(U1-0-Pad1)") + (pinfunction "0") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 14 "unconnected-(U1-1-Pad2)") + (pinfunction "1") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 17 "unconnected-(U1-2-Pad3)") + (pinfunction "2") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 16 "unconnected-(U1-3-Pad4)") + (pinfunction "3") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 15 "unconnected-(U1-4-Pad5)") + (pinfunction "4") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 22 "Net-(J1-Pin_16)") + (pinfunction "5") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 23 "Net-(J1-Pin_14)") + (pinfunction "6") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 13 "Net-(J1-Pin_12)") + (pinfunction "7") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 12 "Net-(J1-Pin_10)") + (pinfunction "8") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 11 "Net-(J1-Pin_8)") + (pinfunction "9") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 20 "Net-(J1-Pin_6)") + (pinfunction "10") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 19 "Net-(J1-Pin_4)") + (pinfunction "11") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 21 "Net-(J1-Pin_2)") + (pinfunction "12") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 8 "unconnected-(U1-13-Pad14)") + (pinfunction "13") + (pintype "bidirectional+no_connect") + (uuid "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") + (remove_unused_layers no) + (net 9 "unconnected-(U1-14-Pad15)") + (pinfunction "14") + (pintype "bidirectional+no_connect") + (uuid "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") + (remove_unused_layers no) + (net 10 "unconnected-(U1-15-Pad16)") + (pinfunction "15") + (pintype "bidirectional+no_connect") + (uuid "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") + (remove_unused_layers no) + (net 5 "/Thermistor3") + (pinfunction "26") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 3 "/Thermistor2") + (pinfunction "27") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 4 "/Thermistor1") + (pinfunction "28") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 1 "/Thermistor0") + (pinfunction "29") + (pintype "bidirectional") + (uuid "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") + (remove_unused_layers no) + (net 6 "/3.3v") + (pinfunction "3V3") + (pintype "power_out") + (uuid "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") + (remove_unused_layers no) + (net 2 "GND1") + (pinfunction "GND") + (pintype "power_out") + (uuid "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") + (remove_unused_layers no) + (net 7 "unconnected-(U1-5V-Pad23)") + (pinfunction "5V") + (pintype "power_out") + (uuid "74b7f3cc-0c9e-46dd-b067-f27e49d8deb4") + ) + ) + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "0f6cc2b2-60ac-4e99-b0d7-8a8e7da9b10b") + (at 30.1 22.82 90) + (descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm") + (property "Reference" "T1R1" + (at 1.27 -1.92 90) + (layer "F.SilkS") + (hide yes) + (uuid "6a6901d0-f3d7-4187-9b37-f12a54ccc638") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7k" + (at 1.27 1.92 90) + (layer "F.Fab") + (uuid "912716fa-9532-4e3d-9f4b-8030b5fd2f80") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1580f9e8-4db0-480c-adc0-17b61b05b48b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "77eb4bea-cebd-4ea3-8f7f-e2cbfc9144e1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "74fd62bf-9f28-45af-9b6f-64eed5608ab7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/ba43f430-f95e-4bc5-83cb-ebe697130cab") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start 0.92 0) + (end 1.54 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c586b3de-53aa-46f9-ab4d-e496b22ddcd7") + ) + (fp_circle + (center 0 0) + (end 0.92 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "d2d055c0-2122-4d82-8a24-811d2ec9f9bb") + ) + (fp_line + (start 3.49 -1.05) + (end -1.05 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8162d7bf-9803-491e-8684-7aac8e0ac63c") + ) + (fp_line + (start -1.05 -1.05) + (end -1.05 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8c3283a4-d3b8-464e-8474-2a98cc2728c2") + ) + (fp_line + (start 3.49 1.05) + (end 3.49 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c972612c-c270-439f-899f-728789c5d006") + ) + (fp_line + (start -1.05 1.05) + (end 3.49 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8e1ab886-31fe-400e-8918-afbafb00c577") + ) + (fp_line + (start 0 0) + (end 2.54 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4a26d0c6-77e8-46cf-afdb-810931e46dfe") + ) + (fp_circle + (center 0 0) + (end 0.8 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "c076f6ed-fce4-4c69-bfcc-d3e3ecf7178c") + ) + (pad "1" thru_hole circle + (at 0 0 90) + (size 1.4 1.4) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "/3.3v") + (pintype "passive") + (uuid "e0a8a439-e9ba-4092-b57b-d5217577d06a") + ) + (pad "2" thru_hole oval + (at 2.54 0 90) + (size 1.4 1.4) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "/Thermistor0") + (pintype "passive") + (uuid "d0828e4e-b22d-4906-972e-f6f721bc2061") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_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") + (uuid "19eb195e-50d3-40be-8a16-d7431c921a01") + (at 26 37.6 -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 "Reference" "TH3" + (at 1.5 -2.2 90) + (layer "B.SilkS") + (uuid "be92126c-85a7-437a-8cd0-9785d8968b50") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Thermistor_NTC_100k" + (at 1.25 4.6 90) + (layer "F.Fab") + (uuid "bdcf50fa-538e-46b7-98ff-134d36b0c700") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "5d0b8a4a-05ff-45ef-a224-59414bcf227d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "589e3180-2404-4dfc-8795-8de5904726e0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1804fe02-d26d-46f8-8c76-dae9abafa6bf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*NTC* *Thermistor* PIN?ARRAY* bornier* *Terminal?Block* R_*") + (path "/126ae5af-b7de-4d1c-b4eb-96ee5b505ee5") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start -2.56 3.51) + (end 5.06 3.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0530dbac-7d65-49a1-88cc-e5f1f87b29d6") + ) + (fp_line + (start 5.06 3.51) + (end 5.06 -2.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e06d70e0-e6cc-41aa-b390-7a213bd47ded") + ) + (fp_line + (start -1.8 2.75) + (end 1.25 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8d4041e8-a40b-4dcc-961f-36e9d1bffcf4") + ) + (fp_line + (start 4.3 2.75) + (end 1.25 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ba35481-683f-4663-95b9-a49735b6dd0b") + ) + (fp_line + (start -2.55 -0.2) + (end -1.8 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "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") + (uuid "9786ffd2-d75e-4f12-afef-4a152ca5a0e1") + ) + (fp_line + (start 4.3 -0.2) + (end 4.3 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f3b97cf4-7d65-4478-a020-04e296a0bea4") + ) + (fp_line + (start 5.05 -0.2) + (end 4.3 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fe554c93-2048-481a-8c3d-35d000141687") + ) + (fp_line + (start -2.55 -1.7) + (end -0.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e4ee5e0-acf1-4a8b-9e3f-8307158e0056") + ) + (fp_line + (start -0.75 -1.7) + (end -0.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1512f140-acb5-4f32-81db-08eb7f53ea5b") + ) + (fp_line + (start 0.75 -1.7) + (end 1.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0ecad448-9077-4858-b7ab-789404108452") + ) + (fp_line + (start 1.75 -1.7) + (end 1.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "37891e46-251e-46d6-b75b-2309e88c84ea") + ) + (fp_line + (start 3.25 -1.7) + (end 5.05 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "56934a65-3148-44c2-a1b9-ddc499689052") + ) + (fp_line + (start 5.05 -1.7) + (end 5.05 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f2eb5de-c09e-4a4e-abe7-398396c96c6a") + ) + (fp_line + (start -2.55 -2.45) + (end -2.55 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "351d7838-ef91-4d23-af87-788bfacdb8d0") + ) + (fp_line + (start -0.75 -2.45) + (end -2.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6dcea281-2f6e-43f3-8d5e-4efab9fe4e0d") + ) + (fp_line + (start 0.75 -2.45) + (end 0.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b9326663-4ecf-448d-b39b-b40e4465443b") + ) + (fp_line + (start 1.75 -2.45) + (end 0.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f353108c-e173-4e71-a96b-4b61219004b6") + ) + (fp_line + (start 3.25 -2.45) + (end 3.25 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "22e3210a-5c9d-472c-be6d-6f578ad4a974") + ) + (fp_line + (start 5.05 -2.45) + (end 3.25 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f95aecef-259b-4813-a4b6-e91059f9f5ee") + ) + (fp_line + (start -2.56 -2.46) + (end -2.56 3.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "259d072b-1747-46cd-a19f-295a34ec64a8") + ) + (fp_line + (start 5.06 -2.46) + (end -2.56 -2.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cc5c1824-c541-44f5-88c5-4de329937d6c") + ) + (fp_line + (start -2.85 -2.75) + (end -2.85 -1.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9a17a6b5-1df2-4033-b21a-702e6a48a11a") + ) + (fp_line + (start -1.6 -2.75) + (end -2.85 -2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "24dbf909-fc8f-43aa-bb99-de961a86cb30") + ) + (fp_line + (start -2.95 3.9) + (end 5.45 3.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e1bcda89-3edd-4653-92d0-3216ff1492c9") + ) + (fp_line + (start 5.45 3.9) + (end 5.45 -2.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5c8f6def-a1c0-42ed-ac80-807a5c53242b") + ) + (fp_line + (start -2.95 -2.85) + (end -2.95 3.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "83ae8d56-7227-401b-b005-9d0c12543a9a") + ) + (fp_line + (start 5.45 -2.85) + (end -2.95 -2.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2e2aabba-39ba-4c9c-a563-6bf48c0d9fa6") + ) + (fp_line + (start -2.45 3.4) + (end 4.95 3.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "01d28d68-22a9-4eae-94ac-2ad59d4c704b") + ) + (fp_line + (start 4.95 3.4) + (end 4.95 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c0742bf3-b012-44ce-bc3b-0cfd6a0b55bf") + ) + (fp_line + (start 0 -1.35) + (end 0.625 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c0b9599d-6893-4c78-b18f-4eba87329774") + ) + (fp_line + (start -2.45 -2.35) + (end -2.45 3.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a42faddd-dbbb-45a4-8f9b-85595d713779") + ) + (fp_line + (start -0.625 -2.35) + (end 0 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cf09e9b8-f177-4dcb-b18a-dbb6da8ad36f") + ) + (fp_line + (start 4.95 -2.35) + (end -2.45 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "904e2952-eb08-449e-82fe-72b28597269e") + ) + (fp_text user "${REFERENCE}" + (at 1.25 2.7 90) + (layer "F.Fab") + (uuid "2c8c9c51-eb0d-4de5-a45b-93d24e7e92dd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 270) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.1470588235) + (net 3 "/Thermistor2") + (pintype "passive") + (uuid "64dde2d5-2b5b-49e4-85d8-7d842d7a37cf") + ) + (pad "2" thru_hole oval + (at 2.5 0 270) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND1") + (pintype "passive") + (uuid "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 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "33a3b5c9-ee1e-4f50-a698-06968a89f605") + (at 30.1 31.22 90) + (descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm") + (property "Reference" "T1R3" + (at 1.27 -1.92 90) + (layer "F.SilkS") + (hide yes) + (uuid "7566d8ae-eb0d-4567-b87a-e3ef2e6c4b8c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7k" + (at 1.27 1.92 90) + (layer "F.Fab") + (uuid "25a64c62-d6bb-4b90-aa3c-eccf0f4f3225") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1580f9e8-4db0-480c-adc0-17b61b05b48b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "77eb4bea-cebd-4ea3-8f7f-e2cbfc9144e1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "74fd62bf-9f28-45af-9b6f-64eed5608ab7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/21328443-3099-43b1-b489-b41fae2e2487") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start 0.92 0) + (end 1.54 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6df8248b-0f94-481f-91aa-3d60b2e27d38") + ) + (fp_circle + (center 0 0) + (end 0.92 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "159da3a1-17ed-4c8b-bb70-d4ef5cede200") + ) + (fp_line + (start 3.49 -1.05) + (end -1.05 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8c4fd378-c306-4173-a548-9384d332669f") + ) + (fp_line + (start -1.05 -1.05) + (end -1.05 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "10fe482a-cefb-4a2e-8a7b-872211a63da9") + ) + (fp_line + (start 3.49 1.05) + (end 3.49 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0fe1a1bd-a184-495d-9581-aed45f857459") + ) + (fp_line + (start -1.05 1.05) + (end 3.49 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0dc190ed-ca24-4c01-a705-c2f628a1b8ee") + ) + (fp_line + (start 0 0) + (end 2.54 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "064c579c-b4c9-4ca2-8c85-f55b2ea6d1ee") + ) + (fp_circle + (center 0 0) + (end 0.8 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "382050af-f8d8-49a3-a28e-e2a4266b35c5") + ) + (pad "1" thru_hole circle + (at 0 0 90) + (size 1.4 1.4) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "/3.3v") + (pintype "passive") + (uuid "d6e31699-933d-444b-8794-51f7046c5d9b") + ) + (pad "2" thru_hole oval + (at 2.54 0 90) + (size 1.4 1.4) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "/Thermistor1") + (pintype "passive") + (uuid "ff46d7a7-fc4b-42af-b768-ae68667bfebe") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (layer "F.Cu") + (uuid "46660f30-5564-4fd6-b5c5-99c9e6b487e4") + (at 32.7 20.3 -90) + (descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf") + (tags "C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor") + (property "Reference" "C1" + (at 4.5 2.1 90) + (layer "F.SilkS") + (uuid "43aca9b2-5fe1-45bb-b21b-8d3f44dba1dd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uF" + (at 2.5 2.5 90) + (layer "F.Fab") + (uuid "a068ccc0-2706-47f3-8e98-b0ddc4e7b44e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "965c97c0-413b-4826-b861-49d2aa4cdb8b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "18a98fa7-a5f0-421a-9e8a-d295c2cad40e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "ee7cba81-c3ae-414e-bad6-3bbe3e938a23") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/9595bf9b-8c95-4b95-9434-8585eb0e96bb") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start -1.12 1.37) + (end 6.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "22d2e7fb-1e29-4c25-99d2-b7c0f25076dc") + ) + (fp_line + (start -1.12 -1.37) + (end -1.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ba8205d5-c62a-4cf6-9882-9a585749d059") + ) + (fp_line + (start -1.12 -1.37) + (end 6.12 -1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ba4b7bc8-8487-4c02-aa0b-0f21aa2abd45") + ) + (fp_line + (start 6.12 -1.37) + (end 6.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "302da924-9ff5-4e99-b95f-7db55ac7c5b1") + ) + (fp_line + (start -1.25 1.5) + (end 6.25 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3cab6499-b2dd-4a48-91e4-673770169f94") + ) + (fp_line + (start 6.25 1.5) + (end 6.25 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bf520a31-e749-4a7a-acc1-f41e5aa9e37f") + ) + (fp_line + (start -1.25 -1.5) + (end -1.25 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "44d012e5-9330-4acf-98b5-17d3023dd53b") + ) + (fp_line + (start 6.25 -1.5) + (end -1.25 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7a2cc39d-bbf6-41a2-b49f-391f1c6f0238") + ) + (fp_line + (start -1 1.25) + (end 6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "53caf4da-e089-4057-b08b-6c2010448e1a") + ) + (fp_line + (start 6 1.25) + (end 6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c9b496f3-6b6e-4057-8bc6-23b1d6228608") + ) + (fp_line + (start -1 -1.25) + (end -1 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "063f99da-8cb7-455e-817b-23195c1f3b2a") + ) + (fp_line + (start 6 -1.25) + (end -1 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "390aa234-5064-4082-9c01-48861d26d6ff") + ) + (fp_text user "${REFERENCE}" + (at 2.5 0 90) + (layer "F.Fab") + (uuid "e7f1d710-f261-4bcf-9dcc-95024b2634bf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "/Thermistor0") + (pintype "passive") + (uuid "c53517c7-38ec-4c96-a321-1928c15b64dc") + ) + (pad "2" thru_hole circle + (at 5 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND1") + (pintype "passive") + (uuid "f4acc444-8ab5-4bfc-bfa9-fec189624adf") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D7.0mm_W2.5mm_P5.00mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (layer "F.Cu") + (uuid "53d616b3-31dc-4db9-939d-adef3062bac1") + (at 32.7 28.7 -90) + (descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf") + (tags "C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor") + (property "Reference" "C2" + (at 4.5 2.1 90) + (layer "F.SilkS") + (uuid "5f868ccb-96ea-430a-93ab-1233d032a785") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uF" + (at 2.5 2.5 90) + (layer "F.Fab") + (uuid "9e3e018f-31a6-4499-8f8e-4a54e528eb0e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "965c97c0-413b-4826-b861-49d2aa4cdb8b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "18a98fa7-a5f0-421a-9e8a-d295c2cad40e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "ee7cba81-c3ae-414e-bad6-3bbe3e938a23") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/81e8f931-69e3-4a1b-822c-23fefcdaa628") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start -1.12 1.37) + (end 6.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "74116d48-e4f8-460a-be45-42d64d8996d6") + ) + (fp_line + (start -1.12 -1.37) + (end -1.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3c74a4c2-6443-4f95-a931-08e6b1f674b8") + ) + (fp_line + (start -1.12 -1.37) + (end 6.12 -1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a360345-3a3b-48b2-b606-598e6c7a90cf") + ) + (fp_line + (start 6.12 -1.37) + (end 6.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "16f4b8c5-03a0-43bc-95e8-ef734b7bdc63") + ) + (fp_line + (start -1.25 1.5) + (end 6.25 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b3403a96-45c8-47b5-ac84-107efd22dfd7") + ) + (fp_line + (start 6.25 1.5) + (end 6.25 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ca4e1cad-f322-4978-9d81-92526bb45808") + ) + (fp_line + (start -1.25 -1.5) + (end -1.25 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7bdd3b77-bd96-4780-a9fb-81e97c33e024") + ) + (fp_line + (start 6.25 -1.5) + (end -1.25 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d3a1b5df-3912-495e-b531-b655dc0f5adc") + ) + (fp_line + (start -1 1.25) + (end 6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "69faccac-1068-4127-a258-18425475887f") + ) + (fp_line + (start 6 1.25) + (end 6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1a702dc3-a421-4112-94d4-021d5185e21f") + ) + (fp_line + (start -1 -1.25) + (end -1 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "850480c8-780f-49bd-b881-9548f561241d") + ) + (fp_line + (start 6 -1.25) + (end -1 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "23c8e219-4c99-44af-8468-76a9abe5834d") + ) + (fp_text user "${REFERENCE}" + (at 2.5 0 90) + (layer "F.Fab") + (uuid "bccddaec-b135-4c44-a22e-3b3a572bfcb6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "/Thermistor1") + (pintype "passive") + (uuid "fd7e3ec4-c84f-486b-9242-5247557aecce") + ) + (pad "2" thru_hole circle + (at 5 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND1") + (pintype "passive") + (uuid "bceb8fa7-72d4-4ab0-8993-98e8bd6a7550") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D7.0mm_W2.5mm_P5.00mm.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_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "5657127f-39a1-48da-8fd3-60539e87f253") + (at 30.1 47.32 90) + (descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm") + (property "Reference" "T1R4" + (at 1.27 -1.92 90) + (layer "F.SilkS") + (hide yes) + (uuid "ed157b67-6a16-4b9a-a962-a58b8ce7db41") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7k" + (at 1.27 1.92 90) + (layer "F.Fab") + (uuid "54f5fde5-5303-482f-be89-e91efae4e532") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1580f9e8-4db0-480c-adc0-17b61b05b48b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "77eb4bea-cebd-4ea3-8f7f-e2cbfc9144e1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "74fd62bf-9f28-45af-9b6f-64eed5608ab7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/bcc0ba37-995e-4315-bb4d-066a32ae862f") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start 0.92 0) + (end 1.54 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8f7d894-c5d0-48db-9bf0-f612535c7df6") + ) + (fp_circle + (center 0 0) + (end 0.92 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "2d87dced-6612-480e-97c7-86218e709796") + ) + (fp_line + (start 3.49 -1.05) + (end -1.05 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "567557cd-e8e3-4e2a-9741-91f25c43d7cb") + ) + (fp_line + (start -1.05 -1.05) + (end -1.05 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "50d131b1-6b02-4e6d-aa7f-91eea535855a") + ) + (fp_line + (start 3.49 1.05) + (end 3.49 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bfb23096-a2ed-4f0c-940d-b93bae080613") + ) + (fp_line + (start -1.05 1.05) + (end 3.49 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0ba403f6-1301-4e54-88da-f65645993a3a") + ) + (fp_line + (start 0 0) + (end 2.54 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "790d850b-d406-49b5-9394-28767237dab7") + ) + (fp_circle + (center 0 0) + (end 0.8 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "b9054089-1988-406e-a8a0-aff9016574fe") + ) + (pad "1" thru_hole circle + (at 0 0 90) + (size 1.4 1.4) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "/3.3v") + (pintype "passive") + (uuid "d35cf91b-a697-428f-bc69-64cba0f1ab89") + ) + (pad "2" thru_hole oval + (at 2.54 0 90) + (size 1.4 1.4) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "/Thermistor3") + (pintype "passive") + (uuid "b163ba63-5c81-4c5c-9276-499780ac6d33") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" + (layer "F.Cu") + (uuid "65058640-deb9-4f0c-9eb2-3471f4c65ff4") + (at 37.9 46.7 90) + (descr "Mounting Hole 3.2mm, M3, DIN965") + (tags "mounting hole 3.2mm m3 din965") + (property "Reference" "H2" + (at 0 -3.8 90) + (layer "F.SilkS") + (hide yes) + (uuid "8211250f-7611-4fd2-af3a-88e8653bfba3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.8 90) + (layer "F.Fab") + (uuid "9a2e2f54-71de-4d5d-aca3-017458767bba") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "acf21936-e6d9-4e5d-8f66-0f3f0cc601ab") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1a838bc6-5722-4ac0-82cd-5c57a88c960e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "4e5575a8-1077-4199-b762-a5d5d48a91cf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/21e7d65c-4e67-4ac1-860f-71851f7b5d67") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 2.8 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "73ad085e-a87f-41a2-9725-3f0b77241860") + ) + (fp_circle + (center 0 0) + (end 3.05 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "d4592c8a-7705-4ae1-93c7-921a603ad00c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "c2d8ef8c-8e5e-462e-8bf3-666ecce958f8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 90) + (size 5.6 5.6) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (uuid "56e712e0-f8a8-4742-8c89-fdf49b5fe250") + ) + ) + (footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" + (layer "F.Cu") + (uuid "7e06b305-d785-4bf4-b302-dd3652f964cf") + (at 26 21.5 -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 "Reference" "TH1" + (at 1.5 -2.2 90) + (layer "B.SilkS") + (uuid "f64b77ef-a5be-4ea4-87aa-1d0aaf1a4de5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Thermistor_NTC_100k" + (at 1.25 4.6 90) + (layer "F.Fab") + (uuid "1fbc7e19-c303-43b1-88d2-b032fa19fa28") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "5d0b8a4a-05ff-45ef-a224-59414bcf227d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "589e3180-2404-4dfc-8795-8de5904726e0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "1804fe02-d26d-46f8-8c76-dae9abafa6bf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*NTC* *Thermistor* PIN?ARRAY* bornier* *Terminal?Block* R_*") + (path "/35ed76ea-c52c-4af9-af04-0704ca6bbc8e") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start -2.56 3.51) + (end 5.06 3.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "47f74db6-9f13-4611-b3fd-22fac321733d") + ) + (fp_line + (start 5.06 3.51) + (end 5.06 -2.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cee05ea3-2983-47f5-a30e-abf2f758f7e4") + ) + (fp_line + (start -1.8 2.75) + (end 1.25 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf950b74-69c4-48f0-8205-13d9bccb7d93") + ) + (fp_line + (start 4.3 2.75) + (end 1.25 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1ea8f71e-e70a-429e-acc8-b510680e94bd") + ) + (fp_line + (start -2.55 -0.2) + (end -1.8 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5457f4f2-9c6b-4ccd-9aed-beb78d084543") + ) + (fp_line + (start -1.8 -0.2) + (end -1.8 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b591b5f8-eac7-4e82-b6d0-2f4fbbe6ed27") + ) + (fp_line + (start 4.3 -0.2) + (end 4.3 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "829646c7-a4d5-4867-807e-51e1f032f00d") + ) + (fp_line + (start 5.05 -0.2) + (end 4.3 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c87309d-a29b-47e0-8d42-aec0c8ea8405") + ) + (fp_line + (start -2.55 -1.7) + (end -0.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f711037f-eeb5-4cc1-a084-4fd36e9b2dde") + ) + (fp_line + (start -0.75 -1.7) + (end -0.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0b6beb36-b248-432f-9035-ab37c5437a9b") + ) + (fp_line + (start 0.75 -1.7) + (end 1.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c6bbd276-504b-4cc6-a08d-48558b359e11") + ) + (fp_line + (start 1.75 -1.7) + (end 1.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3eb590f4-8559-4088-ab7b-13ec17c0c307") + ) + (fp_line + (start 3.25 -1.7) + (end 5.05 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "08aab484-8a55-4c24-ad0c-374143f59fe9") + ) + (fp_line + (start 5.05 -1.7) + (end 5.05 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f8ecef2a-fafd-46f6-9945-f9e0967f625f") + ) + (fp_line + (start -2.55 -2.45) + (end -2.55 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f28a185e-750d-493f-97f4-4344edf73883") + ) + (fp_line + (start -0.75 -2.45) + (end -2.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b75dea8f-ac76-466e-bff6-2094b1f13782") + ) + (fp_line + (start 0.75 -2.45) + (end 0.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0f4365e0-79e1-4a59-ad63-c8bb89634bef") + ) + (fp_line + (start 1.75 -2.45) + (end 0.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "46ca6e99-1e3d-400b-be16-9f8a0160fb32") + ) + (fp_line + (start 3.25 -2.45) + (end 3.25 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3a725de2-9c25-40d2-ad5b-39937f583714") + ) + (fp_line + (start 5.05 -2.45) + (end 3.25 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f0bac9a7-4fde-4352-8781-9cf82bd3599c") + ) + (fp_line + (start -2.56 -2.46) + (end -2.56 3.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9c6ef5bd-bdd8-498b-90e7-ce04463894b8") + ) + (fp_line + (start 5.06 -2.46) + (end -2.56 -2.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "51605e3c-dd7b-4edc-a78a-2fa75a30e6d8") + ) + (fp_line + (start -2.85 -2.75) + (end -2.85 -1.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3cfe9547-ebac-4c53-abae-dd2529a55da8") + ) + (fp_line + (start -1.6 -2.75) + (end -2.85 -2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "537ce8b6-ce7e-4c6b-94af-fc9e7b8f4e04") + ) + (fp_line + (start -2.95 3.9) + (end 5.45 3.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "76132e90-86da-4427-96a2-49e2337c4d65") + ) + (fp_line + (start 5.45 3.9) + (end 5.45 -2.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a67088c9-ae3e-435a-a39c-12fb6394ef3d") + ) + (fp_line + (start -2.95 -2.85) + (end -2.95 3.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "71a53e66-5464-47fc-92f8-4575dcca3c3c") + ) + (fp_line + (start 5.45 -2.85) + (end -2.95 -2.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f39ef54b-7c7a-49d2-a6b3-5f3b10266a7a") + ) + (fp_line + (start -2.45 3.4) + (end 4.95 3.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "626efc47-6a00-4f3b-98e3-8aab034ecdab") + ) + (fp_line + (start 4.95 3.4) + (end 4.95 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7ece566d-7b6b-480a-b0c4-52c9b0f700a5") + ) + (fp_line + (start 0 -1.35) + (end 0.625 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dd6dba35-1af0-48de-9e1b-f25c6a0c4253") + ) + (fp_line + (start -2.45 -2.35) + (end -2.45 3.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3316c8ae-8e0d-41a4-bfa1-0447bdea7528") + ) + (fp_line + (start -0.625 -2.35) + (end 0 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b89cfef5-475f-419e-b08b-21e4548c20be") + ) + (fp_line + (start 4.95 -2.35) + (end -2.45 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "70065125-92b7-425b-955e-db9fa8e8e67b") + ) + (fp_text user "${REFERENCE}" + (at 1.25 2.7 90) + (layer "F.Fab") + (uuid "4074928b-aa7c-4522-baf7-373785df72ad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 270) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.1470588235) + (net 1 "/Thermistor0") + (pintype "passive") + (uuid "155902ac-92d7-4eed-8196-d5dd844e03b8") + ) + (pad "2" thru_hole oval + (at 2.5 0 270) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND1") + (pintype "passive") + (uuid "138c975d-9d76-4526-9099-f1c15d6aab00") + ) + (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:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (layer "F.Cu") + (uuid "86e435a9-b96d-4d5d-aaf6-f6eed60aaf04") + (at 32.7 36.4 -90) + (descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf") + (tags "C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor") + (property "Reference" "C3" + (at 4.5 2.1 90) + (layer "F.SilkS") + (uuid "250d21ea-ec78-4ded-96c3-4683b17057db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uF" + (at 2.5 2.5 90) + (layer "F.Fab") + (uuid "932fa182-a5c4-45b9-9b81-2a5be1731f4e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "965c97c0-413b-4826-b861-49d2aa4cdb8b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "18a98fa7-a5f0-421a-9e8a-d295c2cad40e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "ee7cba81-c3ae-414e-bad6-3bbe3e938a23") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/936a1237-6553-437f-99c4-c69cbe5a50ac") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start -1.12 1.37) + (end 6.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a2a39acf-8751-42a3-8cf3-8997fff765c7") + ) + (fp_line + (start -1.12 -1.37) + (end -1.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8912f964-23b1-4215-8430-2b20950d1a29") + ) + (fp_line + (start -1.12 -1.37) + (end 6.12 -1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5bf15d36-8dd3-4922-a12f-781ff52cd681") + ) + (fp_line + (start 6.12 -1.37) + (end 6.12 1.37) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ce4f5a10-e12b-428c-bc5b-bef5a9870050") + ) + (fp_line + (start -1.25 1.5) + (end 6.25 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7d0030c9-2c33-4c73-93d6-48e4becc1d41") + ) + (fp_line + (start 6.25 1.5) + (end 6.25 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cbaa590b-5c7e-49a4-8c1f-d642594ab0b9") + ) + (fp_line + (start -1.25 -1.5) + (end -1.25 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a4b8fb72-767b-4b86-894c-df07cfe0f982") + ) + (fp_line + (start 6.25 -1.5) + (end -1.25 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "01789ab2-b066-4f4f-be3b-8fed103d1463") + ) + (fp_line + (start -1 1.25) + (end 6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b68020ce-f9a3-4633-943d-395ec3c9bcaa") + ) + (fp_line + (start 6 1.25) + (end 6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "235f9257-1e00-436a-a0d9-07d47b5c541f") + ) + (fp_line + (start -1 -1.25) + (end -1 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "201821de-4126-4fd4-b327-37e58305eb8a") + ) + (fp_line + (start 6 -1.25) + (end -1 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "02144ce9-8379-41f6-9f8e-5e14737eacc2") + ) + (fp_text user "${REFERENCE}" + (at 2.5 0 90) + (layer "F.Fab") + (uuid "8db2255e-8111-4e95-831b-e816f890efa3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "/Thermistor2") + (pintype "passive") + (uuid "ff1b0c93-8bde-4da3-a967-b0eba997559a") + ) + (pad "2" thru_hole circle + (at 5 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND1") + (pintype "passive") + (uuid "cb1f35d6-613e-400e-b84d-629fa6126c9f") + ) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D7.0mm_W2.5mm_P5.00mm.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_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "87e20802-e0a5-4831-a0ff-dae968070a6e") + (at 30.1 38.92 90) + (descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm") + (property "Reference" "T1R2" + (at 1.27 -1.92 90) + (layer "F.SilkS") + (hide yes) + (uuid "e178add6-fe17-446f-a513-8061da4ec60f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7k" + (at 1.27 1.92 90) + (layer "F.Fab") + (uuid "01e4cbc9-dc98-4846-82a3-b0b2c696fda0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1580f9e8-4db0-480c-adc0-17b61b05b48b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "77eb4bea-cebd-4ea3-8f7f-e2cbfc9144e1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "74fd62bf-9f28-45af-9b6f-64eed5608ab7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/dde6c428-e62b-43b4-8dab-a3d2fe132f76") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start 0.92 0) + (end 1.54 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0689276e-a90c-4bd5-9dba-eba1dc462fbf") + ) + (fp_circle + (center 0 0) + (end 0.92 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "802bbcd4-5ce6-4c74-ac28-bceaa0c0483b") + ) + (fp_line + (start 3.49 -1.05) + (end -1.05 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c192723d-60e7-440e-ad87-e0a0eb365451") + ) + (fp_line + (start -1.05 -1.05) + (end -1.05 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6c4b5565-4636-4d3b-b26b-14bbe8423d2d") + ) + (fp_line + (start 3.49 1.05) + (end 3.49 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b53c779b-51ed-455b-9f4c-763f1af6e8d2") + ) + (fp_line + (start -1.05 1.05) + (end 3.49 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eb064d52-aa38-42b0-932b-11f8da67ea9f") + ) + (fp_line + (start 0 0) + (end 2.54 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6c8fff80-c7ff-441e-825f-c35d997873be") + ) + (fp_circle + (center 0 0) + (end 0.8 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "a70ef8bc-8ed0-41a5-99cd-5191afb874f9") + ) + (pad "1" thru_hole circle + (at 0 0 90) + (size 1.4 1.4) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "/3.3v") + (pintype "passive") + (uuid "859e634a-9c36-43e4-8310-0130ecbe43ea") + ) + (pad "2" thru_hole oval + (at 2.54 0 90) + (size 1.4 1.4) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "/Thermistor2") + (pintype "passive") + (uuid "3648a8c6-6438-48a2-bff0-9ce414d6204f") + ) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_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") + (uuid "920386f0-d44c-4e5d-ac8b-df44ef59b535") + (at 26 46 -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 "Reference" "TH4" + (at 1.5 -2.2 90) + (layer "B.SilkS") + (uuid "12335c75-909d-4a74-98b4-775c1e0ad637") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Thermistor_NTC_100k" + (at 1.25 4.6 90) + (layer "F.Fab") + (uuid "f4b858ff-e7d3-4a3f-8ed1-a691c11eb705") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "5d0b8a4a-05ff-45ef-a224-59414bcf227d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "589e3180-2404-4dfc-8795-8de5904726e0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1804fe02-d26d-46f8-8c76-dae9abafa6bf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*NTC* *Thermistor* PIN?ARRAY* bornier* *Terminal?Block* R_*") + (path "/833598b7-80ea-4c00-863e-9e1e91b2c097") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start -2.56 3.51) + (end 5.06 3.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b2497668-57f3-4ce3-bcaa-9e071ebb27d3") + ) + (fp_line + (start 5.06 3.51) + (end 5.06 -2.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "043e86ef-6481-4e96-9b1e-f3426f13592f") + ) + (fp_line + (start -1.8 2.75) + (end 1.25 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "07263568-7c39-43af-b043-b01b745e59ea") + ) + (fp_line + (start 4.3 2.75) + (end 1.25 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "64e6bddb-086d-44db-8172-0d360825680c") + ) + (fp_line + (start -2.55 -0.2) + (end -1.8 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "51c978cb-3010-47b7-9007-45284347e3b9") + ) + (fp_line + (start -1.8 -0.2) + (end -1.8 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a0b78e07-cbf2-4a8f-8b26-a4d92aa7cafd") + ) + (fp_line + (start 4.3 -0.2) + (end 4.3 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e61d1522-c03b-4875-adcf-854c224033fa") + ) + (fp_line + (start 5.05 -0.2) + (end 4.3 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a4d648a6-a13b-4e24-95ac-a239ec026bd7") + ) + (fp_line + (start -2.55 -1.7) + (end -0.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fda8a934-d24b-4eee-b950-5485be0ecd54") + ) + (fp_line + (start -0.75 -1.7) + (end -0.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e37599bf-520d-464b-99e5-fd3da11cdb6c") + ) + (fp_line + (start 0.75 -1.7) + (end 1.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1ac552f0-d7cc-4710-81f8-532836801f3f") + ) + (fp_line + (start 1.75 -1.7) + (end 1.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "779d4542-da51-4b19-9544-21f3ca186e2f") + ) + (fp_line + (start 3.25 -1.7) + (end 5.05 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3deb3909-b271-4485-bf15-5c61c069d95d") + ) + (fp_line + (start 5.05 -1.7) + (end 5.05 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "276788b1-fc6c-47cb-9a3c-e3661a25af22") + ) + (fp_line + (start -2.55 -2.45) + (end -2.55 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "215e892d-66b4-40cd-8850-b5239886ea89") + ) + (fp_line + (start -0.75 -2.45) + (end -2.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "39bd3b93-bffe-4326-ac64-78241a9ef577") + ) + (fp_line + (start 0.75 -2.45) + (end 0.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "216cb359-cb07-4562-a1aa-b6498a576860") + ) + (fp_line + (start 1.75 -2.45) + (end 0.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ef2a04c3-8c4b-4cff-9e1b-8bd9f5c07640") + ) + (fp_line + (start 3.25 -2.45) + (end 3.25 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "58299034-74a1-450e-8a4d-b0e832a17fdd") + ) + (fp_line + (start 5.05 -2.45) + (end 3.25 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b5a17466-a495-48ec-8ae7-aef1146bfeb7") + ) + (fp_line + (start -2.56 -2.46) + (end -2.56 3.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "267ad5de-c733-4d57-811d-7471a17d9320") + ) + (fp_line + (start 5.06 -2.46) + (end -2.56 -2.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "690490c2-f18e-4a09-a6bc-470cdae1e866") + ) + (fp_line + (start -2.85 -2.75) + (end -2.85 -1.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ba3b1ef0-5274-41ac-825a-7444be42ab6c") + ) + (fp_line + (start -1.6 -2.75) + (end -2.85 -2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9c90cd05-4899-4bd5-9edb-1d3af5066f93") + ) + (fp_line + (start -2.95 3.9) + (end 5.45 3.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e245fd40-ec2d-4f49-8013-549a5fd7b1d7") + ) + (fp_line + (start 5.45 3.9) + (end 5.45 -2.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "92d285e0-8bd8-4da1-addb-c9508b09a1ee") + ) + (fp_line + (start -2.95 -2.85) + (end -2.95 3.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0201dc62-088b-499f-8885-14ecffd407b9") + ) + (fp_line + (start 5.45 -2.85) + (end -2.95 -2.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7504945e-c129-4e9b-8a3d-a25abb0ae410") + ) + (fp_line + (start -2.45 3.4) + (end 4.95 3.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "47d49c40-cd88-43a5-90a8-61710508fa3e") + ) + (fp_line + (start 4.95 3.4) + (end 4.95 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "833fcd20-e859-41c8-8b96-f8ba8c743b2d") + ) + (fp_line + (start 0 -1.35) + (end 0.625 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5c26ab58-9537-4a34-aea6-9d1296daba72") + ) + (fp_line + (start -2.45 -2.35) + (end -2.45 3.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c8aae098-5e0f-45d4-a51d-20e47cc82975") + ) + (fp_line + (start -0.625 -2.35) + (end 0 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "226b78f6-0c5a-4205-a26a-ff90d983e73e") + ) + (fp_line + (start 4.95 -2.35) + (end -2.45 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a843bc53-5291-4f4c-a67e-8ae4c29493e7") + ) + (fp_text user "${REFERENCE}" + (at 1.25 2.7 90) + (layer "F.Fab") + (uuid "3699c702-3bce-44f9-a364-753e8d4b4bd9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 270) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.1470588235) + (net 5 "/Thermistor3") + (pintype "passive") + (uuid "b4d7c3ae-f343-4018-a1ca-83900fcddc71") + ) + (pad "2" thru_hole oval + (at 2.5 0 270) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND1") + (pintype "passive") + (uuid "0a53751d-8d93-456c-b3de-ad606ac87a36") + ) + (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") + (uuid "aa3594ab-b5c4-4f02-a77d-2204ce7dbbd2") + (at 26 29.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 "Reference" "TH2" + (at 1.5 -2.2 90) + (layer "B.SilkS") + (uuid "80c0858e-4bd0-4422-98b9-1b82ed5b4bc0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Thermistor_NTC_100k" + (at 1.25 4.6 90) + (layer "F.Fab") + (uuid "6cc2af00-4dc2-40b7-9b03-1777ff428357") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "5d0b8a4a-05ff-45ef-a224-59414bcf227d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "589e3180-2404-4dfc-8795-8de5904726e0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1804fe02-d26d-46f8-8c76-dae9abafa6bf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*NTC* *Thermistor* PIN?ARRAY* bornier* *Terminal?Block* R_*") + (path "/400e609a-bba4-4e5a-ae93-533c1e27c86d") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr through_hole) + (fp_line + (start -2.56 3.51) + (end 5.06 3.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7eb3f6b-7411-42b1-bd90-f557b0260475") + ) + (fp_line + (start 5.06 3.51) + (end 5.06 -2.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "36bf2222-3d5d-4a09-9bf6-41a784c18e48") + ) + (fp_line + (start -1.8 2.75) + (end 1.25 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e8ac9c0-937b-4ac9-8637-8db64984d9d2") + ) + (fp_line + (start 4.3 2.75) + (end 1.25 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "549cebd1-4974-4b85-92d2-c848054d3858") + ) + (fp_line + (start -2.55 -0.2) + (end -1.8 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "43e298cd-b929-400d-8dcd-9ed906753fb2") + ) + (fp_line + (start -1.8 -0.2) + (end -1.8 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "24889463-45f5-4eee-b3d6-516e69b2aaee") + ) + (fp_line + (start 4.3 -0.2) + (end 4.3 2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8dde3a85-41df-461f-a895-6276b9e7bc1b") + ) + (fp_line + (start 5.05 -0.2) + (end 4.3 -0.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "462c8224-1224-440e-a56e-c2a62a095edb") + ) + (fp_line + (start -2.55 -1.7) + (end -0.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6364d80-4cae-4e91-9a48-0ca82e120602") + ) + (fp_line + (start -0.75 -1.7) + (end -0.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2923233a-b094-4cab-b309-19a39ec14327") + ) + (fp_line + (start 0.75 -1.7) + (end 1.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8da7f4b8-6489-4f3e-a379-49581de40791") + ) + (fp_line + (start 1.75 -1.7) + (end 1.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b3b02a0a-3f45-4e40-b935-0d9e0fde981b") + ) + (fp_line + (start 3.25 -1.7) + (end 5.05 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cfc36ad4-65b0-4e5a-ab43-5b37f2582f3b") + ) + (fp_line + (start 5.05 -1.7) + (end 5.05 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "abc3f1ec-dbf9-4265-8406-9cc0c9a47b5c") + ) + (fp_line + (start -2.55 -2.45) + (end -2.55 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5fe8b7fc-5b66-430a-9b6d-38e9caef1996") + ) + (fp_line + (start -0.75 -2.45) + (end -2.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "394e1d22-a3b6-43b4-9a6e-961163aae7b6") + ) + (fp_line + (start 0.75 -2.45) + (end 0.75 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a87804b0-9157-49c0-9fcd-9e3781d7d552") + ) + (fp_line + (start 1.75 -2.45) + (end 0.75 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "07d8fe22-782f-4fe8-860f-29db1c8392a9") + ) + (fp_line + (start 3.25 -2.45) + (end 3.25 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6ebd072-0d17-481b-8985-eb402f91595a") + ) + (fp_line + (start 5.05 -2.45) + (end 3.25 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7af0680c-5130-4931-b20c-d529fbe866b7") + ) + (fp_line + (start -2.56 -2.46) + (end -2.56 3.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f8f69a96-fad5-4e6c-87c0-301eb8e69827") + ) + (fp_line + (start 5.06 -2.46) + (end -2.56 -2.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dcb2a453-9d7a-4d96-8c1f-5cf8dbca9846") + ) + (fp_line + (start -2.85 -2.75) + (end -2.85 -1.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4189a851-0f05-4e5f-ad80-785dc61b11aa") + ) + (fp_line + (start -1.6 -2.75) + (end -2.85 -2.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ae9aa68-0ec0-4be9-bc04-70ccde325331") + ) + (fp_line + (start -2.95 3.9) + (end 5.45 3.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b4db71b6-9dd2-47bf-aa3b-7f9eb7342841") + ) + (fp_line + (start 5.45 3.9) + (end 5.45 -2.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9d54875b-2fd8-4553-9d99-71b38695ea62") + ) + (fp_line + (start -2.95 -2.85) + (end -2.95 3.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2a66a6e6-9039-4681-b058-95af6b0c367e") + ) + (fp_line + (start 5.45 -2.85) + (end -2.95 -2.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eaf390d4-77b1-4ee1-913c-1d82e82bfbf2") + ) + (fp_line + (start -2.45 3.4) + (end 4.95 3.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ddb4a51e-6b72-41c9-b295-0bbce1f43682") + ) + (fp_line + (start 4.95 3.4) + (end 4.95 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ce954eb9-742d-4975-9862-3203de661ef7") + ) + (fp_line + (start 0 -1.35) + (end 0.625 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4ff04e71-7939-48a1-b579-60cf47861d17") + ) + (fp_line + (start -2.45 -2.35) + (end -2.45 3.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a4c78f71-534c-43b3-a13e-5b62512456d5") + ) + (fp_line + (start -0.625 -2.35) + (end 0 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "68284dd7-18f4-4b35-8231-00a7b468ef13") + ) + (fp_line + (start 4.95 -2.35) + (end -2.45 -2.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d0202ee5-583c-4dd5-acb9-09116696c060") + ) + (fp_text user "${REFERENCE}" + (at 1.25 2.7 90) + (layer "F.Fab") + (uuid "1a32d71e-bd7e-46a6-a6e3-000effa4d30e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 270) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.1470588235) + (net 4 "/Thermistor1") + (pintype "passive") + (uuid "9e307df8-9229-4cdd-8829-c60b7049461e") + ) + (pad "2" thru_hole oval + (at 2.5 0 270) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND1") + (pintype "passive") + (uuid "1b6a62b0-df26-4c6a-9175-8cc9133d6340") + ) + (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 "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" + (layer "F.Cu") + (uuid "f4a6b8c5-0ec2-4658-b7d0-c0f47d1c1da2") + (at 50.9 46.7 90) + (descr "Mounting Hole 3.2mm, M3, DIN965") + (tags "mounting hole 3.2mm m3 din965") + (property "Reference" "H1" + (at 0 -3.8 90) + (layer "F.SilkS") + (hide yes) + (uuid "406691dc-d671-49e9-b6c0-3e7c37c4b4d3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.8 90) + (layer "F.Fab") + (uuid "4795dfc6-3361-4b64-a850-d0054446b3bf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "acf21936-e6d9-4e5d-8f66-0f3f0cc601ab") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1a838bc6-5722-4ac0-82cd-5c57a88c960e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "4e5575a8-1077-4199-b762-a5d5d48a91cf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/e814dc8b-2d44-4e4a-9c76-3f101df18680") + (sheetname "Root") + (sheetfile "TeenyTemp.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 2.8 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "3dc343c1-b3e7-49a5-8db3-6f1500fb98c9") + ) + (fp_circle + (center 0 0) + (end 3.05 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "e1a2e5a8-18eb-48b1-8c9c-0c18475cc38b") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "e37d2971-9325-4e37-a886-bee7e1a25818") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 90) + (size 5.6 5.6) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (uuid "6193af6d-b2d7-4ee2-a570-f756df28122f") + ) + ) + (gr_line + (start 22 18.5) + (end 22 51.6) + (stroke + (width 0.1) + (type default) + ) + (layer "Edge.Cuts") + (uuid "0bff0cc2-6911-4943-a290-1a26125e11ad") + ) + (gr_line + (start 22 51.6) + (end 54.9 51.6) + (stroke + (width 0.1) + (type default) + ) + (layer "Edge.Cuts") + (uuid "1f1b4074-e20c-43ec-b62c-5fd6dc49e742") + ) + (gr_line + (start 22 18.5) + (end 38.1 18.49) + (stroke + (width 0.1) + (type default) + ) + (layer "Edge.Cuts") + (uuid "3e134661-b9bc-4ef0-87b8-5d4a6d166b79") + ) + (gr_line + (start 54.9 51.6) + (end 54.9 18.5) + (stroke + (width 0.1) + (type default) + ) + (layer "Edge.Cuts") + (uuid "8ec8b8f5-b256-4c04-a48b-4e768991bc25") + ) + (gr_line + (start 54.9 18.5) + (end 50.1 18.49) + (stroke + (width 0.1) + (type default) + ) + (layer "Edge.Cuts") + (uuid "b70d29de-e233-41ae-830f-2f05a15e6cbc") + ) + (gr_text "µ" + (at 46.5 48.7 0) + (layer "B.SilkS") + (uuid "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 43.148499 43.967997) (xy 42.486113 43.740851) (xy 42.546105 44.039066) (xy 42.596228 44.33239) + (xy 42.629727 44.589351) (xy 42.820237 46.268764) (xy 42.84515 46.538408) (xy 42.870062 46.758227) + (xy 42.881786 47.014682) (xy 42.758688 47.211053) (xy 42.490151 47.087222) (xy 42.29234 46.856413) + (xy 42.131755 46.594829) (xy 42.06113 46.460739) (xy 41.979064 46.611681) (xy 42.079528 46.903435) + (xy 42.258131 47.141228) (xy 42.436287 47.32829) (xy 42.679217 47.543643) (xy 42.937405 47.71114) + (xy 43.170481 47.773789) (xy 43.429987 47.633757) (xy 43.491416 47.331221) (xy 43.478433 47.03395) + (xy 43.452908 46.730438) (xy 43.450383 46.704005) (xy 43.416678 46.384535) (xy 43.380041 46.065066) + (xy 43.516453 46.353672) (xy 43.653664 46.613891) (xy 43.837854 46.916691) (xy 44.023463 47.169024) + (xy 44.257471 47.413472) (xy 44.541209 47.602722) (xy 44.828141 47.678422) (xy 44.876273 47.68) + (xy 45.16178 47.61247) (xy 45.301256 47.523196) (xy 45.485903 49.207006) (xy 46.095533 49.431221) + (xy 46.08381 49.346224) (xy 46.050104 49.038478) (xy 46.017864 48.748318) (xy 45.4903 43.969462) + (xy 44.830844 43.740851) (xy 44.890836 44.042443) (xy 44.940959 44.338822) (xy 44.974459 44.598143) + (xy 45.140055 46.062135) (xy 45.15985 46.363601) (xy 45.160572 46.424103) (xy 45.129706 46.727361) + (xy 44.986467 47.002865) (xy 44.697097 47.116587) (xy 44.666713 47.117264) (xy 44.379732 47.034145) + (xy 44.136171 46.842491) (xy 43.941286 46.61649) (xy 43.799162 46.413845) (xy 43.639897 46.147658) + (xy 43.507216 45.877762) (xy 43.401119 45.604157) (xy 43.310939 45.280262) (xy 43.256943 44.951318) + ) + ) + ) + ) + (gr_text "TeenyTemp" + (at 40.6 50.8 0) + (layer "F.SilkS") + (uuid "6865f834-bf3e-4447-b399-2d8301b77178") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "V0.1" + (at 54.9 51.6 90) + (layer "F.SilkS") + (uuid "aca0732d-e8de-4b3a-b8e0-2029611f3c3f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (dimension + (type aligned) + (locked yes) + (layer "User.1") + (uuid "0d275d66-a503-49fa-a831-077bbdf3d0fe") + (pts + (xy 22 51.6) (xy 54.9 51.6) + ) + (height 13.5) + (gr_text "32.9000 mm" + (locked yes) + (at 38.45 63.95 0) + (layer "User.1") + (uuid "0d275d66-a503-49fa-a831-077bbdf3d0fe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 3) + (units_format 1) + (precision 4) + ) + (style + (thickness 0.15) + (arrow_length 1.27) + (text_position_mode 0) + (extension_height 0.58642) + (extension_offset 0.5) keep_text_aligned) + ) + (dimension + (type aligned) + (locked yes) + (layer "User.1") + (uuid "3e183038-faf9-499e-96b9-4046fc9f5517") + (pts + (xy 54.9 51.6) (xy 54.9 18.5) + ) + (height 12.3) + (gr_text "33.1000 mm" + (locked yes) + (at 66.05 35.05 90) + (layer "User.1") + (uuid "3e183038-faf9-499e-96b9-4046fc9f5517") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 3) + (units_format 1) + (precision 4) + ) + (style + (thickness 0.15) + (arrow_length 1.27) + (text_position_mode 0) + (extension_height 0.58642) + (extension_offset 0.5) keep_text_aligned) + ) + (segment + (start 30.1 20.28) + (end 32.68 20.28) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "1c6829d7-f180-4b17-a2bc-78ab2db4c8d2") + ) + (segment + (start 34.405 25.625) + (end 36.48 27.7) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "2799d3bc-54ba-4548-aa38-73117dcc95c1") + ) + (segment + (start 34.405 22.005) + (end 34.405 25.625) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "4c4e5f7a-8272-4fca-9928-6f8e50e72de1") + ) + (segment + (start 32.7 20.3) + (end 34.405 22.005) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "74c0f1cc-e401-45ed-b3ba-b0bacfe64433") + ) + (segment + (start 28.88 21.5) + (end 30.1 20.28) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "8a55e070-32ef-4fb4-9178-3c9de3fdfe9c") + ) + (segment + (start 32.68 20.28) + (end 32.7 20.3) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "9ac17e47-b676-4319-b919-82d1eba8d273") + ) + (segment + (start 26 21.5) + (end 28.88 21.5) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "f6403782-2aca-405e-b31d-34063efd667d") + ) + (segment + (start 30.18 36.38) + (end 30.2 36.4) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "2ffce536-f016-49fb-b50e-221053b0a25d") + ) + (segment + (start 32.68 36.38) + (end 32.7 36.4) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "38af6c16-a50a-4260-b2ac-2e963bf131bc") + ) + (segment + (start 26 37.6) + (end 28.88 37.6) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "38f1e9fd-8865-4743-95b9-edfcc6573ac3") + ) + (segment + (start 28.88 37.6) + (end 30.1 36.38) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "7c2793a0-ae2a-447a-8fb0-b6b040727ddb") + ) + (segment + (start 36.32 32.78) + (end 36.48 32.78) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "8b9154f5-3c60-4fa1-82aa-40704a9c0343") + ) + (segment + (start 30.2 36.4) + (end 32.7 36.4) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "8fa15831-7dd4-4f29-8eb7-801cf42c959e") + ) + (segment + (start 32.7 36.4) + (end 36.32 32.78) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "906cde1b-049a-4869-9057-7d83f9087586") + ) + (segment + (start 30.1 36.38) + (end 30.18 36.38) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "c44dc926-b049-49c9-9f51-562247c50df9") + ) + (segment + (start 34.94 28.7) + (end 36.48 30.24) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "03cf07f3-b3f5-4d83-ae70-3782112ae4a5") + ) + (segment + (start 30.1 28.68) + (end 27.22 28.68) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "0ea9d666-a5c6-4915-948d-59f74b9f7c70") + ) + (segment + (start 30.1 28.68) + (end 32.68 28.68) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "1f45c51a-7373-448b-be18-d790ae722baa") + ) + (segment + (start 32.7 28.7) + (end 34.94 28.7) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "95421ef3-1ec0-4495-bc7a-5e0794ace37c") + ) + (segment + (start 32.68 28.68) + (end 32.7 28.7) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "9b4229cc-6dc9-47fe-99ca-915d0156bf57") + ) + (segment + (start 27.22 28.68) + (end 26 29.9) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "ac1f84cd-d240-441d-a648-0f10b919c5bb") + ) + (segment + (start 33.825 43.675) + (end 33.825 37.975) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "299c4307-4aa4-44e1-b509-2b5e378ff4f7") + ) + (segment + (start 32.7 44.8) + (end 33.825 43.675) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "5786d960-0063-46bb-ada7-5eaf4c448d52") + ) + (segment + (start 26 46) + (end 28.88 46) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "5d0c87fe-1398-4fad-9120-6a7f341b9fad") + ) + (segment + (start 33.825 37.975) + (end 36.48 35.32) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "c165aafa-1f0f-47fe-83f8-95f8d304af4c") + ) + (segment + (start 30.12 44.8) + (end 30.1 44.78) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "cb7f0ac3-d815-4302-b513-bf82ab24724e") + ) + (segment + (start 32.7 44.8) + (end 30.12 44.8) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "dfa9e790-acc7-4825-9075-aadc8c6de03f") + ) + (segment + (start 28.88 46) + (end 30.1 44.78) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "fcd58f02-36ee-4805-9eb4-2ffe08181481") + ) + (segment + (start 29.075 30.195) + (end 30.1 31.22) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "16091083-044a-4f07-a3ba-19c8480c6a7a") + ) + (segment + (start 29.075 37.895) + (end 30.1 38.92) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "1d1816c6-5d73-4e5e-8029-c2331b53d103") + ) + (segment + (start 29.075 30.195) + (end 29.075 37.895) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "310ae197-1872-4eff-bdb8-7fbba53000db") + ) + (segment + (start 30.1 26.4) + (end 29.075 27.425) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "3ed0f5ce-be36-4915-b063-5b2369d66464") + ) + (segment + (start 29.075 27.425) + (end 29.075 30.195) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "5280ccf1-309a-44de-a725-a0afa2c7265e") + ) + (segment + (start 30.1 26.4) + (end 30.1 22.82) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "70fdf2f8-7655-4a48-b315-cd5c55f535b8") + ) + (segment + (start 30.125 26.425) + (end 30.1 26.4) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "7b1318a4-9a11-4e89-9758-07b9cf101fdf") + ) + (segment + (start 35.215 26.425) + (end 30.125 26.425) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "9f1ed3ee-f188-4721-a039-3e872d1165ed") + ) + (segment + (start 29.075 46.295) + (end 30.1 47.32) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "de4ebde4-d036-4872-9e6d-0ebe3b39bd17") + ) + (segment + (start 36.48 25.16) + (end 35.215 26.425) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "e063c395-c6c5-4b62-be7b-5db1d0a1e2a4") + ) + (segment + (start 29.075 37.895) + (end 29.075 46.295) + (width 0.25) + (layer "B.Cu") + (net 6) + (uuid "f67f5385-183d-4368-886d-fc2427f9683d") + ) + (segment + (start 51.72 40.4) + (end 51.72 40.8) + (width 0.25) + (layer "F.Cu") + (net 12) + (uuid "740f8e28-9110-4209-a30b-7ef16a74d02c") + ) + (segment + (start 51.72 32.78) + (end 53.18 32.78) + (width 0.25) + (layer "F.Cu") + (net 22) + (uuid "9182f944-eb3d-48be-bbc5-899017df783e") + ) + (zone + (net 2) + (net_name "GND1") + (layer "B.Cu") + (uuid "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 22 18.5) (xy 22 51.6) (xy 54.9 51.6) (xy 55 18.5) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 38.043039 18.519685) (xy 38.088794 18.572489) (xy 38.1 18.624) (xy 38.1 39.500164) (xy 38.080315 39.567203) + (xy 38.068943 39.581314) (xy 38.069336 39.58165) (xy 38.066175 39.585351) (xy 38.066172 39.585354) + (xy 38.032538 39.631647) (xy 37.950476 39.744594) (xy 37.860485 39.921213) (xy 37.812511 39.972009) + (xy 37.74469 39.988804) (xy 37.678555 39.966267) (xy 37.639515 39.921213) (xy 37.549523 39.744594) + (xy 37.540546 39.732238) (xy 37.433828 39.585354) (xy 37.294646 39.446172) (xy 37.169879 39.355523) + (xy 37.135403 39.330474) (xy 36.958787 39.240485) (xy 36.90799 39.192511) (xy 36.891195 39.12469) + (xy 36.913732 39.058555) (xy 36.958787 39.019515) (xy 37.135403 38.929525) (xy 37.135402 38.929525) + (xy 37.135405 38.929524) (xy 37.294646 38.813828) (xy 37.433828 38.674646) (xy 37.549524 38.515405) + (xy 37.638884 38.340025) (xy 37.699709 38.152826) (xy 37.706847 38.107761) (xy 37.7305 37.958422) + (xy 37.7305 37.761577) (xy 37.699709 37.567173) (xy 37.664641 37.459247) (xy 37.638884 37.379975) + (xy 37.638882 37.379972) (xy 37.638882 37.37997) (xy 37.549523 37.204594) (xy 37.540546 37.192238) + (xy 37.433828 37.045354) (xy 37.294646 36.906172) (xy 37.212511 36.846497) (xy 37.135403 36.790474) + (xy 36.958787 36.700485) (xy 36.90799 36.652511) (xy 36.891195 36.58469) (xy 36.913732 36.518555) + (xy 36.958787 36.479515) (xy 37.135403 36.389525) (xy 37.135402 36.389525) (xy 37.135405 36.389524) + (xy 37.294646 36.273828) (xy 37.433828 36.134646) (xy 37.549524 35.975405) (xy 37.638884 35.800025) + (xy 37.699709 35.612826) (xy 37.706847 35.567761) (xy 37.7305 35.418422) (xy 37.7305 35.221577) + (xy 37.699709 35.027173) (xy 37.638882 34.83997) (xy 37.549523 34.664594) (xy 37.433828 34.505354) + (xy 37.294646 34.366172) (xy 37.215025 34.308324) (xy 37.135403 34.250474) (xy 36.958787 34.160485) + (xy 36.90799 34.112511) (xy 36.891195 34.04469) (xy 36.913732 33.978555) (xy 36.958787 33.939515) + (xy 37.135403 33.849525) (xy 37.135402 33.849525) (xy 37.135405 33.849524) (xy 37.294646 33.733828) + (xy 37.433828 33.594646) (xy 37.549524 33.435405) (xy 37.638884 33.260025) (xy 37.699709 33.072826) + (xy 37.715278 32.974526) (xy 37.7305 32.878422) (xy 37.7305 32.681577) (xy 37.699709 32.487173) + (xy 37.638882 32.29997) (xy 37.549523 32.124594) (xy 37.433828 31.965354) (xy 37.294646 31.826172) + (xy 37.215025 31.768324) (xy 37.135403 31.710474) (xy 36.958787 31.620485) (xy 36.90799 31.572511) + (xy 36.891195 31.50469) (xy 36.913732 31.438555) (xy 36.958787 31.399515) (xy 37.135403 31.309525) + (xy 37.135402 31.309525) (xy 37.135405 31.309524) (xy 37.294646 31.193828) (xy 37.433828 31.054646) + (xy 37.549524 30.895405) (xy 37.638884 30.720025) (xy 37.699709 30.532826) (xy 37.719517 30.407764) + (xy 37.7305 30.338422) (xy 37.7305 30.141577) (xy 37.699709 29.947173) (xy 37.664762 29.839618) + (xy 37.638884 29.759975) (xy 37.638882 29.759972) (xy 37.638882 29.75997) (xy 37.549523 29.584594) + (xy 37.433828 29.425354) (xy 37.294646 29.286172) (xy 37.215025 29.228324) (xy 37.135403 29.170474) + (xy 36.958787 29.080485) (xy 36.90799 29.032511) (xy 36.891195 28.96469) (xy 36.913732 28.898555) + (xy 36.958787 28.859515) (xy 37.135403 28.769525) (xy 37.135402 28.769525) (xy 37.135405 28.769524) + (xy 37.294646 28.653828) (xy 37.433828 28.514646) (xy 37.549524 28.355405) (xy 37.638884 28.180025) + (xy 37.699709 27.992826) (xy 37.719517 27.867764) (xy 37.7305 27.798422) (xy 37.7305 27.601577) + (xy 37.699709 27.407173) (xy 37.656534 27.274297) (xy 37.638884 27.219975) (xy 37.638882 27.219972) + (xy 37.638882 27.21997) (xy 37.571038 27.086819) (xy 37.549524 27.044595) (xy 37.433828 26.885354) + (xy 37.294646 26.746172) (xy 37.215025 26.688324) (xy 37.135403 26.630474) (xy 36.958787 26.540485) + (xy 36.90799 26.492511) (xy 36.891195 26.42469) (xy 36.913732 26.358555) (xy 36.958787 26.319515) + (xy 37.135403 26.229525) (xy 37.135402 26.229525) (xy 37.135405 26.229524) (xy 37.294646 26.113828) + (xy 37.433828 25.974646) (xy 37.549524 25.815405) (xy 37.638884 25.640025) (xy 37.699709 25.452826) + (xy 37.7305 25.258422) (xy 37.7305 25.061577) (xy 37.699709 24.867173) (xy 37.638882 24.67997) (xy 37.585155 24.574526) + (xy 37.549524 24.504595) (xy 37.433828 24.345354) (xy 37.294646 24.206172) (xy 37.135405 24.090476) + (xy 36.960025 24.001116) (xy 36.960024 24.001115) (xy 36.958235 24.000204) (xy 36.907439 23.95223) + (xy 36.890644 23.884409) (xy 36.913181 23.818274) (xy 36.958236 23.779234) (xy 37.135141 23.689097) + (xy 37.294321 23.573444) (xy 37.433444 23.434321) (xy 37.549095 23.275143) (xy 37.638418 23.099837) + (xy 37.699218 22.912716) (xy 37.705984 22.87) (xy 36.913012 22.87) (xy 36.945925 22.812993) (xy 36.98 22.685826) + (xy 36.98 22.554174) (xy 36.945925 22.427007) (xy 36.913012 22.37) (xy 37.705984 22.37) (xy 37.699218 22.327283) + (xy 37.638418 22.140162) (xy 37.549095 21.964856) (xy 37.433444 21.805678) (xy 37.294321 21.666555) + (xy 37.135143 21.550904) (xy 36.958235 21.460765) (xy 36.907439 21.41279) (xy 36.890644 21.344969) + (xy 36.913181 21.278835) (xy 36.958236 21.239795) (xy 36.960022 21.238884) (xy 36.960025 21.238884) + (xy 37.135405 21.149524) (xy 37.294646 21.033828) (xy 37.433828 20.894646) (xy 37.549524 20.735405) + (xy 37.638884 20.560025) (xy 37.699709 20.372826) (xy 37.7305 20.178422) (xy 37.7305 19.981577) + (xy 37.699709 19.787173) (xy 37.65425 19.647266) (xy 37.638884 19.599975) (xy 37.638882 19.599972) + (xy 37.638882 19.59997) (xy 37.591743 19.507455) (xy 37.549524 19.424595) (xy 37.433828 19.265354) + (xy 37.294646 19.126172) (xy 37.135405 19.010476) (xy 37.104113 18.994532) (xy 36.960029 18.921117) + (xy 36.772826 18.86029) (xy 36.578422 18.8295) (xy 36.578417 18.8295) (xy 35.381583 18.8295) (xy 35.381578 18.8295) + (xy 35.187173 18.86029) (xy 34.99997 18.921117) (xy 34.824594 19.010476) (xy 34.738183 19.073258) + (xy 34.665354 19.126172) (xy 34.665352 19.126174) (xy 34.665351 19.126174) (xy 34.526174 19.265351) + (xy 34.526174 19.265352) (xy 34.526172 19.265354) (xy 34.488014 19.317874) (xy 34.410476 19.424594) + (xy 34.321117 19.59997) (xy 34.26029 19.787173) (xy 34.2295 19.981577) (xy 34.2295 20.041551) (xy 34.209815 20.10859) + (xy 34.157011 20.154345) (xy 34.087853 20.164289) (xy 34.024297 20.135264) (xy 33.986523 20.076486) + (xy 33.985725 20.073644) (xy 33.926741 19.853511) (xy 33.926738 19.853502) (xy 33.922522 19.844461) + (xy 33.830568 19.647266) (xy 33.732839 19.507693) (xy 33.700045 19.460858) (xy 33.539141 19.299954) + (xy 33.352734 19.169432) (xy 33.352732 19.169431) (xy 33.146497 19.073261) (xy 33.146488 19.073258) + (xy 32.926697 19.014366) (xy 32.926693 19.014365) (xy 32.926692 19.014365) (xy 32.926691 19.014364) + (xy 32.926686 19.014364) (xy 32.700002 18.994532) (xy 32.699998 18.994532) (xy 32.473313 19.014364) + (xy 32.473302 19.014366) (xy 32.253511 19.073258) (xy 32.253502 19.073261) (xy 32.047267 19.169431) + (xy 32.047265 19.169432) (xy 31.860858 19.299954) (xy 31.699954 19.460858) (xy 31.569432 19.647265) + (xy 31.569431 19.647267) (xy 31.473261 19.853502) (xy 31.473258 19.853512) (xy 31.469914 19.865992) + (xy 31.433547 19.925651) (xy 31.370699 19.956179) (xy 31.301324 19.947882) (xy 31.247447 19.903395) + (xy 31.230875 19.867832) (xy 31.224229 19.844472) (xy 31.195698 19.787174) (xy 31.125061 19.645316) + (xy 31.125056 19.645308) (xy 30.990979 19.467761) (xy 30.826562 19.317876) (xy 30.82656 19.317874) + (xy 30.637404 19.200754) (xy 30.637398 19.200752) (xy 30.42994 19.120382) (xy 30.211243 19.0795) + (xy 29.988757 19.0795) (xy 29.77006 19.120382) (xy 29.64345 19.169431) (xy 29.562601 19.200752) + (xy 29.562595 19.200754) (xy 29.373439 19.317874) (xy 29.373437 19.317876) (xy 29.20902 19.467761) + (xy 29.074943 19.645308) (xy 29.074938 19.645316) (xy 28.975775 19.844461) (xy 28.975769 19.844476) + (xy 28.914885 20.058462) (xy 28.914884 20.058464) (xy 28.894357 20.279999) (xy 28.894357 20.28) + (xy 28.914884 20.501535) (xy 28.914885 20.501537) (xy 28.975769 20.715523) (xy 28.975775 20.715538) + (xy 29.074938 20.914683) (xy 29.074943 20.914691) (xy 29.20902 21.092238) (xy 29.373437 21.242123) + (xy 29.373439 21.242125) (xy 29.562595 21.359245) (xy 29.562596 21.359245) (xy 29.562599 21.359247) + (xy 29.756524 21.434374) (xy 29.811924 21.476946) (xy 29.835515 21.542713) (xy 29.819804 21.610793) + (xy 29.76978 21.659572) (xy 29.756533 21.665622) (xy 29.608488 21.722975) (xy 29.562601 21.740752) + (xy 29.562595 21.740754) (xy 29.373439 21.857874) (xy 29.373437 21.857876) (xy 29.20902 22.007761) + (xy 29.074943 22.185308) (xy 29.074938 22.185316) (xy 28.975775 22.384461) (xy 28.975769 22.384476) + (xy 28.914885 22.598462) (xy 28.914884 22.598464) (xy 28.894357 22.819999) (xy 28.894357 22.82) + (xy 28.914884 23.041535) (xy 28.914885 23.041537) (xy 28.975769 23.255523) (xy 28.975775 23.255538) + (xy 29.074938 23.454683) (xy 29.074943 23.454691) (xy 29.20902 23.632238) (xy 29.373433 23.78212) + (xy 29.373435 23.782122) (xy 29.373437 23.782123) (xy 29.373438 23.782124) (xy 29.415778 23.808339) + (xy 29.462412 23.860364) (xy 29.4745 23.913765) (xy 29.4745 26.089547) (xy 29.454815 26.156586) + (xy 29.438181 26.177228) (xy 28.589144 27.026264) (xy 28.589138 27.026272) (xy 28.520692 27.128705) + (xy 28.520684 27.128719) (xy 28.494413 27.192147) (xy 28.487347 27.209207) (xy 28.484806 27.215342) + (xy 28.473537 27.242545) (xy 28.473535 27.242553) (xy 28.4495 27.363389) (xy 28.4495 46.35661) (xy 28.461518 46.417029) + (xy 28.471543 46.467427) (xy 28.473537 46.477453) (xy 28.486092 46.507761) (xy 28.486093 46.507766) + (xy 28.520685 46.591281) (xy 28.520687 46.591285) (xy 28.520688 46.591286) (xy 28.551757 46.637782) + (xy 28.559933 46.650018) (xy 28.589143 46.693735) (xy 28.680586 46.785178) (xy 28.680608 46.785198) + (xy 28.881107 46.985697) (xy 28.914592 47.04702) (xy 28.915266 47.092742) (xy 28.915414 47.092756) + (xy 28.915287 47.094125) (xy 28.915317 47.096153) (xy 28.914884 47.098465) (xy 28.894357 47.319999) + (xy 28.894357 47.32) (xy 28.914884 47.541535) (xy 28.914885 47.541537) (xy 28.975769 47.755523) + (xy 28.975775 47.755538) (xy 29.074938 47.954683) (xy 29.074943 47.954691) (xy 29.20902 48.132238) + (xy 29.373437 48.282123) (xy 29.373439 48.282125) (xy 29.562595 48.399245) (xy 29.562596 48.399245) + (xy 29.562599 48.399247) (xy 29.77006 48.479618) (xy 29.988757 48.5205) (xy 29.988759 48.5205) (xy 30.211241 48.5205) + (xy 30.211243 48.5205) (xy 30.42994 48.479618) (xy 30.637401 48.399247) (xy 30.826562 48.282124) + (xy 30.990981 48.132236) (xy 31.125058 47.954689) (xy 31.224229 47.755528) (xy 31.285115 47.541536) + (xy 31.305643 47.32) (xy 31.285115 47.098464) (xy 31.224229 46.884472) (xy 31.224224 46.884461) + (xy 31.132371 46.699997) (xy 34.594652 46.699997) (xy 34.594652 46.700002) (xy 34.614028 47.057368) + (xy 34.614029 47.057385) (xy 34.671926 47.410539) (xy 34.671932 47.410565) (xy 34.767672 47.755392) + (xy 34.767674 47.755399) (xy 34.900142 48.08787) (xy 34.900151 48.087888) (xy 35.067784 48.404077) + (xy 35.067787 48.404082) (xy 35.067789 48.404085) (xy 35.263673 48.692993) (xy 35.268634 48.700309) + (xy 35.268641 48.700319) (xy 35.438336 48.900099) (xy 35.500332 48.973086) (xy 35.760163 49.219211) + (xy 36.045081 49.4358) (xy 36.351747 49.620315) (xy 36.351749 49.620316) (xy 36.351751 49.620317) + (xy 36.351755 49.620319) (xy 36.425896 49.65462) (xy 36.676565 49.770591) (xy 37.015726 49.884868) + (xy 37.365254 49.961805) (xy 37.721052 50.0005) (xy 37.721058 50.0005) (xy 38.078942 50.0005) (xy 38.078948 50.0005) + (xy 38.434746 49.961805) (xy 38.784274 49.884868) (xy 39.123435 49.770591) (xy 39.448253 49.620315) + (xy 39.754919 49.4358) (xy 40.039837 49.219211) (xy 40.299668 48.973086) (xy 40.531365 48.700311) + (xy 40.732211 48.404085) (xy 40.899853 48.08788) (xy 41.032324 47.755403) (xy 41.128071 47.410552) + (xy 41.179235 47.098464) (xy 41.18597 47.057385) (xy 41.18597 47.057382) (xy 41.185972 47.057371) + (xy 41.205348 46.7) (xy 41.205348 46.699997) (xy 47.594652 46.699997) (xy 47.594652 46.700002) (xy 47.614028 47.057368) + (xy 47.614029 47.057385) (xy 47.671926 47.410539) (xy 47.671932 47.410565) (xy 47.767672 47.755392) + (xy 47.767674 47.755399) (xy 47.900142 48.08787) (xy 47.900151 48.087888) (xy 48.067784 48.404077) + (xy 48.067787 48.404082) (xy 48.067789 48.404085) (xy 48.263673 48.692993) (xy 48.268634 48.700309) + (xy 48.268641 48.700319) (xy 48.438336 48.900099) (xy 48.500332 48.973086) (xy 48.760163 49.219211) + (xy 49.045081 49.4358) (xy 49.351747 49.620315) (xy 49.351749 49.620316) (xy 49.351751 49.620317) + (xy 49.351755 49.620319) (xy 49.425896 49.65462) (xy 49.676565 49.770591) (xy 50.015726 49.884868) + (xy 50.365254 49.961805) (xy 50.721052 50.0005) (xy 50.721058 50.0005) (xy 51.078942 50.0005) (xy 51.078948 50.0005) + (xy 51.434746 49.961805) (xy 51.784274 49.884868) (xy 52.123435 49.770591) (xy 52.448253 49.620315) + (xy 52.754919 49.4358) (xy 53.039837 49.219211) (xy 53.299668 48.973086) (xy 53.531365 48.700311) + (xy 53.732211 48.404085) (xy 53.899853 48.08788) (xy 54.032324 47.755403) (xy 54.128071 47.410552) + (xy 54.179235 47.098464) (xy 54.18597 47.057385) (xy 54.18597 47.057382) (xy 54.185972 47.057371) + (xy 54.205348 46.7) (xy 54.204551 46.685308) (xy 54.201975 46.637782) (xy 54.185972 46.342629) (xy 54.16927 46.240754) + (xy 54.128073 45.98946) (xy 54.128072 45.989459) (xy 54.128071 45.989448) (xy 54.075484 45.800045) + (xy 54.032327 45.644607) (xy 54.032325 45.6446) (xy 53.899857 45.312129) (xy 53.899848 45.312111) + (xy 53.865436 45.247204) (xy 53.799546 45.122921) (xy 53.732215 44.995922) (xy 53.732213 44.995919) + (xy 53.732211 44.995915) (xy 53.531365 44.699689) (xy 53.531361 44.699684) (xy 53.531358 44.69968) + (xy 53.299668 44.426914) (xy 53.274839 44.403395) (xy 53.039837 44.180789) (xy 53.03983 44.180783) + (xy 53.039827 44.180781) (xy 52.972245 44.129407) (xy 52.754919 43.9642) (xy 52.448253 43.779685) + (xy 52.448252 43.779684) (xy 52.448248 43.779682) (xy 52.448244 43.77968) (xy 52.123447 43.629414) + (xy 52.123441 43.629411) (xy 52.123435 43.629409) (xy 51.953854 43.57227) (xy 51.784273 43.515131) + (xy 51.434744 43.438194) (xy 51.078949 43.3995) (xy 51.078948 43.3995) (xy 50.721052 43.3995) (xy 50.72105 43.3995) + (xy 50.365255 43.438194) (xy 50.015726 43.515131) (xy 49.767068 43.598915) (xy 49.676565 43.629409) + (xy 49.676563 43.62941) (xy 49.676552 43.629414) (xy 49.351755 43.77968) (xy 49.351751 43.779682) + (xy 49.123367 43.917096) (xy 49.045081 43.9642) (xy 49.040397 43.967761) (xy 48.760172 44.180781) + (xy 48.760163 44.180789) (xy 48.500331 44.426914) (xy 48.268641 44.69968) (xy 48.268634 44.69969) + (xy 48.06779 44.995913) (xy 48.067784 44.995922) (xy 47.900151 45.312111) (xy 47.900142 45.312129) + (xy 47.767674 45.6446) (xy 47.767672 45.644607) (xy 47.671932 45.989434) (xy 47.671926 45.98946) + (xy 47.614029 46.342614) (xy 47.614028 46.342627) (xy 47.614028 46.342629) (xy 47.613201 46.357876) + (xy 47.594652 46.699997) (xy 41.205348 46.699997) (xy 41.204551 46.685308) (xy 41.201975 46.637782) + (xy 41.185972 46.342629) (xy 41.16927 46.240754) (xy 41.128073 45.98946) (xy 41.128072 45.989459) + (xy 41.128071 45.989448) (xy 41.075484 45.800045) (xy 41.032327 45.644607) (xy 41.032325 45.6446) + (xy 40.899857 45.312129) (xy 40.899848 45.312111) (xy 40.865436 45.247204) (xy 40.799546 45.122921) + (xy 40.732215 44.995922) (xy 40.732213 44.995919) (xy 40.732211 44.995915) (xy 40.531365 44.699689) + (xy 40.531361 44.699684) (xy 40.531358 44.69968) (xy 40.299668 44.426914) (xy 40.274839 44.403395) + (xy 40.039837 44.180789) (xy 40.03983 44.180783) (xy 40.039827 44.180781) (xy 39.972245 44.129407) + (xy 39.754919 43.9642) (xy 39.448253 43.779685) (xy 39.448252 43.779684) (xy 39.448248 43.779682) + (xy 39.448244 43.77968) (xy 39.123447 43.629414) (xy 39.123441 43.629411) (xy 39.123435 43.629409) + (xy 38.953854 43.57227) (xy 38.784273 43.515131) (xy 38.434744 43.438194) (xy 38.078949 43.3995) + (xy 38.078948 43.3995) (xy 37.721052 43.3995) (xy 37.72105 43.3995) (xy 37.365255 43.438194) (xy 37.015726 43.515131) + (xy 36.767068 43.598915) (xy 36.676565 43.629409) (xy 36.676563 43.62941) (xy 36.676552 43.629414) + (xy 36.351755 43.77968) (xy 36.351751 43.779682) (xy 36.123367 43.917096) (xy 36.045081 43.9642) + (xy 36.040397 43.967761) (xy 35.760172 44.180781) (xy 35.760163 44.180789) (xy 35.500331 44.426914) + (xy 35.268641 44.69968) (xy 35.268634 44.69969) (xy 35.06779 44.995913) (xy 35.067784 44.995922) + (xy 34.900151 45.312111) (xy 34.900142 45.312129) (xy 34.767674 45.6446) (xy 34.767672 45.644607) + (xy 34.671932 45.989434) (xy 34.671926 45.98946) (xy 34.614029 46.342614) (xy 34.614028 46.342627) + (xy 34.614028 46.342629) (xy 34.613201 46.357876) (xy 34.594652 46.699997) (xy 31.132371 46.699997) + (xy 31.125061 46.685316) (xy 31.125056 46.685308) (xy 30.990979 46.507761) (xy 30.826562 46.357876) + (xy 30.82656 46.357874) (xy 30.637404 46.240754) (xy 30.637395 46.24075) (xy 30.543956 46.204552) + (xy 30.443475 46.165625) (xy 30.388075 46.123054) (xy 30.364484 46.057288) (xy 30.380195 45.989207) + (xy 30.430219 45.940428) (xy 30.443466 45.934377) (xy 30.637401 45.859247) (xy 30.826562 45.742124) + (xy 30.990981 45.592236) (xy 31.125058 45.414689) (xy 31.224229 45.215528) (xy 31.225353 45.211576) + (xy 31.262624 45.152485) (xy 31.32593 45.122921) (xy 31.395171 45.132276) (xy 31.448362 45.17758) + (xy 31.464394 45.213409) (xy 31.473256 45.246482) (xy 31.473261 45.246497) (xy 31.569431 45.452732) + (xy 31.569432 45.452734) (xy 31.699954 45.639141) (xy 31.860858 45.800045) (xy 31.860861 45.800047) + (xy 32.047266 45.930568) (xy 32.253504 46.026739) (xy 32.473308 46.085635) (xy 32.63523 46.099801) + (xy 32.699998 46.105468) (xy 32.7 46.105468) (xy 32.700002 46.105468) (xy 32.756673 46.100509) (xy 32.926692 46.085635) + (xy 33.146496 46.026739) (xy 33.352734 45.930568) (xy 33.539139 45.800047) (xy 33.700047 45.639139) + (xy 33.830568 45.452734) (xy 33.926739 45.246496) (xy 33.985635 45.026692) (xy 34.005468 44.8) (xy 33.985635 44.573308) + (xy 33.926739 44.353504) (xy 33.830568 44.147266) (xy 33.732839 44.007693) (xy 33.700045 43.960858) + (xy 33.539141 43.799954) (xy 33.352734 43.669432) (xy 33.352732 43.669431) (xy 33.146497 43.573261) + (xy 33.146488 43.573258) (xy 32.926697 43.514366) (xy 32.926693 43.514365) (xy 32.926692 43.514365) + (xy 32.926691 43.514364) (xy 32.926686 43.514364) (xy 32.700002 43.494532) (xy 32.699998 43.494532) + (xy 32.473313 43.514364) (xy 32.473302 43.514366) (xy 32.253511 43.573258) (xy 32.253502 43.573261) + (xy 32.047267 43.669431) (xy 32.047265 43.669432) (xy 31.860858 43.799954) (xy 31.699954 43.960858) + (xy 31.569432 44.147265) (xy 31.569431 44.147267) (xy 31.473261 44.353502) (xy 31.473258 44.353512) + (xy 31.469914 44.365992) (xy 31.433547 44.425651) (xy 31.370699 44.456179) (xy 31.301324 44.447882) + (xy 31.247447 44.403395) (xy 31.230875 44.367832) (xy 31.224229 44.344472) (xy 31.224224 44.344461) + (xy 31.125061 44.145316) (xy 31.125056 44.145308) (xy 30.990979 43.967761) (xy 30.826562 43.817876) + (xy 30.82656 43.817874) (xy 30.637404 43.700754) (xy 30.637398 43.700752) (xy 30.42994 43.620382) + (xy 30.211243 43.5795) (xy 29.988757 43.5795) (xy 29.847285 43.605946) (xy 29.77777 43.598915) (xy 29.723091 43.555417) + (xy 29.700609 43.489263) (xy 29.7005 43.484057) (xy 29.7005 41.399997) (xy 31.395034 41.399997) + (xy 31.395034 41.400002) (xy 31.414858 41.626599) (xy 31.41486 41.62661) (xy 31.47373 41.846317) + (xy 31.473735 41.846331) (xy 31.569863 42.052478) (xy 31.620974 42.125472) (xy 32.3 41.446446) (xy 32.3 41.452661) + (xy 32.327259 41.554394) (xy 32.37992 41.645606) (xy 32.454394 41.72008) (xy 32.545606 41.772741) + (xy 32.647339 41.8) (xy 32.653553 41.8) (xy 31.974526 42.479025) (xy 32.047513 42.530132) (xy 32.047521 42.530136) + (xy 32.253668 42.626264) (xy 32.253682 42.626269) (xy 32.473389 42.685139) (xy 32.4734 42.685141) + (xy 32.699998 42.704966) (xy 32.700002 42.704966) (xy 32.926599 42.685141) (xy 32.92661 42.685139) + (xy 33.146317 42.626269) (xy 33.146331 42.626264) (xy 33.352478 42.530136) (xy 33.425471 42.479024) + (xy 32.746447 41.8) (xy 32.752661 41.8) (xy 32.854394 41.772741) (xy 32.945606 41.72008) (xy 33.02008 41.645606) + (xy 33.072741 41.554394) (xy 33.1 41.452661) (xy 33.1 41.446447) (xy 33.779024 42.125471) (xy 33.830136 42.052478) + (xy 33.926264 41.846331) (xy 33.926269 41.846317) (xy 33.985139 41.62661) (xy 33.985141 41.626599) + (xy 34.004966 41.400002) (xy 34.004966 41.399997) (xy 33.985141 41.1734) (xy 33.985139 41.173389) + (xy 33.926269 40.953682) (xy 33.926264 40.953668) (xy 33.830136 40.747521) (xy 33.830132 40.747513) + (xy 33.779025 40.674526) (xy 33.1 41.353551) (xy 33.1 41.347339) (xy 33.072741 41.245606) (xy 33.02008 41.154394) + (xy 32.945606 41.07992) (xy 32.854394 41.027259) (xy 32.752661 41) (xy 32.746448 41) (xy 33.425472 40.320974) + (xy 33.352478 40.269863) (xy 33.146331 40.173735) (xy 33.146317 40.17373) (xy 32.92661 40.11486) + (xy 32.926599 40.114858) (xy 32.700002 40.095034) (xy 32.699998 40.095034) (xy 32.4734 40.114858) + (xy 32.473389 40.11486) (xy 32.253682 40.17373) (xy 32.253673 40.173734) (xy 32.047516 40.269866) + (xy 32.047512 40.269868) (xy 31.974526 40.320973) (xy 31.974526 40.320974) (xy 32.653553 41) (xy 32.647339 41) + (xy 32.545606 41.027259) (xy 32.454394 41.07992) (xy 32.37992 41.154394) (xy 32.327259 41.245606) + (xy 32.3 41.347339) (xy 32.3 41.353552) (xy 31.620974 40.674526) (xy 31.620973 40.674526) (xy 31.569868 40.747512) + (xy 31.569866 40.747516) (xy 31.473734 40.953673) (xy 31.47373 40.953682) (xy 31.41486 41.173389) + (xy 31.414858 41.1734) (xy 31.395034 41.399997) (xy 29.7005 41.399997) (xy 29.7005 40.215942) (xy 29.720185 40.148903) + (xy 29.772989 40.103148) (xy 29.842147 40.093204) (xy 29.84723 40.094043) (xy 29.988757 40.1205) + (xy 29.98876 40.1205) (xy 30.211241 40.1205) (xy 30.211243 40.1205) (xy 30.42994 40.079618) (xy 30.637401 39.999247) + (xy 30.826562 39.882124) (xy 30.990981 39.732236) (xy 31.125058 39.554689) (xy 31.224229 39.355528) + (xy 31.285115 39.141536) (xy 31.305643 38.92) (xy 31.285115 38.698464) (xy 31.224229 38.484472) + (xy 31.224224 38.484461) (xy 31.125061 38.285316) (xy 31.125056 38.285308) (xy 30.990979 38.107761) + (xy 30.826562 37.957876) (xy 30.82656 37.957874) (xy 30.637404 37.840754) (xy 30.637395 37.84075) + (xy 30.543956 37.804552) (xy 30.443475 37.765625) (xy 30.388075 37.723054) (xy 30.364484 37.657288) + (xy 30.380195 37.589207) (xy 30.430219 37.540428) (xy 30.443466 37.534377) (xy 30.637401 37.459247) + (xy 30.826562 37.342124) (xy 30.990981 37.192236) (xy 31.125058 37.014689) (xy 31.224229 36.815528) + (xy 31.225353 36.811576) (xy 31.262624 36.752485) (xy 31.32593 36.722921) (xy 31.395171 36.732276) + (xy 31.448362 36.77758) (xy 31.464394 36.813409) (xy 31.473256 36.846482) (xy 31.473261 36.846497) + (xy 31.569431 37.052732) (xy 31.569432 37.052734) (xy 31.699954 37.239141) (xy 31.860858 37.400045) + (xy 31.860861 37.400047) (xy 32.047266 37.530568) (xy 32.253504 37.626739) (xy 32.473308 37.685635) + (xy 32.63523 37.699801) (xy 32.699998 37.705468) (xy 32.7 37.705468) (xy 32.700002 37.705468) (xy 32.756673 37.700509) + (xy 32.926692 37.685635) (xy 33.146496 37.626739) (xy 33.352734 37.530568) (xy 33.539139 37.400047) + (xy 33.700047 37.239139) (xy 33.830568 37.052734) (xy 33.926739 36.846496) (xy 33.985635 36.626692) + (xy 34.005468 36.4) (xy 34.004551 36.389524) (xy 33.994429 36.273825) (xy 33.985635 36.173308) (xy 33.926739 35.953504) + (xy 33.830568 35.747266) (xy 33.732839 35.607693) (xy 33.700045 35.560858) (xy 33.539141 35.399954) + (xy 33.352734 35.269432) (xy 33.352732 35.269431) (xy 33.146497 35.173261) (xy 33.14649 35.173259) + (xy 33.13252 35.169516) (xy 33.07286 35.133151) (xy 33.042331 35.070304) (xy 33.050626 35.000928) + (xy 33.095111 34.94705) (xy 33.132521 34.929966) (xy 33.146317 34.926269) (xy 33.146331 34.926264) + (xy 33.352478 34.830136) (xy 33.425471 34.779024) (xy 32.746447 34.1) (xy 32.752661 34.1) (xy 32.854394 34.072741) + (xy 32.945606 34.02008) (xy 33.02008 33.945606) (xy 33.072741 33.854394) (xy 33.1 33.752661) (xy 33.1 33.746447) + (xy 33.779024 34.425471) (xy 33.830136 34.352478) (xy 33.926264 34.146331) (xy 33.926269 34.146317) + (xy 33.985139 33.92661) (xy 33.985141 33.926599) (xy 34.004966 33.700002) (xy 34.004966 33.699997) + (xy 33.985141 33.4734) (xy 33.985139 33.473389) (xy 33.926269 33.253682) (xy 33.926264 33.253668) + (xy 33.830136 33.047521) (xy 33.830132 33.047513) (xy 33.779025 32.974526) (xy 33.1 33.653551) (xy 33.1 33.647339) + (xy 33.072741 33.545606) (xy 33.02008 33.454394) (xy 32.945606 33.37992) (xy 32.854394 33.327259) + (xy 32.752661 33.3) (xy 32.746448 33.3) (xy 33.425472 32.620974) (xy 33.352478 32.569863) (xy 33.146331 32.473735) + (xy 33.146317 32.47373) (xy 32.92661 32.41486) (xy 32.926599 32.414858) (xy 32.700002 32.395034) + (xy 32.699998 32.395034) (xy 32.4734 32.414858) (xy 32.473389 32.41486) (xy 32.253682 32.47373) + (xy 32.253673 32.473734) (xy 32.047516 32.569866) (xy 32.047512 32.569868) (xy 31.974526 32.620973) + (xy 31.974526 32.620974) (xy 32.653553 33.3) (xy 32.647339 33.3) (xy 32.545606 33.327259) (xy 32.454394 33.37992) + (xy 32.37992 33.454394) (xy 32.327259 33.545606) (xy 32.3 33.647339) (xy 32.3 33.653552) (xy 31.620974 32.974526) + (xy 31.620973 32.974526) (xy 31.569868 33.047512) (xy 31.569866 33.047516) (xy 31.473734 33.253673) + (xy 31.47373 33.253682) (xy 31.41486 33.473389) (xy 31.414858 33.4734) (xy 31.395034 33.699997) + (xy 31.395034 33.700002) (xy 31.414858 33.926599) (xy 31.41486 33.92661) (xy 31.47373 34.146317) + (xy 31.473735 34.146331) (xy 31.569863 34.352478) (xy 31.620974 34.425472) (xy 32.3 33.746446) (xy 32.3 33.752661) + (xy 32.327259 33.854394) (xy 32.37992 33.945606) (xy 32.454394 34.02008) (xy 32.545606 34.072741) + (xy 32.647339 34.1) (xy 32.653553 34.1) (xy 31.974526 34.779025) (xy 32.047513 34.830132) (xy 32.047521 34.830136) + (xy 32.253668 34.926264) (xy 32.25368 34.926268) (xy 32.267479 34.929966) (xy 32.327139 34.966332) + (xy 32.357668 35.029179) (xy 32.349373 35.098554) (xy 32.304887 35.152432) (xy 32.26748 35.169515) + (xy 32.253517 35.173256) (xy 32.253502 35.173261) (xy 32.047267 35.269431) (xy 32.047265 35.269432) + (xy 31.860858 35.399954) (xy 31.699954 35.560858) (xy 31.569432 35.747265) (xy 31.569431 35.747267) + (xy 31.473261 35.953502) (xy 31.473258 35.953512) (xy 31.469914 35.965992) (xy 31.433547 36.025651) + (xy 31.370699 36.056179) (xy 31.301324 36.047882) (xy 31.247447 36.003395) (xy 31.230875 35.967832) + (xy 31.224229 35.944472) (xy 31.224224 35.944461) (xy 31.125061 35.745316) (xy 31.125056 35.745308) + (xy 30.990979 35.567761) (xy 30.826562 35.417876) (xy 30.82656 35.417874) (xy 30.637404 35.300754) + (xy 30.637398 35.300752) (xy 30.42994 35.220382) (xy 30.211243 35.1795) (xy 29.988757 35.1795) (xy 29.847285 35.205946) + (xy 29.77777 35.198915) (xy 29.723091 35.155417) (xy 29.700609 35.089263) (xy 29.7005 35.084057) + (xy 29.7005 32.515942) (xy 29.720185 32.448903) (xy 29.772989 32.403148) (xy 29.842147 32.393204) + (xy 29.84723 32.394043) (xy 29.988757 32.4205) (xy 29.98876 32.4205) (xy 30.211241 32.4205) (xy 30.211243 32.4205) + (xy 30.42994 32.379618) (xy 30.637401 32.299247) (xy 30.826562 32.182124) (xy 30.990981 32.032236) + (xy 31.125058 31.854689) (xy 31.224229 31.655528) (xy 31.285115 31.441536) (xy 31.305643 31.22) + (xy 31.285115 30.998464) (xy 31.224229 30.784472) (xy 31.192138 30.720025) (xy 31.125061 30.585316) + (xy 31.125056 30.585308) (xy 30.990979 30.407761) (xy 30.826562 30.257876) (xy 30.82656 30.257874) + (xy 30.637404 30.140754) (xy 30.637395 30.14075) (xy 30.543956 30.104552) (xy 30.443475 30.065625) + (xy 30.388075 30.023054) (xy 30.364484 29.957288) (xy 30.380195 29.889207) (xy 30.430219 29.840428) + (xy 30.443466 29.834377) (xy 30.637401 29.759247) (xy 30.826562 29.642124) (xy 30.990981 29.492236) + (xy 31.125058 29.314689) (xy 31.224229 29.115528) (xy 31.225353 29.111576) (xy 31.262624 29.052485) + (xy 31.32593 29.022921) (xy 31.395171 29.032276) (xy 31.448362 29.07758) (xy 31.464394 29.113409) + (xy 31.473256 29.146482) (xy 31.473261 29.146497) (xy 31.569431 29.352732) (xy 31.569432 29.352734) + (xy 31.699954 29.539141) (xy 31.860858 29.700045) (xy 31.860861 29.700047) (xy 32.047266 29.830568) + (xy 32.253504 29.926739) (xy 32.473308 29.985635) (xy 32.63523 29.999801) (xy 32.699998 30.005468) + (xy 32.7 30.005468) (xy 32.700002 30.005468) (xy 32.756673 30.000509) (xy 32.926692 29.985635) (xy 33.146496 29.926739) + (xy 33.352734 29.830568) (xy 33.539139 29.700047) (xy 33.700047 29.539139) (xy 33.830568 29.352734) + (xy 33.926739 29.146496) (xy 33.985635 28.926692) (xy 34.005468 28.7) (xy 34.001428 28.653828) (xy 33.998048 28.615185) + (xy 33.985635 28.473308) (xy 33.926739 28.253504) (xy 33.830568 28.047266) (xy 33.732839 27.907693) + (xy 33.700045 27.860858) (xy 33.539141 27.699954) (xy 33.352734 27.569432) (xy 33.352732 27.569431) + (xy 33.146497 27.473261) (xy 33.146488 27.473258) (xy 32.926697 27.414366) (xy 32.926693 27.414365) + (xy 32.926692 27.414365) (xy 32.926691 27.414364) (xy 32.926686 27.414364) (xy 32.700002 27.394532) + (xy 32.699998 27.394532) (xy 32.473313 27.414364) (xy 32.473302 27.414366) (xy 32.253511 27.473258) + (xy 32.253502 27.473261) (xy 32.047267 27.569431) (xy 32.047265 27.569432) (xy 31.860858 27.699954) + (xy 31.699954 27.860858) (xy 31.569432 28.047265) (xy 31.569431 28.047267) (xy 31.473261 28.253502) + (xy 31.473258 28.253512) (xy 31.469914 28.265992) (xy 31.433547 28.325651) (xy 31.370699 28.356179) + (xy 31.301324 28.347882) (xy 31.247447 28.303395) (xy 31.230875 28.267832) (xy 31.224229 28.244472) + (xy 31.126032 28.047267) (xy 31.125061 28.045316) (xy 31.125056 28.045308) (xy 30.990979 27.867761) + (xy 30.826562 27.717876) (xy 30.82656 27.717874) (xy 30.637404 27.600754) (xy 30.637398 27.600752) + (xy 30.42994 27.520382) (xy 30.211243 27.4795) (xy 30.204452 27.4795) (xy 30.137413 27.459815) (xy 30.091658 27.407011) + (xy 30.081714 27.337853) (xy 30.110739 27.274297) (xy 30.116771 27.267819) (xy 30.297771 27.086819) + (xy 30.359094 27.053334) (xy 30.385452 27.0505) (xy 34.205736 27.0505) (xy 34.272775 27.070185) + (xy 34.31853 27.122989) (xy 34.328474 27.192147) (xy 34.322152 27.215189) (xy 34.322622 27.215342) + (xy 34.321117 27.219971) (xy 34.321116 27.219975) (xy 34.303466 27.274297) (xy 34.26029 27.407173) + (xy 34.2295 27.601577) (xy 34.2295 27.798422) (xy 34.26029 27.992826) (xy 34.321117 28.180029) (xy 34.395316 28.325651) + (xy 34.410476 28.355405) (xy 34.526172 28.514646) (xy 34.665354 28.653828) (xy 34.824595 28.769524) + (xy 34.94592 28.831342) (xy 35.001213 28.859515) (xy 35.052009 28.907489) (xy 35.068804 28.97531) + (xy 35.046267 29.041445) (xy 35.001213 29.080485) (xy 34.824594 29.170476) (xy 34.733741 29.236485) + (xy 34.665354 29.286172) (xy 34.665352 29.286174) (xy 34.665351 29.286174) (xy 34.526174 29.425351) + (xy 34.526174 29.425352) (xy 34.526172 29.425354) (xy 34.477579 29.492236) (xy 34.410476 29.584594) + (xy 34.321117 29.75997) (xy 34.26029 29.947173) (xy 34.2295 30.141577) (xy 34.2295 30.338422) (xy 34.26029 30.532826) + (xy 34.321117 30.720029) (xy 34.371716 30.819334) (xy 34.410476 30.895405) (xy 34.526172 31.054646) + (xy 34.665354 31.193828) (xy 34.824595 31.309524) (xy 34.845833 31.320345) (xy 35.001213 31.399515) + (xy 35.052009 31.447489) (xy 35.068804 31.51531) (xy 35.046267 31.581445) (xy 35.001213 31.620485) + (xy 34.824594 31.710476) (xy 34.733741 31.776485) (xy 34.665354 31.826172) (xy 34.665352 31.826174) + (xy 34.665351 31.826174) (xy 34.526174 31.965351) (xy 34.526174 31.965352) (xy 34.526172 31.965354) + (xy 34.501072 31.999901) (xy 34.410476 32.124594) (xy 34.321117 32.29997) (xy 34.26029 32.487173) + (xy 34.2295 32.681577) (xy 34.2295 32.878422) (xy 34.26029 33.072826) (xy 34.321117 33.260029) (xy 34.382205 33.37992) + (xy 34.410476 33.435405) (xy 34.526172 33.594646) (xy 34.665354 33.733828) (xy 34.824595 33.849524) + (xy 34.947992 33.912397) (xy 35.001213 33.939515) (xy 35.052009 33.987489) (xy 35.068804 34.05531) + (xy 35.046267 34.121445) (xy 35.001213 34.160485) (xy 34.824594 34.250476) (xy 34.733741 34.316485) + (xy 34.665354 34.366172) (xy 34.665352 34.366174) (xy 34.665351 34.366174) (xy 34.526174 34.505351) + (xy 34.526174 34.505352) (xy 34.526172 34.505354) (xy 34.476485 34.573741) (xy 34.410476 34.664594) + (xy 34.321117 34.83997) (xy 34.26029 35.027173) (xy 34.2295 35.221577) (xy 34.2295 35.418422) (xy 34.26029 35.612826) + (xy 34.321117 35.800029) (xy 34.399321 35.953512) (xy 34.410476 35.975405) (xy 34.526172 36.134646) + (xy 34.665354 36.273828) (xy 34.824595 36.389524) (xy 34.947992 36.452397) (xy 35.001213 36.479515) + (xy 35.052009 36.527489) (xy 35.068804 36.59531) (xy 35.046267 36.661445) (xy 35.001213 36.700485) + (xy 34.824594 36.790476) (xy 34.746517 36.847203) (xy 34.665354 36.906172) (xy 34.665352 36.906174) + (xy 34.665351 36.906174) (xy 34.526174 37.045351) (xy 34.526174 37.045352) (xy 34.526172 37.045354) + (xy 34.476485 37.113741) (xy 34.410476 37.204594) (xy 34.321117 37.37997) (xy 34.26029 37.567173) + (xy 34.2295 37.761577) (xy 34.2295 37.958422) (xy 34.26029 38.152826) (xy 34.321117 38.340029) (xy 34.394709 38.484461) + (xy 34.410476 38.515405) (xy 34.526172 38.674646) (xy 34.665354 38.813828) (xy 34.824595 38.929524) + (xy 34.947992 38.992397) (xy 35.001213 39.019515) (xy 35.052009 39.067489) (xy 35.068804 39.13531) + (xy 35.046267 39.201445) (xy 35.001213 39.240485) (xy 34.824594 39.330476) (xy 34.7901 39.355538) + (xy 34.665354 39.446172) (xy 34.665352 39.446174) (xy 34.665351 39.446174) (xy 34.526174 39.585351) + (xy 34.526174 39.585352) (xy 34.526172 39.585354) (xy 34.492538 39.631647) (xy 34.410476 39.744594) + (xy 34.321117 39.91997) (xy 34.26029 40.107173) (xy 34.2295 40.301577) (xy 34.2295 40.498422) (xy 34.26029 40.692826) + (xy 34.321117 40.880029) (xy 34.391782 41.018716) (xy 34.410476 41.055405) (xy 34.526172 41.214646) + (xy 34.665354 41.353828) (xy 34.824595 41.469524) (xy 34.881301 41.498417) (xy 34.99997 41.558882) + (xy 34.999972 41.558882) (xy 34.999975 41.558884) (xy 35.100317 41.591487) (xy 35.187173 41.619709) + (xy 35.381578 41.6505) (xy 35.381583 41.6505) (xy 36.578422 41.6505) (xy 36.772826 41.619709) (xy 36.960025 41.558884) + (xy 37.135405 41.469524) (xy 37.294646 41.353828) (xy 37.433828 41.214646) (xy 37.545182 41.06138) + (xy 37.600512 41.018716) (xy 37.670126 41.012737) (xy 37.731921 41.045343) (xy 37.766278 41.106182) + (xy 37.7695 41.134267) (xy 37.7695 41.498422) (xy 37.80029 41.692826) (xy 37.861117 41.880029) (xy 37.948985 42.052478) + (xy 37.950476 42.055405) (xy 38.066172 42.214646) (xy 38.205354 42.353828) (xy 38.364595 42.469524) + (xy 38.447455 42.511743) (xy 38.53997 42.558882) (xy 38.539972 42.558882) (xy 38.539975 42.558884) + (xy 38.640317 42.591487) (xy 38.727173 42.619709) (xy 38.921578 42.6505) (xy 38.921583 42.6505) + (xy 39.118422 42.6505) (xy 39.312826 42.619709) (xy 39.500025 42.558884) (xy 39.675405 42.469524) + (xy 39.834646 42.353828) (xy 39.973828 42.214646) (xy 40.089524 42.055405) (xy 40.178884 41.880025) + (xy 40.179515 41.878787) (xy 40.227489 41.82799) (xy 40.29531 41.811195) (xy 40.361445 41.833732) + (xy 40.400485 41.878787) (xy 40.490474 42.055403) (xy 40.525234 42.103246) (xy 40.606172 42.214646) + (xy 40.745354 42.353828) (xy 40.904595 42.469524) (xy 40.987455 42.511743) (xy 41.07997 42.558882) + (xy 41.079972 42.558882) (xy 41.079975 42.558884) (xy 41.180317 42.591487) (xy 41.267173 42.619709) + (xy 41.461578 42.6505) (xy 41.461583 42.6505) (xy 41.658422 42.6505) (xy 41.852826 42.619709) (xy 42.040025 42.558884) + (xy 42.215405 42.469524) (xy 42.374646 42.353828) (xy 42.513828 42.214646) (xy 42.629524 42.055405) + (xy 42.718884 41.880025) (xy 42.719515 41.878787) (xy 42.767489 41.82799) (xy 42.83531 41.811195) + (xy 42.901445 41.833732) (xy 42.940485 41.878787) (xy 43.030474 42.055403) (xy 43.065234 42.103246) + (xy 43.146172 42.214646) (xy 43.285354 42.353828) (xy 43.444595 42.469524) (xy 43.527455 42.511743) + (xy 43.61997 42.558882) (xy 43.619972 42.558882) (xy 43.619975 42.558884) (xy 43.720317 42.591487) + (xy 43.807173 42.619709) (xy 44.001578 42.6505) (xy 44.001583 42.6505) (xy 44.198422 42.6505) (xy 44.392826 42.619709) + (xy 44.580025 42.558884) (xy 44.755405 42.469524) (xy 44.914646 42.353828) (xy 45.053828 42.214646) + (xy 45.169524 42.055405) (xy 45.258884 41.880025) (xy 45.259515 41.878787) (xy 45.307489 41.82799) + (xy 45.37531 41.811195) (xy 45.441445 41.833732) (xy 45.480485 41.878787) (xy 45.570474 42.055403) + (xy 45.605234 42.103246) (xy 45.686172 42.214646) (xy 45.825354 42.353828) (xy 45.984595 42.469524) + (xy 46.067455 42.511743) (xy 46.15997 42.558882) (xy 46.159972 42.558882) (xy 46.159975 42.558884) + (xy 46.260317 42.591487) (xy 46.347173 42.619709) (xy 46.541578 42.6505) (xy 46.541583 42.6505) + (xy 46.738422 42.6505) (xy 46.932826 42.619709) (xy 47.120025 42.558884) (xy 47.295405 42.469524) + (xy 47.454646 42.353828) (xy 47.593828 42.214646) (xy 47.709524 42.055405) (xy 47.798884 41.880025) + (xy 47.799515 41.878787) (xy 47.847489 41.82799) (xy 47.91531 41.811195) (xy 47.981445 41.833732) + (xy 48.020485 41.878787) (xy 48.110474 42.055403) (xy 48.145234 42.103246) (xy 48.226172 42.214646) + (xy 48.365354 42.353828) (xy 48.524595 42.469524) (xy 48.607455 42.511743) (xy 48.69997 42.558882) + (xy 48.699972 42.558882) (xy 48.699975 42.558884) (xy 48.800317 42.591487) (xy 48.887173 42.619709) + (xy 49.081578 42.6505) (xy 49.081583 42.6505) (xy 49.278422 42.6505) (xy 49.472826 42.619709) (xy 49.660025 42.558884) + (xy 49.835405 42.469524) (xy 49.994646 42.353828) (xy 50.133828 42.214646) (xy 50.249524 42.055405) + (xy 50.338884 41.880025) (xy 50.399709 41.692826) (xy 50.407188 41.645606) (xy 50.4305 41.498422) + (xy 50.4305 41.134267) (xy 50.450185 41.067228) (xy 50.502989 41.021473) (xy 50.572147 41.011529) + (xy 50.635703 41.040554) (xy 50.654817 41.06138) (xy 50.766172 41.214646) (xy 50.905354 41.353828) + (xy 51.064595 41.469524) (xy 51.121301 41.498417) (xy 51.23997 41.558882) (xy 51.239972 41.558882) + (xy 51.239975 41.558884) (xy 51.340317 41.591487) (xy 51.427173 41.619709) (xy 51.621578 41.6505) + (xy 51.621583 41.6505) (xy 52.818422 41.6505) (xy 53.012826 41.619709) (xy 53.200025 41.558884) + (xy 53.375405 41.469524) (xy 53.534646 41.353828) (xy 53.673828 41.214646) (xy 53.789524 41.055405) + (xy 53.878884 40.880025) (xy 53.939709 40.692826) (xy 53.970234 40.500099) (xy 53.9705 40.498422) + (xy 53.9705 40.301577) (xy 53.939709 40.107173) (xy 53.904641 39.999247) (xy 53.878884 39.919975) + (xy 53.878882 39.919972) (xy 53.878882 39.91997) (xy 53.789523 39.744594) (xy 53.780546 39.732238) + (xy 53.673828 39.585354) (xy 53.534646 39.446172) (xy 53.409879 39.355523) (xy 53.375403 39.330474) + (xy 53.198787 39.240485) (xy 53.14799 39.192511) (xy 53.131195 39.12469) (xy 53.153732 39.058555) + (xy 53.198787 39.019515) (xy 53.375403 38.929525) (xy 53.375402 38.929525) (xy 53.375405 38.929524) + (xy 53.534646 38.813828) (xy 53.673828 38.674646) (xy 53.789524 38.515405) (xy 53.878884 38.340025) + (xy 53.939709 38.152826) (xy 53.946847 38.107761) (xy 53.9705 37.958422) (xy 53.9705 37.761577) + (xy 53.939709 37.567173) (xy 53.904641 37.459247) (xy 53.878884 37.379975) (xy 53.878882 37.379972) + (xy 53.878882 37.37997) (xy 53.789523 37.204594) (xy 53.780546 37.192238) (xy 53.673828 37.045354) + (xy 53.534646 36.906172) (xy 53.452511 36.846497) (xy 53.375403 36.790474) (xy 53.198787 36.700485) + (xy 53.14799 36.652511) (xy 53.131195 36.58469) (xy 53.153732 36.518555) (xy 53.198787 36.479515) + (xy 53.375403 36.389525) (xy 53.375402 36.389525) (xy 53.375405 36.389524) (xy 53.534646 36.273828) + (xy 53.673828 36.134646) (xy 53.789524 35.975405) (xy 53.878884 35.800025) (xy 53.939709 35.612826) + (xy 53.946847 35.567761) (xy 53.9705 35.418422) (xy 53.9705 35.221577) (xy 53.939709 35.027173) + (xy 53.878882 34.83997) (xy 53.789523 34.664594) (xy 53.673828 34.505354) (xy 53.534646 34.366172) + (xy 53.455025 34.308324) (xy 53.375403 34.250474) (xy 53.198787 34.160485) (xy 53.14799 34.112511) + (xy 53.131195 34.04469) (xy 53.153732 33.978555) (xy 53.198787 33.939515) (xy 53.375403 33.849525) + (xy 53.375402 33.849525) (xy 53.375405 33.849524) (xy 53.534646 33.733828) (xy 53.673828 33.594646) + (xy 53.789524 33.435405) (xy 53.878884 33.260025) (xy 53.939709 33.072826) (xy 53.955278 32.974526) + (xy 53.9705 32.878422) (xy 53.9705 32.681577) (xy 53.939709 32.487173) (xy 53.878882 32.29997) (xy 53.789523 32.124594) + (xy 53.673828 31.965354) (xy 53.534646 31.826172) (xy 53.455025 31.768324) (xy 53.375403 31.710474) + (xy 53.198787 31.620485) (xy 53.14799 31.572511) (xy 53.131195 31.50469) (xy 53.153732 31.438555) + (xy 53.198787 31.399515) (xy 53.375403 31.309525) (xy 53.375402 31.309525) (xy 53.375405 31.309524) + (xy 53.534646 31.193828) (xy 53.673828 31.054646) (xy 53.789524 30.895405) (xy 53.878884 30.720025) + (xy 53.939709 30.532826) (xy 53.959517 30.407764) (xy 53.9705 30.338422) (xy 53.9705 30.141577) + (xy 53.939709 29.947173) (xy 53.904762 29.839618) (xy 53.878884 29.759975) (xy 53.878882 29.759972) + (xy 53.878882 29.75997) (xy 53.789523 29.584594) (xy 53.673828 29.425354) (xy 53.534646 29.286172) + (xy 53.455025 29.228324) (xy 53.375403 29.170474) (xy 53.198787 29.080485) (xy 53.14799 29.032511) + (xy 53.131195 28.96469) (xy 53.153732 28.898555) (xy 53.198787 28.859515) (xy 53.375403 28.769525) + (xy 53.375402 28.769525) (xy 53.375405 28.769524) (xy 53.534646 28.653828) (xy 53.673828 28.514646) + (xy 53.789524 28.355405) (xy 53.878884 28.180025) (xy 53.939709 27.992826) (xy 53.959517 27.867764) + (xy 53.9705 27.798422) (xy 53.9705 27.601577) (xy 53.939709 27.407173) (xy 53.896534 27.274297) + (xy 53.878884 27.219975) (xy 53.878882 27.219972) (xy 53.878882 27.21997) (xy 53.811038 27.086819) + (xy 53.789524 27.044595) (xy 53.673828 26.885354) (xy 53.534646 26.746172) (xy 53.455025 26.688324) + (xy 53.375403 26.630474) (xy 53.198787 26.540485) (xy 53.14799 26.492511) (xy 53.131195 26.42469) + (xy 53.153732 26.358555) (xy 53.198787 26.319515) (xy 53.375403 26.229525) (xy 53.375402 26.229525) + (xy 53.375405 26.229524) (xy 53.534646 26.113828) (xy 53.673828 25.974646) (xy 53.789524 25.815405) + (xy 53.878884 25.640025) (xy 53.939709 25.452826) (xy 53.9705 25.258422) (xy 53.9705 25.061577) + (xy 53.939709 24.867173) (xy 53.878882 24.67997) (xy 53.825155 24.574526) (xy 53.789524 24.504595) + (xy 53.673828 24.345354) (xy 53.534646 24.206172) (xy 53.455025 24.148324) (xy 53.375403 24.090474) + (xy 53.198787 24.000485) (xy 53.14799 23.952511) (xy 53.131195 23.88469) (xy 53.153732 23.818555) + (xy 53.198787 23.779515) (xy 53.375403 23.689525) (xy 53.375402 23.689525) (xy 53.375405 23.689524) + (xy 53.534646 23.573828) (xy 53.673828 23.434646) (xy 53.789524 23.275405) (xy 53.878884 23.100025) + (xy 53.939709 22.912826) (xy 53.949556 22.850653) (xy 53.9705 22.718422) (xy 53.9705 22.521577) + (xy 53.939709 22.327173) (xy 53.893616 22.185316) (xy 53.878884 22.139975) (xy 53.878882 22.139972) + (xy 53.878882 22.13997) (xy 53.831743 22.047455) (xy 53.789524 21.964595) (xy 53.673828 21.805354) + (xy 53.534646 21.666172) (xy 53.423794 21.585633) (xy 53.375403 21.550474) (xy 53.198787 21.460485) + (xy 53.14799 21.412511) (xy 53.131195 21.34469) (xy 53.153732 21.278555) (xy 53.198787 21.239515) + (xy 53.375403 21.149525) (xy 53.375402 21.149525) (xy 53.375405 21.149524) (xy 53.534646 21.033828) + (xy 53.673828 20.894646) (xy 53.789524 20.735405) (xy 53.878884 20.560025) (xy 53.939709 20.372826) + (xy 53.9705 20.178422) (xy 53.9705 19.981577) (xy 53.939709 19.787173) (xy 53.89425 19.647266) (xy 53.878884 19.599975) + (xy 53.878882 19.599972) (xy 53.878882 19.59997) (xy 53.831743 19.507455) (xy 53.789524 19.424595) + (xy 53.673828 19.265354) (xy 53.534646 19.126172) (xy 53.375405 19.010476) (xy 53.344113 18.994532) + (xy 53.200029 18.921117) (xy 53.012826 18.86029) (xy 52.818422 18.8295) (xy 52.818417 18.8295) (xy 51.621583 18.8295) + (xy 51.621578 18.8295) (xy 51.427173 18.86029) (xy 51.23997 18.921117) (xy 51.064594 19.010476) + (xy 50.978183 19.073258) (xy 50.905354 19.126172) (xy 50.905352 19.126174) (xy 50.905351 19.126174) + (xy 50.766174 19.265351) (xy 50.766174 19.265352) (xy 50.766172 19.265354) (xy 50.728014 19.317874) + (xy 50.650476 19.424594) (xy 50.561117 19.59997) (xy 50.50029 19.787173) (xy 50.4695 19.981577) + (xy 50.4695 20.178422) (xy 50.50029 20.372826) (xy 50.561117 20.560029) (xy 50.640346 20.715523) + (xy 50.650476 20.735405) (xy 50.766172 20.894646) (xy 50.905354 21.033828) (xy 51.064595 21.149524) + (xy 51.187992 21.212397) (xy 51.241213 21.239515) (xy 51.292009 21.287489) (xy 51.308804 21.35531) + (xy 51.286267 21.421445) (xy 51.241213 21.460485) (xy 51.064594 21.550476) (xy 51.016203 21.585635) + (xy 50.905354 21.666172) (xy 50.905352 21.666174) (xy 50.905351 21.666174) (xy 50.766174 21.805351) + (xy 50.766174 21.805352) (xy 50.766172 21.805354) (xy 50.765937 21.805678) (xy 50.650476 21.964594) + (xy 50.561117 22.13997) (xy 50.50029 22.327173) (xy 50.4695 22.521577) (xy 50.4695 22.718422) (xy 50.50029 22.912826) + (xy 50.561117 23.100029) (xy 50.640346 23.255523) (xy 50.650476 23.275405) (xy 50.766172 23.434646) + (xy 50.905354 23.573828) (xy 51.064595 23.689524) (xy 51.183287 23.75) (xy 51.241213 23.779515) + (xy 51.292009 23.827489) (xy 51.308804 23.89531) (xy 51.286267 23.961445) (xy 51.241213 24.000485) + (xy 51.064594 24.090476) (xy 50.973741 24.156485) (xy 50.905354 24.206172) (xy 50.905352 24.206174) + (xy 50.905351 24.206174) (xy 50.766174 24.345351) (xy 50.766174 24.345352) (xy 50.766172 24.345354) + (xy 50.726397 24.400099) (xy 50.650476 24.504594) (xy 50.561117 24.67997) (xy 50.50029 24.867173) + (xy 50.4695 25.061577) (xy 50.4695 25.258422) (xy 50.50029 25.452826) (xy 50.561117 25.640029) (xy 50.627911 25.771119) + (xy 50.650476 25.815405) (xy 50.766172 25.974646) (xy 50.905354 26.113828) (xy 51.064595 26.229524) + (xy 51.187992 26.292397) (xy 51.241213 26.319515) (xy 51.292009 26.367489) (xy 51.308804 26.43531) + (xy 51.286267 26.501445) (xy 51.241213 26.540485) (xy 51.064594 26.630476) (xy 50.973741 26.696485) + (xy 50.905354 26.746172) (xy 50.905352 26.746174) (xy 50.905351 26.746174) (xy 50.766174 26.885351) + (xy 50.766174 26.885352) (xy 50.766172 26.885354) (xy 50.727095 26.939139) (xy 50.650476 27.044594) + (xy 50.561117 27.21997) (xy 50.50029 27.407173) (xy 50.4695 27.601577) (xy 50.4695 27.798422) (xy 50.50029 27.992826) + (xy 50.561117 28.180029) (xy 50.635316 28.325651) (xy 50.650476 28.355405) (xy 50.766172 28.514646) + (xy 50.905354 28.653828) (xy 51.064595 28.769524) (xy 51.18592 28.831342) (xy 51.241213 28.859515) + (xy 51.292009 28.907489) (xy 51.308804 28.97531) (xy 51.286267 29.041445) (xy 51.241213 29.080485) + (xy 51.064594 29.170476) (xy 50.973741 29.236485) (xy 50.905354 29.286172) (xy 50.905352 29.286174) + (xy 50.905351 29.286174) (xy 50.766174 29.425351) (xy 50.766174 29.425352) (xy 50.766172 29.425354) + (xy 50.717579 29.492236) (xy 50.650476 29.584594) (xy 50.561117 29.75997) (xy 50.50029 29.947173) + (xy 50.4695 30.141577) (xy 50.4695 30.338422) (xy 50.50029 30.532826) (xy 50.561117 30.720029) (xy 50.611716 30.819334) + (xy 50.650476 30.895405) (xy 50.766172 31.054646) (xy 50.905354 31.193828) (xy 51.064595 31.309524) + (xy 51.085833 31.320345) (xy 51.241213 31.399515) (xy 51.292009 31.447489) (xy 51.308804 31.51531) + (xy 51.286267 31.581445) (xy 51.241213 31.620485) (xy 51.064594 31.710476) (xy 50.973741 31.776485) + (xy 50.905354 31.826172) (xy 50.905352 31.826174) (xy 50.905351 31.826174) (xy 50.766174 31.965351) + (xy 50.766174 31.965352) (xy 50.766172 31.965354) (xy 50.741072 31.999901) (xy 50.650476 32.124594) + (xy 50.561117 32.29997) (xy 50.50029 32.487173) (xy 50.4695 32.681577) (xy 50.4695 32.878422) (xy 50.50029 33.072826) + (xy 50.561117 33.260029) (xy 50.622205 33.37992) (xy 50.650476 33.435405) (xy 50.766172 33.594646) + (xy 50.905354 33.733828) (xy 51.064595 33.849524) (xy 51.187992 33.912397) (xy 51.241213 33.939515) + (xy 51.292009 33.987489) (xy 51.308804 34.05531) (xy 51.286267 34.121445) (xy 51.241213 34.160485) + (xy 51.064594 34.250476) (xy 50.973741 34.316485) (xy 50.905354 34.366172) (xy 50.905352 34.366174) + (xy 50.905351 34.366174) (xy 50.766174 34.505351) (xy 50.766174 34.505352) (xy 50.766172 34.505354) + (xy 50.716485 34.573741) (xy 50.650476 34.664594) (xy 50.561117 34.83997) (xy 50.50029 35.027173) + (xy 50.4695 35.221577) (xy 50.4695 35.418422) (xy 50.50029 35.612826) (xy 50.561117 35.800029) (xy 50.639321 35.953512) + (xy 50.650476 35.975405) (xy 50.766172 36.134646) (xy 50.905354 36.273828) (xy 51.064595 36.389524) + (xy 51.187992 36.452397) (xy 51.241213 36.479515) (xy 51.292009 36.527489) (xy 51.308804 36.59531) + (xy 51.286267 36.661445) (xy 51.241213 36.700485) (xy 51.064594 36.790476) (xy 50.986517 36.847203) + (xy 50.905354 36.906172) (xy 50.905352 36.906174) (xy 50.905351 36.906174) (xy 50.766174 37.045351) + (xy 50.766174 37.045352) (xy 50.766172 37.045354) (xy 50.716485 37.113741) (xy 50.650476 37.204594) + (xy 50.561117 37.37997) (xy 50.50029 37.567173) (xy 50.4695 37.761577) (xy 50.4695 37.958422) (xy 50.50029 38.152826) + (xy 50.561117 38.340029) (xy 50.634709 38.484461) (xy 50.650476 38.515405) (xy 50.766172 38.674646) + (xy 50.905354 38.813828) (xy 51.064595 38.929524) (xy 51.187992 38.992397) (xy 51.241213 39.019515) + (xy 51.292009 39.067489) (xy 51.308804 39.13531) (xy 51.286267 39.201445) (xy 51.241213 39.240485) + (xy 51.064594 39.330476) (xy 51.0301 39.355538) (xy 50.905354 39.446172) (xy 50.905352 39.446174) + (xy 50.905351 39.446174) (xy 50.766174 39.585351) (xy 50.766174 39.585352) (xy 50.766172 39.585354) + (xy 50.732538 39.631647) (xy 50.650476 39.744594) (xy 50.560485 39.921213) (xy 50.512511 39.972009) + (xy 50.44469 39.988804) (xy 50.378555 39.966267) (xy 50.339515 39.921213) (xy 50.249523 39.744594) + (xy 50.240546 39.732238) (xy 50.133828 39.585354) (xy 50.133819 39.585345) (xy 50.130664 39.58165) + (xy 50.132213 39.580326) (xy 50.102834 39.526522) (xy 50.1 39.500164) (xy 50.1 18.624) (xy 50.119685 18.556961) + (xy 50.172489 18.511206) (xy 50.224 18.5) (xy 54.776 18.5) (xy 54.843039 18.519685) (xy 54.888794 18.572489) + (xy 54.9 18.624) (xy 54.9 51.476) (xy 54.880315 51.543039) (xy 54.827511 51.588794) (xy 54.776 51.6) + (xy 22.124 51.6) (xy 22.056961 51.580315) (xy 22.011206 51.527511) (xy 22 51.476) (xy 22 45.349983) + (xy 24.4995 45.349983) (xy 24.4995 46.650001) (xy 24.499501 46.650018) (xy 24.51 46.752796) (xy 24.510001 46.752799) + (xy 24.55363 46.884461) (xy 24.565186 46.919334) (xy 24.650327 47.057371) (xy 24.657289 47.068657) + (xy 24.781344 47.192712) (xy 24.936558 47.288448) (xy 24.983283 47.340396) (xy 24.994506 47.409358) + (xy 24.966663 47.473441) (xy 24.959144 47.481668) (xy 24.820271 47.620541) (xy 24.695379 47.792442) + (xy 24.598904 47.981782) (xy 24.533242 48.18387) (xy 24.533242 48.183873) (xy 24.522769 48.25) (xy 25.566988 48.25) + (xy 25.534075 48.307007) (xy 25.5 48.434174) (xy 25.5 48.565826) (xy 25.534075 48.692993) (xy 25.566988 48.75) + (xy 24.522769 48.75) (xy 24.533242 48.816126) (xy 24.533242 48.816129) (xy 24.598904 49.018217) + (xy 24.695379 49.207557) (xy 24.820272 49.379459) (xy 24.820276 49.379464) (xy 24.970535 49.529723) + (xy 24.97054 49.529727) (xy 25.142442 49.65462) (xy 25.331782 49.751095) (xy 25.53387 49.816757) + (xy 25.743754 49.85) (xy 25.75 49.85) (xy 25.75 48.933012) (xy 25.807007 48.965925) (xy 25.934174 49) + (xy 26.065826 49) (xy 26.192993 48.965925) (xy 26.25 48.933012) (xy 26.25 49.85) (xy 26.256246 49.85) + (xy 26.466127 49.816757) (xy 26.46613 49.816757) (xy 26.517712 49.799997) (xy 31.395034 49.799997) + (xy 31.395034 49.800002) (xy 31.414858 50.026599) (xy 31.41486 50.02661) (xy 31.47373 50.246317) + (xy 31.473735 50.246331) (xy 31.569863 50.452478) (xy 31.620974 50.525472) (xy 32.3 49.846446) (xy 32.3 49.852661) + (xy 32.327259 49.954394) (xy 32.37992 50.045606) (xy 32.454394 50.12008) (xy 32.545606 50.172741) + (xy 32.647339 50.2) (xy 32.653553 50.2) (xy 31.974526 50.879025) (xy 32.047513 50.930132) (xy 32.047521 50.930136) + (xy 32.253668 51.026264) (xy 32.253682 51.026269) (xy 32.473389 51.085139) (xy 32.4734 51.085141) + (xy 32.699998 51.104966) (xy 32.700002 51.104966) (xy 32.926599 51.085141) (xy 32.92661 51.085139) + (xy 33.146317 51.026269) (xy 33.146331 51.026264) (xy 33.352478 50.930136) (xy 33.425471 50.879024) + (xy 32.746447 50.2) (xy 32.752661 50.2) (xy 32.854394 50.172741) (xy 32.945606 50.12008) (xy 33.02008 50.045606) + (xy 33.072741 49.954394) (xy 33.1 49.852661) (xy 33.1 49.846447) (xy 33.779024 50.525471) (xy 33.830136 50.452478) + (xy 33.926264 50.246331) (xy 33.926269 50.246317) (xy 33.985139 50.02661) (xy 33.985141 50.026599) + (xy 34.004966 49.800002) (xy 34.004966 49.799997) (xy 33.985141 49.5734) (xy 33.985139 49.573389) + (xy 33.926269 49.353682) (xy 33.926264 49.353668) (xy 33.830136 49.147521) (xy 33.830132 49.147513) + (xy 33.779025 49.074526) (xy 33.1 49.753551) (xy 33.1 49.747339) (xy 33.072741 49.645606) (xy 33.02008 49.554394) + (xy 32.945606 49.47992) (xy 32.854394 49.427259) (xy 32.752661 49.4) (xy 32.746448 49.4) (xy 33.425472 48.720974) + (xy 33.352478 48.669863) (xy 33.146331 48.573735) (xy 33.146317 48.57373) (xy 32.92661 48.51486) + (xy 32.926599 48.514858) (xy 32.700002 48.495034) (xy 32.699998 48.495034) (xy 32.4734 48.514858) + (xy 32.473389 48.51486) (xy 32.253682 48.57373) (xy 32.253673 48.573734) (xy 32.047516 48.669866) + (xy 32.047512 48.669868) (xy 31.974526 48.720973) (xy 31.974526 48.720974) (xy 32.653553 49.4) (xy 32.647339 49.4) + (xy 32.545606 49.427259) (xy 32.454394 49.47992) (xy 32.37992 49.554394) (xy 32.327259 49.645606) + (xy 32.3 49.747339) (xy 32.3 49.753552) (xy 31.620974 49.074526) (xy 31.620973 49.074526) (xy 31.569868 49.147512) + (xy 31.569866 49.147516) (xy 31.473734 49.353673) (xy 31.47373 49.353682) (xy 31.41486 49.573389) + (xy 31.414858 49.5734) (xy 31.395034 49.799997) (xy 26.517712 49.799997) (xy 26.668217 49.751095) + (xy 26.857557 49.65462) (xy 27.029459 49.529727) (xy 27.029464 49.529723) (xy 27.179723 49.379464) + (xy 27.179727 49.379459) (xy 27.30462 49.207557) (xy 27.401095 49.018217) (xy 27.466757 48.816129) + (xy 27.466757 48.816126) (xy 27.477231 48.75) (xy 26.433012 48.75) (xy 26.465925 48.692993) (xy 26.5 48.565826) + (xy 26.5 48.434174) (xy 26.465925 48.307007) (xy 26.433012 48.25) (xy 27.477231 48.25) (xy 27.466757 48.183873) + (xy 27.466757 48.18387) (xy 27.401095 47.981782) (xy 27.30462 47.792442) (xy 27.179727 47.62054) + (xy 27.179723 47.620535) (xy 27.040856 47.481668) (xy 27.007371 47.420345) (xy 27.012355 47.350653) + (xy 27.054227 47.29472) (xy 27.063441 47.288448) (xy 27.069331 47.284814) (xy 27.069334 47.284814) + (xy 27.218656 47.192712) (xy 27.342712 47.068656) (xy 27.434814 46.919334) (xy 27.489999 46.752797) + (xy 27.5005 46.650009) (xy 27.500499 45.349992) (xy 27.489999 45.247203) (xy 27.434814 45.080666) + (xy 27.342712 44.931344) (xy 27.218656 44.807288) (xy 27.069334 44.715186) (xy 26.902797 44.660001) + (xy 26.902795 44.66) (xy 26.80001 44.6495) (xy 25.199998 44.6495) (xy 25.199981 44.649501) (xy 25.097203 44.66) + (xy 25.0972 44.660001) (xy 24.930668 44.715185) (xy 24.930663 44.715187) (xy 24.781342 44.807289) + (xy 24.657289 44.931342) (xy 24.565187 45.080663) (xy 24.565186 45.080666) (xy 24.510001 45.247203) + (xy 24.510001 45.247204) (xy 24.51 45.247204) (xy 24.4995 45.349983) (xy 22 45.349983) (xy 22 36.949983) + (xy 24.4995 36.949983) (xy 24.4995 38.250001) (xy 24.499501 38.250018) (xy 24.51 38.352796) (xy 24.510001 38.352799) + (xy 24.565185 38.519331) (xy 24.565187 38.519336) (xy 24.657289 38.668657) (xy 24.781344 38.792712) + (xy 24.936558 38.888448) (xy 24.983283 38.940396) (xy 24.994506 39.009358) (xy 24.966663 39.073441) + (xy 24.959144 39.081668) (xy 24.820271 39.220541) (xy 24.695379 39.392442) (xy 24.598904 39.581782) + (xy 24.533242 39.78387) (xy 24.533242 39.783873) (xy 24.522769 39.85) (xy 25.566988 39.85) (xy 25.534075 39.907007) + (xy 25.5 40.034174) (xy 25.5 40.165826) (xy 25.534075 40.292993) (xy 25.566988 40.35) (xy 24.522769 40.35) + (xy 24.533242 40.416126) (xy 24.533242 40.416129) (xy 24.598904 40.618217) (xy 24.695379 40.807557) + (xy 24.820272 40.979459) (xy 24.820276 40.979464) (xy 24.970535 41.129723) (xy 24.97054 41.129727) + (xy 25.142442 41.25462) (xy 25.331782 41.351095) (xy 25.53387 41.416757) (xy 25.743754 41.45) (xy 25.75 41.45) + (xy 25.75 40.533012) (xy 25.807007 40.565925) (xy 25.934174 40.6) (xy 26.065826 40.6) (xy 26.192993 40.565925) + (xy 26.25 40.533012) (xy 26.25 41.45) (xy 26.256246 41.45) (xy 26.466127 41.416757) (xy 26.46613 41.416757) + (xy 26.668217 41.351095) (xy 26.857557 41.25462) (xy 27.029459 41.129727) (xy 27.029464 41.129723) + (xy 27.179723 40.979464) (xy 27.179727 40.979459) (xy 27.30462 40.807557) (xy 27.401095 40.618217) + (xy 27.466757 40.416129) (xy 27.466757 40.416126) (xy 27.477231 40.35) (xy 26.433012 40.35) (xy 26.465925 40.292993) + (xy 26.5 40.165826) (xy 26.5 40.034174) (xy 26.465925 39.907007) (xy 26.433012 39.85) (xy 27.477231 39.85) + (xy 27.466757 39.783873) (xy 27.466757 39.78387) (xy 27.401095 39.581782) (xy 27.30462 39.392442) + (xy 27.179727 39.22054) (xy 27.179723 39.220535) (xy 27.040856 39.081668) (xy 27.007371 39.020345) + (xy 27.012355 38.950653) (xy 27.054227 38.89472) (xy 27.063441 38.888448) (xy 27.069331 38.884814) + (xy 27.069334 38.884814) (xy 27.218656 38.792712) (xy 27.342712 38.668656) (xy 27.434814 38.519334) + (xy 27.489999 38.352797) (xy 27.5005 38.250009) (xy 27.500499 36.949992) (xy 27.489999 36.847203) + (xy 27.434814 36.680666) (xy 27.342712 36.531344) (xy 27.218656 36.407288) (xy 27.069334 36.315186) + (xy 26.902797 36.260001) (xy 26.902795 36.26) (xy 26.80001 36.2495) (xy 25.199998 36.2495) (xy 25.199981 36.249501) + (xy 25.097203 36.26) (xy 25.0972 36.260001) (xy 24.930668 36.315185) (xy 24.930663 36.315187) (xy 24.781342 36.407289) + (xy 24.657289 36.531342) (xy 24.565187 36.680663) (xy 24.565185 36.680668) (xy 24.551184 36.722921) + (xy 24.510001 36.847203) (xy 24.510001 36.847204) (xy 24.51 36.847204) (xy 24.4995 36.949983) (xy 22 36.949983) + (xy 22 29.249983) (xy 24.4995 29.249983) (xy 24.4995 30.550001) (xy 24.499501 30.550018) (xy 24.51 30.652796) + (xy 24.510001 30.652799) (xy 24.565185 30.819331) (xy 24.565187 30.819336) (xy 24.657289 30.968657) + (xy 24.781344 31.092712) (xy 24.936558 31.188448) (xy 24.983283 31.240396) (xy 24.994506 31.309358) + (xy 24.966663 31.373441) (xy 24.959144 31.381668) (xy 24.820271 31.520541) (xy 24.695379 31.692442) + (xy 24.598904 31.881782) (xy 24.533242 32.08387) (xy 24.533242 32.083873) (xy 24.522769 32.15) (xy 25.566988 32.15) + (xy 25.534075 32.207007) (xy 25.5 32.334174) (xy 25.5 32.465826) (xy 25.534075 32.592993) (xy 25.566988 32.65) + (xy 24.522769 32.65) (xy 24.533242 32.716126) (xy 24.533242 32.716129) (xy 24.598904 32.918217) + (xy 24.695379 33.107557) (xy 24.820272 33.279459) (xy 24.820276 33.279464) (xy 24.970535 33.429723) + (xy 24.97054 33.429727) (xy 25.142442 33.55462) (xy 25.331782 33.651095) (xy 25.53387 33.716757) + (xy 25.743754 33.75) (xy 25.75 33.75) (xy 25.75 32.833012) (xy 25.807007 32.865925) (xy 25.934174 32.9) + (xy 26.065826 32.9) (xy 26.192993 32.865925) (xy 26.25 32.833012) (xy 26.25 33.75) (xy 26.256246 33.75) + (xy 26.466127 33.716757) (xy 26.46613 33.716757) (xy 26.668217 33.651095) (xy 26.857557 33.55462) + (xy 27.029459 33.429727) (xy 27.029464 33.429723) (xy 27.179723 33.279464) (xy 27.179727 33.279459) + (xy 27.30462 33.107557) (xy 27.401095 32.918217) (xy 27.466757 32.716129) (xy 27.466757 32.716126) + (xy 27.477231 32.65) (xy 26.433012 32.65) (xy 26.465925 32.592993) (xy 26.5 32.465826) (xy 26.5 32.334174) + (xy 26.465925 32.207007) (xy 26.433012 32.15) (xy 27.477231 32.15) (xy 27.466757 32.083873) (xy 27.466757 32.08387) + (xy 27.401095 31.881782) (xy 27.30462 31.692442) (xy 27.179727 31.52054) (xy 27.179723 31.520535) + (xy 27.040856 31.381668) (xy 27.007371 31.320345) (xy 27.012355 31.250653) (xy 27.054227 31.19472) + (xy 27.063441 31.188448) (xy 27.069331 31.184814) (xy 27.069334 31.184814) (xy 27.218656 31.092712) + (xy 27.342712 30.968656) (xy 27.434814 30.819334) (xy 27.489999 30.652797) (xy 27.5005 30.550009) + (xy 27.500499 29.249992) (xy 27.489999 29.147203) (xy 27.434814 28.980666) (xy 27.342712 28.831344) + (xy 27.218656 28.707288) (xy 27.069334 28.615186) (xy 26.902797 28.560001) (xy 26.902795 28.56) + (xy 26.80001 28.5495) (xy 25.199998 28.5495) (xy 25.199981 28.549501) (xy 25.097203 28.56) (xy 25.0972 28.560001) + (xy 24.930668 28.615185) (xy 24.930663 28.615187) (xy 24.781342 28.707289) (xy 24.657289 28.831342) + (xy 24.565187 28.980663) (xy 24.565185 28.980668) (xy 24.551184 29.022921) (xy 24.510001 29.147203) + (xy 24.510001 29.147204) (xy 24.51 29.147204) (xy 24.4995 29.249983) (xy 22 29.249983) (xy 22 20.849983) + (xy 24.4995 20.849983) (xy 24.4995 22.150001) (xy 24.499501 22.150018) (xy 24.51 22.252796) (xy 24.510001 22.252799) + (xy 24.534647 22.327174) (xy 24.565186 22.419334) (xy 24.648355 22.554174) (xy 24.657289 22.568657) + (xy 24.781344 22.692712) (xy 24.936558 22.788448) (xy 24.983283 22.840396) (xy 24.994506 22.909358) + (xy 24.966663 22.973441) (xy 24.959144 22.981668) (xy 24.820271 23.120541) (xy 24.695379 23.292442) + (xy 24.598904 23.481782) (xy 24.533242 23.68387) (xy 24.533242 23.683873) (xy 24.522769 23.75) (xy 25.566988 23.75) + (xy 25.534075 23.807007) (xy 25.5 23.934174) (xy 25.5 24.065826) (xy 25.534075 24.192993) (xy 25.566988 24.25) + (xy 24.522769 24.25) (xy 24.533242 24.316126) (xy 24.533242 24.316129) (xy 24.598904 24.518217) + (xy 24.695379 24.707557) (xy 24.820272 24.879459) (xy 24.820276 24.879464) (xy 24.970535 25.029723) + (xy 24.97054 25.029727) (xy 25.142442 25.15462) (xy 25.331782 25.251095) (xy 25.53387 25.316757) + (xy 25.743754 25.35) (xy 25.75 25.35) (xy 25.75 24.433012) (xy 25.807007 24.465925) (xy 25.934174 24.5) + (xy 26.065826 24.5) (xy 26.192993 24.465925) (xy 26.25 24.433012) (xy 26.25 25.35) (xy 26.256246 25.35) + (xy 26.466127 25.316757) (xy 26.46613 25.316757) (xy 26.668217 25.251095) (xy 26.857557 25.15462) + (xy 27.029459 25.029727) (xy 27.029464 25.029723) (xy 27.179723 24.879464) (xy 27.179727 24.879459) + (xy 27.30462 24.707557) (xy 27.401095 24.518217) (xy 27.466757 24.316129) (xy 27.466757 24.316126) + (xy 27.477231 24.25) (xy 26.433012 24.25) (xy 26.465925 24.192993) (xy 26.5 24.065826) (xy 26.5 23.934174) + (xy 26.465925 23.807007) (xy 26.433012 23.75) (xy 27.477231 23.75) (xy 27.466757 23.683873) (xy 27.466757 23.68387) + (xy 27.401095 23.481782) (xy 27.30462 23.292442) (xy 27.179727 23.12054) (xy 27.179723 23.120535) + (xy 27.040856 22.981668) (xy 27.007371 22.920345) (xy 27.012355 22.850653) (xy 27.054227 22.79472) + (xy 27.063441 22.788448) (xy 27.069331 22.784814) (xy 27.069334 22.784814) (xy 27.218656 22.692712) + (xy 27.342712 22.568656) (xy 27.434814 22.419334) (xy 27.489999 22.252797) (xy 27.5005 22.150009) + (xy 27.500499 20.849992) (xy 27.489999 20.747203) (xy 27.434814 20.580666) (xy 27.342712 20.431344) + (xy 27.218656 20.307288) (xy 27.125888 20.250069) (xy 27.069336 20.215187) (xy 27.069331 20.215185) + (xy 27.043547 20.206641) (xy 26.902797 20.160001) (xy 26.902795 20.16) (xy 26.80001 20.1495) (xy 25.199998 20.1495) + (xy 25.199981 20.149501) (xy 25.097203 20.16) (xy 25.0972 20.160001) (xy 24.930668 20.215185) (xy 24.930663 20.215187) + (xy 24.781342 20.307289) (xy 24.657289 20.431342) (xy 24.565187 20.580663) (xy 24.565186 20.580666) + (xy 24.510001 20.747203) (xy 24.510001 20.747204) (xy 24.51 20.747204) (xy 24.4995 20.849983) (xy 22 20.849983) + (xy 22 18.624) (xy 22.019685 18.556961) (xy 22.072489 18.511206) (xy 22.124 18.5) (xy 37.976 18.5) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 34.216607 20.241095) (xy 34.249115 20.302941) (xy 34.250019 20.307975) (xy 34.260291 20.372827) + (xy 34.321117 20.560029) (xy 34.400346 20.715523) (xy 34.410476 20.735405) (xy 34.526172 20.894646) + (xy 34.665354 21.033828) (xy 34.745748 21.092238) (xy 34.824596 21.149525) (xy 35.001763 21.239795) + (xy 35.05256 21.287769) (xy 35.069355 21.35559) (xy 35.046818 21.421725) (xy 35.001764 21.460765) + (xy 34.824856 21.550904) (xy 34.665678 21.666555) (xy 34.526555 21.805678) (xy 34.410904 21.964856) + (xy 34.321581 22.140162) (xy 34.260781 22.327283) (xy 34.254016 22.37) (xy 36.046988 22.37) (xy 36.014075 22.427007) + (xy 35.98 22.554174) (xy 35.98 22.685826) (xy 36.014075 22.812993) (xy 36.046988 22.87) (xy 34.254016 22.87) + (xy 34.260781 22.912716) (xy 34.321581 23.099837) (xy 34.410904 23.275143) (xy 34.526555 23.434321) + (xy 34.665678 23.573444) (xy 34.824856 23.689095) (xy 35.001764 23.779234) (xy 35.05256 23.827208) + (xy 35.069355 23.895029) (xy 35.046818 23.961164) (xy 35.001764 24.000204) (xy 34.824594 24.090476) + (xy 34.733741 24.156485) (xy 34.665354 24.206172) (xy 34.665352 24.206174) (xy 34.665351 24.206174) + (xy 34.526174 24.345351) (xy 34.526174 24.345352) (xy 34.526172 24.345354) (xy 34.486397 24.400099) + (xy 34.410476 24.504594) (xy 34.321117 24.67997) (xy 34.260291 24.867172) (xy 34.2288 25.065992) + (xy 34.19887 25.129126) (xy 34.139559 25.166057) (xy 34.069696 25.165059) (xy 34.011464 25.126449) + (xy 33.989212 25.077908) (xy 33.986542 25.078624) (xy 33.926269 24.853682) (xy 33.926264 24.853668) + (xy 33.830136 24.647521) (xy 33.830132 24.647513) (xy 33.779025 24.574526) (xy 33.1 25.253551) (xy 33.1 25.247339) + (xy 33.072741 25.145606) (xy 33.02008 25.054394) (xy 32.945606 24.97992) (xy 32.854394 24.927259) + (xy 32.752661 24.9) (xy 32.746448 24.9) (xy 33.425472 24.220974) (xy 33.352478 24.169863) (xy 33.146331 24.073735) + (xy 33.146317 24.07373) (xy 32.92661 24.01486) (xy 32.926599 24.014858) (xy 32.700002 23.995034) + (xy 32.699998 23.995034) (xy 32.4734 24.014858) (xy 32.473389 24.01486) (xy 32.253682 24.07373) + (xy 32.253673 24.073734) (xy 32.047516 24.169866) (xy 32.047512 24.169868) (xy 31.974526 24.220973) + (xy 31.974526 24.220974) (xy 32.653553 24.9) (xy 32.647339 24.9) (xy 32.545606 24.927259) (xy 32.454394 24.97992) + (xy 32.37992 25.054394) (xy 32.327259 25.145606) (xy 32.3 25.247339) (xy 32.3 25.253552) (xy 31.620974 24.574526) + (xy 31.620973 24.574526) (xy 31.569868 24.647512) (xy 31.569866 24.647516) (xy 31.473734 24.853673) + (xy 31.47373 24.853682) (xy 31.41486 25.073389) (xy 31.414858 25.0734) (xy 31.395034 25.299997) + (xy 31.395034 25.300002) (xy 31.414858 25.526599) (xy 31.41486 25.526609) (xy 31.446156 25.643407) + (xy 31.444493 25.713256) (xy 31.405331 25.771119) (xy 31.341102 25.798623) (xy 31.326381 25.7995) + (xy 30.8495 25.7995) (xy 30.782461 25.779815) (xy 30.736706 25.727011) (xy 30.7255 25.6755) (xy 30.7255 23.913765) + (xy 30.745185 23.846726) (xy 30.78422 23.80834) (xy 30.826562 23.782124) (xy 30.990981 23.632236) + (xy 31.125058 23.454689) (xy 31.224229 23.255528) (xy 31.285115 23.041536) (xy 31.305643 22.82) + (xy 31.285115 22.598464) (xy 31.224229 22.384472) (xy 31.217023 22.37) (xy 31.125061 22.185316) + (xy 31.125056 22.185308) (xy 30.990979 22.007761) (xy 30.826562 21.857876) (xy 30.82656 21.857874) + (xy 30.637404 21.740754) (xy 30.637395 21.74075) (xy 30.543956 21.704552) (xy 30.443475 21.665625) + (xy 30.388075 21.623054) (xy 30.364484 21.557288) (xy 30.380195 21.489207) (xy 30.430219 21.440428) + (xy 30.443466 21.434377) (xy 30.637401 21.359247) (xy 30.826562 21.242124) (xy 30.990981 21.092236) + (xy 31.125058 20.914689) (xy 31.224229 20.715528) (xy 31.225353 20.711576) (xy 31.262624 20.652485) + (xy 31.32593 20.622921) (xy 31.395171 20.632276) (xy 31.448362 20.67758) (xy 31.464394 20.713409) + (xy 31.473256 20.746482) (xy 31.473261 20.746497) (xy 31.569431 20.952732) (xy 31.569432 20.952734) + (xy 31.699954 21.139141) (xy 31.860858 21.300045) (xy 31.860861 21.300047) (xy 32.047266 21.430568) + (xy 32.253504 21.526739) (xy 32.473308 21.585635) (xy 32.63523 21.599801) (xy 32.699998 21.605468) + (xy 32.7 21.605468) (xy 32.700002 21.605468) (xy 32.756673 21.600509) (xy 32.926692 21.585635) (xy 33.146496 21.526739) + (xy 33.352734 21.430568) (xy 33.539139 21.300047) (xy 33.700047 21.139139) (xy 33.830568 20.952734) + (xy 33.926739 20.746496) (xy 33.985635 20.526692) (xy 34.004018 20.316565) (xy 34.02947 20.251498) + (xy 34.086061 20.210519) (xy 34.155823 20.206641) + ) + ) + ) +) diff --git a/TeenyTemp.kicad_prl b/TeenyTemp.kicad_prl new file mode 100644 index 0000000..b402591 --- /dev/null +++ b/TeenyTemp.kicad_prl @@ -0,0 +1,96 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "", + "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": true, + "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": "ffcffff_ffffffff", + "zone_display_mode": 0 + }, + "git": { + "repo_password": "", + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, + "meta": { + "filename": "TeenyTemp.kicad_prl", + "version": 3 + }, + "project": { + "files": [ + { + "name": "TeenyTemp.kicad_pcb", + "open": false, + "window": { + "display": 0, + "maximized": false, + "pos_x": 2619, + "pos_y": 737, + "size_x": 810, + "size_y": 692 + } + } + ] + } +} diff --git a/TeenyTemp.kicad_pro b/TeenyTemp.kicad_pro new file mode 100644 index 0000000..d824894 --- /dev/null +++ b/TeenyTemp.kicad_pro @@ -0,0 +1,586 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.1, + "copper_line_width": 0.2, + "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.05, + "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.1, + "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": 3.2, + "height": 5.6, + "width": 5.6 + }, + "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_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "holes_co_located": "warning", + "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.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.0, + "min_via_annular_width": 0.1, + "min_via_diameter": 0.5, + "solder_mask_clearance": 0.0, + "solder_mask_min_width": 0.0, + "solder_mask_to_copper_clearance": 0.005, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "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": "error", + "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": "TeenyTemp.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": "", + "plot": "", + "pos_files": "", + "specctra_dsn": "", + "step": "", + "svg": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.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, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "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_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "92e956c0-8dfc-434c-b4f2-eaee851a07b7", + "Root" + ] + ], + "text_variables": {} +} diff --git a/TeenyTemp.kicad_sch b/TeenyTemp.kicad_sch new file mode 100644 index 0000000..c3451f2 --- /dev/null +++ b/TeenyTemp.kicad_sch @@ -0,0 +1,3453 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "92e956c0-8dfc-434c-b4f2-eaee851a07b7") + (paper "A4") + (lib_symbols + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (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 yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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) + ) + (exclude_from_sim no) + (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 yes) + ) + ) + (property "Datasheet" "~" + (at 0 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Temperature dependent resistor, negative temperature coefficient" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "thermistor NTC resistor sensor RTD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "*NTC* *Thermistor* PIN?ARRAY* bornier* *Terminal?Block* R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "Mechanical:MountingHole" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "H" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "mounting hole" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "MountingHole*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MountingHole_0_1" + (circle + (center 0 0) + (radius 1.27) + (stroke + (width 1.27) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "mcu:rp2040-zero" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (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 yes) + ) + ) + (property "Datasheet" "" + (at -8.89 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND1\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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) + ) + (exclude_from_sim no) + (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 yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor symbol for simulation only" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "resistor simulation" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 62.23 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "27c0d9fe-2524-498e-8670-62fcfe5848fb") + ) + (junction + (at 110.49 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "2e80537e-1752-4d64-99f9-b35a17477fd3") + ) + (junction + (at 110.49 64.77) + (diameter 0) + (color 0 0 0 0) + (uuid "3848936e-9527-43dc-984e-78abd5fa0ab7") + ) + (junction + (at 43.18 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "472a011f-916a-40b0-b1f1-1442767cde96") + ) + (junction + (at 93.98 64.77) + (diameter 0) + (color 0 0 0 0) + (uuid "5beae7e3-b54e-422a-950f-6602dc78425a") + ) + (junction + (at 91.44 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "76adb91a-7953-4273-9c89-d1d9052313fe") + ) + (junction + (at 44.45 62.23) + (diameter 0) + (color 0 0 0 0) + (uuid "8a6fef33-44b8-447c-88cb-288032ffaed9") + ) + (junction + (at 46.99 62.23) + (diameter 0) + (color 0 0 0 0) + (uuid "b5d302d1-54b3-40af-984e-b4efd3617943") + ) + (junction + (at 93.98 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "c0297878-90c0-496a-9d93-9e0c12d816d8") + ) + (junction + (at 91.44 64.77) + (diameter 0) + (color 0 0 0 0) + (uuid "d350acbe-47f8-4724-b9fd-43c915625c7a") + ) + (junction + (at 63.5 62.23) + (diameter 0) + (color 0 0 0 0) + (uuid "f1285615-0975-42de-a656-6d72ee07affb") + ) + (junction + (at 45.72 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "fdde1eb8-0080-491d-92ad-40afb6720a0f") + ) + (no_connect + (at 144.78 53.34) + (uuid "097410ae-0b49-4068-87cc-6fdc62fd3300") + ) + (no_connect + (at 144.78 55.88) + (uuid "2294a513-cb0b-47d0-9b31-bc3a6546c38e") + ) + (no_connect + (at 152.4 60.96) + (uuid "9ae1b961-94e0-4130-8a72-7a882fd7a591") + ) + (wire + (pts + (xy 55.88 73.66) (xy 46.99 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "024244dc-ad19-46fc-9f38-25fbb1457ed3") + ) + (wire + (pts + (xy 134.62 39.37) (xy 121.92 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0481a7fa-6f51-4dbb-ac82-60305e55fae3") + ) + (wire + (pts + (xy 54.61 39.37) (xy 45.72 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0bb471bc-5659-4aa5-bd06-7da4b2b4500b") + ) + (wire + (pts + (xy 134.62 43.18) (xy 134.62 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1434c510-28e1-443d-a940-6081d40022bd") + ) + (wire + (pts + (xy 45.72 39.37) (xy 45.72 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1dcf043e-6ea4-42ba-9e59-69616996ca70") + ) + (wire + (pts + (xy 91.44 64.77) (xy 93.98 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1ded9812-5471-46ca-86c0-c746632ef301") + ) + (wire + (pts + (xy 121.92 44.45) (xy 133.35 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "260b5d26-d6bc-4dba-a7ee-a512b3f9085c") + ) + (wire + (pts + (xy 137.16 40.64) (xy 137.16 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e8657e2-1a3a-44e0-92b4-e605e1cd0811") + ) + (wire + (pts + (xy 110.49 30.48) (xy 110.49 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "31242100-87d0-408d-87f1-b26b2ee1853d") + ) + (wire + (pts + (xy 59.69 62.23) (xy 63.5 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "354de530-8dca-477a-ac17-658068d20b69") + ) + (wire + (pts + (xy 133.35 44.45) (xy 133.35 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "35b650fd-e409-4e4c-aef7-e524d7f1ec44") + ) + (wire + (pts + (xy 102.87 76.2) (xy 93.98 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "36ca48d8-2136-4612-850a-4b55abc9d3f1") + ) + (wire + (pts + (xy 93.98 41.91) (xy 93.98 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3bd074df-f5ea-4970-87d6-e3e3d74668c2") + ) + (wire + (pts + (xy 110.49 64.77) (xy 111.76 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c0bb163-35ee-4531-aac5-3b6a693087af") + ) + (wire + (pts + (xy 144.78 38.1) (xy 138.43 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3e79c82e-cc72-46a6-89ff-e1b7cc70d952") + ) + (wire + (pts + (xy 78.74 62.23) (xy 78.74 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "42354b81-7904-41c7-a865-d01854be3400") + ) + (wire + (pts + (xy 135.89 52.07) (xy 135.89 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "479e67d5-f58d-4621-b1da-b722c7cb5094") + ) + (wire + (pts + (xy 144.78 48.26) (xy 121.92 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4c308b72-404a-480f-8699-845a172a9ee1") + ) + (wire + (pts + (xy 93.98 76.2) (xy 93.98 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4dd4e617-b691-45c8-b3b0-565cbe0cb93c") + ) + (wire + (pts + (xy 74.93 27.94) (xy 78.74 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4e19f8e0-bf46-4687-9a5a-b2fc6157a0e3") + ) + (wire + (pts + (xy 43.18 27.94) (xy 43.18 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4f0f5877-9525-4cf4-92cc-527bfcb68b4e") + ) + (wire + (pts + (xy 105.41 30.48) (xy 110.49 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "50afe389-f3e5-43a2-a1fe-d9ca914cf24c") + ) + (wire + (pts + (xy 121.92 48.26) (xy 121.92 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "52ecc6cf-f4b9-4f10-8b3b-fe3ebd2df23a") + ) + (wire + (pts + (xy 91.44 30.48) (xy 91.44 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "60a87761-6086-43fc-9758-6b3999f52e26") + ) + (wire + (pts + (xy 30.48 26.67) (xy 30.48 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "64a94d27-3ba3-40c5-be75-fc2b72ba2b25") + ) + (wire + (pts + (xy 44.45 62.23) (xy 44.45 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6976082a-729f-449b-ad65-2ee2b636c1b3") + ) + (wire + (pts + (xy 78.74 27.94) (xy 78.74 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6a1dc572-c248-4a98-8895-f73e4f617cd8") + ) + (wire + (pts + (xy 106.68 64.77) (xy 110.49 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6a912a99-184b-46f9-b59a-84ba6b4c2cce") + ) + (wire + (pts + (xy 133.35 45.72) (xy 144.78 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6e8f4db8-82e2-4168-b458-0af5145bd2b0") + ) + (wire + (pts + (xy 45.72 27.94) (xy 49.53 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "701dc1df-3cfd-4660-992b-08839beec06b") + ) + (wire + (pts + (xy 93.98 64.77) (xy 99.06 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "780c7dae-c11f-48f7-81b6-b2a3947207bd") + ) + (wire + (pts + (xy 27.94 60.96) (xy 31.75 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7b88c1ab-5bbb-4b10-b083-625f909854c3") + ) + (wire + (pts + (xy 57.15 27.94) (xy 62.23 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8459ee88-f7eb-4ed1-b623-47c8704dd445") + ) + (wire + (pts + (xy 144.78 40.64) (xy 137.16 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "88084791-9a40-4446-85c7-54385b4341d3") + ) + (wire + (pts + (xy 91.44 30.48) (xy 93.98 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89769428-c052-432b-9889-50711e452337") + ) + (wire + (pts + (xy 46.99 73.66) (xy 46.99 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "92876f93-3381-43de-9355-d51e7ad0ce91") + ) + (wire + (pts + (xy 74.93 62.23) (xy 78.74 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "932b0be2-be16-4e1f-9c0d-7c63c95939db") + ) + (wire + (pts + (xy 93.98 30.48) (xy 97.79 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9cde38a0-696b-48d7-9da0-31ba607e2565") + ) + (wire + (pts + (xy 144.78 43.18) (xy 134.62 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a253c97a-a055-429c-aa42-ce13f55f3666") + ) + (wire + (pts + (xy 44.45 62.23) (xy 46.99 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a867dd8d-eb0d-4ea4-bc91-76c410bb2d3c") + ) + (wire + (pts + (xy 135.89 50.8) (xy 144.78 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aa47915f-56d9-4b4a-be7d-510ca6e91b8f") + ) + (wire + (pts + (xy 31.75 60.96) (xy 31.75 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aff27374-d558-4027-a367-f7c23fdd3963") + ) + (wire + (pts + (xy 138.43 38.1) (xy 138.43 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b4a16d50-8dbd-4980-b995-296c1b192feb") + ) + (wire + (pts + (xy 102.87 41.91) (xy 93.98 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b51d769a-a20a-43d7-99b1-886dff4c4886") + ) + (wire + (pts + (xy 110.49 64.77) (xy 110.49 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b6d38a94-54fe-4223-97f7-777d2fc2c959") + ) + (wire + (pts + (xy 26.67 26.67) (xy 30.48 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c41c0106-4155-4fdd-be6c-0f82d940d4e3") + ) + (wire + (pts + (xy 63.5 62.23) (xy 63.5 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e5177208-adb7-4abc-81e7-14a2ba30a551") + ) + (wire + (pts + (xy 121.92 52.07) (xy 135.89 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e72b2365-ed64-49b5-a61d-936b4a599eed") + ) + (wire + (pts + (xy 62.23 27.94) (xy 62.23 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "efe49b0c-e40f-49ba-af21-3fecfcfe115f") + ) + (wire + (pts + (xy 91.44 64.77) (xy 91.44 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f04620e3-eda6-4bd2-9b68-7704ea5ebea4") + ) + (wire + (pts + (xy 63.5 62.23) (xy 64.77 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f1828fbe-16e7-4254-85f2-7c9c2d530839") + ) + (wire + (pts + (xy 46.99 62.23) (xy 52.07 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f205a221-611e-4293-bf56-c0e388735781") + ) + (wire + (pts + (xy 43.18 27.94) (xy 45.72 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f4f00cd4-b6ac-49d8-afc2-3e01d1b40eb9") + ) + (wire + (pts + (xy 121.92 43.18) (xy 121.92 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fe046062-8d66-4df3-aec1-19dd8ea9d49a") + ) + (label "3.3v" + (at 137.16 41.91 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0b4b1a31-889c-4053-8274-cc1b3f808918") + ) + (label "Thermistor0" + (at 121.92 39.37 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "13eac4a7-806e-4753-a325-bab6fbd4f313") + ) + (label "3.3v" + (at 26.67 26.67 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1ae6f7b1-fbec-46e1-b109-067336bf80d8") + ) + (label "Thermistor2" + (at 121.92 46.99 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "51506f6f-f028-4d91-801e-cd1ba08bc87c") + ) + (label "Thermistor1" + (at 121.92 43.18 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6cd731a4-3e05-496e-9893-4dbd004f194f") + ) + (label "Thermistor1" + (at 91.44 46.99 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "832268ef-5ff2-49ef-9fb2-3d6d452e024b") + ) + (label "3.3v" + (at 27.94 60.96 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9b6cd1ce-4379-49f6-901a-bbaeed1807b3") + ) + (label "Thermistor3" + (at 91.44 81.28 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "acd1ac3c-0b43-44e9-84d1-8c27eee53f5c") + ) + (label "3.3v" + (at 74.93 27.94 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c40238e4-53b2-4ad6-a6d8-7fb22b132243") + ) + (label "Thermistor3" + (at 121.92 52.07 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "dc86472f-cae1-4d7f-ad30-9a2a76ebe89a") + ) + (label "3.3v" + (at 74.93 62.23 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "dffb28d2-27c4-4190-b178-e84263c0211a") + ) + (label "Thermistor0" + (at 43.18 45.72 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "eaac386d-d308-4732-99e2-8acf1cf6b9bf") + ) + (label "Thermistor2" + (at 44.45 80.01 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f90c13cd-e820-4c24-87e3-cd425f4263fd") + ) + (symbol + (lib_id "Device:Thermistor_NTC") + (at 55.88 62.23 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "126ae5af-b7de-4d1c-b4eb-96ee5b505ee5") + (property "Reference" "TH2" + (at 56.1975 55.118 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Thermistor_NTC_100k" + (at 56.1975 57.658 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" + (at 54.61 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 54.61 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 55.88 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "TH3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "pspice:R") + (at 85.09 30.48 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "21328443-3099-43b1-b489-b41fae2e2487") + (property "Reference" "T1R2" + (at 85.09 24.13 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "4.7k" + (at 85.09 26.67 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (at 85.09 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 85.09 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 85.09 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "T1R3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 224.155 44.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "21e7d65c-4e67-4ac1-860f-71851f7b5d67") + (property "Reference" "H2" + (at 227.33 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 227.33 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" + (at 224.155 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 224.155 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 224.155 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "H2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Thermistor_NTC") + (at 53.34 27.94 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "35ed76ea-c52c-4af9-af04-0704ca6bbc8e") + (property "Reference" "TH0" + (at 53.6575 21.59 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Thermistor_NTC_100k" + (at 53.6575 24.13 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.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 52.07 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 53.34 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "TH1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND1") + (at 111.76 64.77 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3a3d8b69-b249-4b8c-be66-840c2fd67f11") + (property "Reference" "#PWR0108" + (at 118.11 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND1" + (at 115.062 64.7699 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 111.76 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 111.76 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 111.76 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "05a136ca-b6ea-4b2b-ae75-1cda84549bf7") + ) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0108") + (unit 1) + ) + ) + (project "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Thermistor_NTC") + (at 101.6 30.48 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "400e609a-bba4-4e5a-ae93-533c1e27c86d") + (property "Reference" "TH1" + (at 101.9175 23.368 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Thermistor_NTC_100k" + (at 101.9175 25.908 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" + (at 100.33 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 100.33 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 101.6 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "TH2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 106.68 41.91 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "81e8f931-69e3-4a1b-822c-23fefcdaa628") + (property "Reference" "C2" + (at 106.68 34.29 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.1uF" + (at 106.68 36.83 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (at 110.49 40.9448 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 106.68 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 106.68 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Thermistor_NTC") + (at 102.87 64.77 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "833598b7-80ea-4c00-863e-9e1e91b2c097") + (property "Reference" "TH3" + (at 103.1875 57.658 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Thermistor_NTC_100k" + (at 103.1875 60.198 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" + (at 101.6 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 101.6 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 102.87 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "TH4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 59.69 73.66 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "936a1237-6553-437f-99c4-c69cbe5a50ac") + (property "Reference" "C3" + (at 59.69 66.675 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.1uF" + (at 59.69 69.215 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (at 63.5 72.6948 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 59.69 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 59.69 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 58.42 39.37 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9595bf9b-8c95-4b95-9434-8585eb0e96bb") + (property "Reference" "C1" + (at 58.42 31.75 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.1uF" + (at 58.42 34.29 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (at 62.23 38.4048 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 58.42 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 58.42 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND1") + (at 110.49 30.48 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a8496348-ef4b-4bfe-bb7b-51e57538b8cc") + (property "Reference" "#PWR0110" + (at 116.84 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND1" + (at 113.792 30.4799 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 110.49 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 110.49 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 110.49 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4d8baa8c-758f-47fd-8553-4c937d356912") + ) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0110") + (unit 1) + ) + ) + (project "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "mcu:rp2040-zero") + (at 157.48 44.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "abbbe3ef-66de-4d09-9dd2-83bf3f3cc4bf") + (property "Reference" "U1" + (at 157.48 28.575 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "rp2040-zero" + (at 157.48 31.115 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "mcu:rp2040-zero-tht" + (at 148.59 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 148.59 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 157.48 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND1") + (at 62.23 27.94 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b16ed3a9-7361-49b6-9b62-2a38699ece5a") + (property "Reference" "#PWR0105" + (at 68.58 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND1" + (at 65.532 27.9399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 62.23 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 62.23 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 62.23 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8c618316-56a2-48a4-8ae5-e5ca5be3467c") + ) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0105") + (unit 1) + ) + ) + (project "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "pspice:R") + (at 36.83 27.94 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ba43f430-f95e-4bc5-83cb-ebe697130cab") + (property "Reference" "T1R1" + (at 36.83 21.59 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "4.7k" + (at 36.83 24.13 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (at 36.83 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 36.83 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 36.83 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "T1R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "pspice:R") + (at 85.09 64.77 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "bcc0ba37-995e-4315-bb4d-066a32ae862f") + (property "Reference" "T1R4" + (at 85.09 58.42 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "4.7k" + (at 85.09 60.96 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (at 85.09 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 85.09 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 85.09 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "T1R4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 106.68 76.2 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c78057eb-cff8-4f94-95d0-a1fe2b8e2231") + (property "Reference" "C4" + (at 106.68 68.58 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.1uF" + (at 106.68 71.12 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm" + (at 110.49 75.2348 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 106.68 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 106.68 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "pspice:R") + (at 38.1 62.23 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "dde6c428-e62b-43b4-8dab-a3d2fe132f76") + (property "Reference" "T1R3" + (at 38.1 55.88 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "4.7k" + (at 38.1 58.42 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" + (at 38.1 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 38.1 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 38.1 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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 "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "T1R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 224.155 38.1 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e814dc8b-2d44-4e4a-9c76-3f101df18680") + (property "Reference" "H1" + (at 227.33 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 227.33 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" + (at 224.155 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 224.155 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 224.155 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "H1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND1") + (at 138.43 35.56 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ecd4f8b1-5534-4ba0-a67a-c8c53506b9ed") + (property "Reference" "#PWR0110" + (at 132.08 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND1" + (at 135.255 35.56 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 138.43 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 138.43 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 138.43 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "39afe380-72a4-4aff-9e20-39683d125b28") + ) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0110") + (unit 1) + ) + ) + (project "TinyTemp" + (path "/92e956c0-8dfc-434c-b4f2-eaee851a07b7" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND1") + (at 64.77 62.23 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f501d222-ad31-4aba-812e-da9008a08b46") + (property "Reference" "#PWR0107" + (at 71.12 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND1" + (at 68.072 62.2299 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 64.77 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 64.77 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 64.77 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "95593888-ce1b-433a-8e95-eeb970d85307") + ) + (instances + (project "SystemD" + (path "/3ca3dbff-3760-4281-b935-18bad2d2e060" + (reference "#PWR0107") + (unit 1) + ) + ) + (project "TinyTemp" + (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..7d8e0e8 Binary files /dev/null and b/images/rev0.png differ